diff --git a/.gitignore b/.gitignore index 559d4e8da..e1042fad1 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ node_modules/ +.pnpm-store/ # test-fixture packages are TEST DATA, committed on purpose !tests/diagnostics/npm-imports/node_modules/ !tests/fixtures/commander-calc/node_modules/ @@ -40,3 +41,4 @@ tmp-*/ .vercel/ .env.local .env* +.env*.local diff --git a/AGENTS.md b/AGENTS.md index d0487c726..d6cfa48da 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -1,6 +1,10 @@ # Agent Guide -Guidance for agents (and humans) working on this repository. These conventions apply repo-wide; the docs site under `docs/` additionally has its own conventions in `docs/AGENTS.md`. +This is the only agent guide for the repository. Its rules apply everywhere, including `docs/` and `internal/compatibility/`. + +## Markdown style + +Write prose paragraphs and list items as single source lines and let editors and renderers wrap them naturally. Do not hard-wrap Markdown at a fixed column; preserve separate lines only where Markdown syntax or intentional formatting requires them, such as headings, lists, tables, blockquotes, and code blocks. ## Build and test @@ -41,9 +45,7 @@ SCRIPTC_TEST_WORKERS=4 pnpm test # plain lane SCRIPTC_TEST_WORKERS=4 SCRIPTC_SAN=1 pnpm test # sanitized lane ``` -`SCRIPTC_TEST_WORKERS` caps the vitest worker pool so concurrent agents don't -contend for cores; full local suites also queue behind an advisory lock per -lane. +`SCRIPTC_TEST_WORKERS` caps the vitest worker pool so concurrent agents don't contend for cores; full local suites also queue behind an advisory lock per lane. Corpus programs are differential tests against Node: every program runs under Node and as a compiled native binary, and stdout, stderr, and exit codes must match byte-for-byte. A new feature lands with corpus programs that pin its behavior both ways. @@ -59,12 +61,147 @@ new tests should follow this convention. ## Where things live -- `packages/compiler` — the frontend (tsc API to IR), the typed IR with validator and serializer, and the LLVM and C backends. +- `packages/compiler` — the frontend (tsc API to IR), typed IR, validator, serializer, and LLVM and C backends. - `packages/runtime` — the C runtime compiled into every scriptc binary. - `packages/cli` — `scriptc build | run | coverage`. -- `tests/` — the differential corpus, diagnostics snapshots, and the harness. -- `docs/` — the documentation site (standalone pnpm workspace); see `docs/AGENTS.md`. -- `scripts/` — repo tooling, including the release version stamp. +- `internal/compatibility` — generated Node.js parity inventory, implementation-owned compatibility manifests, and engineering backlog. +- `tests/` — the differential corpus, diagnostics snapshots, and harness. +- `docs/` — the standalone Next.js App Router + MDX documentation workspace. +- `scripts/` — repository tooling, including the release version stamp. + +## Node.js compatibility + +The Node.js compatibility system is an implementation inventory and planning tool. Keep its claims narrower than the evidence. Do not change a status merely to make the public matrix look correct. + +### Sources of truth + +- `internal/compatibility/node-v24.json` pins the Node release, commit, official API inputs, and documentation URLs. The pinned Node API is the denominator. +- Node's official documentation defines the public API hierarchy and stability metadata. Consult Node source when the docs do not fully specify behavior. +- Running the pinned Node release is the behavior oracle for differential tests. +- Compiler source and `packages/compiler/surface-manifest.json`, augmented by `internal/compatibility/static-support.json`, define static-native support. +- `internal/compatibility/dynamic-support.json` defines dynamic-island modules, exports, members, explicit stubs, globals, and policies. It also generates the runtime builtin registry. +- Test evidence determines positive behavioral claims. Source manifests alone do not prove Node-compatible behavior. + +Treat static-native and dynamic-island compatibility independently. Support in one tier says nothing about the other, and `--dynamic` does not turn an unsupported typed call into a supported static call. + +### Status contract + +- `supported` — broadly implemented. This requires test evidence. +- `partial` — a useful implemented subset. This requires test evidence, but evidence may cover an API family rather than every documented overload. +- `refused` — a named compiler diagnostic or explicit dynamic throwing or rejecting stub exists. Never infer this status from absence. +- `not-implemented` — no implementation claim. Its verification basis decides whether it is ready to implement or must first be investigated. +- `by-design` — intentionally outside a scriptc execution model. This requires an explicit implementation-owned architectural policy. +- `unreviewed` — no compatibility subsystem owns a reliable classification. Do not treat this as unsupported or as an implementation ticket. +- `not-applicable` — documentation, configuration, executable behavior, or an embedding model that does not map to the execution tier. + +Chapter rows are generated summaries of their descendants, never independent support claims. + +### Verification basis and backlog actions + +Read a row's verification basis before acting: + +- `test-backed` — mapped to implementation and relevant tests. Audit the exact overload or behavior before broadening a `partial` claim. +- `explicit-refusal` — source-verified refusal boundary. +- `verified-absence` — a runtime presence test confirms absence. +- `declared-gap` — an implementation-owned manifest explicitly declares the gap; it is ready for implementation. +- `registry-gap` — no implementation registry entry matched. Verify the gap before implementing: it may be an incomplete manifest or symbol match. +- `architectural-policy` — explicit intentional exclusion. +- `unreviewed`, `not-applicable`, and `derived` retain the meanings above. + +`pnpm node-compat:backlog` emits tier-specific work. Its actions are: + +- `verify-gap` — investigate a registry gap first; this is not yet an implementation ticket. +- `implement` — implement a declared or verified gap. +- `replace-refusal` — add support where an explicit refusal currently exists. +- `audit-partial` — identify and implement missing behavior in a tested subset, or tighten an overbroad mapping. +- `classify` — establish ownership and evidence for an unreviewed row. + +Backlog priority is a heuristic based on Node stability: stable APIs are raised, release-candidate or unrated APIs remain normal, and experimental, deprecated, and legacy APIs are lowered. It is not a product roadmap. + +Rows are not necessarily independent work items. One implementation can close a class, methods, overloads, aliases, and nested rows. Plan work by coherent API family and inspect the regenerated diff instead of creating one ticket per row. + +Useful queue filters compose: + +```bash +pnpm node-compat:backlog --action=implement --priority=high +pnpm node-compat:backlog --action=verify-gap --chapter=assert +pnpm node-compat:backlog --tier=dynamic --format=tsv +``` + +### Generated files + +Never hand-edit these files: + +- `packages/compiler/surface-manifest.json` +- `internal/compatibility/generated/node-v24-internal.json` +- `internal/compatibility/generated/node-v24-backlog.json` +- `docs/src/generated/node-v24-compatibility.json` +- `docs/src/generated/node-v24-compatibility-meta.json` +- `packages/runtime/src/scr_island_manifest.h` + +Change compiler decision sources or the implementation-owned compatibility manifests, then regenerate. Use `pnpm manifest` when compiler decision tables change and `pnpm node-compat` whenever the Node pin, compatibility manifests, compiler surface manifest, or dynamic registry changes. + +The public docs artifact must not expose repository test paths, internal source identifiers, engineering evidence bookkeeping, documentation/metadata headings, command-line or configuration-only entries, or rows that are N/A in both tiers. Those remain in the complete internal census under `internal/compatibility/generated/`. + +### Landing compatibility work + +For each API family: + +1. Start from the backlog action and verification basis. Verify every `registry-gap` before assuming code is missing. +2. Read the pinned Node documentation, stability metadata, relevant Node source when needed, and existing scriptc implementation paths. +3. Decide static-native and dynamic-island scope separately. +4. Implement the smallest coherent behavior family. Preserve explicit refusals for unimplemented forms rather than silently diverging. +5. Add differential evidence that executes under Node and as a compiled binary. Cover stdout, stderr, exit status, success behavior, and important error shapes. Dynamic-island work needs island-executed differential fixtures; a load-only export check does not prove behavior. +6. Update the implementation-owned source or manifest. Positive `supported` and `partial` mappings must name existing test evidence. +7. Run `pnpm manifest` if compiler surface tables changed, then run `pnpm node-compat`. Never patch generated JSON or headers. +8. Inspect the internal ledger, public artifact, and backlog diff. Confirm the intended API family changed and unrelated rows did not. +9. Run focused tests, `pnpm node-compat:check`, and the full validation gate required for the change. If docs output changed, also run the docs gate. + +Compatibility commands: + +```bash +pnpm node-compat +pnpm node-compat:check +pnpm --filter @internal/compatibility check:upstream # networked pinned-input check +``` + +## Documentation site + +The docs site is a standalone pnpm workspace under `docs/`. It uses Next.js App Router + MDX, with one topic per `docs/src/app//page.mdx`. + +### Naming and content + +- The project is **scriptc**, lowercase, everywhere: page titles, prose, and code samples. +- Name-bearing strings such as the site name, tagline, GitHub URL, and canonical origin `https://scriptc.dev` live in `docs/src/lib/site.ts`. +- Coverage numbers on a page may only be output from `scriptc coverage` for a specific program shown in the same block; never publish invented aggregate coverage statistics. +- Every shell command shown in a fence must have run successfully against the current build. Output blocks contain real output; trimming is acceptable, invention is not. +- Document limitations plainly on the limitations page rather than scattering them as fine print. + +### MDX conventions + +- Use literal HTML `` markup in MDX, never Markdown pipe tables. +- Fence info strings contain the language and optionally a filename after a colon, for example `ts:src/main.ts`; no other fence metadata survives. +- Use `console` fences for shell sessions (`$ command` followed by output). +- Use `diff` fences for additions and removals. +- Use HTML `
/
/
` for flag and subcommand references. + +### Adding a docs page + +1. Add `docs/src/app//page.mdx`. +2. Add `docs/src/app//layout.tsx` exporting `pageMetadata("")`. +3. Add the slug to `PAGE_TITLES` in `docs/src/lib/page-titles.ts`. +4. Add navigation in `docs/src/lib/docs-navigation.ts`; it also drives mobile navigation and the sitemap. + +### Docs development and verification + +Do not start duplicate docs dev servers. Reuse the existing server and its hot reload process when one is running. CI-style builds must use a separate dist directory so they do not corrupt the dev server's `.next` state: + +```bash +cd docs +NEXT_DIST_DIR=.next-check pnpm check +``` + +`pnpm check` runs the compatibility drift check, TypeScript check, and production build. It is required before landing docs or compatibility output changes. ## Releases diff --git a/docs/AGENTS.md b/docs/AGENTS.md deleted file mode 100644 index 30fa29492..000000000 --- a/docs/AGENTS.md +++ /dev/null @@ -1,52 +0,0 @@ -# Docs Site Conventions - -This is the scriptc docs site: Next.js App Router + MDX, one topic per `src/app//page.mdx`, standalone from the repo's pnpm workspace (it has its own lockfile; `pnpm install && pnpm check` runs entirely inside `docs/`). - -## Naming - -The project is **scriptc**, lowercase, everywhere — page titles, prose, code samples. All name-bearing strings (site name, tagline, GitHub URL, canonical origin `https://scriptc.dev`) live in `src/lib/site.ts`; copy elsewhere is written name-neutral and pulls from there. - -## Content rules - -- Coverage numbers on a page are only ever the output of `scriptc coverage` on a specific program shown in that same block — never aggregate statistics. -- Every shell command shown in a fence must have been run successfully against the current build before it lands on a page. Output blocks are real output (trimmed is fine, invented is not). -- Limitations are documented plainly on their own page, not scattered as fine print. - -## MDX Tables - -Always use HTML `
` syntax in MDX pages, never markdown pipe tables. This ensures consistent styling and avoids MDX parsing edge cases. - -```html -
- - - - - - - - - - - - -
ColumnDescription
fieldWhat it does
-``` - -## Code fences - -The fence info string carries the language, and optionally a filename after a colon (` ```ts:src/main.ts `) — that is the only fence metadata that survives the MDX pipeline. `console` is the register for shell sessions ( `$ command` then output); `diff` fences get +/- coloring. - -## Definition lists - -Flag and subcommand references use HTML `
/
/
` (styled via `article dl` rules in `globals.css`). - -## Adding a page - -1. `src/app//page.mdx` for the content and `src/app//layout.tsx` exporting `pageMetadata("")`. -2. Add the slug to `PAGE_TITLES` in `src/lib/page-titles.ts` (drives metadata and OG images). -3. Add a nav entry in `src/lib/docs-navigation.ts` (drives the sidebar, mobile nav, and sitemap). - -## Verification - -`pnpm check` (typecheck + production build) must pass before committing. Run it with `NEXT_DIST_DIR=.next-check` if a dev server may be running. diff --git a/docs/next.config.mjs b/docs/next.config.mjs index 18e4e879f..bffe1801f 100644 --- a/docs/next.config.mjs +++ b/docs/next.config.mjs @@ -24,10 +24,6 @@ const nextConfig = { // CI-style builds set NEXT_DIST_DIR so `pnpm check` never shares .next // with a running dev server (a shared dist dir corrupts the dev cache). distDir: process.env.NEXT_DIST_DIR || ".next", - // Keep check builds from retriggering a running dev server's watcher. - watchOptions: { - ignored: ["**/.next-check/**"], - }, }; export default withMDX(nextConfig); diff --git a/docs/package.json b/docs/package.json index 4f0b3be73..b7ad3426a 100644 --- a/docs/package.json +++ b/docs/package.json @@ -9,7 +9,8 @@ "build": "next build", "start": "next start", "typecheck": "tsc --noEmit", - "check": "pnpm typecheck && pnpm build" + "compat:check": "pnpm --dir .. node-compat:check", + "check": "pnpm compat:check && pnpm typecheck && pnpm build" }, "dependencies": { "@mdx-js/loader": "^3", diff --git a/docs/src/app/compatibility/data/route.ts b/docs/src/app/compatibility/data/route.ts new file mode 100644 index 000000000..7e9f917c4 --- /dev/null +++ b/docs/src/app/compatibility/data/route.ts @@ -0,0 +1,14 @@ +import snapshot from "@/generated/node-v24-compatibility.json"; + +export const dynamic = "force-static"; +export const revalidate = false; + +export function GET() { + return Response.json(snapshot, { + headers: { + // The client adds a generated content hash to the URL. Keep dev + // uncached; production can cache each immutable artifact URL. + "Cache-Control": process.env.NODE_ENV === "production" ? "public, max-age=31536000, immutable" : "no-store", + }, + }); +} diff --git a/docs/src/app/compatibility/layout.tsx b/docs/src/app/compatibility/layout.tsx new file mode 100644 index 000000000..2862d18e5 --- /dev/null +++ b/docs/src/app/compatibility/layout.tsx @@ -0,0 +1,7 @@ +import { pageMetadata } from "@/lib/page-metadata"; + +export const metadata = pageMetadata("compatibility"); + +export default function Layout({ children }: { children: React.ReactNode }) { + return children; +} diff --git a/docs/src/app/compatibility/page.tsx b/docs/src/app/compatibility/page.tsx new file mode 100644 index 000000000..9bae66c00 --- /dev/null +++ b/docs/src/app/compatibility/page.tsx @@ -0,0 +1,5 @@ +import { NodeCompatibilityMatrix } from "@/components/node-compatibility-matrix"; + +export default function CompatibilityPage() { + return ; +} diff --git a/docs/src/app/globals.css b/docs/src/app/globals.css index 62097093a..dc30a650a 100644 --- a/docs/src/app/globals.css +++ b/docs/src/app/globals.css @@ -439,6 +439,29 @@ article td { color: var(--ds-gray-900); } +.compatibility-table { + width: 100%; + border-collapse: collapse; + font-size: 0.875rem; +} + +.compatibility-table th { + border-bottom: 1px solid var(--ds-gray-alpha-400); + padding: 0.5rem 0.75rem; + text-align: left; + font-size: 0.75rem; + font-weight: 500; + text-transform: uppercase; + letter-spacing: 0.05em; + color: var(--ds-gray-900); +} + +.compatibility-table td { + border-bottom: 1px solid var(--ds-gray-alpha-200); + padding: 0.5rem 0.75rem; + color: var(--ds-gray-900); +} + /* Definition lists (flag/subcommand references on the CLI page and friends). Literal HTML in MDX bypasses the mdx-components mapping, so these live next to the article table rules above. */ diff --git a/docs/src/app/node-compatibility/data/route.ts b/docs/src/app/node-compatibility/data/route.ts new file mode 100644 index 000000000..942875c41 --- /dev/null +++ b/docs/src/app/node-compatibility/data/route.ts @@ -0,0 +1,3 @@ +export function GET(request: Request) { + return Response.redirect(new URL("/compatibility/data", request.url), 308); +} diff --git a/docs/src/app/node-compatibility/page.tsx b/docs/src/app/node-compatibility/page.tsx new file mode 100644 index 000000000..3a361248d --- /dev/null +++ b/docs/src/app/node-compatibility/page.tsx @@ -0,0 +1,5 @@ +import { permanentRedirect } from "next/navigation"; + +export default function LegacyNodeCompatibilityPage() { + permanentRedirect("/compatibility"); +} diff --git a/docs/src/app/sitemap.ts b/docs/src/app/sitemap.ts index 038e16b13..686f37e3a 100644 --- a/docs/src/app/sitemap.ts +++ b/docs/src/app/sitemap.ts @@ -5,8 +5,8 @@ import { statSync } from "node:fs"; import path from "node:path"; export default function sitemap(): MetadataRoute.Sitemap { - // The homepage lives in the site header, not the docs nav, so list it explicitly. - const hrefs = ["/", ...allDocsPages.map((page) => page.href)]; + // Top-level site pages live in the header, not the docs nav. + const hrefs = ["/", "/compatibility", ...allDocsPages.map((page) => page.href)]; return hrefs.map((href) => ({ url: `${siteUrl}${href}`, lastModified: lastModifiedFor(href), @@ -14,7 +14,7 @@ export default function sitemap(): MetadataRoute.Sitemap { } function lastModifiedFor(href: string): Date { - const relative = href === "/" ? "page.tsx" : path.join(href.slice(1), "page.mdx"); + const relative = href === "/" || href === "/compatibility" ? path.join(href.slice(1), "page.tsx") : path.join(href.slice(1), "page.mdx"); try { return statSync(path.join(process.cwd(), "src", "app", relative)).mtime; } catch { diff --git a/docs/src/components/docs-mobile-nav.tsx b/docs/src/components/docs-mobile-nav.tsx index bf3b46b6c..c8434a917 100644 --- a/docs/src/components/docs-mobile-nav.tsx +++ b/docs/src/components/docs-mobile-nav.tsx @@ -14,8 +14,8 @@ export function DocsMobileNav() { return allDocsPages.find((page) => page.href === pathname) ?? allDocsPages[0]; }, [pathname]); - // The homepage is a full-width landing page without the docs chrome. - if (pathname === "/") { + // Top-level site pages are outside the documentation chrome. + if (pathname === "/" || pathname === "/compatibility") { return null; } diff --git a/docs/src/components/docs-nav.tsx b/docs/src/components/docs-nav.tsx index 331077e60..7e93122a7 100644 --- a/docs/src/components/docs-nav.tsx +++ b/docs/src/components/docs-nav.tsx @@ -45,10 +45,13 @@ function Sidebar() { export function DocsNav({ children }: { children: React.ReactNode }) { const pathname = usePathname(); - // The homepage is a full-width landing page without the docs sidebar. + // Top-level site pages bypass the documentation sidebar and article shell. if (pathname === "/") { return
{children}
; } + if (pathname === "/compatibility") { + return
{children}
; + } return (
diff --git a/docs/src/components/header-nav.tsx b/docs/src/components/header-nav.tsx index 534435a89..aa350440f 100644 --- a/docs/src/components/header-nav.tsx +++ b/docs/src/components/header-nav.tsx @@ -8,12 +8,13 @@ import { Sheet, SheetTrigger, SheetContent, SheetTitle } from "@/components/ui/s const links = [ { name: "Home", href: "/" }, { name: "Docs", href: "/introduction" }, + { name: "Compatibility", href: "/compatibility" }, ]; function isCurrent(href: string, pathname: string): boolean { if (href === "/") return pathname === "/"; - // Docs owns every other page. - return pathname !== "/"; + if (href === "/compatibility") return pathname === "/compatibility"; + return pathname !== "/" && pathname !== "/compatibility"; } export function HeaderNav() { diff --git a/docs/src/components/node-compatibility-matrix.tsx b/docs/src/components/node-compatibility-matrix.tsx new file mode 100644 index 000000000..2720fb560 --- /dev/null +++ b/docs/src/components/node-compatibility-matrix.tsx @@ -0,0 +1,388 @@ +"use client"; +// Filter state is disposable developer UI state. Remount on Fast Refresh so +// an old search/status selection cannot make a newly generated ledger appear +// empty after an edit. +// @refresh reset + +import { useEffect, useMemo, useState } from "react"; +import compatibilityMeta from "@/generated/node-v24-compatibility-meta.json"; + +type Status = + | "supported" + | "partial" + | "refused" + | "not-implemented" + | "by-design" + | "unreviewed" + | "not-applicable"; +type VerificationBasis = + | "test-backed" + | "explicit-refusal" + | "verified-absence" + | "declared-gap" + | "registry-gap" + | "architectural-policy" + | "unreviewed" + | "not-applicable" + | "derived"; +type Verification = { label: string; detail: string }; +type Tier = { status: Status; detail: string; verification: VerificationBasis }; +type NodeStability = { index: string; level: number; text: string; inherited: boolean } | null; +type Row = { + id: string; + chapter: string; + kind: string; + name: string; + signature: string; + label: string; + apiSymbol: string; + depth: number; + scope: "api" | "documentation" | "metadata" | "configuration"; + anchor: string; + nodeStability: NodeStability; + static: Tier; + dynamic: Tier; +}; +type Chapter = { slug: string; title: string; entries: number; apiEntries: number }; +type Snapshot = { nodeVersion: string; verificationBases: Record; chapters: Chapter[]; rows: Row[] }; +type TreeNode = { row: Row; children: TreeNode[] }; +type VisibleNode = { node: TreeNode; level: number }; + +const labels: Record = { + supported: "Supported", + partial: "Partial", + refused: "Refused", + "not-implemented": "Not implemented", + "by-design": "By design", + unreviewed: "Unreviewed", + "not-applicable": "N/A", +}; + +const styles: Record = { + supported: "border-green-500/40 bg-green-100 text-green-900 dark:bg-green-200", + partial: "border-amber-500/50 bg-amber-100 text-amber-900 dark:bg-amber-200", + refused: "border-red-500/40 bg-red-100 text-red-900 dark:bg-red-200", + "not-implemented": "border-blue-500/40 bg-blue-100 text-blue-900 dark:bg-blue-200", + "by-design": "border-gray-alpha-500 bg-gray-alpha-200 text-gray-1000", + unreviewed: "border-gray-alpha-500 bg-gray-alpha-100 text-gray-900", + "not-applicable": "border-gray-alpha-400 bg-background-200 text-gray-700", +}; + +const statuses = ["supported", "partial", "not-implemented", "refused", "by-design", "unreviewed", "not-applicable"] as const; +const stabilityStyles: Record = { + 0: "border-red-500/40 bg-red-100 text-red-900 dark:bg-red-200", + 1: "border-amber-500/50 bg-amber-100 text-amber-900 dark:bg-amber-200", + 2: "border-green-500/40 bg-green-100 text-green-900 dark:bg-green-200", + 3: "border-gray-alpha-500 bg-gray-alpha-100 text-gray-900", +}; + +function StatusBadge({ status, detail, verification }: { status: Status; detail?: string; verification?: Verification }) { + const tooltip = verification ? `${detail ?? ""}${detail ? "\n\n" : ""}Verification: ${verification.label}. ${verification.detail}` : detail; + return ( + + + {labels[status]} + + {tooltip ? ( + + {detail ? {detail} : null} + {verification ? Verification: {verification.label}. {verification.detail} : null} + + ) : null} + + ); +} + +function StabilityBadge({ stability }: { stability: NodeStability }) { + if (stability === null) return ; + const detail = `Node.js Stability ${stability.index}: ${stability.text}${stability.inherited ? " (inherited from the nearest parent section)" : ""}`; + return ( + + + {stability.index} + + + {detail} + + + ); +} + +function statusCounts(rows: Row[], tier: "static" | "dynamic") { + return rows.reduce>( + (counts, row) => { + if (row.scope !== "api" || row.depth === 0) return counts; + counts[row[tier].status] += 1; + return counts; + }, + { + supported: 0, + partial: 0, + refused: 0, + "not-implemented": 0, + "by-design": 0, + unreviewed: 0, + "not-applicable": 0, + }, + ); +} + +/** Node's all.json is preorder with an explicit heading depth. */ +function buildTree(rows: Row[]): TreeNode[] { + const roots: TreeNode[] = []; + const stack: TreeNode[] = []; + for (const row of rows) { + const node: TreeNode = { row, children: [] }; + while (stack.length > row.depth) stack.pop(); + const parent = stack[row.depth - 1]; + if (row.depth === 0 || parent === undefined) roots.push(node); + else parent.children.push(node); + stack[row.depth] = node; + stack.length = row.depth + 1; + } + return roots; +} + +function filterTree(nodes: TreeNode[], matches: (row: Row) => boolean): TreeNode[] { + const filtered: TreeNode[] = []; + for (const node of nodes) { + const children = filterTree(node.children, matches); + if (matches(node.row) || children.length > 0) filtered.push({ row: node.row, children }); + } + return filtered; +} + +function flattenTree(nodes: TreeNode[], expanded: Set, forceExpanded: boolean): VisibleNode[] { + const visible: VisibleNode[] = []; + const visit = (items: TreeNode[], level: number) => { + for (const node of items) { + visible.push({ node, level }); + if (node.children.length > 0 && (forceExpanded || expanded.has(node.row.id))) { + visit(node.children, level + 1); + } + } + }; + visit(nodes, 1); + return visible; +} + +function nodeCount(nodes: TreeNode[]): number { + return nodes.reduce((count, node) => count + 1 + nodeCount(node.children), 0); +} + +function expandableIds(nodes: TreeNode[]): Set { + const ids = new Set(); + const visit = (items: TreeNode[]) => { + for (const node of items) { + if (node.children.length > 0) ids.add(node.row.id); + visit(node.children); + } + }; + visit(nodes); + return ids; +} + +function Chevron({ open }: { open: boolean }) { + return ( + + ); +} + +export function NodeCompatibilityMatrix() { + const [snapshot, setSnapshot] = useState(null); + const [loadError, setLoadError] = useState(false); + const [query, setQuery] = useState(""); + const [staticFilter, setStaticFilter] = useState<"all" | Status>("all"); + const [dynamicFilter, setDynamicFilter] = useState<"all" | Status>("all"); + const [expanded, setExpanded] = useState>(() => new Set()); + + const rows = snapshot?.rows ?? []; + const chapters = snapshot?.chapters ?? []; + const verificationBases = snapshot?.verificationBases; + const apiRowCount = useMemo(() => rows.filter((row) => row.scope === "api").length, [rows]); + const chapterTitles = useMemo(() => new Map(chapters.map((item) => [item.slug, item.title])), [chapters]); + const base = `https://nodejs.org/docs/v${snapshot?.nodeVersion ?? "24.15.0"}/api/`; + const staticCounts = useMemo(() => statusCounts(rows, "static"), [rows]); + const dynamicCounts = useMemo(() => statusCounts(rows, "dynamic"), [rows]); + const visibleStatuses = useMemo(() => statuses.filter((status) => staticCounts[status] > 0 || dynamicCounts[status] > 0), [dynamicCounts, staticCounts]); + const tree = useMemo(() => buildTree(rows), [rows]); + + useEffect(() => { + const controller = new AbortController(); + fetch(`/compatibility/data?v=${compatibilityMeta.artifactVersion}`, { cache: "no-store", signal: controller.signal }) + .then((response) => { + if (!response.ok) throw new Error(`compatibility data: ${response.status}`); + return response.json() as Promise; + }) + .then((data) => { + if (!Array.isArray(data.rows) || data.rows.length !== compatibilityMeta.rowCount) { + throw new Error(`compatibility data is stale or malformed (expected ${compatibilityMeta.rowCount} rows)`); + } + setSnapshot(data); + }) + .catch((error: unknown) => { + if ((error as { name?: string }).name !== "AbortError") setLoadError(true); + }); + return () => controller.abort(); + }, []); + + const needle = query.trim().toLocaleLowerCase(); + const hasResultFilter = needle !== "" || staticFilter !== "all" || dynamicFilter !== "all"; + const rowMatches = (row: Row) => { + if (staticFilter !== "all" && row.static.status !== staticFilter) return false; + if (dynamicFilter !== "all" && row.dynamic.status !== dynamicFilter) return false; + if (!needle) return true; + return [chapterTitles.get(row.chapter), row.kind, row.name, row.signature, row.apiSymbol, row.static.detail, row.dynamic.detail] + .join(" ") + .toLocaleLowerCase() + .includes(needle); + }; + + const resultTree = useMemo( + () => hasResultFilter ? filterTree(tree, rowMatches) : tree, + // rowMatches closes over these filter values. + // eslint-disable-next-line react-hooks/exhaustive-deps + [dynamicFilter, hasResultFilter, needle, staticFilter, tree], + ); + const visible = useMemo( + () => flattenTree(resultTree, expanded, hasResultFilter), + [expanded, hasResultFilter, resultTree], + ); + const matchedCount = useMemo( + () => hasResultFilter ? tree.reduce((count, node) => { + const visit = (item: TreeNode): number => (rowMatches(item.row) ? 1 : 0) + item.children.reduce((sum, child) => sum + visit(child), 0); + return count + visit(node); + }, 0) : nodeCount(tree), + // rowMatches closes over these filter values. + // eslint-disable-next-line react-hooks/exhaustive-deps + [dynamicFilter, hasResultFilter, needle, staticFilter, tree], + ); + + const changeQuery = (value: string) => setQuery(value); + const resetFilters = () => { + setQuery(""); + setStaticFilter("all"); + setDynamicFilter("all"); + setExpanded(new Set()); + }; + const toggle = (id: string) => setExpanded((current) => { + const next = new Set(current); + if (next.has(id)) next.delete(id); + else next.add(id); + return next; + }); + + useEffect(() => { + if (!snapshot) return; + if (staticFilter !== "all" && staticCounts[staticFilter] === 0) setStaticFilter("all"); + if (dynamicFilter !== "all" && dynamicCounts[dynamicFilter] === 0) setDynamicFilter("all"); + }, [dynamicCounts, dynamicFilter, snapshot, staticCounts, staticFilter]); + + if (loadError) { + return
The compatibility dataset could not be loaded.
; + } + if (!snapshot) { + return
Loading {compatibilityMeta.rowCount.toLocaleString()} Node.js API rows…
; + } + + return ( +
+
+
+
+

Node.js 24 Compatibility

+

Static native and dynamic island · Node {snapshot.nodeVersion}

+
+
+ + + +
+
+ {visible.length.toLocaleString()} visible · {matchedCount.toLocaleString()} {hasResultFilter ? "matching" : "API"} rows + {!hasResultFilter ? ( + + + + + ) : null} +
+
+
+ {visibleStatuses.map((status) => )} +
+
+ +
+ + + + + + {visible.map(({ node, level }) => { + const row = node.row; + const hasChildren = node.children.length > 0; + const open = hasResultFilter || expanded.has(row.id); + const href = `${base}${row.chapter}.html${row.anchor ? `#${row.anchor}` : ""}`; + const isRoot = level === 1; + const displayName = isRoot ? chapterTitles.get(row.chapter) ?? row.label : row.label; + return ( + + + + + + + ); + })} + +
Node.js API hierarchyNode stabilityStatic nativeDynamic island
+
+ {hasChildren ? ( + + ) : } +
+ + {displayName} + +
+ {row.kind}{row.apiSymbol && row.apiSymbol !== row.signature && !isRoot ? ` · ${row.apiSymbol}` : ""} +
+
+
+
+ {visible.length === 0 ? ( +
+
No API rows match these filters.
+ +
+ ) : null} +
+
+ ); +} diff --git a/docs/src/generated/node-v24-compatibility-meta.json b/docs/src/generated/node-v24-compatibility-meta.json new file mode 100644 index 000000000..5c2459ccb --- /dev/null +++ b/docs/src/generated/node-v24-compatibility-meta.json @@ -0,0 +1,7 @@ +{ + "schemaVersion": 3, + "nodeVersion": "24.15.0", + "nodeCommit": "848430679556aed0bd073f2bc263331ad84fa119", + "artifactVersion": "d2b35b13f573e422aed5", + "rowCount": 3662 +} diff --git a/docs/src/generated/node-v24-compatibility.json b/docs/src/generated/node-v24-compatibility.json new file mode 100644 index 000000000..f878908c4 --- /dev/null +++ b/docs/src/generated/node-v24-compatibility.json @@ -0,0 +1,100504 @@ +{ + "schemaVersion": 4, + "nodeVersion": "24.15.0", + "nodeTag": "v24.15.0", + "nodeCommit": "848430679556aed0bd073f2bc263331ad84fa119", + "sources": { + "allJson": { + "url": "https://nodejs.org/download/release/v24.15.0/docs/api/all.json", + "sha256": "ad66cf85ee273e20ede86b6864cc6ecd1ae6d9ea44f2011e75f4427223f7d16c" + }, + "indexMarkdown": { + "url": "https://nodejs.org/docs/v24.15.0/api/index.md", + "sha256": "616b1d2c1cd02854963db4598c5ce9dcd633464e1534830be3f55ab714e255c4" + }, + "sourceBaseUrl": "https://github.com/nodejs/node/tree/848430679556aed0bd073f2bc263331ad84fa119" + }, + "verificationBases": { + "test-backed": { + "label": "Test-backed mapping", + "detail": "Mapped to implementation and relevant repository tests; evidence may cover an API family rather than every documented overload." + }, + "explicit-refusal": { + "label": "Explicit refusal", + "detail": "Backed by a named compiler refusal or an explicit dynamic throwing or rejecting stub." + }, + "verified-absence": { + "label": "Verified absence", + "detail": "A runtime presence test confirms that this API is absent." + }, + "declared-gap": { + "label": "Declared gap", + "detail": "The implementation-owned compatibility manifest explicitly records this API family or feature as not implemented." + }, + "registry-gap": { + "label": "Registry gap", + "detail": "No implementation registry entry matched this Node API; verify the gap before starting implementation." + }, + "architectural-policy": { + "label": "Architectural policy", + "detail": "An implementation-owned policy intentionally excludes this API from the execution tier." + }, + "unreviewed": { + "label": "Unreviewed", + "detail": "No compatibility subsystem owns a reliable classification yet." + }, + "not-applicable": { + "label": "Not applicable", + "detail": "This entry is documentation, configuration, or an execution model that does not map to the tier." + }, + "derived": { + "label": "Derived summary", + "detail": "Computed from the exact descendant API rows rather than asserted independently." + } + }, + "inventory": { + "sourceChapters": 62, + "sourceRows": 4690, + "matrixChapters": 55, + "matrixRows": 3662, + "excluded": { + "documentation": 564, + "metadata": 207, + "configuration": 242, + "non-api": 0, + "not-applicable": 8, + "chapters": 7 + } + }, + "chapters": [ + { + "slug": "assert", + "title": "Assertion testing", + "entries": 29, + "apiEntries": 29, + "static": { + "supported": 0, + "partial": 15, + "refused": 6, + "not-implemented": 8, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 20, + "refused": 0, + "not-implemented": 9, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "async_context", + "title": "Asynchronous context tracking", + "entries": 17, + "apiEntries": 17, + "static": { + "supported": 0, + "partial": 7, + "refused": 0, + "not-implemented": 10, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 15, + "refused": 0, + "not-implemented": 2, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "async_hooks", + "title": "Async hooks", + "entries": 20, + "apiEntries": 20, + "static": { + "supported": 0, + "partial": 4, + "refused": 0, + "not-implemented": 16, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 8, + "refused": 0, + "not-implemented": 12, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "buffer", + "title": "Buffer", + "entries": 98, + "apiEntries": 98, + "static": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 98, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 76, + "refused": 0, + "not-implemented": 22, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "addons", + "title": "C++ addons", + "entries": 3, + "apiEntries": 3, + "static": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 0, + "by-design": 3, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 0, + "by-design": 3, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "n-api", + "title": "C/C++ addons with Node-API", + "entries": 191, + "apiEntries": 191, + "static": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 0, + "by-design": 191, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 0, + "by-design": 191, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "child_process", + "title": "Child processes", + "entries": 39, + "apiEntries": 39, + "static": { + "supported": 0, + "partial": 5, + "refused": 1, + "not-implemented": 33, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 0, + "refused": 7, + "not-implemented": 32, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "cluster", + "title": "Cluster", + "entries": 34, + "apiEntries": 34, + "static": { + "supported": 0, + "partial": 4, + "refused": 0, + "not-implemented": 30, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 34, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "console", + "title": "Console", + "entries": 24, + "apiEntries": 24, + "static": { + "supported": 0, + "partial": 6, + "refused": 0, + "not-implemented": 18, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 18, + "refused": 0, + "not-implemented": 6, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "crypto", + "title": "Crypto", + "entries": 145, + "apiEntries": 145, + "static": { + "supported": 0, + "partial": 3, + "refused": 35, + "not-implemented": 107, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 28, + "refused": 34, + "not-implemented": 83, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "diagnostics_channel", + "title": "Diagnostics Channel", + "entries": 69, + "apiEntries": 69, + "static": { + "supported": 0, + "partial": 8, + "refused": 0, + "not-implemented": 61, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 14, + "refused": 0, + "not-implemented": 55, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "dns", + "title": "DNS", + "entries": 51, + "apiEntries": 51, + "static": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 51, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 5, + "refused": 13, + "not-implemented": 33, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "domain", + "title": "Domain", + "entries": 12, + "apiEntries": 12, + "static": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 12, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 10, + "refused": 0, + "not-implemented": 2, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "environment_variables", + "title": "Environment Variables", + "entries": 2, + "apiEntries": 2, + "static": { + "supported": 0, + "partial": 2, + "refused": 0, + "not-implemented": 0, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 2, + "refused": 0, + "not-implemented": 0, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "errors", + "title": "Errors", + "entries": 461, + "apiEntries": 461, + "static": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 461, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 461, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "events", + "title": "Events", + "entries": 78, + "apiEntries": 78, + "static": { + "supported": 0, + "partial": 22, + "refused": 0, + "not-implemented": 56, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 25, + "refused": 0, + "not-implemented": 53, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "fs", + "title": "File system", + "entries": 276, + "apiEntries": 276, + "static": { + "supported": 0, + "partial": 38, + "refused": 0, + "not-implemented": 238, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 78, + "refused": 10, + "not-implemented": 188, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "globals", + "title": "Globals", + "entries": 92, + "apiEntries": 92, + "static": { + "supported": 0, + "partial": 8, + "refused": 0, + "not-implemented": 84, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 33, + "refused": 0, + "not-implemented": 59, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "http", + "title": "HTTP", + "entries": 174, + "apiEntries": 174, + "static": { + "supported": 0, + "partial": 24, + "refused": 0, + "not-implemented": 150, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 22, + "refused": 2, + "not-implemented": 150, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "http2", + "title": "HTTP/2", + "entries": 167, + "apiEntries": 167, + "static": { + "supported": 0, + "partial": 14, + "refused": 2, + "not-implemented": 151, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 167, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "https", + "title": "HTTPS", + "entries": 20, + "apiEntries": 20, + "static": { + "supported": 0, + "partial": 12, + "refused": 0, + "not-implemented": 8, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 7, + "refused": 2, + "not-implemented": 11, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "inspector", + "title": "Inspector", + "entries": 30, + "apiEntries": 30, + "static": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 30, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 30, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "modules", + "title": "Modules: CommonJS modules", + "entries": 27, + "apiEntries": 27, + "static": { + "supported": 0, + "partial": 13, + "refused": 0, + "not-implemented": 11, + "by-design": 0, + "unreviewed": 3, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 18, + "refused": 0, + "not-implemented": 9, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "esm", + "title": "Modules: ECMAScript modules", + "entries": 22, + "apiEntries": 22, + "static": { + "supported": 0, + "partial": 7, + "refused": 0, + "not-implemented": 14, + "by-design": 0, + "unreviewed": 1, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 8, + "refused": 0, + "not-implemented": 14, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "module", + "title": "Modules: node:module API", + "entries": 30, + "apiEntries": 30, + "static": { + "supported": 0, + "partial": 0, + "refused": 3, + "not-implemented": 27, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 6, + "refused": 2, + "not-implemented": 22, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "packages", + "title": "Modules: Packages", + "entries": 8, + "apiEntries": 8, + "static": { + "supported": 0, + "partial": 8, + "refused": 0, + "not-implemented": 0, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 8, + "refused": 0, + "not-implemented": 0, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "typescript", + "title": "Modules: TypeScript", + "entries": 2, + "apiEntries": 2, + "static": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 2, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 2, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "net", + "title": "Net", + "entries": 100, + "apiEntries": 100, + "static": { + "supported": 0, + "partial": 34, + "refused": 0, + "not-implemented": 66, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 4, + "refused": 11, + "not-implemented": 85, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "os", + "title": "OS", + "entries": 24, + "apiEntries": 24, + "static": { + "supported": 0, + "partial": 10, + "refused": 0, + "not-implemented": 14, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 21, + "refused": 0, + "not-implemented": 3, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "path", + "title": "Path", + "entries": 17, + "apiEntries": 17, + "static": { + "supported": 0, + "partial": 14, + "refused": 0, + "not-implemented": 3, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 16, + "refused": 0, + "not-implemented": 1, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "perf_hooks", + "title": "Performance hooks", + "entries": 96, + "apiEntries": 96, + "static": { + "supported": 0, + "partial": 2, + "refused": 0, + "not-implemented": 94, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 16, + "refused": 0, + "not-implemented": 80, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "permissions", + "title": "Permissions", + "entries": 3, + "apiEntries": 3, + "static": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 3, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 3, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "process", + "title": "Process", + "entries": 119, + "apiEntries": 119, + "static": { + "supported": 0, + "partial": 19, + "refused": 0, + "not-implemented": 100, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 29, + "refused": 0, + "not-implemented": 90, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "punycode", + "title": "Punycode", + "entries": 9, + "apiEntries": 9, + "static": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 9, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 7, + "refused": 0, + "not-implemented": 2, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "querystring", + "title": "Query strings", + "entries": 7, + "apiEntries": 7, + "static": { + "supported": 0, + "partial": 7, + "refused": 0, + "not-implemented": 0, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 7, + "refused": 0, + "not-implemented": 0, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "readline", + "title": "Readline", + "entries": 43, + "apiEntries": 43, + "static": { + "supported": 0, + "partial": 3, + "refused": 0, + "not-implemented": 40, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 17, + "refused": 0, + "not-implemented": 26, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "repl", + "title": "REPL", + "entries": 14, + "apiEntries": 14, + "static": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 14, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 14, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "sqlite", + "title": "SQLite", + "entries": 48, + "apiEntries": 48, + "static": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 48, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 48, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "stream", + "title": "Stream", + "entries": 137, + "apiEntries": 137, + "static": { + "supported": 0, + "partial": 31, + "refused": 0, + "not-implemented": 106, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 46, + "refused": 1, + "not-implemented": 90, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "string_decoder", + "title": "String decoder", + "entries": 4, + "apiEntries": 4, + "static": { + "supported": 0, + "partial": 4, + "refused": 0, + "not-implemented": 0, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 4, + "refused": 0, + "not-implemented": 0, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "test", + "title": "Test runner", + "entries": 105, + "apiEntries": 105, + "static": { + "supported": 0, + "partial": 21, + "refused": 0, + "not-implemented": 84, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 105, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "timers", + "title": "Timers", + "entries": 25, + "apiEntries": 25, + "static": { + "supported": 0, + "partial": 18, + "refused": 0, + "not-implemented": 7, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 10, + "refused": 0, + "not-implemented": 15, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "tls", + "title": "TLS/SSL", + "entries": 64, + "apiEntries": 64, + "static": { + "supported": 0, + "partial": 7, + "refused": 4, + "not-implemented": 53, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 2, + "refused": 6, + "not-implemented": 56, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "tracing", + "title": "Trace events", + "entries": 9, + "apiEntries": 9, + "static": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 9, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 9, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "tty", + "title": "TTY", + "entries": 18, + "apiEntries": 18, + "static": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 18, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 4, + "refused": 0, + "not-implemented": 14, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "dgram", + "title": "UDP/datagram", + "entries": 36, + "apiEntries": 36, + "static": { + "supported": 0, + "partial": 12, + "refused": 0, + "not-implemented": 24, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 36, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "url", + "title": "URL", + "entries": 62, + "apiEntries": 62, + "static": { + "supported": 0, + "partial": 3, + "refused": 0, + "not-implemented": 59, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 30, + "refused": 0, + "not-implemented": 32, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "util", + "title": "Utilities", + "entries": 105, + "apiEntries": 105, + "static": { + "supported": 0, + "partial": 4, + "refused": 1, + "not-implemented": 100, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 67, + "refused": 0, + "not-implemented": 38, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "v8", + "title": "V8", + "entries": 68, + "apiEntries": 68, + "static": { + "supported": 0, + "partial": 3, + "refused": 0, + "not-implemented": 0, + "by-design": 65, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 10, + "refused": 12, + "not-implemented": 46, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "vm", + "title": "VM", + "entries": 41, + "apiEntries": 41, + "static": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 0, + "by-design": 41, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 0, + "by-design": 41, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "wasi", + "title": "WASI", + "entries": 7, + "apiEntries": 7, + "static": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 0, + "by-design": 7, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 0, + "by-design": 7, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "webcrypto", + "title": "Web Crypto API", + "entries": 148, + "apiEntries": 148, + "static": { + "supported": 0, + "partial": 2, + "refused": 9, + "not-implemented": 137, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 13, + "refused": 0, + "not-implemented": 135, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "webstreams", + "title": "Web Streams API", + "entries": 88, + "apiEntries": 88, + "static": { + "supported": 0, + "partial": 2, + "refused": 2, + "not-implemented": 84, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 4, + "refused": 0, + "not-implemented": 84, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "worker_threads", + "title": "Worker threads", + "entries": 66, + "apiEntries": 66, + "static": { + "supported": 0, + "partial": 4, + "refused": 0, + "not-implemented": 62, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 21, + "refused": 1, + "not-implemented": 44, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "zlib", + "title": "Zlib", + "entries": 78, + "apiEntries": 78, + "static": { + "supported": 0, + "partial": 5, + "refused": 10, + "not-implemented": 63, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 55, + "refused": 0, + "not-implemented": 23, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + } + ], + "rows": [ + { + "id": "assert:cb7bd39949d3", + "chapter": "assert", + "kind": "module", + "name": "assert", + "signature": "Assert", + "label": "Assert", + "apiSymbol": "assert", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + }, + "dynamic": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + } + }, + { + "id": "assert:fdb8010c6379", + "chapter": "assert", + "kind": "class", + "name": "assert.AssertionError", + "signature": "Class: `assert.AssertionError`", + "label": "assert.AssertionError", + "apiSymbol": "assert.AssertionError", + "depth": 1, + "scope": "api", + "anchor": "class-assertassertionerror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "assert:d4e5053210e6", + "chapter": "assert", + "kind": "class", + "name": "assert.Assert", + "signature": "Class: `assert.Assert`", + "label": "assert.Assert", + "apiSymbol": "assert.Assert", + "depth": 1, + "scope": "api", + "anchor": "class-assertassert", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "assert:403fea8dcb8f", + "chapter": "assert", + "kind": "class", + "name": "assert.CallTracker", + "signature": "Class: `assert.CallTracker`", + "label": "assert.CallTracker", + "apiSymbol": "assert.CallTracker", + "depth": 1, + "scope": "api", + "anchor": "class-assertcalltracker", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "assert:576b9d6d6ec2", + "chapter": "assert", + "kind": "method", + "name": "calls", + "signature": "`tracker.calls([fn][, exact])`", + "label": "tracker.calls([fn][, exact])", + "apiSymbol": "tracker.calls", + "depth": 2, + "scope": "api", + "anchor": "trackercallsfn-exact", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "assert:055d28894b6f", + "chapter": "assert", + "kind": "method", + "name": "getCalls", + "signature": "`tracker.getCalls(fn)`", + "label": "tracker.getCalls(fn)", + "apiSymbol": "tracker.getCalls", + "depth": 2, + "scope": "api", + "anchor": "trackergetcallsfn", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "assert:8461e0b4cece", + "chapter": "assert", + "kind": "method", + "name": "report", + "signature": "`tracker.report()`", + "label": "tracker.report()", + "apiSymbol": "tracker.report", + "depth": 2, + "scope": "api", + "anchor": "trackerreport", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "assert:5b731bc1c035", + "chapter": "assert", + "kind": "method", + "name": "reset", + "signature": "`tracker.reset([fn])`", + "label": "tracker.reset([fn])", + "apiSymbol": "tracker.reset", + "depth": 2, + "scope": "api", + "anchor": "trackerresetfn", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "assert:7d1be65a4f04", + "chapter": "assert", + "kind": "method", + "name": "verify", + "signature": "`tracker.verify()`", + "label": "tracker.verify()", + "apiSymbol": "tracker.verify", + "depth": 2, + "scope": "api", + "anchor": "trackerverify", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "assert:47b140441b19", + "chapter": "assert", + "kind": "method", + "name": "assert", + "signature": "`assert(value[, message])`", + "label": "assert(value[, message])", + "apiSymbol": "assert", + "depth": 1, + "scope": "api", + "anchor": "assertvalue-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "assert:b99ea75ee6b8", + "chapter": "assert", + "kind": "method", + "name": "deepEqual", + "signature": "`assert.deepEqual(actual, expected[, message])`", + "label": "assert.deepEqual(actual, expected[, message])", + "apiSymbol": "assert.deepEqual", + "depth": 1, + "scope": "api", + "anchor": "assertdeepequalactual-expected-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "assert:7a6ba7d551e3", + "chapter": "assert", + "kind": "method", + "name": "deepStrictEqual", + "signature": "`assert.deepStrictEqual(actual, expected[, message])`", + "label": "assert.deepStrictEqual(actual, expected[, message])", + "apiSymbol": "assert.deepStrictEqual", + "depth": 1, + "scope": "api", + "anchor": "assertdeepstrictequalactual-expected-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "assert:06bab895dd75", + "chapter": "assert", + "kind": "method", + "name": "doesNotMatch", + "signature": "`assert.doesNotMatch(string, regexp[, message])`", + "label": "assert.doesNotMatch(string, regexp[, message])", + "apiSymbol": "assert.doesNotMatch", + "depth": 1, + "scope": "api", + "anchor": "assertdoesnotmatchstring-regexp-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "assert:f50eba13de65", + "chapter": "assert", + "kind": "method", + "name": "doesNotReject", + "signature": "`assert.doesNotReject(asyncFn[, error][, message])`", + "label": "assert.doesNotReject(asyncFn[, error][, message])", + "apiSymbol": "assert.doesNotReject", + "depth": 1, + "scope": "api", + "anchor": "assertdoesnotrejectasyncfn-error-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "assert:8e8ad2dfb66c", + "chapter": "assert", + "kind": "method", + "name": "doesNotThrow", + "signature": "`assert.doesNotThrow(fn[, error][, message])`", + "label": "assert.doesNotThrow(fn[, error][, message])", + "apiSymbol": "assert.doesNotThrow", + "depth": 1, + "scope": "api", + "anchor": "assertdoesnotthrowfn-error-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "assert:137b161ac3fb", + "chapter": "assert", + "kind": "method", + "name": "equal", + "signature": "`assert.equal(actual, expected[, message])`", + "label": "assert.equal(actual, expected[, message])", + "apiSymbol": "assert.equal", + "depth": 1, + "scope": "api", + "anchor": "assertequalactual-expected-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "assert:2c80d261696a", + "chapter": "assert", + "kind": "method", + "name": "fail", + "signature": "`assert.fail([message])`", + "label": "assert.fail([message])", + "apiSymbol": "assert.fail", + "depth": 1, + "scope": "api", + "anchor": "assertfailmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "assert:9b189cd0bab6", + "chapter": "assert", + "kind": "method", + "name": "fail", + "signature": "`assert.fail(actual, expected[, message[, operator[, stackStartFn]]])`", + "label": "assert.fail(actual, expected[, message[, operator[, stackStartFn]]])", + "apiSymbol": "assert.fail", + "depth": 1, + "scope": "api", + "anchor": "assertfailactual-expected-message-operator-stackstartfn", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Use `assert.fail([message])` or other assert functions instead.", + "inherited": false + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "assert:ddfa5d48c175", + "chapter": "assert", + "kind": "method", + "name": "ifError", + "signature": "`assert.ifError(value)`", + "label": "assert.ifError(value)", + "apiSymbol": "assert.ifError", + "depth": 1, + "scope": "api", + "anchor": "assertiferrorvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "assert:4ce54067ce1b", + "chapter": "assert", + "kind": "method", + "name": "match", + "signature": "`assert.match(string, regexp[, message])`", + "label": "assert.match(string, regexp[, message])", + "apiSymbol": "assert.match", + "depth": 1, + "scope": "api", + "anchor": "assertmatchstring-regexp-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "assert:1b5f04efb0ab", + "chapter": "assert", + "kind": "method", + "name": "notDeepEqual", + "signature": "`assert.notDeepEqual(actual, expected[, message])`", + "label": "assert.notDeepEqual(actual, expected[, message])", + "apiSymbol": "assert.notDeepEqual", + "depth": 1, + "scope": "api", + "anchor": "assertnotdeepequalactual-expected-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "assert:980f8d1bb511", + "chapter": "assert", + "kind": "method", + "name": "notDeepStrictEqual", + "signature": "`assert.notDeepStrictEqual(actual, expected[, message])`", + "label": "assert.notDeepStrictEqual(actual, expected[, message])", + "apiSymbol": "assert.notDeepStrictEqual", + "depth": 1, + "scope": "api", + "anchor": "assertnotdeepstrictequalactual-expected-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "assert:3acc79b323ad", + "chapter": "assert", + "kind": "method", + "name": "notEqual", + "signature": "`assert.notEqual(actual, expected[, message])`", + "label": "assert.notEqual(actual, expected[, message])", + "apiSymbol": "assert.notEqual", + "depth": 1, + "scope": "api", + "anchor": "assertnotequalactual-expected-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "assert:758353e2aa36", + "chapter": "assert", + "kind": "method", + "name": "notStrictEqual", + "signature": "`assert.notStrictEqual(actual, expected[, message])`", + "label": "assert.notStrictEqual(actual, expected[, message])", + "apiSymbol": "assert.notStrictEqual", + "depth": 1, + "scope": "api", + "anchor": "assertnotstrictequalactual-expected-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "assert:4a44441f61a7", + "chapter": "assert", + "kind": "method", + "name": "ok", + "signature": "`assert.ok(value[, message])`", + "label": "assert.ok(value[, message])", + "apiSymbol": "assert.ok", + "depth": 1, + "scope": "api", + "anchor": "assertokvalue-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "assert:5e1e54b4c5d7", + "chapter": "assert", + "kind": "method", + "name": "rejects", + "signature": "`assert.rejects(asyncFn[, error][, message])`", + "label": "assert.rejects(asyncFn[, error][, message])", + "apiSymbol": "assert.rejects", + "depth": 1, + "scope": "api", + "anchor": "assertrejectsasyncfn-error-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "assert:8937227848eb", + "chapter": "assert", + "kind": "method", + "name": "strictEqual", + "signature": "`assert.strictEqual(actual, expected[, message])`", + "label": "assert.strictEqual(actual, expected[, message])", + "apiSymbol": "assert.strictEqual", + "depth": 1, + "scope": "api", + "anchor": "assertstrictequalactual-expected-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "assert:dd9addafdc8b", + "chapter": "assert", + "kind": "method", + "name": "throws", + "signature": "`assert.throws(fn[, error][, message])`", + "label": "assert.throws(fn[, error][, message])", + "apiSymbol": "assert.throws", + "depth": 1, + "scope": "api", + "anchor": "assertthrowsfn-error-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "assert:263d8a46f9e7", + "chapter": "assert", + "kind": "method", + "name": "partialDeepStrictEqual", + "signature": "`assert.partialDeepStrictEqual(actual, expected[, message])`", + "label": "assert.partialDeepStrictEqual(actual, expected[, message])", + "apiSymbol": "assert.partialDeepStrictEqual", + "depth": 1, + "scope": "api", + "anchor": "assertpartialdeepstrictequalactual-expected-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "async_context:21102be5718e", + "chapter": "async_context", + "kind": "module", + "name": "asynchronous_context_tracking", + "signature": "Asynchronous context tracking", + "label": "Asynchronous context tracking", + "apiSymbol": "asynchronous_context_tracking", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + }, + "dynamic": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + } + }, + { + "id": "async_context:411b8aa75166", + "chapter": "async_context", + "kind": "class", + "name": "AsyncLocalStorage", + "signature": "Class: `AsyncLocalStorage`", + "label": "AsyncLocalStorage", + "apiSymbol": "AsyncLocalStorage", + "depth": 1, + "scope": "api", + "anchor": "class-asynclocalstorage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "async_context:830769f9f94c", + "chapter": "async_context", + "kind": "module", + "name": "usage_with_`async/await`", + "signature": "Usage with `async/await`", + "label": "Usage with async/await", + "apiSymbol": "async/await", + "depth": 2, + "scope": "api", + "anchor": "usage-with-asyncawait", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "async_context:b6256a3e7833", + "chapter": "async_context", + "kind": "method", + "name": "disable", + "signature": "`asyncLocalStorage.disable()`", + "label": "asyncLocalStorage.disable()", + "apiSymbol": "asyncLocalStorage.disable", + "depth": 2, + "scope": "api", + "anchor": "asynclocalstoragedisable", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "async_context:74eb723c17ad", + "chapter": "async_context", + "kind": "method", + "name": "getStore", + "signature": "`asyncLocalStorage.getStore()`", + "label": "asyncLocalStorage.getStore()", + "apiSymbol": "asyncLocalStorage.getStore", + "depth": 2, + "scope": "api", + "anchor": "asynclocalstoragegetstore", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "async_context:aaa94766e686", + "chapter": "async_context", + "kind": "method", + "name": "enterWith", + "signature": "`asyncLocalStorage.enterWith(store)`", + "label": "asyncLocalStorage.enterWith(store)", + "apiSymbol": "asyncLocalStorage.enterWith", + "depth": 2, + "scope": "api", + "anchor": "asynclocalstorageenterwithstore", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "async_context:619db3b1a0c9", + "chapter": "async_context", + "kind": "method", + "name": "run", + "signature": "`asyncLocalStorage.run(store, callback[, ...args])`", + "label": "asyncLocalStorage.run(store, callback[, ...args])", + "apiSymbol": "asyncLocalStorage.run", + "depth": 2, + "scope": "api", + "anchor": "asynclocalstoragerunstore-callback-args", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "async_context:7ce346a66348", + "chapter": "async_context", + "kind": "method", + "name": "exit", + "signature": "`asyncLocalStorage.exit(callback[, ...args])`", + "label": "asyncLocalStorage.exit(callback[, ...args])", + "apiSymbol": "asyncLocalStorage.exit", + "depth": 2, + "scope": "api", + "anchor": "asynclocalstorageexitcallback-args", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "async_context:c3f9e759e7a3", + "chapter": "async_context", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string}", + "label": "name", + "apiSymbol": "name", + "depth": 2, + "scope": "api", + "anchor": "class-asynclocalstorage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "async_context:509d8ed918da", + "chapter": "async_context", + "kind": "class", + "name": "AsyncResource", + "signature": "Class: `AsyncResource`", + "label": "AsyncResource", + "apiSymbol": "AsyncResource", + "depth": 1, + "scope": "api", + "anchor": "class-asyncresource", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "async_context:2df063cd33de", + "chapter": "async_context", + "kind": "module", + "name": "using_`asyncresource`_for_a_`worker`_thread_pool", + "signature": "Using `AsyncResource` for a `Worker` thread pool", + "label": "Using AsyncResource for a Worker thread pool", + "apiSymbol": "AsyncResource", + "depth": 2, + "scope": "api", + "anchor": "using-asyncresource-for-a-worker-thread-pool", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "async_context:f9a222d2f454", + "chapter": "async_context", + "kind": "module", + "name": "integrating_`asyncresource`_with_`eventemitter`", + "signature": "Integrating `AsyncResource` with `EventEmitter`", + "label": "Integrating AsyncResource with EventEmitter", + "apiSymbol": "AsyncResource", + "depth": 2, + "scope": "api", + "anchor": "integrating-asyncresource-with-eventemitter", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "async_context:d5d7e15685dc", + "chapter": "async_context", + "kind": "method", + "name": "bind", + "signature": "`asyncResource.bind(fn[, thisArg])`", + "label": "asyncResource.bind(fn[, thisArg])", + "apiSymbol": "asyncResource.bind", + "depth": 2, + "scope": "api", + "anchor": "asyncresourcebindfn-thisarg", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "async_context:8beab6827887", + "chapter": "async_context", + "kind": "method", + "name": "runInAsyncScope", + "signature": "`asyncResource.runInAsyncScope(fn[, thisArg, ...args])`", + "label": "asyncResource.runInAsyncScope(fn[, thisArg, ...args])", + "apiSymbol": "asyncResource.runInAsyncScope", + "depth": 2, + "scope": "api", + "anchor": "asyncresourceruninasyncscopefn-thisarg-args", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "async_context:b63525644b2e", + "chapter": "async_context", + "kind": "method", + "name": "emitDestroy", + "signature": "`asyncResource.emitDestroy()`", + "label": "asyncResource.emitDestroy()", + "apiSymbol": "asyncResource.emitDestroy", + "depth": 2, + "scope": "api", + "anchor": "asyncresourceemitdestroy", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "async_context:d8c00a701ae0", + "chapter": "async_context", + "kind": "method", + "name": "asyncId", + "signature": "`asyncResource.asyncId()`", + "label": "asyncResource.asyncId()", + "apiSymbol": "asyncResource.asyncId", + "depth": 2, + "scope": "api", + "anchor": "asyncresourceasyncid", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "async_context:53501aab7077", + "chapter": "async_context", + "kind": "method", + "name": "triggerAsyncId", + "signature": "`asyncResource.triggerAsyncId()`", + "label": "asyncResource.triggerAsyncId()", + "apiSymbol": "asyncResource.triggerAsyncId", + "depth": 2, + "scope": "api", + "anchor": "asyncresourcetriggerasyncid", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "async_hooks:dbf34447d25a", + "chapter": "async_hooks", + "kind": "module", + "name": "async_hooks", + "signature": "Async hooks", + "label": "Async hooks", + "apiSymbol": "async_hooks", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": false + }, + "static": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + }, + "dynamic": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + } + }, + { + "id": "async_hooks:782c2669a547", + "chapter": "async_hooks", + "kind": "class", + "name": "AsyncResource", + "signature": "Class: `AsyncResource`", + "label": "AsyncResource", + "apiSymbol": "AsyncResource", + "depth": 1, + "scope": "api", + "anchor": "class-asyncresource", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "async_hooks:c82d15734e04", + "chapter": "async_hooks", + "kind": "class", + "name": "AsyncHook", + "signature": "Class: `AsyncHook`", + "label": "AsyncHook", + "apiSymbol": "AsyncHook", + "depth": 1, + "scope": "api", + "anchor": "class-asynchook", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "async_hooks:6dd6e1d9f328", + "chapter": "async_hooks", + "kind": "method", + "name": "init", + "signature": "`init(asyncId, type, triggerAsyncId, resource)`", + "label": "init(asyncId, type, triggerAsyncId, resource)", + "apiSymbol": "init", + "depth": 2, + "scope": "api", + "anchor": "initasyncid-type-triggerasyncid-resource", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "async_hooks:5d0343e7f846", + "chapter": "async_hooks", + "kind": "module", + "name": "`type`", + "signature": "`type`", + "label": "type", + "apiSymbol": "type", + "depth": 3, + "scope": "api", + "anchor": "type", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "async_hooks:77df2207bbc0", + "chapter": "async_hooks", + "kind": "module", + "name": "`triggerasyncid`", + "signature": "`triggerAsyncId`", + "label": "triggerAsyncId", + "apiSymbol": "triggerAsyncId", + "depth": 3, + "scope": "api", + "anchor": "triggerasyncid", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "async_hooks:2553d2211150", + "chapter": "async_hooks", + "kind": "module", + "name": "`resource`", + "signature": "`resource`", + "label": "resource", + "apiSymbol": "resource", + "depth": 3, + "scope": "api", + "anchor": "resource", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "async_hooks:9055066129e3", + "chapter": "async_hooks", + "kind": "method", + "name": "before", + "signature": "`before(asyncId)`", + "label": "before(asyncId)", + "apiSymbol": "before", + "depth": 2, + "scope": "api", + "anchor": "beforeasyncid", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "async_hooks:be16de62bff8", + "chapter": "async_hooks", + "kind": "method", + "name": "after", + "signature": "`after(asyncId)`", + "label": "after(asyncId)", + "apiSymbol": "after", + "depth": 2, + "scope": "api", + "anchor": "afterasyncid", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "async_hooks:5ce245f9e752", + "chapter": "async_hooks", + "kind": "method", + "name": "destroy", + "signature": "`destroy(asyncId)`", + "label": "destroy(asyncId)", + "apiSymbol": "destroy", + "depth": 2, + "scope": "api", + "anchor": "destroyasyncid", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "async_hooks:8e9ee9d50fee", + "chapter": "async_hooks", + "kind": "method", + "name": "promiseResolve", + "signature": "`promiseResolve(asyncId)`", + "label": "promiseResolve(asyncId)", + "apiSymbol": "promiseResolve", + "depth": 2, + "scope": "api", + "anchor": "promiseresolveasyncid", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "async_hooks:8ab802a152e6", + "chapter": "async_hooks", + "kind": "method", + "name": "enable", + "signature": "`asyncHook.enable()`", + "label": "asyncHook.enable()", + "apiSymbol": "asyncHook.enable", + "depth": 2, + "scope": "api", + "anchor": "asynchookenable", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "async_hooks:1a49af7bfe20", + "chapter": "async_hooks", + "kind": "method", + "name": "disable", + "signature": "`asyncHook.disable()`", + "label": "asyncHook.disable()", + "apiSymbol": "asyncHook.disable", + "depth": 2, + "scope": "api", + "anchor": "asynchookdisable", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "async_hooks:1d1a013c7220", + "chapter": "async_hooks", + "kind": "method", + "name": "executionAsyncResource", + "signature": "`async_hooks.executionAsyncResource()`", + "label": "async_hooks.executionAsyncResource()", + "apiSymbol": "async_hooks.executionAsyncResource", + "depth": 2, + "scope": "api", + "anchor": "async_hooksexecutionasyncresource", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "async_hooks:816820b65a84", + "chapter": "async_hooks", + "kind": "method", + "name": "executionAsyncId", + "signature": "`async_hooks.executionAsyncId()`", + "label": "async_hooks.executionAsyncId()", + "apiSymbol": "async_hooks.executionAsyncId", + "depth": 2, + "scope": "api", + "anchor": "async_hooksexecutionasyncid", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "async_hooks:0adfc9f2569a", + "chapter": "async_hooks", + "kind": "method", + "name": "triggerAsyncId", + "signature": "`async_hooks.triggerAsyncId()`", + "label": "async_hooks.triggerAsyncId()", + "apiSymbol": "async_hooks.triggerAsyncId", + "depth": 2, + "scope": "api", + "anchor": "async_hookstriggerasyncid", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "async_hooks:6576b1af07e3", + "chapter": "async_hooks", + "kind": "section", + "name": "return", + "signature": "`asyncWrapProviders` Returns: A map of provider types to the corresponding numeric id. This map contains all the event types that might be emitted by the `async_hooks.init()` event.", + "label": "asyncWrapProviders", + "apiSymbol": "asyncWrapProviders", + "depth": 2, + "scope": "api", + "anchor": "class-asynchook", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "async_hooks:f9d106409989", + "chapter": "async_hooks", + "kind": "class", + "name": "AsyncLocalStorage", + "signature": "Class: `AsyncLocalStorage`", + "label": "AsyncLocalStorage", + "apiSymbol": "AsyncLocalStorage", + "depth": 1, + "scope": "api", + "anchor": "class-asynclocalstorage", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "async_hooks:d7f3af6be1fb", + "chapter": "async_hooks", + "kind": "method", + "name": "createHook", + "signature": "`async_hooks.createHook(options)`", + "label": "async_hooks.createHook(options)", + "apiSymbol": "async_hooks.createHook", + "depth": 1, + "scope": "api", + "anchor": "async_hookscreatehookoptions", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "async_hooks:6898b0e4be97", + "chapter": "async_hooks", + "kind": "module", + "name": "printing_in_`asynchook`_callbacks", + "signature": "Printing in `AsyncHook` callbacks", + "label": "Printing in AsyncHook callbacks", + "apiSymbol": "AsyncHook", + "depth": 2, + "scope": "api", + "anchor": "printing-in-asynchook-callbacks", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "buffer:797a74ac3a0f", + "chapter": "buffer", + "kind": "module", + "name": "buffer", + "signature": "Buffer", + "label": "Buffer", + "apiSymbol": "buffer", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + }, + "dynamic": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + } + }, + { + "id": "buffer:1e26176db21e", + "chapter": "buffer", + "kind": "module", + "name": "buffer_methods_are_callable_with_`uint8array`_instances", + "signature": "Buffer methods are callable with `Uint8Array` instances", + "label": "Buffer methods are callable with Uint8Array instances", + "apiSymbol": "Uint8Array", + "depth": 1, + "scope": "api", + "anchor": "buffer-methods-are-callable-with-uint8array-instances", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "buffer:f7837133ce51", + "chapter": "buffer", + "kind": "module", + "name": "`node:buffer`_module_apis", + "signature": "`node:buffer` module APIs", + "label": "node:buffer", + "apiSymbol": "node:buffer", + "depth": 1, + "scope": "api", + "anchor": "nodebuffer-module-apis", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "buffer:4ac5c665f147", + "chapter": "buffer", + "kind": "integer", + "name": "Type", + "signature": "`MAX_LENGTH` Type: {integer} The largest size allowed for a single `Buffer` instance.", + "label": "MAX_LENGTH", + "apiSymbol": "MAX_LENGTH", + "depth": 2, + "scope": "api", + "anchor": "buffer-constants", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "buffer:f1690b6c126d", + "chapter": "buffer", + "kind": "integer", + "name": "Type", + "signature": "`MAX_STRING_LENGTH` Type: {integer} The largest length allowed for a single `string` instance.", + "label": "MAX_STRING_LENGTH", + "apiSymbol": "MAX_STRING_LENGTH", + "depth": 2, + "scope": "api", + "anchor": "buffer-constants", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "buffer:49de2a6fccce", + "chapter": "buffer", + "kind": "class", + "name": "SlowBuffer", + "signature": "Class: `SlowBuffer`", + "label": "SlowBuffer", + "apiSymbol": "SlowBuffer", + "depth": 2, + "scope": "api", + "anchor": "class-slowbuffer", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Use [`Buffer.allocUnsafeSlow()`][] instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "buffer:057c8995c3ab", + "chapter": "buffer", + "kind": "method", + "name": "atob", + "signature": "`buffer.atob(data)`", + "label": "buffer.atob(data)", + "apiSymbol": "buffer.atob", + "depth": 2, + "scope": "api", + "anchor": "bufferatobdata", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy. Use `Buffer.from(data, 'base64')` instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "buffer:4e0f1978e0cb", + "chapter": "buffer", + "kind": "method", + "name": "btoa", + "signature": "`buffer.btoa(data)`", + "label": "buffer.btoa(data)", + "apiSymbol": "buffer.btoa", + "depth": 2, + "scope": "api", + "anchor": "bufferbtoadata", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy. Use `buf.toString('base64')` instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "buffer:ea7f6db7a485", + "chapter": "buffer", + "kind": "method", + "name": "isAscii", + "signature": "`buffer.isAscii(input)`", + "label": "buffer.isAscii(input)", + "apiSymbol": "buffer.isAscii", + "depth": 2, + "scope": "api", + "anchor": "bufferisasciiinput", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "buffer:71bddcc32c3b", + "chapter": "buffer", + "kind": "method", + "name": "isUtf8", + "signature": "`buffer.isUtf8(input)`", + "label": "buffer.isUtf8(input)", + "apiSymbol": "buffer.isUtf8", + "depth": 2, + "scope": "api", + "anchor": "bufferisutf8input", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "buffer:42b26c658cde", + "chapter": "buffer", + "kind": "method", + "name": "resolveObjectURL", + "signature": "`buffer.resolveObjectURL(id)`", + "label": "buffer.resolveObjectURL(id)", + "apiSymbol": "buffer.resolveObjectURL", + "depth": 2, + "scope": "api", + "anchor": "bufferresolveobjecturlid", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "buffer:0a8ff17340c5", + "chapter": "buffer", + "kind": "method", + "name": "transcode", + "signature": "`buffer.transcode(source, fromEnc, toEnc)`", + "label": "buffer.transcode(source, fromEnc, toEnc)", + "apiSymbol": "buffer.transcode", + "depth": 2, + "scope": "api", + "anchor": "buffertranscodesource-fromenc-toenc", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "buffer:3b381797d5c3", + "chapter": "buffer", + "kind": "integer", + "name": "Type", + "signature": "`INSPECT_MAX_BYTES` Type: {integer} **Default:** `50`", + "label": "INSPECT_MAX_BYTES", + "apiSymbol": "INSPECT_MAX_BYTES", + "depth": 2, + "scope": "api", + "anchor": "nodebuffer-module-apis", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "buffer:e1ba51ebecdd", + "chapter": "buffer", + "kind": "integer", + "name": "Type", + "signature": "`kMaxLength` Type: {integer} The largest size allowed for a single `Buffer` instance.", + "label": "kMaxLength", + "apiSymbol": "kMaxLength", + "depth": 2, + "scope": "api", + "anchor": "nodebuffer-module-apis", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "buffer:0d2ef05ceef9", + "chapter": "buffer", + "kind": "integer", + "name": "Type", + "signature": "`kStringMaxLength` Type: {integer} The largest length allowed for a single `string` instance.", + "label": "kStringMaxLength", + "apiSymbol": "kStringMaxLength", + "depth": 2, + "scope": "api", + "anchor": "nodebuffer-module-apis", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "buffer:8b66b7c33498", + "chapter": "buffer", + "kind": "module", + "name": "`buffer.from()`,_`buffer.alloc()`,_and_`buffer.allocunsafe()`", + "signature": "`Buffer.from()`, `Buffer.alloc()`, and `Buffer.allocUnsafe()`", + "label": "Buffer.from()", + "apiSymbol": "Buffer.from", + "depth": 1, + "scope": "api", + "anchor": "bufferfrom-bufferalloc-and-bufferallocunsafe", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:d9fc19815ae5", + "chapter": "buffer", + "kind": "module", + "name": "what_makes_`buffer.allocunsafe()`_and_`buffer.allocunsafeslow()`_\"unsafe\"?", + "signature": "What makes `Buffer.allocUnsafe()` and `Buffer.allocUnsafeSlow()` \"unsafe\"?", + "label": "What makes Buffer.allocUnsafe() and Buffer.allocUnsafeSlow() \"unsafe\"?", + "apiSymbol": "Buffer.allocUnsafe", + "depth": 2, + "scope": "api", + "anchor": "what-makes-bufferallocunsafe-and-bufferallocunsafeslow-unsafe", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:27c79f11fc38", + "chapter": "buffer", + "kind": "class", + "name": "Blob", + "signature": "Class: `Blob`", + "label": "Blob", + "apiSymbol": "Blob", + "depth": 1, + "scope": "api", + "anchor": "class-blob", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "buffer:7af8d47ba3d3", + "chapter": "buffer", + "kind": "module", + "name": "`blob`_objects_and_`messagechannel`", + "signature": "`Blob` objects and `MessageChannel`", + "label": "Blob", + "apiSymbol": "Blob", + "depth": 2, + "scope": "api", + "anchor": "blob-objects-and-messagechannel", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "buffer:fd92362208df", + "chapter": "buffer", + "kind": "method", + "name": "arrayBuffer", + "signature": "`blob.arrayBuffer()`", + "label": "blob.arrayBuffer()", + "apiSymbol": "blob.arrayBuffer", + "depth": 2, + "scope": "api", + "anchor": "blobarraybuffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "buffer:9f1b499f235f", + "chapter": "buffer", + "kind": "method", + "name": "bytes", + "signature": "`blob.bytes()`", + "label": "blob.bytes()", + "apiSymbol": "blob.bytes", + "depth": 2, + "scope": "api", + "anchor": "blobbytes", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "buffer:0b785450eeac", + "chapter": "buffer", + "kind": "method", + "name": "slice", + "signature": "`blob.slice([start[, end[, type]]])`", + "label": "blob.slice([start[, end[, type]]])", + "apiSymbol": "blob.slice", + "depth": 2, + "scope": "api", + "anchor": "blobslicestart-end-type", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "buffer:eac9c35da8f8", + "chapter": "buffer", + "kind": "method", + "name": "stream", + "signature": "`blob.stream()`", + "label": "blob.stream()", + "apiSymbol": "blob.stream", + "depth": 2, + "scope": "api", + "anchor": "blobstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "buffer:568587fd78af", + "chapter": "buffer", + "kind": "method", + "name": "text", + "signature": "`blob.text()`", + "label": "blob.text()", + "apiSymbol": "blob.text", + "depth": 2, + "scope": "api", + "anchor": "blobtext", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "buffer:fe2720024378", + "chapter": "buffer", + "kind": "section", + "name": "size", + "signature": "`blob.size`", + "label": "blob.size", + "apiSymbol": "blob.size", + "depth": 2, + "scope": "api", + "anchor": "blobsize", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "buffer:23148ab6a5af", + "chapter": "buffer", + "kind": "string", + "name": "Type", + "signature": "`type` Type: {string}", + "label": "type", + "apiSymbol": "type", + "depth": 2, + "scope": "api", + "anchor": "class-blob", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "buffer:ee741d00a630", + "chapter": "buffer", + "kind": "class", + "name": "Buffer", + "signature": "Class: `Buffer`", + "label": "Buffer", + "apiSymbol": "Buffer", + "depth": 1, + "scope": "api", + "anchor": "class-buffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "buffer:8672343fcd48", + "chapter": "buffer", + "kind": "method", + "name": "compare", + "signature": "`buf.compare(target[, targetStart[, targetEnd[, sourceStart[, sourceEnd]]]])`", + "label": "buf.compare(target[, targetStart[, targetEnd[, sourceStart[, sourceEnd]]]])", + "apiSymbol": "buf.compare", + "depth": 2, + "scope": "api", + "anchor": "bufcomparetarget-targetstart-targetend-sourcestart-sourceend", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:ac4a2199c01a", + "chapter": "buffer", + "kind": "method", + "name": "copy", + "signature": "`buf.copy(target[, targetStart[, sourceStart[, sourceEnd]]])`", + "label": "buf.copy(target[, targetStart[, sourceStart[, sourceEnd]]])", + "apiSymbol": "buf.copy", + "depth": 2, + "scope": "api", + "anchor": "bufcopytarget-targetstart-sourcestart-sourceend", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:10171a3317cd", + "chapter": "buffer", + "kind": "method", + "name": "entries", + "signature": "`buf.entries()`", + "label": "buf.entries()", + "apiSymbol": "buf.entries", + "depth": 2, + "scope": "api", + "anchor": "bufentries", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "buffer:efedb81e3160", + "chapter": "buffer", + "kind": "method", + "name": "equals", + "signature": "`buf.equals(otherBuffer)`", + "label": "buf.equals(otherBuffer)", + "apiSymbol": "buf.equals", + "depth": 2, + "scope": "api", + "anchor": "bufequalsotherbuffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:e758d4a2f55a", + "chapter": "buffer", + "kind": "method", + "name": "fill", + "signature": "`buf.fill(value[, offset[, end]][, encoding])`", + "label": "buf.fill(value[, offset[, end]][, encoding])", + "apiSymbol": "buf.fill", + "depth": 2, + "scope": "api", + "anchor": "buffillvalue-offset-end-encoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:036238ad6edd", + "chapter": "buffer", + "kind": "method", + "name": "includes", + "signature": "`buf.includes(value[, byteOffset][, encoding])`", + "label": "buf.includes(value[, byteOffset][, encoding])", + "apiSymbol": "buf.includes", + "depth": 2, + "scope": "api", + "anchor": "bufincludesvalue-byteoffset-encoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:4bb2e1c043ab", + "chapter": "buffer", + "kind": "method", + "name": "indexOf", + "signature": "`buf.indexOf(value[, byteOffset][, encoding])`", + "label": "buf.indexOf(value[, byteOffset][, encoding])", + "apiSymbol": "buf.indexOf", + "depth": 2, + "scope": "api", + "anchor": "bufindexofvalue-byteoffset-encoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:2d035a951d24", + "chapter": "buffer", + "kind": "method", + "name": "keys", + "signature": "`buf.keys()`", + "label": "buf.keys()", + "apiSymbol": "buf.keys", + "depth": 2, + "scope": "api", + "anchor": "bufkeys", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "buffer:0f29211b95db", + "chapter": "buffer", + "kind": "method", + "name": "lastIndexOf", + "signature": "`buf.lastIndexOf(value[, byteOffset][, encoding])`", + "label": "buf.lastIndexOf(value[, byteOffset][, encoding])", + "apiSymbol": "buf.lastIndexOf", + "depth": 2, + "scope": "api", + "anchor": "buflastindexofvalue-byteoffset-encoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:192a90d09b9e", + "chapter": "buffer", + "kind": "method", + "name": "readBigInt64BE", + "signature": "`buf.readBigInt64BE([offset])`", + "label": "buf.readBigInt64BE([offset])", + "apiSymbol": "buf.readBigInt64BE", + "depth": 2, + "scope": "api", + "anchor": "bufreadbigint64beoffset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:4cfbe8f7ea1a", + "chapter": "buffer", + "kind": "method", + "name": "readBigInt64LE", + "signature": "`buf.readBigInt64LE([offset])`", + "label": "buf.readBigInt64LE([offset])", + "apiSymbol": "buf.readBigInt64LE", + "depth": 2, + "scope": "api", + "anchor": "bufreadbigint64leoffset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:884486b34123", + "chapter": "buffer", + "kind": "method", + "name": "readBigUInt64BE", + "signature": "`buf.readBigUInt64BE([offset])`", + "label": "buf.readBigUInt64BE([offset])", + "apiSymbol": "buf.readBigUInt64BE", + "depth": 2, + "scope": "api", + "anchor": "bufreadbiguint64beoffset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:c6a190fd1f05", + "chapter": "buffer", + "kind": "method", + "name": "readBigUInt64LE", + "signature": "`buf.readBigUInt64LE([offset])`", + "label": "buf.readBigUInt64LE([offset])", + "apiSymbol": "buf.readBigUInt64LE", + "depth": 2, + "scope": "api", + "anchor": "bufreadbiguint64leoffset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:f6a623628019", + "chapter": "buffer", + "kind": "method", + "name": "readDoubleBE", + "signature": "`buf.readDoubleBE([offset])`", + "label": "buf.readDoubleBE([offset])", + "apiSymbol": "buf.readDoubleBE", + "depth": 2, + "scope": "api", + "anchor": "bufreaddoublebeoffset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:60511dd6b0c3", + "chapter": "buffer", + "kind": "method", + "name": "readDoubleLE", + "signature": "`buf.readDoubleLE([offset])`", + "label": "buf.readDoubleLE([offset])", + "apiSymbol": "buf.readDoubleLE", + "depth": 2, + "scope": "api", + "anchor": "bufreaddoubleleoffset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:17ddd1fd1bd4", + "chapter": "buffer", + "kind": "method", + "name": "readFloatBE", + "signature": "`buf.readFloatBE([offset])`", + "label": "buf.readFloatBE([offset])", + "apiSymbol": "buf.readFloatBE", + "depth": 2, + "scope": "api", + "anchor": "bufreadfloatbeoffset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:4558a046b49c", + "chapter": "buffer", + "kind": "method", + "name": "readFloatLE", + "signature": "`buf.readFloatLE([offset])`", + "label": "buf.readFloatLE([offset])", + "apiSymbol": "buf.readFloatLE", + "depth": 2, + "scope": "api", + "anchor": "bufreadfloatleoffset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:c15ada36c30b", + "chapter": "buffer", + "kind": "method", + "name": "readInt8", + "signature": "`buf.readInt8([offset])`", + "label": "buf.readInt8([offset])", + "apiSymbol": "buf.readInt8", + "depth": 2, + "scope": "api", + "anchor": "bufreadint8offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:ceefb63f8c94", + "chapter": "buffer", + "kind": "method", + "name": "readInt16BE", + "signature": "`buf.readInt16BE([offset])`", + "label": "buf.readInt16BE([offset])", + "apiSymbol": "buf.readInt16BE", + "depth": 2, + "scope": "api", + "anchor": "bufreadint16beoffset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:cb59d1f1c4ca", + "chapter": "buffer", + "kind": "method", + "name": "readInt16LE", + "signature": "`buf.readInt16LE([offset])`", + "label": "buf.readInt16LE([offset])", + "apiSymbol": "buf.readInt16LE", + "depth": 2, + "scope": "api", + "anchor": "bufreadint16leoffset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:5f3c932deb78", + "chapter": "buffer", + "kind": "method", + "name": "readInt32BE", + "signature": "`buf.readInt32BE([offset])`", + "label": "buf.readInt32BE([offset])", + "apiSymbol": "buf.readInt32BE", + "depth": 2, + "scope": "api", + "anchor": "bufreadint32beoffset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:d96791085a61", + "chapter": "buffer", + "kind": "method", + "name": "readInt32LE", + "signature": "`buf.readInt32LE([offset])`", + "label": "buf.readInt32LE([offset])", + "apiSymbol": "buf.readInt32LE", + "depth": 2, + "scope": "api", + "anchor": "bufreadint32leoffset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:1419911d4aad", + "chapter": "buffer", + "kind": "method", + "name": "readIntBE", + "signature": "`buf.readIntBE(offset, byteLength)`", + "label": "buf.readIntBE(offset, byteLength)", + "apiSymbol": "buf.readIntBE", + "depth": 2, + "scope": "api", + "anchor": "bufreadintbeoffset-bytelength", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:4fc8a02f910d", + "chapter": "buffer", + "kind": "method", + "name": "readIntLE", + "signature": "`buf.readIntLE(offset, byteLength)`", + "label": "buf.readIntLE(offset, byteLength)", + "apiSymbol": "buf.readIntLE", + "depth": 2, + "scope": "api", + "anchor": "bufreadintleoffset-bytelength", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:f33bc928a80b", + "chapter": "buffer", + "kind": "method", + "name": "readUInt8", + "signature": "`buf.readUInt8([offset])`", + "label": "buf.readUInt8([offset])", + "apiSymbol": "buf.readUInt8", + "depth": 2, + "scope": "api", + "anchor": "bufreaduint8offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:26539eec3cf5", + "chapter": "buffer", + "kind": "method", + "name": "readUInt16BE", + "signature": "`buf.readUInt16BE([offset])`", + "label": "buf.readUInt16BE([offset])", + "apiSymbol": "buf.readUInt16BE", + "depth": 2, + "scope": "api", + "anchor": "bufreaduint16beoffset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:1e574c44adec", + "chapter": "buffer", + "kind": "method", + "name": "readUInt16LE", + "signature": "`buf.readUInt16LE([offset])`", + "label": "buf.readUInt16LE([offset])", + "apiSymbol": "buf.readUInt16LE", + "depth": 2, + "scope": "api", + "anchor": "bufreaduint16leoffset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:d10610de9a80", + "chapter": "buffer", + "kind": "method", + "name": "readUInt32BE", + "signature": "`buf.readUInt32BE([offset])`", + "label": "buf.readUInt32BE([offset])", + "apiSymbol": "buf.readUInt32BE", + "depth": 2, + "scope": "api", + "anchor": "bufreaduint32beoffset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:e9b4ad55de11", + "chapter": "buffer", + "kind": "method", + "name": "readUInt32LE", + "signature": "`buf.readUInt32LE([offset])`", + "label": "buf.readUInt32LE([offset])", + "apiSymbol": "buf.readUInt32LE", + "depth": 2, + "scope": "api", + "anchor": "bufreaduint32leoffset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:ec388bc7047c", + "chapter": "buffer", + "kind": "method", + "name": "readUIntBE", + "signature": "`buf.readUIntBE(offset, byteLength)`", + "label": "buf.readUIntBE(offset, byteLength)", + "apiSymbol": "buf.readUIntBE", + "depth": 2, + "scope": "api", + "anchor": "bufreaduintbeoffset-bytelength", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:c4c91d262648", + "chapter": "buffer", + "kind": "method", + "name": "readUIntLE", + "signature": "`buf.readUIntLE(offset, byteLength)`", + "label": "buf.readUIntLE(offset, byteLength)", + "apiSymbol": "buf.readUIntLE", + "depth": 2, + "scope": "api", + "anchor": "bufreaduintleoffset-bytelength", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:ffed09a95d37", + "chapter": "buffer", + "kind": "method", + "name": "subarray", + "signature": "`buf.subarray([start[, end]])`", + "label": "buf.subarray([start[, end]])", + "apiSymbol": "buf.subarray", + "depth": 2, + "scope": "api", + "anchor": "bufsubarraystart-end", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:11d1440f0137", + "chapter": "buffer", + "kind": "method", + "name": "slice", + "signature": "`buf.slice([start[, end]])`", + "label": "buf.slice([start[, end]])", + "apiSymbol": "buf.slice", + "depth": 2, + "scope": "api", + "anchor": "bufslicestart-end", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Use [`buf.subarray`][] instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:e9fdf934fb29", + "chapter": "buffer", + "kind": "method", + "name": "swap16", + "signature": "`buf.swap16()`", + "label": "buf.swap16()", + "apiSymbol": "buf.swap16", + "depth": 2, + "scope": "api", + "anchor": "bufswap16", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:6f11fc97710d", + "chapter": "buffer", + "kind": "method", + "name": "swap32", + "signature": "`buf.swap32()`", + "label": "buf.swap32()", + "apiSymbol": "buf.swap32", + "depth": 2, + "scope": "api", + "anchor": "bufswap32", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:d2b36e039323", + "chapter": "buffer", + "kind": "method", + "name": "swap64", + "signature": "`buf.swap64()`", + "label": "buf.swap64()", + "apiSymbol": "buf.swap64", + "depth": 2, + "scope": "api", + "anchor": "bufswap64", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:0556466f3199", + "chapter": "buffer", + "kind": "method", + "name": "toJSON", + "signature": "`buf.toJSON()`", + "label": "buf.toJSON()", + "apiSymbol": "buf.toJSON", + "depth": 2, + "scope": "api", + "anchor": "buftojson", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:c8bddf10fb87", + "chapter": "buffer", + "kind": "method", + "name": "toString", + "signature": "`buf.toString([encoding[, start[, end]]])`", + "label": "buf.toString([encoding[, start[, end]]])", + "apiSymbol": "buf.toString", + "depth": 2, + "scope": "api", + "anchor": "buftostringencoding-start-end", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:d7428a07c1d1", + "chapter": "buffer", + "kind": "method", + "name": "values", + "signature": "`buf.values()`", + "label": "buf.values()", + "apiSymbol": "buf.values", + "depth": 2, + "scope": "api", + "anchor": "bufvalues", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "buffer:9bc687c91608", + "chapter": "buffer", + "kind": "method", + "name": "write", + "signature": "`buf.write(string[, offset[, length]][, encoding])`", + "label": "buf.write(string[, offset[, length]][, encoding])", + "apiSymbol": "buf.write", + "depth": 2, + "scope": "api", + "anchor": "bufwritestring-offset-length-encoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:a0f65696c0ff", + "chapter": "buffer", + "kind": "method", + "name": "writeBigInt64BE", + "signature": "`buf.writeBigInt64BE(value[, offset])`", + "label": "buf.writeBigInt64BE(value[, offset])", + "apiSymbol": "buf.writeBigInt64BE", + "depth": 2, + "scope": "api", + "anchor": "bufwritebigint64bevalue-offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:bec4d18deb28", + "chapter": "buffer", + "kind": "method", + "name": "writeBigInt64LE", + "signature": "`buf.writeBigInt64LE(value[, offset])`", + "label": "buf.writeBigInt64LE(value[, offset])", + "apiSymbol": "buf.writeBigInt64LE", + "depth": 2, + "scope": "api", + "anchor": "bufwritebigint64levalue-offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:03fe65c4dcae", + "chapter": "buffer", + "kind": "method", + "name": "writeBigUInt64BE", + "signature": "`buf.writeBigUInt64BE(value[, offset])`", + "label": "buf.writeBigUInt64BE(value[, offset])", + "apiSymbol": "buf.writeBigUInt64BE", + "depth": 2, + "scope": "api", + "anchor": "bufwritebiguint64bevalue-offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:16a200c1a65f", + "chapter": "buffer", + "kind": "method", + "name": "writeBigUInt64LE", + "signature": "`buf.writeBigUInt64LE(value[, offset])`", + "label": "buf.writeBigUInt64LE(value[, offset])", + "apiSymbol": "buf.writeBigUInt64LE", + "depth": 2, + "scope": "api", + "anchor": "bufwritebiguint64levalue-offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:4674d4e7f8c8", + "chapter": "buffer", + "kind": "method", + "name": "writeDoubleBE", + "signature": "`buf.writeDoubleBE(value[, offset])`", + "label": "buf.writeDoubleBE(value[, offset])", + "apiSymbol": "buf.writeDoubleBE", + "depth": 2, + "scope": "api", + "anchor": "bufwritedoublebevalue-offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:d7ad065243e0", + "chapter": "buffer", + "kind": "method", + "name": "writeDoubleLE", + "signature": "`buf.writeDoubleLE(value[, offset])`", + "label": "buf.writeDoubleLE(value[, offset])", + "apiSymbol": "buf.writeDoubleLE", + "depth": 2, + "scope": "api", + "anchor": "bufwritedoublelevalue-offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:757ffb8c8b58", + "chapter": "buffer", + "kind": "method", + "name": "writeFloatBE", + "signature": "`buf.writeFloatBE(value[, offset])`", + "label": "buf.writeFloatBE(value[, offset])", + "apiSymbol": "buf.writeFloatBE", + "depth": 2, + "scope": "api", + "anchor": "bufwritefloatbevalue-offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:e13ba4f75fbf", + "chapter": "buffer", + "kind": "method", + "name": "writeFloatLE", + "signature": "`buf.writeFloatLE(value[, offset])`", + "label": "buf.writeFloatLE(value[, offset])", + "apiSymbol": "buf.writeFloatLE", + "depth": 2, + "scope": "api", + "anchor": "bufwritefloatlevalue-offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:42838a6743c2", + "chapter": "buffer", + "kind": "method", + "name": "writeInt8", + "signature": "`buf.writeInt8(value[, offset])`", + "label": "buf.writeInt8(value[, offset])", + "apiSymbol": "buf.writeInt8", + "depth": 2, + "scope": "api", + "anchor": "bufwriteint8value-offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:fc788ef34e1d", + "chapter": "buffer", + "kind": "method", + "name": "writeInt16BE", + "signature": "`buf.writeInt16BE(value[, offset])`", + "label": "buf.writeInt16BE(value[, offset])", + "apiSymbol": "buf.writeInt16BE", + "depth": 2, + "scope": "api", + "anchor": "bufwriteint16bevalue-offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:3e3c7938cbb6", + "chapter": "buffer", + "kind": "method", + "name": "writeInt16LE", + "signature": "`buf.writeInt16LE(value[, offset])`", + "label": "buf.writeInt16LE(value[, offset])", + "apiSymbol": "buf.writeInt16LE", + "depth": 2, + "scope": "api", + "anchor": "bufwriteint16levalue-offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:7153b99eb633", + "chapter": "buffer", + "kind": "method", + "name": "writeInt32BE", + "signature": "`buf.writeInt32BE(value[, offset])`", + "label": "buf.writeInt32BE(value[, offset])", + "apiSymbol": "buf.writeInt32BE", + "depth": 2, + "scope": "api", + "anchor": "bufwriteint32bevalue-offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:5a754188c53c", + "chapter": "buffer", + "kind": "method", + "name": "writeInt32LE", + "signature": "`buf.writeInt32LE(value[, offset])`", + "label": "buf.writeInt32LE(value[, offset])", + "apiSymbol": "buf.writeInt32LE", + "depth": 2, + "scope": "api", + "anchor": "bufwriteint32levalue-offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:19845f3017e2", + "chapter": "buffer", + "kind": "method", + "name": "writeIntBE", + "signature": "`buf.writeIntBE(value, offset, byteLength)`", + "label": "buf.writeIntBE(value, offset, byteLength)", + "apiSymbol": "buf.writeIntBE", + "depth": 2, + "scope": "api", + "anchor": "bufwriteintbevalue-offset-bytelength", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:2e1c255cdf2e", + "chapter": "buffer", + "kind": "method", + "name": "writeIntLE", + "signature": "`buf.writeIntLE(value, offset, byteLength)`", + "label": "buf.writeIntLE(value, offset, byteLength)", + "apiSymbol": "buf.writeIntLE", + "depth": 2, + "scope": "api", + "anchor": "bufwriteintlevalue-offset-bytelength", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:e761416f0593", + "chapter": "buffer", + "kind": "method", + "name": "writeUInt8", + "signature": "`buf.writeUInt8(value[, offset])`", + "label": "buf.writeUInt8(value[, offset])", + "apiSymbol": "buf.writeUInt8", + "depth": 2, + "scope": "api", + "anchor": "bufwriteuint8value-offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:4eae6fa8da16", + "chapter": "buffer", + "kind": "method", + "name": "writeUInt16BE", + "signature": "`buf.writeUInt16BE(value[, offset])`", + "label": "buf.writeUInt16BE(value[, offset])", + "apiSymbol": "buf.writeUInt16BE", + "depth": 2, + "scope": "api", + "anchor": "bufwriteuint16bevalue-offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:b4e4901ce98b", + "chapter": "buffer", + "kind": "method", + "name": "writeUInt16LE", + "signature": "`buf.writeUInt16LE(value[, offset])`", + "label": "buf.writeUInt16LE(value[, offset])", + "apiSymbol": "buf.writeUInt16LE", + "depth": 2, + "scope": "api", + "anchor": "bufwriteuint16levalue-offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:d02c17904301", + "chapter": "buffer", + "kind": "method", + "name": "writeUInt32BE", + "signature": "`buf.writeUInt32BE(value[, offset])`", + "label": "buf.writeUInt32BE(value[, offset])", + "apiSymbol": "buf.writeUInt32BE", + "depth": 2, + "scope": "api", + "anchor": "bufwriteuint32bevalue-offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:df1b0aefcd1b", + "chapter": "buffer", + "kind": "method", + "name": "writeUInt32LE", + "signature": "`buf.writeUInt32LE(value[, offset])`", + "label": "buf.writeUInt32LE(value[, offset])", + "apiSymbol": "buf.writeUInt32LE", + "depth": 2, + "scope": "api", + "anchor": "bufwriteuint32levalue-offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:8e583bbdf7ba", + "chapter": "buffer", + "kind": "method", + "name": "writeUIntBE", + "signature": "`buf.writeUIntBE(value, offset, byteLength)`", + "label": "buf.writeUIntBE(value, offset, byteLength)", + "apiSymbol": "buf.writeUIntBE", + "depth": 2, + "scope": "api", + "anchor": "bufwriteuintbevalue-offset-bytelength", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:3919144cc9db", + "chapter": "buffer", + "kind": "method", + "name": "writeUIntLE", + "signature": "`buf.writeUIntLE(value, offset, byteLength)`", + "label": "buf.writeUIntLE(value, offset, byteLength)", + "apiSymbol": "buf.writeUIntLE", + "depth": 2, + "scope": "api", + "anchor": "bufwriteuintlevalue-offset-bytelength", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "buffer:a12afe3296c9", + "chapter": "buffer", + "kind": "integer", + "name": "Type", + "signature": "`poolSize` Type: {integer} **Default:** `8192`", + "label": "poolSize", + "apiSymbol": "poolSize", + "depth": 2, + "scope": "api", + "anchor": "class-buffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "buffer:2d6a3ef75d98", + "chapter": "buffer", + "kind": "integer", + "name": "index", + "signature": "`[index]` `index` {integer}", + "label": "[index]", + "apiSymbol": "", + "depth": 2, + "scope": "api", + "anchor": "class-buffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "buffer:ee0685658c0f", + "chapter": "buffer", + "kind": "ArrayBuffer", + "name": "Type", + "signature": "`buffer` Type: {ArrayBuffer} The underlying `ArrayBuffer` object based on which this `Buffer` object is created.", + "label": "buffer", + "apiSymbol": "buffer", + "depth": 2, + "scope": "api", + "anchor": "class-buffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "buffer:7100316c9e70", + "chapter": "buffer", + "kind": "integer", + "name": "Type", + "signature": "`byteOffset` Type: {integer} The `byteOffset` of the `Buffer`'s underlying `ArrayBuffer` object.", + "label": "byteOffset", + "apiSymbol": "byteOffset", + "depth": 2, + "scope": "api", + "anchor": "class-buffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "buffer:9658d24dfd74", + "chapter": "buffer", + "kind": "integer", + "name": "Type", + "signature": "`length` Type: {integer}", + "label": "length", + "apiSymbol": "length", + "depth": 2, + "scope": "api", + "anchor": "class-buffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "buffer:dc280baf2e72", + "chapter": "buffer", + "kind": "section", + "name": "parent", + "signature": "`buf.parent`", + "label": "buf.parent", + "apiSymbol": "buf.parent", + "depth": 2, + "scope": "api", + "anchor": "bufparent", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Use [`buf.buffer`][] instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "buffer:803f990625f6", + "chapter": "buffer", + "kind": "class", + "name": "File", + "signature": "Class: `File`", + "label": "File", + "apiSymbol": "File", + "depth": 1, + "scope": "api", + "anchor": "class-file", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "buffer:3c4f6df8cde2", + "chapter": "buffer", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string}", + "label": "name", + "apiSymbol": "name", + "depth": 2, + "scope": "api", + "anchor": "class-file", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "buffer:0e7d3e3ae7de", + "chapter": "buffer", + "kind": "number", + "name": "Type", + "signature": "`lastModified` Type: {number}", + "label": "lastModified", + "apiSymbol": "lastModified", + "depth": 2, + "scope": "api", + "anchor": "class-file", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "addons:737696f3e1f8", + "chapter": "addons", + "kind": "misc", + "name": "C++ addons", + "signature": "C++ addons", + "label": "C++ addons", + "apiSymbol": "C++ addons", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + }, + "dynamic": { + "status": "by-design", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + } + }, + { + "id": "addons:6d4f63d632a9", + "chapter": "addons", + "kind": "module", + "name": "loading_addons_using_`require()`", + "signature": "Loading addons using `require()`", + "label": "Loading addons using require()", + "apiSymbol": "require", + "depth": 1, + "scope": "api", + "anchor": "loading-addons-using-require", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "addons:08c1dbd19d50", + "chapter": "addons", + "kind": "module", + "name": "loading_addons_using_`import`", + "signature": "Loading addons using `import`", + "label": "Loading addons using import", + "apiSymbol": "import", + "depth": 1, + "scope": "api", + "anchor": "loading-addons-using-import", + "nodeStability": { + "index": "1.0", + "level": 1, + "text": "Early development", + "inherited": false + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:e0b392b577fd", + "chapter": "n-api", + "kind": "misc", + "name": "Node-API", + "signature": "Node-API", + "label": "Node-API", + "apiSymbol": "Node-API", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "by-design", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + }, + "dynamic": { + "status": "by-design", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + } + }, + { + "id": "n-api:15d17036991f", + "chapter": "n-api", + "kind": "section", + "name": "js", + "signature": "CMake.js", + "label": "CMake.js", + "apiSymbol": "js", + "depth": 1, + "scope": "api", + "anchor": "cmakejs", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:1226dcbfdf4c", + "chapter": "n-api", + "kind": "module", + "name": "`napi_set_instance_data`", + "signature": "`napi_set_instance_data`", + "label": "napi_set_instance_data", + "apiSymbol": "napi_set_instance_data", + "depth": 1, + "scope": "api", + "anchor": "napi_set_instance_data", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:8a159a75af39", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_instance_data`", + "signature": "`napi_get_instance_data`", + "label": "napi_get_instance_data", + "apiSymbol": "napi_get_instance_data", + "depth": 1, + "scope": "api", + "anchor": "napi_get_instance_data", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:cc72be507f6d", + "chapter": "n-api", + "kind": "module", + "name": "`napi_status`", + "signature": "`napi_status`", + "label": "napi_status", + "apiSymbol": "napi_status", + "depth": 1, + "scope": "api", + "anchor": "napi_status", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:af7ae1b70290", + "chapter": "n-api", + "kind": "module", + "name": "`napi_extended_error_info`", + "signature": "`napi_extended_error_info`", + "label": "napi_extended_error_info", + "apiSymbol": "napi_extended_error_info", + "depth": 1, + "scope": "api", + "anchor": "napi_extended_error_info", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:e5cc7ee57059", + "chapter": "n-api", + "kind": "module", + "name": "`napi_env`", + "signature": "`napi_env`", + "label": "napi_env", + "apiSymbol": "napi_env", + "depth": 1, + "scope": "api", + "anchor": "napi_env", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:39710f9b9720", + "chapter": "n-api", + "kind": "module", + "name": "`node_api_basic_env`", + "signature": "`node_api_basic_env`", + "label": "node_api_basic_env", + "apiSymbol": "node_api_basic_env", + "depth": 1, + "scope": "api", + "anchor": "node_api_basic_env", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:5f3c2fb83158", + "chapter": "n-api", + "kind": "module", + "name": "`napi_value`", + "signature": "`napi_value`", + "label": "napi_value", + "apiSymbol": "napi_value", + "depth": 1, + "scope": "api", + "anchor": "napi_value", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:87a15ac14dec", + "chapter": "n-api", + "kind": "module", + "name": "`napi_threadsafe_function`", + "signature": "`napi_threadsafe_function`", + "label": "napi_threadsafe_function", + "apiSymbol": "napi_threadsafe_function", + "depth": 1, + "scope": "api", + "anchor": "napi_threadsafe_function", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:e1af1bd36b0a", + "chapter": "n-api", + "kind": "module", + "name": "`napi_threadsafe_function_release_mode`", + "signature": "`napi_threadsafe_function_release_mode`", + "label": "napi_threadsafe_function_release_mode", + "apiSymbol": "napi_threadsafe_function_release_mode", + "depth": 1, + "scope": "api", + "anchor": "napi_threadsafe_function_release_mode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:c9128ec4bbc0", + "chapter": "n-api", + "kind": "module", + "name": "`napi_threadsafe_function_call_mode`", + "signature": "`napi_threadsafe_function_call_mode`", + "label": "napi_threadsafe_function_call_mode", + "apiSymbol": "napi_threadsafe_function_call_mode", + "depth": 1, + "scope": "api", + "anchor": "napi_threadsafe_function_call_mode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:d2bb9ceca0bc", + "chapter": "n-api", + "kind": "module", + "name": "`napi_handle_scope`", + "signature": "`napi_handle_scope`", + "label": "napi_handle_scope", + "apiSymbol": "napi_handle_scope", + "depth": 1, + "scope": "api", + "anchor": "napi_handle_scope", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:965c7c549027", + "chapter": "n-api", + "kind": "module", + "name": "`napi_escapable_handle_scope`", + "signature": "`napi_escapable_handle_scope`", + "label": "napi_escapable_handle_scope", + "apiSymbol": "napi_escapable_handle_scope", + "depth": 1, + "scope": "api", + "anchor": "napi_escapable_handle_scope", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:c7d26017ab8a", + "chapter": "n-api", + "kind": "module", + "name": "`napi_ref`", + "signature": "`napi_ref`", + "label": "napi_ref", + "apiSymbol": "napi_ref", + "depth": 1, + "scope": "api", + "anchor": "napi_ref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:4d70f3a18090", + "chapter": "n-api", + "kind": "module", + "name": "`napi_type_tag`", + "signature": "`napi_type_tag`", + "label": "napi_type_tag", + "apiSymbol": "napi_type_tag", + "depth": 1, + "scope": "api", + "anchor": "napi_type_tag", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:73d5bb382d20", + "chapter": "n-api", + "kind": "module", + "name": "`napi_async_cleanup_hook_handle`", + "signature": "`napi_async_cleanup_hook_handle`", + "label": "napi_async_cleanup_hook_handle", + "apiSymbol": "napi_async_cleanup_hook_handle", + "depth": 1, + "scope": "api", + "anchor": "napi_async_cleanup_hook_handle", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:1bfe336f8e14", + "chapter": "n-api", + "kind": "module", + "name": "`napi_callback_info`", + "signature": "`napi_callback_info`", + "label": "napi_callback_info", + "apiSymbol": "napi_callback_info", + "depth": 1, + "scope": "api", + "anchor": "napi_callback_info", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:d333286e8851", + "chapter": "n-api", + "kind": "module", + "name": "`napi_callback`", + "signature": "`napi_callback`", + "label": "napi_callback", + "apiSymbol": "napi_callback", + "depth": 1, + "scope": "api", + "anchor": "napi_callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:a74d2677f27a", + "chapter": "n-api", + "kind": "module", + "name": "`node_api_basic_finalize`", + "signature": "`node_api_basic_finalize`", + "label": "node_api_basic_finalize", + "apiSymbol": "node_api_basic_finalize", + "depth": 1, + "scope": "api", + "anchor": "node_api_basic_finalize", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:916165752f94", + "chapter": "n-api", + "kind": "module", + "name": "`napi_finalize`", + "signature": "`napi_finalize`", + "label": "napi_finalize", + "apiSymbol": "napi_finalize", + "depth": 1, + "scope": "api", + "anchor": "napi_finalize", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:910f96bb8016", + "chapter": "n-api", + "kind": "module", + "name": "`napi_async_execute_callback`", + "signature": "`napi_async_execute_callback`", + "label": "napi_async_execute_callback", + "apiSymbol": "napi_async_execute_callback", + "depth": 1, + "scope": "api", + "anchor": "napi_async_execute_callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:d9504ac6d101", + "chapter": "n-api", + "kind": "module", + "name": "`napi_async_complete_callback`", + "signature": "`napi_async_complete_callback`", + "label": "napi_async_complete_callback", + "apiSymbol": "napi_async_complete_callback", + "depth": 1, + "scope": "api", + "anchor": "napi_async_complete_callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:ce3b8e351178", + "chapter": "n-api", + "kind": "module", + "name": "`napi_threadsafe_function_call_js`", + "signature": "`napi_threadsafe_function_call_js`", + "label": "napi_threadsafe_function_call_js", + "apiSymbol": "napi_threadsafe_function_call_js", + "depth": 1, + "scope": "api", + "anchor": "napi_threadsafe_function_call_js", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:fdd016b5b1a4", + "chapter": "n-api", + "kind": "module", + "name": "`napi_cleanup_hook`", + "signature": "`napi_cleanup_hook`", + "label": "napi_cleanup_hook", + "apiSymbol": "napi_cleanup_hook", + "depth": 1, + "scope": "api", + "anchor": "napi_cleanup_hook", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:723b122af8d8", + "chapter": "n-api", + "kind": "module", + "name": "`napi_async_cleanup_hook`", + "signature": "`napi_async_cleanup_hook`", + "label": "napi_async_cleanup_hook", + "apiSymbol": "napi_async_cleanup_hook", + "depth": 1, + "scope": "api", + "anchor": "napi_async_cleanup_hook", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:081d85c7fc9a", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_last_error_info`", + "signature": "`napi_get_last_error_info`", + "label": "napi_get_last_error_info", + "apiSymbol": "napi_get_last_error_info", + "depth": 1, + "scope": "api", + "anchor": "napi_get_last_error_info", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:4354960a7379", + "chapter": "n-api", + "kind": "module", + "name": "`napi_throw`", + "signature": "`napi_throw`", + "label": "napi_throw", + "apiSymbol": "napi_throw", + "depth": 1, + "scope": "api", + "anchor": "napi_throw", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:7fd90dbc4e04", + "chapter": "n-api", + "kind": "module", + "name": "`napi_throw_error`", + "signature": "`napi_throw_error`", + "label": "napi_throw_error", + "apiSymbol": "napi_throw_error", + "depth": 1, + "scope": "api", + "anchor": "napi_throw_error", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:2f3408eb23e2", + "chapter": "n-api", + "kind": "module", + "name": "`napi_throw_type_error`", + "signature": "`napi_throw_type_error`", + "label": "napi_throw_type_error", + "apiSymbol": "napi_throw_type_error", + "depth": 1, + "scope": "api", + "anchor": "napi_throw_type_error", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:58e3073d1353", + "chapter": "n-api", + "kind": "module", + "name": "`napi_throw_range_error`", + "signature": "`napi_throw_range_error`", + "label": "napi_throw_range_error", + "apiSymbol": "napi_throw_range_error", + "depth": 1, + "scope": "api", + "anchor": "napi_throw_range_error", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:87dd61809a06", + "chapter": "n-api", + "kind": "module", + "name": "`node_api_throw_syntax_error`", + "signature": "`node_api_throw_syntax_error`", + "label": "node_api_throw_syntax_error", + "apiSymbol": "node_api_throw_syntax_error", + "depth": 1, + "scope": "api", + "anchor": "node_api_throw_syntax_error", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:e448c7941b3a", + "chapter": "n-api", + "kind": "module", + "name": "`napi_is_error`", + "signature": "`napi_is_error`", + "label": "napi_is_error", + "apiSymbol": "napi_is_error", + "depth": 1, + "scope": "api", + "anchor": "napi_is_error", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:c7f86c2b32e0", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_error`", + "signature": "`napi_create_error`", + "label": "napi_create_error", + "apiSymbol": "napi_create_error", + "depth": 1, + "scope": "api", + "anchor": "napi_create_error", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:8096b1da8be3", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_type_error`", + "signature": "`napi_create_type_error`", + "label": "napi_create_type_error", + "apiSymbol": "napi_create_type_error", + "depth": 1, + "scope": "api", + "anchor": "napi_create_type_error", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:3553ab5c72f9", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_range_error`", + "signature": "`napi_create_range_error`", + "label": "napi_create_range_error", + "apiSymbol": "napi_create_range_error", + "depth": 1, + "scope": "api", + "anchor": "napi_create_range_error", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:ec8c708e4c47", + "chapter": "n-api", + "kind": "module", + "name": "`node_api_create_syntax_error`", + "signature": "`node_api_create_syntax_error`", + "label": "node_api_create_syntax_error", + "apiSymbol": "node_api_create_syntax_error", + "depth": 1, + "scope": "api", + "anchor": "node_api_create_syntax_error", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:1d774860c927", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_and_clear_last_exception`", + "signature": "`napi_get_and_clear_last_exception`", + "label": "napi_get_and_clear_last_exception", + "apiSymbol": "napi_get_and_clear_last_exception", + "depth": 1, + "scope": "api", + "anchor": "napi_get_and_clear_last_exception", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:22be82fc5fae", + "chapter": "n-api", + "kind": "module", + "name": "`napi_is_exception_pending`", + "signature": "`napi_is_exception_pending`", + "label": "napi_is_exception_pending", + "apiSymbol": "napi_is_exception_pending", + "depth": 1, + "scope": "api", + "anchor": "napi_is_exception_pending", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:fda2b9471e2a", + "chapter": "n-api", + "kind": "module", + "name": "`napi_fatal_exception`", + "signature": "`napi_fatal_exception`", + "label": "napi_fatal_exception", + "apiSymbol": "napi_fatal_exception", + "depth": 1, + "scope": "api", + "anchor": "napi_fatal_exception", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:4d79e9043d26", + "chapter": "n-api", + "kind": "module", + "name": "`napi_fatal_error`", + "signature": "`napi_fatal_error`", + "label": "napi_fatal_error", + "apiSymbol": "napi_fatal_error", + "depth": 1, + "scope": "api", + "anchor": "napi_fatal_error", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:f146a7fa5426", + "chapter": "n-api", + "kind": "module", + "name": "`napi_open_handle_scope`", + "signature": "`napi_open_handle_scope`", + "label": "napi_open_handle_scope", + "apiSymbol": "napi_open_handle_scope", + "depth": 1, + "scope": "api", + "anchor": "napi_open_handle_scope", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:01b82f2ca495", + "chapter": "n-api", + "kind": "module", + "name": "`napi_close_handle_scope`", + "signature": "`napi_close_handle_scope`", + "label": "napi_close_handle_scope", + "apiSymbol": "napi_close_handle_scope", + "depth": 1, + "scope": "api", + "anchor": "napi_close_handle_scope", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:5280927e6869", + "chapter": "n-api", + "kind": "module", + "name": "`napi_open_escapable_handle_scope`", + "signature": "`napi_open_escapable_handle_scope`", + "label": "napi_open_escapable_handle_scope", + "apiSymbol": "napi_open_escapable_handle_scope", + "depth": 1, + "scope": "api", + "anchor": "napi_open_escapable_handle_scope", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:610f8687e828", + "chapter": "n-api", + "kind": "module", + "name": "`napi_close_escapable_handle_scope`", + "signature": "`napi_close_escapable_handle_scope`", + "label": "napi_close_escapable_handle_scope", + "apiSymbol": "napi_close_escapable_handle_scope", + "depth": 1, + "scope": "api", + "anchor": "napi_close_escapable_handle_scope", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:20fffb161e05", + "chapter": "n-api", + "kind": "module", + "name": "`napi_escape_handle`", + "signature": "`napi_escape_handle`", + "label": "napi_escape_handle", + "apiSymbol": "napi_escape_handle", + "depth": 1, + "scope": "api", + "anchor": "napi_escape_handle", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:6770bd6f0a25", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_reference`", + "signature": "`napi_create_reference`", + "label": "napi_create_reference", + "apiSymbol": "napi_create_reference", + "depth": 1, + "scope": "api", + "anchor": "napi_create_reference", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:73e55f5d44c8", + "chapter": "n-api", + "kind": "module", + "name": "`napi_delete_reference`", + "signature": "`napi_delete_reference`", + "label": "napi_delete_reference", + "apiSymbol": "napi_delete_reference", + "depth": 1, + "scope": "api", + "anchor": "napi_delete_reference", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:9514be1aa1a7", + "chapter": "n-api", + "kind": "module", + "name": "`napi_reference_ref`", + "signature": "`napi_reference_ref`", + "label": "napi_reference_ref", + "apiSymbol": "napi_reference_ref", + "depth": 1, + "scope": "api", + "anchor": "napi_reference_ref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:5d7853eda192", + "chapter": "n-api", + "kind": "module", + "name": "`napi_reference_unref`", + "signature": "`napi_reference_unref`", + "label": "napi_reference_unref", + "apiSymbol": "napi_reference_unref", + "depth": 1, + "scope": "api", + "anchor": "napi_reference_unref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:1106c115d997", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_reference_value`", + "signature": "`napi_get_reference_value`", + "label": "napi_get_reference_value", + "apiSymbol": "napi_get_reference_value", + "depth": 1, + "scope": "api", + "anchor": "napi_get_reference_value", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:86c7c0f3d58e", + "chapter": "n-api", + "kind": "module", + "name": "`napi_add_env_cleanup_hook`", + "signature": "`napi_add_env_cleanup_hook`", + "label": "napi_add_env_cleanup_hook", + "apiSymbol": "napi_add_env_cleanup_hook", + "depth": 1, + "scope": "api", + "anchor": "napi_add_env_cleanup_hook", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:b651229e7cb7", + "chapter": "n-api", + "kind": "module", + "name": "`napi_remove_env_cleanup_hook`", + "signature": "`napi_remove_env_cleanup_hook`", + "label": "napi_remove_env_cleanup_hook", + "apiSymbol": "napi_remove_env_cleanup_hook", + "depth": 1, + "scope": "api", + "anchor": "napi_remove_env_cleanup_hook", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:78b51fd43af6", + "chapter": "n-api", + "kind": "module", + "name": "`napi_add_async_cleanup_hook`", + "signature": "`napi_add_async_cleanup_hook`", + "label": "napi_add_async_cleanup_hook", + "apiSymbol": "napi_add_async_cleanup_hook", + "depth": 1, + "scope": "api", + "anchor": "napi_add_async_cleanup_hook", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:4060445f8b6d", + "chapter": "n-api", + "kind": "module", + "name": "`napi_remove_async_cleanup_hook`", + "signature": "`napi_remove_async_cleanup_hook`", + "label": "napi_remove_async_cleanup_hook", + "apiSymbol": "napi_remove_async_cleanup_hook", + "depth": 1, + "scope": "api", + "anchor": "napi_remove_async_cleanup_hook", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:ca911a42e8fe", + "chapter": "n-api", + "kind": "module", + "name": "`napi_key_collection_mode`", + "signature": "`napi_key_collection_mode`", + "label": "napi_key_collection_mode", + "apiSymbol": "napi_key_collection_mode", + "depth": 1, + "scope": "api", + "anchor": "napi_key_collection_mode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:0c44f0967fe5", + "chapter": "n-api", + "kind": "module", + "name": "`napi_key_filter`", + "signature": "`napi_key_filter`", + "label": "napi_key_filter", + "apiSymbol": "napi_key_filter", + "depth": 1, + "scope": "api", + "anchor": "napi_key_filter", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:7de8e211ee7e", + "chapter": "n-api", + "kind": "module", + "name": "`napi_key_conversion`", + "signature": "`napi_key_conversion`", + "label": "napi_key_conversion", + "apiSymbol": "napi_key_conversion", + "depth": 1, + "scope": "api", + "anchor": "napi_key_conversion", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:1d8104fc892e", + "chapter": "n-api", + "kind": "module", + "name": "`napi_valuetype`", + "signature": "`napi_valuetype`", + "label": "napi_valuetype", + "apiSymbol": "napi_valuetype", + "depth": 1, + "scope": "api", + "anchor": "napi_valuetype", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:30ef3fa52362", + "chapter": "n-api", + "kind": "module", + "name": "`napi_typedarray_type`", + "signature": "`napi_typedarray_type`", + "label": "napi_typedarray_type", + "apiSymbol": "napi_typedarray_type", + "depth": 1, + "scope": "api", + "anchor": "napi_typedarray_type", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:62e31902c6e2", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_array`", + "signature": "`napi_create_array`", + "label": "napi_create_array", + "apiSymbol": "napi_create_array", + "depth": 1, + "scope": "api", + "anchor": "napi_create_array", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:20dedb41a7e9", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_array_with_length`", + "signature": "`napi_create_array_with_length`", + "label": "napi_create_array_with_length", + "apiSymbol": "napi_create_array_with_length", + "depth": 1, + "scope": "api", + "anchor": "napi_create_array_with_length", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:a336ad743fe2", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_arraybuffer`", + "signature": "`napi_create_arraybuffer`", + "label": "napi_create_arraybuffer", + "apiSymbol": "napi_create_arraybuffer", + "depth": 1, + "scope": "api", + "anchor": "napi_create_arraybuffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:f9a35d0d0bf1", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_buffer`", + "signature": "`napi_create_buffer`", + "label": "napi_create_buffer", + "apiSymbol": "napi_create_buffer", + "depth": 1, + "scope": "api", + "anchor": "napi_create_buffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:b47f9501cd03", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_buffer_copy`", + "signature": "`napi_create_buffer_copy`", + "label": "napi_create_buffer_copy", + "apiSymbol": "napi_create_buffer_copy", + "depth": 1, + "scope": "api", + "anchor": "napi_create_buffer_copy", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:1ed164873e22", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_date`", + "signature": "`napi_create_date`", + "label": "napi_create_date", + "apiSymbol": "napi_create_date", + "depth": 1, + "scope": "api", + "anchor": "napi_create_date", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:c0392b133667", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_external`", + "signature": "`napi_create_external`", + "label": "napi_create_external", + "apiSymbol": "napi_create_external", + "depth": 1, + "scope": "api", + "anchor": "napi_create_external", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:06963a764557", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_external_arraybuffer`", + "signature": "`napi_create_external_arraybuffer`", + "label": "napi_create_external_arraybuffer", + "apiSymbol": "napi_create_external_arraybuffer", + "depth": 1, + "scope": "api", + "anchor": "napi_create_external_arraybuffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:5d9ef3c614d9", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_external_buffer`", + "signature": "`napi_create_external_buffer`", + "label": "napi_create_external_buffer", + "apiSymbol": "napi_create_external_buffer", + "depth": 1, + "scope": "api", + "anchor": "napi_create_external_buffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:91ba077f140d", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_object`", + "signature": "`napi_create_object`", + "label": "napi_create_object", + "apiSymbol": "napi_create_object", + "depth": 1, + "scope": "api", + "anchor": "napi_create_object", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:b8ad27138e44", + "chapter": "n-api", + "kind": "module", + "name": "`node_api_create_object_with_properties`", + "signature": "`node_api_create_object_with_properties`", + "label": "node_api_create_object_with_properties", + "apiSymbol": "node_api_create_object_with_properties", + "depth": 1, + "scope": "api", + "anchor": "node_api_create_object_with_properties", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:6f38bff25a24", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_symbol`", + "signature": "`napi_create_symbol`", + "label": "napi_create_symbol", + "apiSymbol": "napi_create_symbol", + "depth": 1, + "scope": "api", + "anchor": "napi_create_symbol", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:3df601b58449", + "chapter": "n-api", + "kind": "module", + "name": "`node_api_symbol_for`", + "signature": "`node_api_symbol_for`", + "label": "node_api_symbol_for", + "apiSymbol": "node_api_symbol_for", + "depth": 1, + "scope": "api", + "anchor": "node_api_symbol_for", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:2a2d5e7071f3", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_typedarray`", + "signature": "`napi_create_typedarray`", + "label": "napi_create_typedarray", + "apiSymbol": "napi_create_typedarray", + "depth": 1, + "scope": "api", + "anchor": "napi_create_typedarray", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:152f71daeb28", + "chapter": "n-api", + "kind": "module", + "name": "`node_api_create_buffer_from_arraybuffer`", + "signature": "`node_api_create_buffer_from_arraybuffer`", + "label": "node_api_create_buffer_from_arraybuffer", + "apiSymbol": "node_api_create_buffer_from_arraybuffer", + "depth": 1, + "scope": "api", + "anchor": "node_api_create_buffer_from_arraybuffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:8a501b06a110", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_dataview`", + "signature": "`napi_create_dataview`", + "label": "napi_create_dataview", + "apiSymbol": "napi_create_dataview", + "depth": 1, + "scope": "api", + "anchor": "napi_create_dataview", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:980d965eecef", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_int32`", + "signature": "`napi_create_int32`", + "label": "napi_create_int32", + "apiSymbol": "napi_create_int32", + "depth": 1, + "scope": "api", + "anchor": "napi_create_int32", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:a2f65d139a91", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_uint32`", + "signature": "`napi_create_uint32`", + "label": "napi_create_uint32", + "apiSymbol": "napi_create_uint32", + "depth": 1, + "scope": "api", + "anchor": "napi_create_uint32", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:d00f489f4fa5", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_int64`", + "signature": "`napi_create_int64`", + "label": "napi_create_int64", + "apiSymbol": "napi_create_int64", + "depth": 1, + "scope": "api", + "anchor": "napi_create_int64", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:b1fdb149ad44", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_double`", + "signature": "`napi_create_double`", + "label": "napi_create_double", + "apiSymbol": "napi_create_double", + "depth": 1, + "scope": "api", + "anchor": "napi_create_double", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:7d742a039177", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_bigint_int64`", + "signature": "`napi_create_bigint_int64`", + "label": "napi_create_bigint_int64", + "apiSymbol": "napi_create_bigint_int64", + "depth": 1, + "scope": "api", + "anchor": "napi_create_bigint_int64", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:b7b5a9f33aac", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_bigint_uint64`", + "signature": "`napi_create_bigint_uint64`", + "label": "napi_create_bigint_uint64", + "apiSymbol": "napi_create_bigint_uint64", + "depth": 1, + "scope": "api", + "anchor": "napi_create_bigint_uint64", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:ef823608cb4c", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_bigint_words`", + "signature": "`napi_create_bigint_words`", + "label": "napi_create_bigint_words", + "apiSymbol": "napi_create_bigint_words", + "depth": 1, + "scope": "api", + "anchor": "napi_create_bigint_words", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:c90330e15138", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_string_latin1`", + "signature": "`napi_create_string_latin1`", + "label": "napi_create_string_latin1", + "apiSymbol": "napi_create_string_latin1", + "depth": 1, + "scope": "api", + "anchor": "napi_create_string_latin1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:3839b564b866", + "chapter": "n-api", + "kind": "module", + "name": "`node_api_create_external_string_latin1`", + "signature": "`node_api_create_external_string_latin1`", + "label": "node_api_create_external_string_latin1", + "apiSymbol": "node_api_create_external_string_latin1", + "depth": 1, + "scope": "api", + "anchor": "node_api_create_external_string_latin1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:7921daec6f75", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_string_utf16`", + "signature": "`napi_create_string_utf16`", + "label": "napi_create_string_utf16", + "apiSymbol": "napi_create_string_utf16", + "depth": 1, + "scope": "api", + "anchor": "napi_create_string_utf16", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:15e8e7830462", + "chapter": "n-api", + "kind": "module", + "name": "`node_api_create_external_string_utf16`", + "signature": "`node_api_create_external_string_utf16`", + "label": "node_api_create_external_string_utf16", + "apiSymbol": "node_api_create_external_string_utf16", + "depth": 1, + "scope": "api", + "anchor": "node_api_create_external_string_utf16", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:285a4864f65a", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_string_utf8`", + "signature": "`napi_create_string_utf8`", + "label": "napi_create_string_utf8", + "apiSymbol": "napi_create_string_utf8", + "depth": 1, + "scope": "api", + "anchor": "napi_create_string_utf8", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:cd969bdce97c", + "chapter": "n-api", + "kind": "module", + "name": "`node_api_create_property_key_latin1`", + "signature": "`node_api_create_property_key_latin1`", + "label": "node_api_create_property_key_latin1", + "apiSymbol": "node_api_create_property_key_latin1", + "depth": 1, + "scope": "api", + "anchor": "node_api_create_property_key_latin1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:70125f5b6ff9", + "chapter": "n-api", + "kind": "module", + "name": "`node_api_create_property_key_utf16`", + "signature": "`node_api_create_property_key_utf16`", + "label": "node_api_create_property_key_utf16", + "apiSymbol": "node_api_create_property_key_utf16", + "depth": 1, + "scope": "api", + "anchor": "node_api_create_property_key_utf16", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:2b4392cd909f", + "chapter": "n-api", + "kind": "module", + "name": "`node_api_create_property_key_utf8`", + "signature": "`node_api_create_property_key_utf8`", + "label": "node_api_create_property_key_utf8", + "apiSymbol": "node_api_create_property_key_utf8", + "depth": 1, + "scope": "api", + "anchor": "node_api_create_property_key_utf8", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:2adec83440a2", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_array_length`", + "signature": "`napi_get_array_length`", + "label": "napi_get_array_length", + "apiSymbol": "napi_get_array_length", + "depth": 1, + "scope": "api", + "anchor": "napi_get_array_length", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:61c913199d91", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_arraybuffer_info`", + "signature": "`napi_get_arraybuffer_info`", + "label": "napi_get_arraybuffer_info", + "apiSymbol": "napi_get_arraybuffer_info", + "depth": 1, + "scope": "api", + "anchor": "napi_get_arraybuffer_info", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:2584efb384e7", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_buffer_info`", + "signature": "`napi_get_buffer_info`", + "label": "napi_get_buffer_info", + "apiSymbol": "napi_get_buffer_info", + "depth": 1, + "scope": "api", + "anchor": "napi_get_buffer_info", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:2398349550d0", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_prototype`", + "signature": "`napi_get_prototype`", + "label": "napi_get_prototype", + "apiSymbol": "napi_get_prototype", + "depth": 1, + "scope": "api", + "anchor": "napi_get_prototype", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:c07e1e81b53e", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_typedarray_info`", + "signature": "`napi_get_typedarray_info`", + "label": "napi_get_typedarray_info", + "apiSymbol": "napi_get_typedarray_info", + "depth": 1, + "scope": "api", + "anchor": "napi_get_typedarray_info", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:11fcd005308c", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_dataview_info`", + "signature": "`napi_get_dataview_info`", + "label": "napi_get_dataview_info", + "apiSymbol": "napi_get_dataview_info", + "depth": 1, + "scope": "api", + "anchor": "napi_get_dataview_info", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:fad68a09a93c", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_date_value`", + "signature": "`napi_get_date_value`", + "label": "napi_get_date_value", + "apiSymbol": "napi_get_date_value", + "depth": 1, + "scope": "api", + "anchor": "napi_get_date_value", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:65129e138659", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_value_bool`", + "signature": "`napi_get_value_bool`", + "label": "napi_get_value_bool", + "apiSymbol": "napi_get_value_bool", + "depth": 1, + "scope": "api", + "anchor": "napi_get_value_bool", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:749351a3d40d", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_value_double`", + "signature": "`napi_get_value_double`", + "label": "napi_get_value_double", + "apiSymbol": "napi_get_value_double", + "depth": 1, + "scope": "api", + "anchor": "napi_get_value_double", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:85c1b84be620", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_value_bigint_int64`", + "signature": "`napi_get_value_bigint_int64`", + "label": "napi_get_value_bigint_int64", + "apiSymbol": "napi_get_value_bigint_int64", + "depth": 1, + "scope": "api", + "anchor": "napi_get_value_bigint_int64", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:7ba4d8eb9dcb", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_value_bigint_uint64`", + "signature": "`napi_get_value_bigint_uint64`", + "label": "napi_get_value_bigint_uint64", + "apiSymbol": "napi_get_value_bigint_uint64", + "depth": 1, + "scope": "api", + "anchor": "napi_get_value_bigint_uint64", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:126338e0124d", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_value_bigint_words`", + "signature": "`napi_get_value_bigint_words`", + "label": "napi_get_value_bigint_words", + "apiSymbol": "napi_get_value_bigint_words", + "depth": 1, + "scope": "api", + "anchor": "napi_get_value_bigint_words", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:9e0e38fa3973", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_value_external`", + "signature": "`napi_get_value_external`", + "label": "napi_get_value_external", + "apiSymbol": "napi_get_value_external", + "depth": 1, + "scope": "api", + "anchor": "napi_get_value_external", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:66b94fc60093", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_value_int32`", + "signature": "`napi_get_value_int32`", + "label": "napi_get_value_int32", + "apiSymbol": "napi_get_value_int32", + "depth": 1, + "scope": "api", + "anchor": "napi_get_value_int32", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:20d58c9a6ad8", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_value_int64`", + "signature": "`napi_get_value_int64`", + "label": "napi_get_value_int64", + "apiSymbol": "napi_get_value_int64", + "depth": 1, + "scope": "api", + "anchor": "napi_get_value_int64", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:c5c1a409e4e1", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_value_string_latin1`", + "signature": "`napi_get_value_string_latin1`", + "label": "napi_get_value_string_latin1", + "apiSymbol": "napi_get_value_string_latin1", + "depth": 1, + "scope": "api", + "anchor": "napi_get_value_string_latin1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:d74520842100", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_value_string_utf8`", + "signature": "`napi_get_value_string_utf8`", + "label": "napi_get_value_string_utf8", + "apiSymbol": "napi_get_value_string_utf8", + "depth": 1, + "scope": "api", + "anchor": "napi_get_value_string_utf8", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:7fe851d7357d", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_value_string_utf16`", + "signature": "`napi_get_value_string_utf16`", + "label": "napi_get_value_string_utf16", + "apiSymbol": "napi_get_value_string_utf16", + "depth": 1, + "scope": "api", + "anchor": "napi_get_value_string_utf16", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:28089e5e4754", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_value_uint32`", + "signature": "`napi_get_value_uint32`", + "label": "napi_get_value_uint32", + "apiSymbol": "napi_get_value_uint32", + "depth": 1, + "scope": "api", + "anchor": "napi_get_value_uint32", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:a48dc84eaa90", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_boolean`", + "signature": "`napi_get_boolean`", + "label": "napi_get_boolean", + "apiSymbol": "napi_get_boolean", + "depth": 1, + "scope": "api", + "anchor": "napi_get_boolean", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:935d68788400", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_global`", + "signature": "`napi_get_global`", + "label": "napi_get_global", + "apiSymbol": "napi_get_global", + "depth": 1, + "scope": "api", + "anchor": "napi_get_global", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:cb4598d3cdb9", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_null`", + "signature": "`napi_get_null`", + "label": "napi_get_null", + "apiSymbol": "napi_get_null", + "depth": 1, + "scope": "api", + "anchor": "napi_get_null", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:35af55061103", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_undefined`", + "signature": "`napi_get_undefined`", + "label": "napi_get_undefined", + "apiSymbol": "napi_get_undefined", + "depth": 1, + "scope": "api", + "anchor": "napi_get_undefined", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:583bdde74129", + "chapter": "n-api", + "kind": "module", + "name": "`napi_coerce_to_bool`", + "signature": "`napi_coerce_to_bool`", + "label": "napi_coerce_to_bool", + "apiSymbol": "napi_coerce_to_bool", + "depth": 1, + "scope": "api", + "anchor": "napi_coerce_to_bool", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:d359568af2fe", + "chapter": "n-api", + "kind": "module", + "name": "`napi_coerce_to_number`", + "signature": "`napi_coerce_to_number`", + "label": "napi_coerce_to_number", + "apiSymbol": "napi_coerce_to_number", + "depth": 1, + "scope": "api", + "anchor": "napi_coerce_to_number", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:d8c37f50f2dc", + "chapter": "n-api", + "kind": "module", + "name": "`napi_coerce_to_object`", + "signature": "`napi_coerce_to_object`", + "label": "napi_coerce_to_object", + "apiSymbol": "napi_coerce_to_object", + "depth": 1, + "scope": "api", + "anchor": "napi_coerce_to_object", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:04486600973f", + "chapter": "n-api", + "kind": "module", + "name": "`napi_coerce_to_string`", + "signature": "`napi_coerce_to_string`", + "label": "napi_coerce_to_string", + "apiSymbol": "napi_coerce_to_string", + "depth": 1, + "scope": "api", + "anchor": "napi_coerce_to_string", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:3c892e284788", + "chapter": "n-api", + "kind": "module", + "name": "`napi_typeof`", + "signature": "`napi_typeof`", + "label": "napi_typeof", + "apiSymbol": "napi_typeof", + "depth": 1, + "scope": "api", + "anchor": "napi_typeof", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:01e3e0dd20d9", + "chapter": "n-api", + "kind": "module", + "name": "`napi_instanceof`", + "signature": "`napi_instanceof`", + "label": "napi_instanceof", + "apiSymbol": "napi_instanceof", + "depth": 1, + "scope": "api", + "anchor": "napi_instanceof", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:c33cf9ea1083", + "chapter": "n-api", + "kind": "module", + "name": "`napi_is_array`", + "signature": "`napi_is_array`", + "label": "napi_is_array", + "apiSymbol": "napi_is_array", + "depth": 1, + "scope": "api", + "anchor": "napi_is_array", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:9b91ee57e02f", + "chapter": "n-api", + "kind": "module", + "name": "`napi_is_arraybuffer`", + "signature": "`napi_is_arraybuffer`", + "label": "napi_is_arraybuffer", + "apiSymbol": "napi_is_arraybuffer", + "depth": 1, + "scope": "api", + "anchor": "napi_is_arraybuffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:eb431121be87", + "chapter": "n-api", + "kind": "module", + "name": "`napi_is_buffer`", + "signature": "`napi_is_buffer`", + "label": "napi_is_buffer", + "apiSymbol": "napi_is_buffer", + "depth": 1, + "scope": "api", + "anchor": "napi_is_buffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:6ff4660c5a8e", + "chapter": "n-api", + "kind": "module", + "name": "`napi_is_date`", + "signature": "`napi_is_date`", + "label": "napi_is_date", + "apiSymbol": "napi_is_date", + "depth": 1, + "scope": "api", + "anchor": "napi_is_date", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:505acd7a959b", + "chapter": "n-api", + "kind": "module", + "name": "`napi_is_error`", + "signature": "`napi_is_error`", + "label": "napi_is_error", + "apiSymbol": "napi_is_error", + "depth": 1, + "scope": "api", + "anchor": "napi_is_error_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:de783260ac6b", + "chapter": "n-api", + "kind": "module", + "name": "`napi_is_typedarray`", + "signature": "`napi_is_typedarray`", + "label": "napi_is_typedarray", + "apiSymbol": "napi_is_typedarray", + "depth": 1, + "scope": "api", + "anchor": "napi_is_typedarray", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:39c78abd9daf", + "chapter": "n-api", + "kind": "module", + "name": "`napi_is_dataview`", + "signature": "`napi_is_dataview`", + "label": "napi_is_dataview", + "apiSymbol": "napi_is_dataview", + "depth": 1, + "scope": "api", + "anchor": "napi_is_dataview", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:96531a60a025", + "chapter": "n-api", + "kind": "module", + "name": "`napi_strict_equals`", + "signature": "`napi_strict_equals`", + "label": "napi_strict_equals", + "apiSymbol": "napi_strict_equals", + "depth": 1, + "scope": "api", + "anchor": "napi_strict_equals", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:43fb6edb7d26", + "chapter": "n-api", + "kind": "module", + "name": "`napi_detach_arraybuffer`", + "signature": "`napi_detach_arraybuffer`", + "label": "napi_detach_arraybuffer", + "apiSymbol": "napi_detach_arraybuffer", + "depth": 1, + "scope": "api", + "anchor": "napi_detach_arraybuffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:0b3343847d5d", + "chapter": "n-api", + "kind": "module", + "name": "`napi_is_detached_arraybuffer`", + "signature": "`napi_is_detached_arraybuffer`", + "label": "napi_is_detached_arraybuffer", + "apiSymbol": "napi_is_detached_arraybuffer", + "depth": 1, + "scope": "api", + "anchor": "napi_is_detached_arraybuffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:45a60a40e992", + "chapter": "n-api", + "kind": "module", + "name": "`node_api_is_sharedarraybuffer`", + "signature": "`node_api_is_sharedarraybuffer`", + "label": "node_api_is_sharedarraybuffer", + "apiSymbol": "node_api_is_sharedarraybuffer", + "depth": 1, + "scope": "api", + "anchor": "node_api_is_sharedarraybuffer", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:1783bd417ea8", + "chapter": "n-api", + "kind": "module", + "name": "`node_api_create_sharedarraybuffer`", + "signature": "`node_api_create_sharedarraybuffer`", + "label": "node_api_create_sharedarraybuffer", + "apiSymbol": "node_api_create_sharedarraybuffer", + "depth": 1, + "scope": "api", + "anchor": "node_api_create_sharedarraybuffer", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:76d894c85599", + "chapter": "n-api", + "kind": "module", + "name": "`napi_property_attributes`", + "signature": "`napi_property_attributes`", + "label": "napi_property_attributes", + "apiSymbol": "napi_property_attributes", + "depth": 1, + "scope": "api", + "anchor": "napi_property_attributes", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:25fb9017326d", + "chapter": "n-api", + "kind": "module", + "name": "`napi_property_descriptor`", + "signature": "`napi_property_descriptor`", + "label": "napi_property_descriptor", + "apiSymbol": "napi_property_descriptor", + "depth": 1, + "scope": "api", + "anchor": "napi_property_descriptor", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:064fdc83cbc1", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_property_names`", + "signature": "`napi_get_property_names`", + "label": "napi_get_property_names", + "apiSymbol": "napi_get_property_names", + "depth": 1, + "scope": "api", + "anchor": "napi_get_property_names", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:9871f5542bd5", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_all_property_names`", + "signature": "`napi_get_all_property_names`", + "label": "napi_get_all_property_names", + "apiSymbol": "napi_get_all_property_names", + "depth": 1, + "scope": "api", + "anchor": "napi_get_all_property_names", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:41530a30c64f", + "chapter": "n-api", + "kind": "module", + "name": "`napi_set_property`", + "signature": "`napi_set_property`", + "label": "napi_set_property", + "apiSymbol": "napi_set_property", + "depth": 1, + "scope": "api", + "anchor": "napi_set_property", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:c08528c2fb17", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_property`", + "signature": "`napi_get_property`", + "label": "napi_get_property", + "apiSymbol": "napi_get_property", + "depth": 1, + "scope": "api", + "anchor": "napi_get_property", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:4b8748661ec2", + "chapter": "n-api", + "kind": "module", + "name": "`napi_has_property`", + "signature": "`napi_has_property`", + "label": "napi_has_property", + "apiSymbol": "napi_has_property", + "depth": 1, + "scope": "api", + "anchor": "napi_has_property", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:7919b5b23eab", + "chapter": "n-api", + "kind": "module", + "name": "`napi_delete_property`", + "signature": "`napi_delete_property`", + "label": "napi_delete_property", + "apiSymbol": "napi_delete_property", + "depth": 1, + "scope": "api", + "anchor": "napi_delete_property", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:55b770561307", + "chapter": "n-api", + "kind": "module", + "name": "`napi_has_own_property`", + "signature": "`napi_has_own_property`", + "label": "napi_has_own_property", + "apiSymbol": "napi_has_own_property", + "depth": 1, + "scope": "api", + "anchor": "napi_has_own_property", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:d0145a0fdb8f", + "chapter": "n-api", + "kind": "module", + "name": "`napi_set_named_property`", + "signature": "`napi_set_named_property`", + "label": "napi_set_named_property", + "apiSymbol": "napi_set_named_property", + "depth": 1, + "scope": "api", + "anchor": "napi_set_named_property", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:bf5cdd236567", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_named_property`", + "signature": "`napi_get_named_property`", + "label": "napi_get_named_property", + "apiSymbol": "napi_get_named_property", + "depth": 1, + "scope": "api", + "anchor": "napi_get_named_property", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:10d05100b0f3", + "chapter": "n-api", + "kind": "module", + "name": "`napi_has_named_property`", + "signature": "`napi_has_named_property`", + "label": "napi_has_named_property", + "apiSymbol": "napi_has_named_property", + "depth": 1, + "scope": "api", + "anchor": "napi_has_named_property", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:f95498377d16", + "chapter": "n-api", + "kind": "module", + "name": "`napi_set_element`", + "signature": "`napi_set_element`", + "label": "napi_set_element", + "apiSymbol": "napi_set_element", + "depth": 1, + "scope": "api", + "anchor": "napi_set_element", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:463b30f92ba3", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_element`", + "signature": "`napi_get_element`", + "label": "napi_get_element", + "apiSymbol": "napi_get_element", + "depth": 1, + "scope": "api", + "anchor": "napi_get_element", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:d9ab81313b58", + "chapter": "n-api", + "kind": "module", + "name": "`napi_has_element`", + "signature": "`napi_has_element`", + "label": "napi_has_element", + "apiSymbol": "napi_has_element", + "depth": 1, + "scope": "api", + "anchor": "napi_has_element", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:90561d67436c", + "chapter": "n-api", + "kind": "module", + "name": "`napi_delete_element`", + "signature": "`napi_delete_element`", + "label": "napi_delete_element", + "apiSymbol": "napi_delete_element", + "depth": 1, + "scope": "api", + "anchor": "napi_delete_element", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:9dc15c6210f1", + "chapter": "n-api", + "kind": "module", + "name": "`napi_define_properties`", + "signature": "`napi_define_properties`", + "label": "napi_define_properties", + "apiSymbol": "napi_define_properties", + "depth": 1, + "scope": "api", + "anchor": "napi_define_properties", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:f19f1f5fd321", + "chapter": "n-api", + "kind": "module", + "name": "`napi_object_freeze`", + "signature": "`napi_object_freeze`", + "label": "napi_object_freeze", + "apiSymbol": "napi_object_freeze", + "depth": 1, + "scope": "api", + "anchor": "napi_object_freeze", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:77fc8bd0ed0b", + "chapter": "n-api", + "kind": "module", + "name": "`napi_object_seal`", + "signature": "`napi_object_seal`", + "label": "napi_object_seal", + "apiSymbol": "napi_object_seal", + "depth": 1, + "scope": "api", + "anchor": "napi_object_seal", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:73998822c747", + "chapter": "n-api", + "kind": "module", + "name": "`node_api_set_prototype`", + "signature": "`node_api_set_prototype`", + "label": "node_api_set_prototype", + "apiSymbol": "node_api_set_prototype", + "depth": 1, + "scope": "api", + "anchor": "node_api_set_prototype", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:918785f49e71", + "chapter": "n-api", + "kind": "module", + "name": "`napi_call_function`", + "signature": "`napi_call_function`", + "label": "napi_call_function", + "apiSymbol": "napi_call_function", + "depth": 1, + "scope": "api", + "anchor": "napi_call_function", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:582790bb93f0", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_function`", + "signature": "`napi_create_function`", + "label": "napi_create_function", + "apiSymbol": "napi_create_function", + "depth": 1, + "scope": "api", + "anchor": "napi_create_function", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:cc1397bf5963", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_cb_info`", + "signature": "`napi_get_cb_info`", + "label": "napi_get_cb_info", + "apiSymbol": "napi_get_cb_info", + "depth": 1, + "scope": "api", + "anchor": "napi_get_cb_info", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:f9b386053441", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_new_target`", + "signature": "`napi_get_new_target`", + "label": "napi_get_new_target", + "apiSymbol": "napi_get_new_target", + "depth": 1, + "scope": "api", + "anchor": "napi_get_new_target", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:9ed178c4c4ac", + "chapter": "n-api", + "kind": "module", + "name": "`napi_new_instance`", + "signature": "`napi_new_instance`", + "label": "napi_new_instance", + "apiSymbol": "napi_new_instance", + "depth": 1, + "scope": "api", + "anchor": "napi_new_instance", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:5c3e5f42a157", + "chapter": "n-api", + "kind": "module", + "name": "`napi_define_class`", + "signature": "`napi_define_class`", + "label": "napi_define_class", + "apiSymbol": "napi_define_class", + "depth": 1, + "scope": "api", + "anchor": "napi_define_class", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:ed3b92d3f3db", + "chapter": "n-api", + "kind": "module", + "name": "`napi_wrap`", + "signature": "`napi_wrap`", + "label": "napi_wrap", + "apiSymbol": "napi_wrap", + "depth": 1, + "scope": "api", + "anchor": "napi_wrap", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:25e7455dcee5", + "chapter": "n-api", + "kind": "module", + "name": "`napi_unwrap`", + "signature": "`napi_unwrap`", + "label": "napi_unwrap", + "apiSymbol": "napi_unwrap", + "depth": 1, + "scope": "api", + "anchor": "napi_unwrap", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:2bdbdfae5c0a", + "chapter": "n-api", + "kind": "module", + "name": "`napi_remove_wrap`", + "signature": "`napi_remove_wrap`", + "label": "napi_remove_wrap", + "apiSymbol": "napi_remove_wrap", + "depth": 1, + "scope": "api", + "anchor": "napi_remove_wrap", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:3d8e2075f2f0", + "chapter": "n-api", + "kind": "module", + "name": "`napi_type_tag_object`", + "signature": "`napi_type_tag_object`", + "label": "napi_type_tag_object", + "apiSymbol": "napi_type_tag_object", + "depth": 1, + "scope": "api", + "anchor": "napi_type_tag_object", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:50eb42c4400f", + "chapter": "n-api", + "kind": "module", + "name": "`napi_check_object_type_tag`", + "signature": "`napi_check_object_type_tag`", + "label": "napi_check_object_type_tag", + "apiSymbol": "napi_check_object_type_tag", + "depth": 1, + "scope": "api", + "anchor": "napi_check_object_type_tag", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:4ef49bd9c6f6", + "chapter": "n-api", + "kind": "module", + "name": "`napi_add_finalizer`", + "signature": "`napi_add_finalizer`", + "label": "napi_add_finalizer", + "apiSymbol": "napi_add_finalizer", + "depth": 1, + "scope": "api", + "anchor": "napi_add_finalizer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:72646a7d3e02", + "chapter": "n-api", + "kind": "module", + "name": "`node_api_post_finalizer`", + "signature": "`node_api_post_finalizer`", + "label": "node_api_post_finalizer", + "apiSymbol": "node_api_post_finalizer", + "depth": 2, + "scope": "api", + "anchor": "node_api_post_finalizer", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:735b6a78d484", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_async_work`", + "signature": "`napi_create_async_work`", + "label": "napi_create_async_work", + "apiSymbol": "napi_create_async_work", + "depth": 1, + "scope": "api", + "anchor": "napi_create_async_work", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:c3c2ccf78210", + "chapter": "n-api", + "kind": "module", + "name": "`napi_delete_async_work`", + "signature": "`napi_delete_async_work`", + "label": "napi_delete_async_work", + "apiSymbol": "napi_delete_async_work", + "depth": 1, + "scope": "api", + "anchor": "napi_delete_async_work", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:5a987d581d98", + "chapter": "n-api", + "kind": "module", + "name": "`napi_queue_async_work`", + "signature": "`napi_queue_async_work`", + "label": "napi_queue_async_work", + "apiSymbol": "napi_queue_async_work", + "depth": 1, + "scope": "api", + "anchor": "napi_queue_async_work", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:06f4f13441f6", + "chapter": "n-api", + "kind": "module", + "name": "`napi_cancel_async_work`", + "signature": "`napi_cancel_async_work`", + "label": "napi_cancel_async_work", + "apiSymbol": "napi_cancel_async_work", + "depth": 1, + "scope": "api", + "anchor": "napi_cancel_async_work", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:11d18eeecfb7", + "chapter": "n-api", + "kind": "module", + "name": "`napi_async_init`", + "signature": "`napi_async_init`", + "label": "napi_async_init", + "apiSymbol": "napi_async_init", + "depth": 1, + "scope": "api", + "anchor": "napi_async_init", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:dadc87e5481f", + "chapter": "n-api", + "kind": "module", + "name": "`napi_async_destroy`", + "signature": "`napi_async_destroy`", + "label": "napi_async_destroy", + "apiSymbol": "napi_async_destroy", + "depth": 1, + "scope": "api", + "anchor": "napi_async_destroy", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:121123696858", + "chapter": "n-api", + "kind": "module", + "name": "`napi_make_callback`", + "signature": "`napi_make_callback`", + "label": "napi_make_callback", + "apiSymbol": "napi_make_callback", + "depth": 1, + "scope": "api", + "anchor": "napi_make_callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:67976a9bb397", + "chapter": "n-api", + "kind": "module", + "name": "`napi_open_callback_scope`", + "signature": "`napi_open_callback_scope`", + "label": "napi_open_callback_scope", + "apiSymbol": "napi_open_callback_scope", + "depth": 1, + "scope": "api", + "anchor": "napi_open_callback_scope", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:cc69786ba37e", + "chapter": "n-api", + "kind": "module", + "name": "`napi_close_callback_scope`", + "signature": "`napi_close_callback_scope`", + "label": "napi_close_callback_scope", + "apiSymbol": "napi_close_callback_scope", + "depth": 1, + "scope": "api", + "anchor": "napi_close_callback_scope", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:1f9855f179c9", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_node_version`", + "signature": "`napi_get_node_version`", + "label": "napi_get_node_version", + "apiSymbol": "napi_get_node_version", + "depth": 1, + "scope": "api", + "anchor": "napi_get_node_version", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:de276dc926e8", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_version`", + "signature": "`napi_get_version`", + "label": "napi_get_version", + "apiSymbol": "napi_get_version", + "depth": 1, + "scope": "api", + "anchor": "napi_get_version", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:05e7879530af", + "chapter": "n-api", + "kind": "module", + "name": "`napi_adjust_external_memory`", + "signature": "`napi_adjust_external_memory`", + "label": "napi_adjust_external_memory", + "apiSymbol": "napi_adjust_external_memory", + "depth": 1, + "scope": "api", + "anchor": "napi_adjust_external_memory", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:ffb7742b9b3e", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_promise`", + "signature": "`napi_create_promise`", + "label": "napi_create_promise", + "apiSymbol": "napi_create_promise", + "depth": 1, + "scope": "api", + "anchor": "napi_create_promise", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:076cf9b01c90", + "chapter": "n-api", + "kind": "module", + "name": "`napi_resolve_deferred`", + "signature": "`napi_resolve_deferred`", + "label": "napi_resolve_deferred", + "apiSymbol": "napi_resolve_deferred", + "depth": 1, + "scope": "api", + "anchor": "napi_resolve_deferred", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:f393a5436aab", + "chapter": "n-api", + "kind": "module", + "name": "`napi_reject_deferred`", + "signature": "`napi_reject_deferred`", + "label": "napi_reject_deferred", + "apiSymbol": "napi_reject_deferred", + "depth": 1, + "scope": "api", + "anchor": "napi_reject_deferred", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:6f2a9e6a8cb6", + "chapter": "n-api", + "kind": "module", + "name": "`napi_is_promise`", + "signature": "`napi_is_promise`", + "label": "napi_is_promise", + "apiSymbol": "napi_is_promise", + "depth": 1, + "scope": "api", + "anchor": "napi_is_promise", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:af5f1b80d29e", + "chapter": "n-api", + "kind": "module", + "name": "`napi_run_script`", + "signature": "`napi_run_script`", + "label": "napi_run_script", + "apiSymbol": "napi_run_script", + "depth": 1, + "scope": "api", + "anchor": "napi_run_script", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:da56ba2313c5", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_uv_event_loop`", + "signature": "`napi_get_uv_event_loop`", + "label": "napi_get_uv_event_loop", + "apiSymbol": "napi_get_uv_event_loop", + "depth": 1, + "scope": "api", + "anchor": "napi_get_uv_event_loop", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:35e30597b1ea", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_threadsafe_function`", + "signature": "`napi_create_threadsafe_function`", + "label": "napi_create_threadsafe_function", + "apiSymbol": "napi_create_threadsafe_function", + "depth": 1, + "scope": "api", + "anchor": "napi_create_threadsafe_function", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:f8620f2f71e9", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_threadsafe_function_context`", + "signature": "`napi_get_threadsafe_function_context`", + "label": "napi_get_threadsafe_function_context", + "apiSymbol": "napi_get_threadsafe_function_context", + "depth": 1, + "scope": "api", + "anchor": "napi_get_threadsafe_function_context", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:4cf1ffd71f5f", + "chapter": "n-api", + "kind": "module", + "name": "`napi_call_threadsafe_function`", + "signature": "`napi_call_threadsafe_function`", + "label": "napi_call_threadsafe_function", + "apiSymbol": "napi_call_threadsafe_function", + "depth": 1, + "scope": "api", + "anchor": "napi_call_threadsafe_function", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:a448e73d7109", + "chapter": "n-api", + "kind": "module", + "name": "`napi_acquire_threadsafe_function`", + "signature": "`napi_acquire_threadsafe_function`", + "label": "napi_acquire_threadsafe_function", + "apiSymbol": "napi_acquire_threadsafe_function", + "depth": 1, + "scope": "api", + "anchor": "napi_acquire_threadsafe_function", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:bd12bcd13c80", + "chapter": "n-api", + "kind": "module", + "name": "`napi_release_threadsafe_function`", + "signature": "`napi_release_threadsafe_function`", + "label": "napi_release_threadsafe_function", + "apiSymbol": "napi_release_threadsafe_function", + "depth": 1, + "scope": "api", + "anchor": "napi_release_threadsafe_function", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:46e86c97cfd5", + "chapter": "n-api", + "kind": "module", + "name": "`napi_ref_threadsafe_function`", + "signature": "`napi_ref_threadsafe_function`", + "label": "napi_ref_threadsafe_function", + "apiSymbol": "napi_ref_threadsafe_function", + "depth": 1, + "scope": "api", + "anchor": "napi_ref_threadsafe_function", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:345ef7816526", + "chapter": "n-api", + "kind": "module", + "name": "`napi_unref_threadsafe_function`", + "signature": "`napi_unref_threadsafe_function`", + "label": "napi_unref_threadsafe_function", + "apiSymbol": "napi_unref_threadsafe_function", + "depth": 1, + "scope": "api", + "anchor": "napi_unref_threadsafe_function", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "n-api:ed41a4d5549a", + "chapter": "n-api", + "kind": "module", + "name": "`node_api_get_module_file_name`", + "signature": "`node_api_get_module_file_name`", + "label": "node_api_get_module_file_name", + "apiSymbol": "node_api_get_module_file_name", + "depth": 1, + "scope": "api", + "anchor": "node_api_get_module_file_name", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "child_process:2ea7d697b4fb", + "chapter": "child_process", + "kind": "module", + "name": "child_process", + "signature": "Child process", + "label": "Child process", + "apiSymbol": "child_process", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + } + }, + { + "id": "child_process:e9644f54deb2", + "chapter": "child_process", + "kind": "module", + "name": "spawning_`.bat`_and_`.cmd`_files_on_windows", + "signature": "Spawning `.bat` and `.cmd` files on Windows", + "label": "Spawning .bat and .cmd files on Windows", + "apiSymbol": ".bat", + "depth": 1, + "scope": "api", + "anchor": "spawning-bat-and-cmd-files-on-windows", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "child_process:f47f2a8c7ca3", + "chapter": "child_process", + "kind": "method", + "name": "exec", + "signature": "`child_process.exec(command[, options][, callback])`", + "label": "child_process.exec(command[, options][, callback])", + "apiSymbol": "child_process.exec", + "depth": 1, + "scope": "api", + "anchor": "child_processexeccommand-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "child_process:208c270740f5", + "chapter": "child_process", + "kind": "method", + "name": "execFile", + "signature": "`child_process.execFile(file[, args][, options][, callback])`", + "label": "child_process.execFile(file[, args][, options][, callback])", + "apiSymbol": "child_process.execFile", + "depth": 1, + "scope": "api", + "anchor": "child_processexecfilefile-args-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "child_process:7f42373d1e50", + "chapter": "child_process", + "kind": "method", + "name": "fork", + "signature": "`child_process.fork(modulePath[, args][, options])`", + "label": "child_process.fork(modulePath[, args][, options])", + "apiSymbol": "child_process.fork", + "depth": 1, + "scope": "api", + "anchor": "child_processforkmodulepath-args-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "child_process:68579f790657", + "chapter": "child_process", + "kind": "method", + "name": "spawn", + "signature": "`child_process.spawn(command[, args][, options])`", + "label": "child_process.spawn(command[, args][, options])", + "apiSymbol": "child_process.spawn", + "depth": 1, + "scope": "api", + "anchor": "child_processspawncommand-args-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "child_process:abebcbcb71aa", + "chapter": "child_process", + "kind": "section", + "name": "detached", + "signature": "`options.detached`", + "label": "options.detached", + "apiSymbol": "options.detached", + "depth": 2, + "scope": "api", + "anchor": "optionsdetached", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "child_process:2b641feb4d00", + "chapter": "child_process", + "kind": "section", + "name": "stdio", + "signature": "`options.stdio`", + "label": "options.stdio", + "apiSymbol": "options.stdio", + "depth": 2, + "scope": "api", + "anchor": "optionsstdio", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "child_process:80ea5d759f8a", + "chapter": "child_process", + "kind": "method", + "name": "execFileSync", + "signature": "`child_process.execFileSync(file[, args][, options])`", + "label": "child_process.execFileSync(file[, args][, options])", + "apiSymbol": "child_process.execFileSync", + "depth": 1, + "scope": "api", + "anchor": "child_processexecfilesyncfile-args-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "child_process:79505e139e9d", + "chapter": "child_process", + "kind": "method", + "name": "execSync", + "signature": "`child_process.execSync(command[, options])`", + "label": "child_process.execSync(command[, options])", + "apiSymbol": "child_process.execSync", + "depth": 1, + "scope": "api", + "anchor": "child_processexecsynccommand-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "child_process:47169de929e0", + "chapter": "child_process", + "kind": "method", + "name": "spawnSync", + "signature": "`child_process.spawnSync(command[, args][, options])`", + "label": "child_process.spawnSync(command[, args][, options])", + "apiSymbol": "child_process.spawnSync", + "depth": 1, + "scope": "api", + "anchor": "child_processspawnsynccommand-args-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "child_process:9a9c99d0f1ba", + "chapter": "child_process", + "kind": "module", + "name": "`maxbuffer`_and_unicode", + "signature": "`maxBuffer` and Unicode", + "label": "maxBuffer", + "apiSymbol": "maxBuffer", + "depth": 1, + "scope": "api", + "anchor": "maxbuffer-and-unicode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "child_process:6f70df179b46", + "chapter": "child_process", + "kind": "class", + "name": "ChildProcess", + "signature": "Class: `ChildProcess`", + "label": "ChildProcess", + "apiSymbol": "ChildProcess", + "depth": 1, + "scope": "api", + "anchor": "class-childprocess", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "child_process:8b0c27fbae1f", + "chapter": "child_process", + "kind": "method", + "name": "disconnect", + "signature": "`subprocess.disconnect()`", + "label": "subprocess.disconnect()", + "apiSymbol": "subprocess.disconnect", + "depth": 2, + "scope": "api", + "anchor": "subprocessdisconnect", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "child_process:0099993e166e", + "chapter": "child_process", + "kind": "method", + "name": "kill", + "signature": "`subprocess.kill([signal])`", + "label": "subprocess.kill([signal])", + "apiSymbol": "subprocess.kill", + "depth": 2, + "scope": "api", + "anchor": "subprocesskillsignal", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "child_process:4665a40edf20", + "chapter": "child_process", + "kind": "method", + "name": "[Symbol.dispose]", + "signature": "`subprocess[Symbol.dispose]()`", + "label": "subprocess[Symbol.dispose]()", + "apiSymbol": "subprocess", + "depth": 2, + "scope": "api", + "anchor": "subprocesssymboldispose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "child_process:5851394dacfe", + "chapter": "child_process", + "kind": "method", + "name": "ref", + "signature": "`subprocess.ref()`", + "label": "subprocess.ref()", + "apiSymbol": "subprocess.ref", + "depth": 2, + "scope": "api", + "anchor": "subprocessref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "child_process:4efd845b6ae7", + "chapter": "child_process", + "kind": "method", + "name": "send", + "signature": "`subprocess.send(message[, sendHandle[, options]][, callback])`", + "label": "subprocess.send(message[, sendHandle[, options]][, callback])", + "apiSymbol": "subprocess.send", + "depth": 2, + "scope": "api", + "anchor": "subprocesssendmessage-sendhandle-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "child_process:5342bcc81b6f", + "chapter": "child_process", + "kind": "method", + "name": "unref", + "signature": "`subprocess.unref()`", + "label": "subprocess.unref()", + "apiSymbol": "subprocess.unref", + "depth": 2, + "scope": "api", + "anchor": "subprocessunref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "child_process:0212900a85b9", + "chapter": "child_process", + "kind": "Object", + "name": "Type", + "signature": "`channel` Type: {Object} A pipe representing the IPC channel to the child process.", + "label": "channel", + "apiSymbol": "channel", + "depth": 2, + "scope": "api", + "anchor": "class-childprocess", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "child_process:ac51764b6efd", + "chapter": "child_process", + "kind": "method", + "name": "ref", + "signature": "`subprocess.channel.ref()`", + "label": "subprocess.channel.ref()", + "apiSymbol": "subprocess.channel.ref", + "depth": 3, + "scope": "api", + "anchor": "subprocesschannelref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "child_process:ed0094174606", + "chapter": "child_process", + "kind": "method", + "name": "unref", + "signature": "`subprocess.channel.unref()`", + "label": "subprocess.channel.unref()", + "apiSymbol": "subprocess.channel.unref", + "depth": 3, + "scope": "api", + "anchor": "subprocesschannelunref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "child_process:9bdf04cea3e8", + "chapter": "child_process", + "kind": "boolean", + "name": "Type", + "signature": "`connected` Type: {boolean} Set to `false` after `subprocess.disconnect()` is called.", + "label": "connected", + "apiSymbol": "connected", + "depth": 2, + "scope": "api", + "anchor": "class-childprocess", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "child_process:4e67eefefd3a", + "chapter": "child_process", + "kind": "integer", + "name": "Type", + "signature": "`exitCode` Type: {integer}", + "label": "exitCode", + "apiSymbol": "exitCode", + "depth": 2, + "scope": "api", + "anchor": "class-childprocess", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "child_process:b0811a57c0c9", + "chapter": "child_process", + "kind": "boolean", + "name": "Type", + "signature": "`killed` Type: {boolean} Set to `true` after `subprocess.kill()` is used to successfully send a signal to the child process.", + "label": "killed", + "apiSymbol": "killed", + "depth": 2, + "scope": "api", + "anchor": "class-childprocess", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "child_process:bc5b80a98b48", + "chapter": "child_process", + "kind": "integer|undefined", + "name": "Type", + "signature": "`pid` Type: {integer|undefined}", + "label": "pid", + "apiSymbol": "pid", + "depth": 2, + "scope": "api", + "anchor": "class-childprocess", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "child_process:ecd0e632d88a", + "chapter": "child_process", + "kind": "string|null", + "name": "Type", + "signature": "`signalCode` Type: {string|null}", + "label": "signalCode", + "apiSymbol": "signalCode", + "depth": 2, + "scope": "api", + "anchor": "class-childprocess", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "child_process:31d67b68a96d", + "chapter": "child_process", + "kind": "Array", + "name": "Type", + "signature": "`spawnargs` Type: {Array}", + "label": "spawnargs", + "apiSymbol": "spawnargs", + "depth": 2, + "scope": "api", + "anchor": "class-childprocess", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "child_process:3afbde068ec9", + "chapter": "child_process", + "kind": "string", + "name": "Type", + "signature": "`spawnfile` Type: {string}", + "label": "spawnfile", + "apiSymbol": "spawnfile", + "depth": 2, + "scope": "api", + "anchor": "class-childprocess", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "child_process:ee449711cf20", + "chapter": "child_process", + "kind": "stream.Readable|null|undefined", + "name": "Type", + "signature": "`stderr` Type: {stream.Readable|null|undefined}", + "label": "stderr", + "apiSymbol": "stderr", + "depth": 2, + "scope": "api", + "anchor": "class-childprocess", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "child_process:468dee97bdda", + "chapter": "child_process", + "kind": "stream.Writable|null|undefined", + "name": "Type", + "signature": "`stdin` Type: {stream.Writable|null|undefined}", + "label": "stdin", + "apiSymbol": "stdin", + "depth": 2, + "scope": "api", + "anchor": "class-childprocess", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "child_process:673be4a4f0af", + "chapter": "child_process", + "kind": "Array", + "name": "Type", + "signature": "`stdio` Type: {Array}", + "label": "stdio", + "apiSymbol": "stdio", + "depth": 2, + "scope": "api", + "anchor": "class-childprocess", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "child_process:2a294374a4c4", + "chapter": "child_process", + "kind": "stream.Readable|null|undefined", + "name": "Type", + "signature": "`stdout` Type: {stream.Readable|null|undefined}", + "label": "stdout", + "apiSymbol": "stdout", + "depth": 2, + "scope": "api", + "anchor": "class-childprocess", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "child_process:215cd22379d9", + "chapter": "child_process", + "kind": "event", + "name": "close", + "signature": "Event: `'close'`", + "label": "'close'", + "apiSymbol": "'close'", + "depth": 2, + "scope": "api", + "anchor": "event-close", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "child_process:40cfcd7f8ece", + "chapter": "child_process", + "kind": "event", + "name": "disconnect", + "signature": "Event: `'disconnect'`", + "label": "'disconnect'", + "apiSymbol": "'disconnect'", + "depth": 2, + "scope": "api", + "anchor": "event-disconnect", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "child_process:184191eb8629", + "chapter": "child_process", + "kind": "event", + "name": "error", + "signature": "Event: `'error'`", + "label": "'error'", + "apiSymbol": "'error'", + "depth": 2, + "scope": "api", + "anchor": "event-error", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "child_process:1dd54cb977fe", + "chapter": "child_process", + "kind": "event", + "name": "exit", + "signature": "Event: `'exit'`", + "label": "'exit'", + "apiSymbol": "'exit'", + "depth": 2, + "scope": "api", + "anchor": "event-exit", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "child_process:cf1754c71d45", + "chapter": "child_process", + "kind": "event", + "name": "message", + "signature": "Event: `'message'`", + "label": "'message'", + "apiSymbol": "'message'", + "depth": 2, + "scope": "api", + "anchor": "event-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "child_process:3094f339cf99", + "chapter": "child_process", + "kind": "event", + "name": "spawn", + "signature": "Event: `'spawn'`", + "label": "'spawn'", + "apiSymbol": "'spawn'", + "depth": 2, + "scope": "api", + "anchor": "event-spawn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "cluster:e6937e252823", + "chapter": "cluster", + "kind": "module", + "name": "cluster", + "signature": "Cluster", + "label": "Cluster", + "apiSymbol": "cluster", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + } + }, + { + "id": "cluster:a2f3c70d4b2b", + "chapter": "cluster", + "kind": "class", + "name": "Worker", + "signature": "Class: `Worker`", + "label": "Worker", + "apiSymbol": "Worker", + "depth": 1, + "scope": "api", + "anchor": "class-worker", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "cluster:907b84307f2c", + "chapter": "cluster", + "kind": "method", + "name": "disconnect", + "signature": "`worker.disconnect()`", + "label": "worker.disconnect()", + "apiSymbol": "worker.disconnect", + "depth": 2, + "scope": "api", + "anchor": "workerdisconnect", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "cluster:797617eb8b67", + "chapter": "cluster", + "kind": "method", + "name": "isConnected", + "signature": "`worker.isConnected()`", + "label": "worker.isConnected()", + "apiSymbol": "worker.isConnected", + "depth": 2, + "scope": "api", + "anchor": "workerisconnected", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "cluster:ced794997b27", + "chapter": "cluster", + "kind": "method", + "name": "isDead", + "signature": "`worker.isDead()`", + "label": "worker.isDead()", + "apiSymbol": "worker.isDead", + "depth": 2, + "scope": "api", + "anchor": "workerisdead", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "cluster:d7b8a5ae8983", + "chapter": "cluster", + "kind": "method", + "name": "kill", + "signature": "`worker.kill([signal])`", + "label": "worker.kill([signal])", + "apiSymbol": "worker.kill", + "depth": 2, + "scope": "api", + "anchor": "workerkillsignal", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "cluster:e5a8eca75432", + "chapter": "cluster", + "kind": "method", + "name": "send", + "signature": "`worker.send(message[, sendHandle[, options]][, callback])`", + "label": "worker.send(message[, sendHandle[, options]][, callback])", + "apiSymbol": "worker.send", + "depth": 2, + "scope": "api", + "anchor": "workersendmessage-sendhandle-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "cluster:43f1ee9ec417", + "chapter": "cluster", + "kind": "boolean", + "name": "Type", + "signature": "`exitedAfterDisconnect` Type: {boolean}", + "label": "exitedAfterDisconnect", + "apiSymbol": "exitedAfterDisconnect", + "depth": 2, + "scope": "api", + "anchor": "class-worker", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "cluster:5b52c572e788", + "chapter": "cluster", + "kind": "integer", + "name": "Type", + "signature": "`id` Type: {integer}", + "label": "id", + "apiSymbol": "id", + "depth": 2, + "scope": "api", + "anchor": "class-worker", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "cluster:eb657c2022e6", + "chapter": "cluster", + "kind": "ChildProcess", + "name": "Type", + "signature": "`process` Type: {ChildProcess}", + "label": "process", + "apiSymbol": "process", + "depth": 2, + "scope": "api", + "anchor": "class-worker", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "cluster:31f39c6892bc", + "chapter": "cluster", + "kind": "event", + "name": "disconnect", + "signature": "Event: `'disconnect'`", + "label": "'disconnect'", + "apiSymbol": "'disconnect'", + "depth": 2, + "scope": "api", + "anchor": "event-disconnect", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "cluster:a2eca8edee57", + "chapter": "cluster", + "kind": "event", + "name": "error", + "signature": "Event: `'error'`", + "label": "'error'", + "apiSymbol": "'error'", + "depth": 2, + "scope": "api", + "anchor": "event-error", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "cluster:fa1a393e3bb6", + "chapter": "cluster", + "kind": "event", + "name": "exit", + "signature": "Event: `'exit'`", + "label": "'exit'", + "apiSymbol": "'exit'", + "depth": 2, + "scope": "api", + "anchor": "event-exit", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "cluster:865458d82d7a", + "chapter": "cluster", + "kind": "event", + "name": "listening", + "signature": "Event: `'listening'`", + "label": "'listening'", + "apiSymbol": "'listening'", + "depth": 2, + "scope": "api", + "anchor": "event-listening", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "cluster:53778d100561", + "chapter": "cluster", + "kind": "event", + "name": "message", + "signature": "Event: `'message'`", + "label": "'message'", + "apiSymbol": "'message'", + "depth": 2, + "scope": "api", + "anchor": "event-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "cluster:f24b23e3064e", + "chapter": "cluster", + "kind": "event", + "name": "online", + "signature": "Event: `'online'`", + "label": "'online'", + "apiSymbol": "'online'", + "depth": 2, + "scope": "api", + "anchor": "event-online", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "cluster:513f9f07bbc3", + "chapter": "cluster", + "kind": "method", + "name": "disconnect", + "signature": "`cluster.disconnect([callback])`", + "label": "cluster.disconnect([callback])", + "apiSymbol": "cluster.disconnect", + "depth": 1, + "scope": "api", + "anchor": "clusterdisconnectcallback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "cluster:603004ae11ec", + "chapter": "cluster", + "kind": "method", + "name": "fork", + "signature": "`cluster.fork([env])`", + "label": "cluster.fork([env])", + "apiSymbol": "cluster.fork", + "depth": 1, + "scope": "api", + "anchor": "clusterforkenv", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "cluster:ec2151dccc18", + "chapter": "cluster", + "kind": "method", + "name": "setupMaster", + "signature": "`cluster.setupMaster([settings])`", + "label": "cluster.setupMaster([settings])", + "apiSymbol": "cluster.setupMaster", + "depth": 1, + "scope": "api", + "anchor": "clustersetupmastersettings", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "cluster:3c5104745205", + "chapter": "cluster", + "kind": "method", + "name": "setupPrimary", + "signature": "`cluster.setupPrimary([settings])`", + "label": "cluster.setupPrimary([settings])", + "apiSymbol": "cluster.setupPrimary", + "depth": 1, + "scope": "api", + "anchor": "clustersetupprimarysettings", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "cluster:585ce489996d", + "chapter": "cluster", + "kind": "section", + "name": "isMaster", + "signature": "`cluster.isMaster`", + "label": "cluster.isMaster", + "apiSymbol": "cluster.isMaster", + "depth": 1, + "scope": "api", + "anchor": "clusterismaster", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": false + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "cluster:d581a10dce7a", + "chapter": "cluster", + "kind": "boolean", + "name": "Type", + "signature": "`isPrimary` Type: {boolean}", + "label": "isPrimary", + "apiSymbol": "isPrimary", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "cluster:3086f12a11d7", + "chapter": "cluster", + "kind": "boolean", + "name": "Type", + "signature": "`isWorker` Type: {boolean}", + "label": "isWorker", + "apiSymbol": "isWorker", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "cluster:55e8f77822d1", + "chapter": "cluster", + "kind": "section", + "name": "schedulingPolicy", + "signature": "`cluster.schedulingPolicy`", + "label": "cluster.schedulingPolicy", + "apiSymbol": "cluster.schedulingPolicy", + "depth": 1, + "scope": "api", + "anchor": "clusterschedulingpolicy", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "cluster:06708de43d4d", + "chapter": "cluster", + "kind": "Object", + "name": "Type", + "signature": "`settings` Type: {Object}", + "label": "settings", + "apiSymbol": "settings", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "cluster:30af577cb351", + "chapter": "cluster", + "kind": "Object", + "name": "Type", + "signature": "`worker` Type: {Object}", + "label": "worker", + "apiSymbol": "worker", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "cluster:8404aafb01df", + "chapter": "cluster", + "kind": "Object", + "name": "Type", + "signature": "`workers` Type: {Object}", + "label": "workers", + "apiSymbol": "workers", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "cluster:e85acbbc2103", + "chapter": "cluster", + "kind": "event", + "name": "disconnect", + "signature": "Event: `'disconnect'`", + "label": "'disconnect'", + "apiSymbol": "'disconnect'", + "depth": 1, + "scope": "api", + "anchor": "event-disconnect_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "cluster:0125161acbcd", + "chapter": "cluster", + "kind": "event", + "name": "exit", + "signature": "Event: `'exit'`", + "label": "'exit'", + "apiSymbol": "'exit'", + "depth": 1, + "scope": "api", + "anchor": "event-exit_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "cluster:828e25c5eabb", + "chapter": "cluster", + "kind": "event", + "name": "fork", + "signature": "Event: `'fork'`", + "label": "'fork'", + "apiSymbol": "'fork'", + "depth": 1, + "scope": "api", + "anchor": "event-fork", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "cluster:86dbf766e47a", + "chapter": "cluster", + "kind": "event", + "name": "listening", + "signature": "Event: `'listening'`", + "label": "'listening'", + "apiSymbol": "'listening'", + "depth": 1, + "scope": "api", + "anchor": "event-listening_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "cluster:9bdfd1a39174", + "chapter": "cluster", + "kind": "event", + "name": "message", + "signature": "Event: `'message'`", + "label": "'message'", + "apiSymbol": "'message'", + "depth": 1, + "scope": "api", + "anchor": "event-message_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "cluster:7cc469a78395", + "chapter": "cluster", + "kind": "event", + "name": "online", + "signature": "Event: `'online'`", + "label": "'online'", + "apiSymbol": "'online'", + "depth": 1, + "scope": "api", + "anchor": "event-online_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "cluster:4c8ea265d664", + "chapter": "cluster", + "kind": "event", + "name": "setup", + "signature": "Event: `'setup'`", + "label": "'setup'", + "apiSymbol": "'setup'", + "depth": 1, + "scope": "api", + "anchor": "event-setup", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "console:0448912a2c1f", + "chapter": "console", + "kind": "module", + "name": "console", + "signature": "Console", + "label": "Console", + "apiSymbol": "console", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + }, + "dynamic": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + } + }, + { + "id": "console:d5e7718ea460", + "chapter": "console", + "kind": "method", + "name": "profile", + "signature": "`console.profile([label])`", + "label": "console.profile([label])", + "apiSymbol": "console.profile", + "depth": 1, + "scope": "api", + "anchor": "consoleprofilelabel", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "console:0d1dfa0b9e5f", + "chapter": "console", + "kind": "method", + "name": "profileEnd", + "signature": "`console.profileEnd([label])`", + "label": "console.profileEnd([label])", + "apiSymbol": "console.profileEnd", + "depth": 1, + "scope": "api", + "anchor": "consoleprofileendlabel", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "console:412a0f4ec0cd", + "chapter": "console", + "kind": "method", + "name": "timeStamp", + "signature": "`console.timeStamp([label])`", + "label": "console.timeStamp([label])", + "apiSymbol": "console.timeStamp", + "depth": 1, + "scope": "api", + "anchor": "consoletimestamplabel", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "console:10b99ddc9b4a", + "chapter": "console", + "kind": "class", + "name": "Console", + "signature": "Class: `Console`", + "label": "Console", + "apiSymbol": "Console", + "depth": 1, + "scope": "api", + "anchor": "class-console", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "console:a7b252061a64", + "chapter": "console", + "kind": "method", + "name": "assert", + "signature": "`console.assert(value[, ...message])`", + "label": "console.assert(value[, ...message])", + "apiSymbol": "console.assert", + "depth": 2, + "scope": "api", + "anchor": "consoleassertvalue-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "console:14c8a00abc52", + "chapter": "console", + "kind": "method", + "name": "clear", + "signature": "`console.clear()`", + "label": "console.clear()", + "apiSymbol": "console.clear", + "depth": 2, + "scope": "api", + "anchor": "consoleclear", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "console:3239f2dcfbc7", + "chapter": "console", + "kind": "method", + "name": "count", + "signature": "`console.count([label])`", + "label": "console.count([label])", + "apiSymbol": "console.count", + "depth": 2, + "scope": "api", + "anchor": "consolecountlabel", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "console:38a3e7029f90", + "chapter": "console", + "kind": "method", + "name": "countReset", + "signature": "`console.countReset([label])`", + "label": "console.countReset([label])", + "apiSymbol": "console.countReset", + "depth": 2, + "scope": "api", + "anchor": "consolecountresetlabel", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "console:9110e9b01ca9", + "chapter": "console", + "kind": "method", + "name": "debug", + "signature": "`console.debug(data[, ...args])`", + "label": "console.debug(data[, ...args])", + "apiSymbol": "console.debug", + "depth": 2, + "scope": "api", + "anchor": "consoledebugdata-args", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "console:6bb0882d404c", + "chapter": "console", + "kind": "method", + "name": "dir", + "signature": "`console.dir(obj[, options])`", + "label": "console.dir(obj[, options])", + "apiSymbol": "console.dir", + "depth": 2, + "scope": "api", + "anchor": "consoledirobj-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "console:3032d448c24b", + "chapter": "console", + "kind": "method", + "name": "dirxml", + "signature": "`console.dirxml(...data)`", + "label": "console.dirxml(...data)", + "apiSymbol": "console.dirxml", + "depth": 2, + "scope": "api", + "anchor": "consoledirxmldata", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "console:8716b01c7a7c", + "chapter": "console", + "kind": "method", + "name": "error", + "signature": "`console.error([data][, ...args])`", + "label": "console.error([data][, ...args])", + "apiSymbol": "console.error", + "depth": 2, + "scope": "api", + "anchor": "consoleerrordata-args", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "console:77ee6e5ea308", + "chapter": "console", + "kind": "method", + "name": "group", + "signature": "`console.group([...label])`", + "label": "console.group([...label])", + "apiSymbol": "console.group", + "depth": 2, + "scope": "api", + "anchor": "consolegrouplabel", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "console:b348d794e50a", + "chapter": "console", + "kind": "method", + "name": "groupCollapsed", + "signature": "`console.groupCollapsed()`", + "label": "console.groupCollapsed()", + "apiSymbol": "console.groupCollapsed", + "depth": 2, + "scope": "api", + "anchor": "consolegroupcollapsed", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "console:45045a57f5ec", + "chapter": "console", + "kind": "method", + "name": "groupEnd", + "signature": "`console.groupEnd()`", + "label": "console.groupEnd()", + "apiSymbol": "console.groupEnd", + "depth": 2, + "scope": "api", + "anchor": "consolegroupend", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "console:0ed260294c26", + "chapter": "console", + "kind": "method", + "name": "info", + "signature": "`console.info([data][, ...args])`", + "label": "console.info([data][, ...args])", + "apiSymbol": "console.info", + "depth": 2, + "scope": "api", + "anchor": "consoleinfodata-args", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "console:fe5504b52a3a", + "chapter": "console", + "kind": "method", + "name": "log", + "signature": "`console.log([data][, ...args])`", + "label": "console.log([data][, ...args])", + "apiSymbol": "console.log", + "depth": 2, + "scope": "api", + "anchor": "consolelogdata-args", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "console:fbcc1d146f54", + "chapter": "console", + "kind": "method", + "name": "table", + "signature": "`console.table(tabularData[, properties])`", + "label": "console.table(tabularData[, properties])", + "apiSymbol": "console.table", + "depth": 2, + "scope": "api", + "anchor": "consoletabletabulardata-properties", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "console:0bd8bcffbbfd", + "chapter": "console", + "kind": "method", + "name": "time", + "signature": "`console.time([label])`", + "label": "console.time([label])", + "apiSymbol": "console.time", + "depth": 2, + "scope": "api", + "anchor": "consoletimelabel", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "console:5a06bf7ae635", + "chapter": "console", + "kind": "method", + "name": "timeEnd", + "signature": "`console.timeEnd([label])`", + "label": "console.timeEnd([label])", + "apiSymbol": "console.timeEnd", + "depth": 2, + "scope": "api", + "anchor": "consoletimeendlabel", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "console:0682b025ea9e", + "chapter": "console", + "kind": "method", + "name": "timeLog", + "signature": "`console.timeLog([label][, ...data])`", + "label": "console.timeLog([label][, ...data])", + "apiSymbol": "console.timeLog", + "depth": 2, + "scope": "api", + "anchor": "consoletimeloglabel-data", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "console:8d9fa8d9afcd", + "chapter": "console", + "kind": "method", + "name": "trace", + "signature": "`console.trace([message][, ...args])`", + "label": "console.trace([message][, ...args])", + "apiSymbol": "console.trace", + "depth": 2, + "scope": "api", + "anchor": "consoletracemessage-args", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "console:d7625e260cc9", + "chapter": "console", + "kind": "method", + "name": "warn", + "signature": "`console.warn([data][, ...args])`", + "label": "console.warn([data][, ...args])", + "apiSymbol": "console.warn", + "depth": 2, + "scope": "api", + "anchor": "consolewarndata-args", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "crypto:0b6bcfdf1c4a", + "chapter": "crypto", + "kind": "module", + "name": "crypto", + "signature": "Crypto", + "label": "Crypto", + "apiSymbol": "crypto", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + }, + "dynamic": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + } + }, + { + "id": "crypto:fc032ceb2cfd", + "chapter": "crypto", + "kind": "module", + "name": "`node:crypto`_module_methods_and_properties", + "signature": "`node:crypto` module methods and properties", + "label": "node:crypto", + "apiSymbol": "node:crypto", + "depth": 1, + "scope": "api", + "anchor": "nodecrypto-module-methods-and-properties", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:ac6e3d78bddd", + "chapter": "crypto", + "kind": "method", + "name": "argon2", + "signature": "`crypto.argon2(algorithm, parameters, callback)`", + "label": "crypto.argon2(algorithm, parameters, callback)", + "apiSymbol": "crypto.argon2", + "depth": 2, + "scope": "api", + "anchor": "cryptoargon2algorithm-parameters-callback", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:7516d604858d", + "chapter": "crypto", + "kind": "method", + "name": "argon2Sync", + "signature": "`crypto.argon2Sync(algorithm, parameters)`", + "label": "crypto.argon2Sync(algorithm, parameters)", + "apiSymbol": "crypto.argon2Sync", + "depth": 2, + "scope": "api", + "anchor": "cryptoargon2syncalgorithm-parameters", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:93c11d6b797c", + "chapter": "crypto", + "kind": "method", + "name": "checkPrime", + "signature": "`crypto.checkPrime(candidate[, options], callback)`", + "label": "crypto.checkPrime(candidate[, options], callback)", + "apiSymbol": "crypto.checkPrime", + "depth": 2, + "scope": "api", + "anchor": "cryptocheckprimecandidate-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "crypto:23ff59a813ff", + "chapter": "crypto", + "kind": "method", + "name": "checkPrimeSync", + "signature": "`crypto.checkPrimeSync(candidate[, options])`", + "label": "crypto.checkPrimeSync(candidate[, options])", + "apiSymbol": "crypto.checkPrimeSync", + "depth": 2, + "scope": "api", + "anchor": "cryptocheckprimesynccandidate-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "crypto:e5cfdf7f141d", + "chapter": "crypto", + "kind": "method", + "name": "createCipheriv", + "signature": "`crypto.createCipheriv(algorithm, key, iv[, options])`", + "label": "crypto.createCipheriv(algorithm, key, iv[, options])", + "apiSymbol": "crypto.createCipheriv", + "depth": 2, + "scope": "api", + "anchor": "cryptocreatecipherivalgorithm-key-iv-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "crypto:c7f997a76b46", + "chapter": "crypto", + "kind": "method", + "name": "createDecipheriv", + "signature": "`crypto.createDecipheriv(algorithm, key, iv[, options])`", + "label": "crypto.createDecipheriv(algorithm, key, iv[, options])", + "apiSymbol": "crypto.createDecipheriv", + "depth": 2, + "scope": "api", + "anchor": "cryptocreatedecipherivalgorithm-key-iv-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "crypto:4773e5e82ab8", + "chapter": "crypto", + "kind": "method", + "name": "createDiffieHellman", + "signature": "`crypto.createDiffieHellman(prime[, primeEncoding][, generator][, generatorEncoding])`", + "label": "crypto.createDiffieHellman(prime[, primeEncoding][, generator][, generatorEncoding])", + "apiSymbol": "crypto.createDiffieHellman", + "depth": 2, + "scope": "api", + "anchor": "cryptocreatediffiehellmanprime-primeencoding-generator-generatorencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "crypto:13af8af3a2c1", + "chapter": "crypto", + "kind": "method", + "name": "createDiffieHellman", + "signature": "`crypto.createDiffieHellman(primeLength[, generator])`", + "label": "crypto.createDiffieHellman(primeLength[, generator])", + "apiSymbol": "crypto.createDiffieHellman", + "depth": 2, + "scope": "api", + "anchor": "cryptocreatediffiehellmanprimelength-generator", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "crypto:4f02ea28db46", + "chapter": "crypto", + "kind": "method", + "name": "createDiffieHellmanGroup", + "signature": "`crypto.createDiffieHellmanGroup(name)`", + "label": "crypto.createDiffieHellmanGroup(name)", + "apiSymbol": "crypto.createDiffieHellmanGroup", + "depth": 2, + "scope": "api", + "anchor": "cryptocreatediffiehellmangroupname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:064eef4115c3", + "chapter": "crypto", + "kind": "method", + "name": "createECDH", + "signature": "`crypto.createECDH(curveName)`", + "label": "crypto.createECDH(curveName)", + "apiSymbol": "crypto.createECDH", + "depth": 2, + "scope": "api", + "anchor": "cryptocreateecdhcurvename", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "crypto:846439408342", + "chapter": "crypto", + "kind": "method", + "name": "createHash", + "signature": "`crypto.createHash(algorithm[, options])`", + "label": "crypto.createHash(algorithm[, options])", + "apiSymbol": "crypto.createHash", + "depth": 2, + "scope": "api", + "anchor": "cryptocreatehashalgorithm-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "crypto:63db60cd1844", + "chapter": "crypto", + "kind": "method", + "name": "createHmac", + "signature": "`crypto.createHmac(algorithm, key[, options])`", + "label": "crypto.createHmac(algorithm, key[, options])", + "apiSymbol": "crypto.createHmac", + "depth": 2, + "scope": "api", + "anchor": "cryptocreatehmacalgorithm-key-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "crypto:a91640a96ead", + "chapter": "crypto", + "kind": "method", + "name": "createPrivateKey", + "signature": "`crypto.createPrivateKey(key)`", + "label": "crypto.createPrivateKey(key)", + "apiSymbol": "crypto.createPrivateKey", + "depth": 2, + "scope": "api", + "anchor": "cryptocreateprivatekeykey", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "crypto:850de15dc8d0", + "chapter": "crypto", + "kind": "method", + "name": "createPublicKey", + "signature": "`crypto.createPublicKey(key)`", + "label": "crypto.createPublicKey(key)", + "apiSymbol": "crypto.createPublicKey", + "depth": 2, + "scope": "api", + "anchor": "cryptocreatepublickeykey", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "crypto:0f82aa9a8526", + "chapter": "crypto", + "kind": "method", + "name": "createSecretKey", + "signature": "`crypto.createSecretKey(key[, encoding])`", + "label": "crypto.createSecretKey(key[, encoding])", + "apiSymbol": "crypto.createSecretKey", + "depth": 2, + "scope": "api", + "anchor": "cryptocreatesecretkeykey-encoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "crypto:a1ee1d7ba01a", + "chapter": "crypto", + "kind": "method", + "name": "createSign", + "signature": "`crypto.createSign(algorithm[, options])`", + "label": "crypto.createSign(algorithm[, options])", + "apiSymbol": "crypto.createSign", + "depth": 2, + "scope": "api", + "anchor": "cryptocreatesignalgorithm-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "crypto:66b20a9bfb7f", + "chapter": "crypto", + "kind": "method", + "name": "createVerify", + "signature": "`crypto.createVerify(algorithm[, options])`", + "label": "crypto.createVerify(algorithm[, options])", + "apiSymbol": "crypto.createVerify", + "depth": 2, + "scope": "api", + "anchor": "cryptocreateverifyalgorithm-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "crypto:dcde4645d6cb", + "chapter": "crypto", + "kind": "method", + "name": "decapsulate", + "signature": "`crypto.decapsulate(key, ciphertext[, callback])`", + "label": "crypto.decapsulate(key, ciphertext[, callback])", + "apiSymbol": "crypto.decapsulate", + "depth": 2, + "scope": "api", + "anchor": "cryptodecapsulatekey-ciphertext-callback", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:a73deddc6957", + "chapter": "crypto", + "kind": "method", + "name": "diffieHellman", + "signature": "`crypto.diffieHellman(options[, callback])`", + "label": "crypto.diffieHellman(options[, callback])", + "apiSymbol": "crypto.diffieHellman", + "depth": 2, + "scope": "api", + "anchor": "cryptodiffiehellmanoptions-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "crypto:0f44865d3a04", + "chapter": "crypto", + "kind": "method", + "name": "encapsulate", + "signature": "`crypto.encapsulate(key[, callback])`", + "label": "crypto.encapsulate(key[, callback])", + "apiSymbol": "crypto.encapsulate", + "depth": 2, + "scope": "api", + "anchor": "cryptoencapsulatekey-callback", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:bb6642ab8937", + "chapter": "crypto", + "kind": "method", + "name": "generateKey", + "signature": "`crypto.generateKey(type, options, callback)`", + "label": "crypto.generateKey(type, options, callback)", + "apiSymbol": "crypto.generateKey", + "depth": 2, + "scope": "api", + "anchor": "cryptogeneratekeytype-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "crypto:fc42f1bad4d1", + "chapter": "crypto", + "kind": "method", + "name": "generateKeyPair", + "signature": "`crypto.generateKeyPair(type, options, callback)`", + "label": "crypto.generateKeyPair(type, options, callback)", + "apiSymbol": "crypto.generateKeyPair", + "depth": 2, + "scope": "api", + "anchor": "cryptogeneratekeypairtype-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "crypto:5808394b3781", + "chapter": "crypto", + "kind": "method", + "name": "generateKeyPairSync", + "signature": "`crypto.generateKeyPairSync(type, options)`", + "label": "crypto.generateKeyPairSync(type, options)", + "apiSymbol": "crypto.generateKeyPairSync", + "depth": 2, + "scope": "api", + "anchor": "cryptogeneratekeypairsynctype-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "crypto:75cc34446e28", + "chapter": "crypto", + "kind": "method", + "name": "generateKeySync", + "signature": "`crypto.generateKeySync(type, options)`", + "label": "crypto.generateKeySync(type, options)", + "apiSymbol": "crypto.generateKeySync", + "depth": 2, + "scope": "api", + "anchor": "cryptogeneratekeysynctype-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "crypto:e07cbcbe9ed1", + "chapter": "crypto", + "kind": "method", + "name": "generatePrime", + "signature": "`crypto.generatePrime(size[, options], callback)`", + "label": "crypto.generatePrime(size[, options], callback)", + "apiSymbol": "crypto.generatePrime", + "depth": 2, + "scope": "api", + "anchor": "cryptogenerateprimesize-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "crypto:63fe6df1a09a", + "chapter": "crypto", + "kind": "method", + "name": "generatePrimeSync", + "signature": "`crypto.generatePrimeSync(size[, options])`", + "label": "crypto.generatePrimeSync(size[, options])", + "apiSymbol": "crypto.generatePrimeSync", + "depth": 2, + "scope": "api", + "anchor": "cryptogenerateprimesyncsize-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "crypto:7c8bb668e4c8", + "chapter": "crypto", + "kind": "method", + "name": "getCipherInfo", + "signature": "`crypto.getCipherInfo(nameOrNid[, options])`", + "label": "crypto.getCipherInfo(nameOrNid[, options])", + "apiSymbol": "crypto.getCipherInfo", + "depth": 2, + "scope": "api", + "anchor": "cryptogetcipherinfonameornid-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:9ebd425a428e", + "chapter": "crypto", + "kind": "method", + "name": "getCiphers", + "signature": "`crypto.getCiphers()`", + "label": "crypto.getCiphers()", + "apiSymbol": "crypto.getCiphers", + "depth": 2, + "scope": "api", + "anchor": "cryptogetciphers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "crypto:874132c86691", + "chapter": "crypto", + "kind": "method", + "name": "getCurves", + "signature": "`crypto.getCurves()`", + "label": "crypto.getCurves()", + "apiSymbol": "crypto.getCurves", + "depth": 2, + "scope": "api", + "anchor": "cryptogetcurves", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "crypto:6049d733b35d", + "chapter": "crypto", + "kind": "method", + "name": "getDiffieHellman", + "signature": "`crypto.getDiffieHellman(groupName)`", + "label": "crypto.getDiffieHellman(groupName)", + "apiSymbol": "crypto.getDiffieHellman", + "depth": 2, + "scope": "api", + "anchor": "cryptogetdiffiehellmangroupname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:d3a713d6958d", + "chapter": "crypto", + "kind": "method", + "name": "getFips", + "signature": "`crypto.getFips()`", + "label": "crypto.getFips()", + "apiSymbol": "crypto.getFips", + "depth": 2, + "scope": "api", + "anchor": "cryptogetfips", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "crypto:0ad4144fc921", + "chapter": "crypto", + "kind": "method", + "name": "getHashes", + "signature": "`crypto.getHashes()`", + "label": "crypto.getHashes()", + "apiSymbol": "crypto.getHashes", + "depth": 2, + "scope": "api", + "anchor": "cryptogethashes", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "crypto:2ab8394e29a7", + "chapter": "crypto", + "kind": "method", + "name": "getRandomValues", + "signature": "`crypto.getRandomValues(typedArray)`", + "label": "crypto.getRandomValues(typedArray)", + "apiSymbol": "crypto.getRandomValues", + "depth": 2, + "scope": "api", + "anchor": "cryptogetrandomvaluestypedarray", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "crypto:21f22c71fb61", + "chapter": "crypto", + "kind": "method", + "name": "hash", + "signature": "`crypto.hash(algorithm, data[, options])`", + "label": "crypto.hash(algorithm, data[, options])", + "apiSymbol": "crypto.hash", + "depth": 2, + "scope": "api", + "anchor": "cryptohashalgorithm-data-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "crypto:3d310ed07414", + "chapter": "crypto", + "kind": "method", + "name": "hkdf", + "signature": "`crypto.hkdf(digest, ikm, salt, info, keylen, callback)`", + "label": "crypto.hkdf(digest, ikm, salt, info, keylen, callback)", + "apiSymbol": "crypto.hkdf", + "depth": 2, + "scope": "api", + "anchor": "cryptohkdfdigest-ikm-salt-info-keylen-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "crypto:0a05b645a564", + "chapter": "crypto", + "kind": "method", + "name": "hkdfSync", + "signature": "`crypto.hkdfSync(digest, ikm, salt, info, keylen)`", + "label": "crypto.hkdfSync(digest, ikm, salt, info, keylen)", + "apiSymbol": "crypto.hkdfSync", + "depth": 2, + "scope": "api", + "anchor": "cryptohkdfsyncdigest-ikm-salt-info-keylen", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "crypto:cb974006b4f5", + "chapter": "crypto", + "kind": "method", + "name": "pbkdf2", + "signature": "`crypto.pbkdf2(password, salt, iterations, keylen, digest, callback)`", + "label": "crypto.pbkdf2(password, salt, iterations, keylen, digest, callback)", + "apiSymbol": "crypto.pbkdf2", + "depth": 2, + "scope": "api", + "anchor": "cryptopbkdf2password-salt-iterations-keylen-digest-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "crypto:01aba8f47f6c", + "chapter": "crypto", + "kind": "method", + "name": "pbkdf2Sync", + "signature": "`crypto.pbkdf2Sync(password, salt, iterations, keylen, digest)`", + "label": "crypto.pbkdf2Sync(password, salt, iterations, keylen, digest)", + "apiSymbol": "crypto.pbkdf2Sync", + "depth": 2, + "scope": "api", + "anchor": "cryptopbkdf2syncpassword-salt-iterations-keylen-digest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "crypto:18079d0b276e", + "chapter": "crypto", + "kind": "method", + "name": "privateDecrypt", + "signature": "`crypto.privateDecrypt(privateKey, buffer)`", + "label": "crypto.privateDecrypt(privateKey, buffer)", + "apiSymbol": "crypto.privateDecrypt", + "depth": 2, + "scope": "api", + "anchor": "cryptoprivatedecryptprivatekey-buffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "crypto:2df78bda430e", + "chapter": "crypto", + "kind": "method", + "name": "privateEncrypt", + "signature": "`crypto.privateEncrypt(privateKey, buffer)`", + "label": "crypto.privateEncrypt(privateKey, buffer)", + "apiSymbol": "crypto.privateEncrypt", + "depth": 2, + "scope": "api", + "anchor": "cryptoprivateencryptprivatekey-buffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "crypto:5a9fa19ab36b", + "chapter": "crypto", + "kind": "method", + "name": "publicDecrypt", + "signature": "`crypto.publicDecrypt(key, buffer)`", + "label": "crypto.publicDecrypt(key, buffer)", + "apiSymbol": "crypto.publicDecrypt", + "depth": 2, + "scope": "api", + "anchor": "cryptopublicdecryptkey-buffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "crypto:a1084819aea0", + "chapter": "crypto", + "kind": "method", + "name": "publicEncrypt", + "signature": "`crypto.publicEncrypt(key, buffer)`", + "label": "crypto.publicEncrypt(key, buffer)", + "apiSymbol": "crypto.publicEncrypt", + "depth": 2, + "scope": "api", + "anchor": "cryptopublicencryptkey-buffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "crypto:94f9996a010b", + "chapter": "crypto", + "kind": "method", + "name": "randomBytes", + "signature": "`crypto.randomBytes(size[, callback])`", + "label": "crypto.randomBytes(size[, callback])", + "apiSymbol": "crypto.randomBytes", + "depth": 2, + "scope": "api", + "anchor": "cryptorandombytessize-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "crypto:974195d3b725", + "chapter": "crypto", + "kind": "method", + "name": "randomFill", + "signature": "`crypto.randomFill(buffer[, offset][, size], callback)`", + "label": "crypto.randomFill(buffer[, offset][, size], callback)", + "apiSymbol": "crypto.randomFill", + "depth": 2, + "scope": "api", + "anchor": "cryptorandomfillbuffer-offset-size-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "crypto:9a954164ef2a", + "chapter": "crypto", + "kind": "method", + "name": "randomFillSync", + "signature": "`crypto.randomFillSync(buffer[, offset][, size])`", + "label": "crypto.randomFillSync(buffer[, offset][, size])", + "apiSymbol": "crypto.randomFillSync", + "depth": 2, + "scope": "api", + "anchor": "cryptorandomfillsyncbuffer-offset-size", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "crypto:a403de3874bc", + "chapter": "crypto", + "kind": "method", + "name": "randomInt", + "signature": "`crypto.randomInt([min, ]max[, callback])`", + "label": "crypto.randomInt([min, ]max[, callback])", + "apiSymbol": "crypto.randomInt", + "depth": 2, + "scope": "api", + "anchor": "cryptorandomintmin-max-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "crypto:0d3bcb43072b", + "chapter": "crypto", + "kind": "method", + "name": "randomUUID", + "signature": "`crypto.randomUUID([options])`", + "label": "crypto.randomUUID([options])", + "apiSymbol": "crypto.randomUUID", + "depth": 2, + "scope": "api", + "anchor": "cryptorandomuuidoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "crypto:10402b3c70ca", + "chapter": "crypto", + "kind": "method", + "name": "scrypt", + "signature": "`crypto.scrypt(password, salt, keylen[, options], callback)`", + "label": "crypto.scrypt(password, salt, keylen[, options], callback)", + "apiSymbol": "crypto.scrypt", + "depth": 2, + "scope": "api", + "anchor": "cryptoscryptpassword-salt-keylen-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "crypto:63b476fb71db", + "chapter": "crypto", + "kind": "method", + "name": "scryptSync", + "signature": "`crypto.scryptSync(password, salt, keylen[, options])`", + "label": "crypto.scryptSync(password, salt, keylen[, options])", + "apiSymbol": "crypto.scryptSync", + "depth": 2, + "scope": "api", + "anchor": "cryptoscryptsyncpassword-salt-keylen-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "crypto:f05cc6926023", + "chapter": "crypto", + "kind": "method", + "name": "secureHeapUsed", + "signature": "`crypto.secureHeapUsed()`", + "label": "crypto.secureHeapUsed()", + "apiSymbol": "crypto.secureHeapUsed", + "depth": 2, + "scope": "api", + "anchor": "cryptosecureheapused", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "crypto:2ef08279a30e", + "chapter": "crypto", + "kind": "method", + "name": "setEngine", + "signature": "`crypto.setEngine(engine[, flags])`", + "label": "crypto.setEngine(engine[, flags])", + "apiSymbol": "crypto.setEngine", + "depth": 2, + "scope": "api", + "anchor": "cryptosetengineengine-flags", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "crypto:d61ebc090db7", + "chapter": "crypto", + "kind": "method", + "name": "setFips", + "signature": "`crypto.setFips(bool)`", + "label": "crypto.setFips(bool)", + "apiSymbol": "crypto.setFips", + "depth": 2, + "scope": "api", + "anchor": "cryptosetfipsbool", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "crypto:5d370d84944c", + "chapter": "crypto", + "kind": "method", + "name": "sign", + "signature": "`crypto.sign(algorithm, data, key[, callback])`", + "label": "crypto.sign(algorithm, data, key[, callback])", + "apiSymbol": "crypto.sign", + "depth": 2, + "scope": "api", + "anchor": "cryptosignalgorithm-data-key-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "crypto:6ed432bf0cfd", + "chapter": "crypto", + "kind": "method", + "name": "timingSafeEqual", + "signature": "`crypto.timingSafeEqual(a, b)`", + "label": "crypto.timingSafeEqual(a, b)", + "apiSymbol": "crypto.timingSafeEqual", + "depth": 2, + "scope": "api", + "anchor": "cryptotimingsafeequala-b", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "crypto:82c455f50fd0", + "chapter": "crypto", + "kind": "method", + "name": "verify", + "signature": "`crypto.verify(algorithm, data, key, signature[, callback])`", + "label": "crypto.verify(algorithm, data, key, signature[, callback])", + "apiSymbol": "crypto.verify", + "depth": 2, + "scope": "api", + "anchor": "cryptoverifyalgorithm-data-key-signature-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "crypto:de32b59d0bf8", + "chapter": "crypto", + "kind": "Object", + "name": "Type", + "signature": "`constants` Type: {Object}", + "label": "constants", + "apiSymbol": "constants", + "depth": 2, + "scope": "api", + "anchor": "nodecrypto-module-methods-and-properties", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "crypto:ba0605358b38", + "chapter": "crypto", + "kind": "section", + "name": "fips", + "signature": "`crypto.fips`", + "label": "crypto.fips", + "apiSymbol": "crypto.fips", + "depth": 2, + "scope": "api", + "anchor": "cryptofips", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:548174ec78f8", + "chapter": "crypto", + "kind": "SubtleCrypto", + "name": "Type", + "signature": "`subtle` Type: {SubtleCrypto}", + "label": "subtle", + "apiSymbol": "subtle", + "depth": 2, + "scope": "api", + "anchor": "nodecrypto-module-methods-and-properties", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "crypto:c3b378f7da8d", + "chapter": "crypto", + "kind": "section", + "name": "webcrypto", + "signature": "`crypto.webcrypto`", + "label": "crypto.webcrypto", + "apiSymbol": "crypto.webcrypto", + "depth": 2, + "scope": "api", + "anchor": "cryptowebcrypto", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "crypto:ec97f1991446", + "chapter": "crypto", + "kind": "class", + "name": "Certificate", + "signature": "Class: `Certificate`", + "label": "Certificate", + "apiSymbol": "Certificate", + "depth": 1, + "scope": "api", + "anchor": "class-certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "crypto:fd2f88142073", + "chapter": "crypto", + "kind": "method", + "name": "exportChallenge", + "signature": "`certificate.exportChallenge(spkac[, encoding])`", + "label": "certificate.exportChallenge(spkac[, encoding])", + "apiSymbol": "certificate.exportChallenge", + "depth": 2, + "scope": "api", + "anchor": "certificateexportchallengespkac-encoding", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:7e1be5373df5", + "chapter": "crypto", + "kind": "method", + "name": "exportPublicKey", + "signature": "`certificate.exportPublicKey(spkac[, encoding])`", + "label": "certificate.exportPublicKey(spkac[, encoding])", + "apiSymbol": "certificate.exportPublicKey", + "depth": 2, + "scope": "api", + "anchor": "certificateexportpublickeyspkac-encoding", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:eeda6a11b532", + "chapter": "crypto", + "kind": "method", + "name": "verifySpkac", + "signature": "`certificate.verifySpkac(spkac[, encoding])`", + "label": "certificate.verifySpkac(spkac[, encoding])", + "apiSymbol": "certificate.verifySpkac", + "depth": 2, + "scope": "api", + "anchor": "certificateverifyspkacspkac-encoding", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:b9c273cbab39", + "chapter": "crypto", + "kind": "class", + "name": "Cipheriv", + "signature": "Class: `Cipheriv`", + "label": "Cipheriv", + "apiSymbol": "Cipheriv", + "depth": 1, + "scope": "api", + "anchor": "class-cipheriv", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:700daa6ff9f9", + "chapter": "crypto", + "kind": "method", + "name": "final", + "signature": "`cipher.final([outputEncoding])`", + "label": "cipher.final([outputEncoding])", + "apiSymbol": "cipher.final", + "depth": 2, + "scope": "api", + "anchor": "cipherfinaloutputencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:8b816d8b8aae", + "chapter": "crypto", + "kind": "method", + "name": "getAuthTag", + "signature": "`cipher.getAuthTag()`", + "label": "cipher.getAuthTag()", + "apiSymbol": "cipher.getAuthTag", + "depth": 2, + "scope": "api", + "anchor": "ciphergetauthtag", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:eec0c6c93bc7", + "chapter": "crypto", + "kind": "method", + "name": "setAAD", + "signature": "`cipher.setAAD(buffer[, options])`", + "label": "cipher.setAAD(buffer[, options])", + "apiSymbol": "cipher.setAAD", + "depth": 2, + "scope": "api", + "anchor": "ciphersetaadbuffer-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:979cc100d122", + "chapter": "crypto", + "kind": "method", + "name": "setAutoPadding", + "signature": "`cipher.setAutoPadding([autoPadding])`", + "label": "cipher.setAutoPadding([autoPadding])", + "apiSymbol": "cipher.setAutoPadding", + "depth": 2, + "scope": "api", + "anchor": "ciphersetautopaddingautopadding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:114053049b29", + "chapter": "crypto", + "kind": "method", + "name": "update", + "signature": "`cipher.update(data[, inputEncoding][, outputEncoding])`", + "label": "cipher.update(data[, inputEncoding][, outputEncoding])", + "apiSymbol": "cipher.update", + "depth": 2, + "scope": "api", + "anchor": "cipherupdatedata-inputencoding-outputencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:9c956f80d347", + "chapter": "crypto", + "kind": "class", + "name": "Decipheriv", + "signature": "Class: `Decipheriv`", + "label": "Decipheriv", + "apiSymbol": "Decipheriv", + "depth": 1, + "scope": "api", + "anchor": "class-decipheriv", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:d13ee411d37c", + "chapter": "crypto", + "kind": "method", + "name": "final", + "signature": "`decipher.final([outputEncoding])`", + "label": "decipher.final([outputEncoding])", + "apiSymbol": "decipher.final", + "depth": 2, + "scope": "api", + "anchor": "decipherfinaloutputencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:a8e4d1bd740f", + "chapter": "crypto", + "kind": "method", + "name": "setAAD", + "signature": "`decipher.setAAD(buffer[, options])`", + "label": "decipher.setAAD(buffer[, options])", + "apiSymbol": "decipher.setAAD", + "depth": 2, + "scope": "api", + "anchor": "deciphersetaadbuffer-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:931f37a91f62", + "chapter": "crypto", + "kind": "method", + "name": "setAuthTag", + "signature": "`decipher.setAuthTag(buffer[, encoding])`", + "label": "decipher.setAuthTag(buffer[, encoding])", + "apiSymbol": "decipher.setAuthTag", + "depth": 2, + "scope": "api", + "anchor": "deciphersetauthtagbuffer-encoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:9ca24a440c70", + "chapter": "crypto", + "kind": "method", + "name": "setAutoPadding", + "signature": "`decipher.setAutoPadding([autoPadding])`", + "label": "decipher.setAutoPadding([autoPadding])", + "apiSymbol": "decipher.setAutoPadding", + "depth": 2, + "scope": "api", + "anchor": "deciphersetautopaddingautopadding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:2e92de121be5", + "chapter": "crypto", + "kind": "method", + "name": "update", + "signature": "`decipher.update(data[, inputEncoding][, outputEncoding])`", + "label": "decipher.update(data[, inputEncoding][, outputEncoding])", + "apiSymbol": "decipher.update", + "depth": 2, + "scope": "api", + "anchor": "decipherupdatedata-inputencoding-outputencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:4f72a2bdb4f3", + "chapter": "crypto", + "kind": "class", + "name": "DiffieHellman", + "signature": "Class: `DiffieHellman`", + "label": "DiffieHellman", + "apiSymbol": "DiffieHellman", + "depth": 1, + "scope": "api", + "anchor": "class-diffiehellman", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:23014d576554", + "chapter": "crypto", + "kind": "method", + "name": "computeSecret", + "signature": "`diffieHellman.computeSecret(otherPublicKey[, inputEncoding][, outputEncoding])`", + "label": "diffieHellman.computeSecret(otherPublicKey[, inputEncoding][, outputEncoding])", + "apiSymbol": "diffieHellman.computeSecret", + "depth": 2, + "scope": "api", + "anchor": "diffiehellmancomputesecretotherpublickey-inputencoding-outputencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:285040b024fb", + "chapter": "crypto", + "kind": "method", + "name": "generateKeys", + "signature": "`diffieHellman.generateKeys([encoding])`", + "label": "diffieHellman.generateKeys([encoding])", + "apiSymbol": "diffieHellman.generateKeys", + "depth": 2, + "scope": "api", + "anchor": "diffiehellmangeneratekeysencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:f981e631eadc", + "chapter": "crypto", + "kind": "method", + "name": "getGenerator", + "signature": "`diffieHellman.getGenerator([encoding])`", + "label": "diffieHellman.getGenerator([encoding])", + "apiSymbol": "diffieHellman.getGenerator", + "depth": 2, + "scope": "api", + "anchor": "diffiehellmangetgeneratorencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:1bc38308e8e0", + "chapter": "crypto", + "kind": "method", + "name": "getPrime", + "signature": "`diffieHellman.getPrime([encoding])`", + "label": "diffieHellman.getPrime([encoding])", + "apiSymbol": "diffieHellman.getPrime", + "depth": 2, + "scope": "api", + "anchor": "diffiehellmangetprimeencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:6ae8ed1c16aa", + "chapter": "crypto", + "kind": "method", + "name": "getPrivateKey", + "signature": "`diffieHellman.getPrivateKey([encoding])`", + "label": "diffieHellman.getPrivateKey([encoding])", + "apiSymbol": "diffieHellman.getPrivateKey", + "depth": 2, + "scope": "api", + "anchor": "diffiehellmangetprivatekeyencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:9069ec158cfb", + "chapter": "crypto", + "kind": "method", + "name": "getPublicKey", + "signature": "`diffieHellman.getPublicKey([encoding])`", + "label": "diffieHellman.getPublicKey([encoding])", + "apiSymbol": "diffieHellman.getPublicKey", + "depth": 2, + "scope": "api", + "anchor": "diffiehellmangetpublickeyencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:d3723dc39029", + "chapter": "crypto", + "kind": "method", + "name": "setPrivateKey", + "signature": "`diffieHellman.setPrivateKey(privateKey[, encoding])`", + "label": "diffieHellman.setPrivateKey(privateKey[, encoding])", + "apiSymbol": "diffieHellman.setPrivateKey", + "depth": 2, + "scope": "api", + "anchor": "diffiehellmansetprivatekeyprivatekey-encoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:16362019d0a0", + "chapter": "crypto", + "kind": "method", + "name": "setPublicKey", + "signature": "`diffieHellman.setPublicKey(publicKey[, encoding])`", + "label": "diffieHellman.setPublicKey(publicKey[, encoding])", + "apiSymbol": "diffieHellman.setPublicKey", + "depth": 2, + "scope": "api", + "anchor": "diffiehellmansetpublickeypublickey-encoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:64a2a8e6f521", + "chapter": "crypto", + "kind": "section", + "name": "verifyError", + "signature": "`diffieHellman.verifyError`", + "label": "diffieHellman.verifyError", + "apiSymbol": "diffieHellman.verifyError", + "depth": 2, + "scope": "api", + "anchor": "diffiehellmanverifyerror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:d8a35058e2b8", + "chapter": "crypto", + "kind": "class", + "name": "DiffieHellmanGroup", + "signature": "Class: `DiffieHellmanGroup`", + "label": "DiffieHellmanGroup", + "apiSymbol": "DiffieHellmanGroup", + "depth": 1, + "scope": "api", + "anchor": "class-diffiehellmangroup", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:12976329983d", + "chapter": "crypto", + "kind": "class", + "name": "ECDH", + "signature": "Class: `ECDH`", + "label": "ECDH", + "apiSymbol": "ECDH", + "depth": 1, + "scope": "api", + "anchor": "class-ecdh", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:90286cb0202e", + "chapter": "crypto", + "kind": "method", + "name": "computeSecret", + "signature": "`ecdh.computeSecret(otherPublicKey[, inputEncoding][, outputEncoding])`", + "label": "ecdh.computeSecret(otherPublicKey[, inputEncoding][, outputEncoding])", + "apiSymbol": "ecdh.computeSecret", + "depth": 2, + "scope": "api", + "anchor": "ecdhcomputesecretotherpublickey-inputencoding-outputencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:152f6b5531a6", + "chapter": "crypto", + "kind": "method", + "name": "generateKeys", + "signature": "`ecdh.generateKeys([encoding[, format]])`", + "label": "ecdh.generateKeys([encoding[, format]])", + "apiSymbol": "ecdh.generateKeys", + "depth": 2, + "scope": "api", + "anchor": "ecdhgeneratekeysencoding-format", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:1d7a0a99229b", + "chapter": "crypto", + "kind": "method", + "name": "getPrivateKey", + "signature": "`ecdh.getPrivateKey([encoding])`", + "label": "ecdh.getPrivateKey([encoding])", + "apiSymbol": "ecdh.getPrivateKey", + "depth": 2, + "scope": "api", + "anchor": "ecdhgetprivatekeyencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:31a28a09eb16", + "chapter": "crypto", + "kind": "method", + "name": "getPublicKey", + "signature": "`ecdh.getPublicKey([encoding][, format])`", + "label": "ecdh.getPublicKey([encoding][, format])", + "apiSymbol": "ecdh.getPublicKey", + "depth": 2, + "scope": "api", + "anchor": "ecdhgetpublickeyencoding-format", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:d54f215087e4", + "chapter": "crypto", + "kind": "method", + "name": "setPrivateKey", + "signature": "`ecdh.setPrivateKey(privateKey[, encoding])`", + "label": "ecdh.setPrivateKey(privateKey[, encoding])", + "apiSymbol": "ecdh.setPrivateKey", + "depth": 2, + "scope": "api", + "anchor": "ecdhsetprivatekeyprivatekey-encoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:ac963ede7945", + "chapter": "crypto", + "kind": "method", + "name": "setPublicKey", + "signature": "`ecdh.setPublicKey(publicKey[, encoding])`", + "label": "ecdh.setPublicKey(publicKey[, encoding])", + "apiSymbol": "ecdh.setPublicKey", + "depth": 2, + "scope": "api", + "anchor": "ecdhsetpublickeypublickey-encoding", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:a4f0b3c152f1", + "chapter": "crypto", + "kind": "class", + "name": "Hash", + "signature": "Class: `Hash`", + "label": "Hash", + "apiSymbol": "Hash", + "depth": 1, + "scope": "api", + "anchor": "class-hash", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "crypto:d3963279f285", + "chapter": "crypto", + "kind": "method", + "name": "copy", + "signature": "`hash.copy([options])`", + "label": "hash.copy([options])", + "apiSymbol": "hash.copy", + "depth": 2, + "scope": "api", + "anchor": "hashcopyoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "crypto:59585e0a2438", + "chapter": "crypto", + "kind": "method", + "name": "digest", + "signature": "`hash.digest([encoding])`", + "label": "hash.digest([encoding])", + "apiSymbol": "hash.digest", + "depth": 2, + "scope": "api", + "anchor": "hashdigestencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "crypto:a73c2c671736", + "chapter": "crypto", + "kind": "method", + "name": "update", + "signature": "`hash.update(data[, inputEncoding])`", + "label": "hash.update(data[, inputEncoding])", + "apiSymbol": "hash.update", + "depth": 2, + "scope": "api", + "anchor": "hashupdatedata-inputencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "crypto:c15e8a6a36cf", + "chapter": "crypto", + "kind": "class", + "name": "Hmac", + "signature": "Class: `Hmac`", + "label": "Hmac", + "apiSymbol": "Hmac", + "depth": 1, + "scope": "api", + "anchor": "class-hmac", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "crypto:8b80f07883fa", + "chapter": "crypto", + "kind": "method", + "name": "digest", + "signature": "`hmac.digest([encoding])`", + "label": "hmac.digest([encoding])", + "apiSymbol": "hmac.digest", + "depth": 2, + "scope": "api", + "anchor": "hmacdigestencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "crypto:89653e25c6cd", + "chapter": "crypto", + "kind": "method", + "name": "update", + "signature": "`hmac.update(data[, inputEncoding])`", + "label": "hmac.update(data[, inputEncoding])", + "apiSymbol": "hmac.update", + "depth": 2, + "scope": "api", + "anchor": "hmacupdatedata-inputencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "crypto:2b66d6d94c1b", + "chapter": "crypto", + "kind": "class", + "name": "KeyObject", + "signature": "Class: `KeyObject`", + "label": "KeyObject", + "apiSymbol": "KeyObject", + "depth": 1, + "scope": "api", + "anchor": "class-keyobject", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "crypto:6f2bcfb156ac", + "chapter": "crypto", + "kind": "method", + "name": "equals", + "signature": "`keyObject.equals(otherKeyObject)`", + "label": "keyObject.equals(otherKeyObject)", + "apiSymbol": "keyObject.equals", + "depth": 2, + "scope": "api", + "anchor": "keyobjectequalsotherkeyobject", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:85e85102b244", + "chapter": "crypto", + "kind": "method", + "name": "export", + "signature": "`keyObject.export([options])`", + "label": "keyObject.export([options])", + "apiSymbol": "keyObject.export", + "depth": 2, + "scope": "api", + "anchor": "keyobjectexportoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:e353651be6c6", + "chapter": "crypto", + "kind": "method", + "name": "toCryptoKey", + "signature": "`keyObject.toCryptoKey(algorithm, extractable, keyUsages)`", + "label": "keyObject.toCryptoKey(algorithm, extractable, keyUsages)", + "apiSymbol": "keyObject.toCryptoKey", + "depth": 2, + "scope": "api", + "anchor": "keyobjecttocryptokeyalgorithm-extractable-keyusages", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:a0364b2ad9ac", + "chapter": "crypto", + "kind": "Object", + "name": "Type", + "signature": "`asymmetricKeyDetails` Type: {Object}", + "label": "asymmetricKeyDetails", + "apiSymbol": "asymmetricKeyDetails", + "depth": 2, + "scope": "api", + "anchor": "class-keyobject", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:485527857ce7", + "chapter": "crypto", + "kind": "string", + "name": "Type", + "signature": "`asymmetricKeyType` Type: {string}", + "label": "asymmetricKeyType", + "apiSymbol": "asymmetricKeyType", + "depth": 2, + "scope": "api", + "anchor": "class-keyobject", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:50b2afeb1043", + "chapter": "crypto", + "kind": "number", + "name": "Type", + "signature": "`symmetricKeySize` Type: {number}", + "label": "symmetricKeySize", + "apiSymbol": "symmetricKeySize", + "depth": 2, + "scope": "api", + "anchor": "class-keyobject", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:5995cb82e2ad", + "chapter": "crypto", + "kind": "string", + "name": "Type", + "signature": "`type` Type: {string}", + "label": "type", + "apiSymbol": "type", + "depth": 2, + "scope": "api", + "anchor": "class-keyobject", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:1f80502ef093", + "chapter": "crypto", + "kind": "class", + "name": "Sign", + "signature": "Class: `Sign`", + "label": "Sign", + "apiSymbol": "Sign", + "depth": 1, + "scope": "api", + "anchor": "class-sign", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:f0d4c38cb195", + "chapter": "crypto", + "kind": "method", + "name": "sign", + "signature": "`sign.sign(privateKey[, outputEncoding])`", + "label": "sign.sign(privateKey[, outputEncoding])", + "apiSymbol": "sign.sign", + "depth": 2, + "scope": "api", + "anchor": "signsignprivatekey-outputencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:1a7934a06f56", + "chapter": "crypto", + "kind": "method", + "name": "update", + "signature": "`sign.update(data[, inputEncoding])`", + "label": "sign.update(data[, inputEncoding])", + "apiSymbol": "sign.update", + "depth": 2, + "scope": "api", + "anchor": "signupdatedata-inputencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:27bc6401cdef", + "chapter": "crypto", + "kind": "class", + "name": "Verify", + "signature": "Class: `Verify`", + "label": "Verify", + "apiSymbol": "Verify", + "depth": 1, + "scope": "api", + "anchor": "class-verify", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:3268d2b63eaf", + "chapter": "crypto", + "kind": "method", + "name": "update", + "signature": "`verify.update(data[, inputEncoding])`", + "label": "verify.update(data[, inputEncoding])", + "apiSymbol": "verify.update", + "depth": 2, + "scope": "api", + "anchor": "verifyupdatedata-inputencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:16511e6f27c0", + "chapter": "crypto", + "kind": "method", + "name": "verify", + "signature": "`verify.verify(object, signature[, signatureEncoding])`", + "label": "verify.verify(object, signature[, signatureEncoding])", + "apiSymbol": "verify.verify", + "depth": 2, + "scope": "api", + "anchor": "verifyverifyobject-signature-signatureencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:21193c8007c3", + "chapter": "crypto", + "kind": "class", + "name": "X509Certificate", + "signature": "Class: `X509Certificate`", + "label": "X509Certificate", + "apiSymbol": "X509Certificate", + "depth": 1, + "scope": "api", + "anchor": "class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "crypto:782c3f6355f4", + "chapter": "crypto", + "kind": "method", + "name": "checkEmail", + "signature": "`x509.checkEmail(email[, options])`", + "label": "x509.checkEmail(email[, options])", + "apiSymbol": "x509.checkEmail", + "depth": 2, + "scope": "api", + "anchor": "x509checkemailemail-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:7bd4defaa6f6", + "chapter": "crypto", + "kind": "method", + "name": "checkHost", + "signature": "`x509.checkHost(name[, options])`", + "label": "x509.checkHost(name[, options])", + "apiSymbol": "x509.checkHost", + "depth": 2, + "scope": "api", + "anchor": "x509checkhostname-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:a552ac77f041", + "chapter": "crypto", + "kind": "method", + "name": "checkIP", + "signature": "`x509.checkIP(ip)`", + "label": "x509.checkIP(ip)", + "apiSymbol": "x509.checkIP", + "depth": 2, + "scope": "api", + "anchor": "x509checkipip", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:5e0b7bb3139e", + "chapter": "crypto", + "kind": "method", + "name": "checkIssued", + "signature": "`x509.checkIssued(otherCert)`", + "label": "x509.checkIssued(otherCert)", + "apiSymbol": "x509.checkIssued", + "depth": 2, + "scope": "api", + "anchor": "x509checkissuedothercert", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:9bb6177d2e64", + "chapter": "crypto", + "kind": "method", + "name": "checkPrivateKey", + "signature": "`x509.checkPrivateKey(privateKey)`", + "label": "x509.checkPrivateKey(privateKey)", + "apiSymbol": "x509.checkPrivateKey", + "depth": 2, + "scope": "api", + "anchor": "x509checkprivatekeyprivatekey", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:f8b12d2ad75d", + "chapter": "crypto", + "kind": "method", + "name": "toJSON", + "signature": "`x509.toJSON()`", + "label": "x509.toJSON()", + "apiSymbol": "x509.toJSON", + "depth": 2, + "scope": "api", + "anchor": "x509tojson", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:c1ed50d74df9", + "chapter": "crypto", + "kind": "method", + "name": "toLegacyObject", + "signature": "`x509.toLegacyObject()`", + "label": "x509.toLegacyObject()", + "apiSymbol": "x509.toLegacyObject", + "depth": 2, + "scope": "api", + "anchor": "x509tolegacyobject", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:01179d9bc0fa", + "chapter": "crypto", + "kind": "method", + "name": "toString", + "signature": "`x509.toString()`", + "label": "x509.toString()", + "apiSymbol": "x509.toString", + "depth": 2, + "scope": "api", + "anchor": "x509tostring", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:22923e49e9e2", + "chapter": "crypto", + "kind": "method", + "name": "verify", + "signature": "`x509.verify(publicKey)`", + "label": "x509.verify(publicKey)", + "apiSymbol": "x509.verify", + "depth": 2, + "scope": "api", + "anchor": "x509verifypublickey", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:384f09c59f83", + "chapter": "crypto", + "kind": "boolean", + "name": "Type", + "signature": "`ca` Type: {boolean} Will be `true` if this is a Certificate Authority (CA) certificate.", + "label": "ca", + "apiSymbol": "ca", + "depth": 2, + "scope": "api", + "anchor": "class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:033a5471ea87", + "chapter": "crypto", + "kind": "string", + "name": "Type", + "signature": "`fingerprint` Type: {string}", + "label": "fingerprint", + "apiSymbol": "fingerprint", + "depth": 2, + "scope": "api", + "anchor": "class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:54e236e6cbb1", + "chapter": "crypto", + "kind": "string", + "name": "Type", + "signature": "`fingerprint256` Type: {string}", + "label": "fingerprint256", + "apiSymbol": "fingerprint256", + "depth": 2, + "scope": "api", + "anchor": "class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:99b8d79428f9", + "chapter": "crypto", + "kind": "string", + "name": "Type", + "signature": "`fingerprint512` Type: {string}", + "label": "fingerprint512", + "apiSymbol": "fingerprint512", + "depth": 2, + "scope": "api", + "anchor": "class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:8d64fdd4d74d", + "chapter": "crypto", + "kind": "string", + "name": "Type", + "signature": "`infoAccess` Type: {string}", + "label": "infoAccess", + "apiSymbol": "infoAccess", + "depth": 2, + "scope": "api", + "anchor": "class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:961336842e1d", + "chapter": "crypto", + "kind": "string", + "name": "Type", + "signature": "`issuer` Type: {string}", + "label": "issuer", + "apiSymbol": "issuer", + "depth": 2, + "scope": "api", + "anchor": "class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:8dbb2c55f9f1", + "chapter": "crypto", + "kind": "X509Certificate", + "name": "Type", + "signature": "`issuerCertificate` Type: {X509Certificate}", + "label": "issuerCertificate", + "apiSymbol": "issuerCertificate", + "depth": 2, + "scope": "api", + "anchor": "class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:8d468947b609", + "chapter": "crypto", + "kind": "string\\[]", + "name": "Type", + "signature": "`keyUsage` Type: {string\\[]}", + "label": "keyUsage", + "apiSymbol": "keyUsage", + "depth": 2, + "scope": "api", + "anchor": "class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:889b2e52ecb8", + "chapter": "crypto", + "kind": "KeyObject", + "name": "Type", + "signature": "`publicKey` Type: {KeyObject}", + "label": "publicKey", + "apiSymbol": "publicKey", + "depth": 2, + "scope": "api", + "anchor": "class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:0ea854d0e858", + "chapter": "crypto", + "kind": "Buffer", + "name": "Type", + "signature": "`raw` Type: {Buffer}", + "label": "raw", + "apiSymbol": "raw", + "depth": 2, + "scope": "api", + "anchor": "class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:31308b99a231", + "chapter": "crypto", + "kind": "string", + "name": "Type", + "signature": "`serialNumber` Type: {string}", + "label": "serialNumber", + "apiSymbol": "serialNumber", + "depth": 2, + "scope": "api", + "anchor": "class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:4f31985db14a", + "chapter": "crypto", + "kind": "string", + "name": "Type", + "signature": "`subject` Type: {string}", + "label": "subject", + "apiSymbol": "subject", + "depth": 2, + "scope": "api", + "anchor": "class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:39b2be69dd3e", + "chapter": "crypto", + "kind": "string", + "name": "Type", + "signature": "`subjectAltName` Type: {string}", + "label": "subjectAltName", + "apiSymbol": "subjectAltName", + "depth": 2, + "scope": "api", + "anchor": "class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:2599c820624c", + "chapter": "crypto", + "kind": "string", + "name": "Type", + "signature": "`validFrom` Type: {string}", + "label": "validFrom", + "apiSymbol": "validFrom", + "depth": 2, + "scope": "api", + "anchor": "class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:1cd0e31c665e", + "chapter": "crypto", + "kind": "Date", + "name": "Type", + "signature": "`validFromDate` Type: {Date}", + "label": "validFromDate", + "apiSymbol": "validFromDate", + "depth": 2, + "scope": "api", + "anchor": "class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:015b61fc4aed", + "chapter": "crypto", + "kind": "string", + "name": "Type", + "signature": "`validTo` Type: {string}", + "label": "validTo", + "apiSymbol": "validTo", + "depth": 2, + "scope": "api", + "anchor": "class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:12cadeecd77d", + "chapter": "crypto", + "kind": "Date", + "name": "Type", + "signature": "`validToDate` Type: {Date}", + "label": "validToDate", + "apiSymbol": "validToDate", + "depth": 2, + "scope": "api", + "anchor": "class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:dd666ee892cd", + "chapter": "crypto", + "kind": "string|undefined", + "name": "Type", + "signature": "`signatureAlgorithm` Type: {string|undefined}", + "label": "signatureAlgorithm", + "apiSymbol": "signatureAlgorithm", + "depth": 2, + "scope": "api", + "anchor": "class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "crypto:3a62d3a86672", + "chapter": "crypto", + "kind": "string", + "name": "Type", + "signature": "`signatureAlgorithmOid` Type: {string}", + "label": "signatureAlgorithmOid", + "apiSymbol": "signatureAlgorithmOid", + "depth": 2, + "scope": "api", + "anchor": "class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "diagnostics_channel:11bd5c8c605b", + "chapter": "diagnostics_channel", + "kind": "module", + "name": "diagnostics_channel", + "signature": "Diagnostics Channel", + "label": "Diagnostics Channel", + "apiSymbol": "diagnostics_channel", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + }, + "dynamic": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + } + }, + { + "id": "diagnostics_channel:3a83bf4c0f02", + "chapter": "diagnostics_channel", + "kind": "method", + "name": "hasSubscribers", + "signature": "`diagnostics_channel.hasSubscribers(name)`", + "label": "diagnostics_channel.hasSubscribers(name)", + "apiSymbol": "diagnostics_channel.hasSubscribers", + "depth": 1, + "scope": "api", + "anchor": "diagnostics_channelhassubscribersname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "diagnostics_channel:5dc721bef53e", + "chapter": "diagnostics_channel", + "kind": "method", + "name": "channel", + "signature": "`diagnostics_channel.channel(name)`", + "label": "diagnostics_channel.channel(name)", + "apiSymbol": "diagnostics_channel.channel", + "depth": 1, + "scope": "api", + "anchor": "diagnostics_channelchannelname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "diagnostics_channel:58098a420ca7", + "chapter": "diagnostics_channel", + "kind": "method", + "name": "subscribe", + "signature": "`diagnostics_channel.subscribe(name, onMessage)`", + "label": "diagnostics_channel.subscribe(name, onMessage)", + "apiSymbol": "diagnostics_channel.subscribe", + "depth": 1, + "scope": "api", + "anchor": "diagnostics_channelsubscribename-onmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "diagnostics_channel:610af18774f3", + "chapter": "diagnostics_channel", + "kind": "method", + "name": "unsubscribe", + "signature": "`diagnostics_channel.unsubscribe(name, onMessage)`", + "label": "diagnostics_channel.unsubscribe(name, onMessage)", + "apiSymbol": "diagnostics_channel.unsubscribe", + "depth": 1, + "scope": "api", + "anchor": "diagnostics_channelunsubscribename-onmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "diagnostics_channel:b3b8c4de5108", + "chapter": "diagnostics_channel", + "kind": "method", + "name": "tracingChannel", + "signature": "`diagnostics_channel.tracingChannel(nameOrChannels)`", + "label": "diagnostics_channel.tracingChannel(nameOrChannels)", + "apiSymbol": "diagnostics_channel.tracingChannel", + "depth": 1, + "scope": "api", + "anchor": "diagnostics_channeltracingchannelnameorchannels", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "diagnostics_channel:e7b043d069d2", + "chapter": "diagnostics_channel", + "kind": "method", + "name": "start", + "signature": "`start(event)`", + "label": "start(event)", + "apiSymbol": "start", + "depth": 1, + "scope": "api", + "anchor": "startevent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "diagnostics_channel:ad43c540a991", + "chapter": "diagnostics_channel", + "kind": "method", + "name": "end", + "signature": "`end(event)`", + "label": "end(event)", + "apiSymbol": "end", + "depth": 1, + "scope": "api", + "anchor": "endevent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "diagnostics_channel:ca9b1fb81fe7", + "chapter": "diagnostics_channel", + "kind": "method", + "name": "asyncStart", + "signature": "`asyncStart(event)`", + "label": "asyncStart(event)", + "apiSymbol": "asyncStart", + "depth": 1, + "scope": "api", + "anchor": "asyncstartevent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "diagnostics_channel:5c9a2f6b6212", + "chapter": "diagnostics_channel", + "kind": "method", + "name": "asyncEnd", + "signature": "`asyncEnd(event)`", + "label": "asyncEnd(event)", + "apiSymbol": "asyncEnd", + "depth": 1, + "scope": "api", + "anchor": "asyncendevent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "diagnostics_channel:e1c5179dc980", + "chapter": "diagnostics_channel", + "kind": "method", + "name": "error", + "signature": "`error(event)`", + "label": "error(event)", + "apiSymbol": "error", + "depth": 1, + "scope": "api", + "anchor": "errorevent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "diagnostics_channel:3c8b9230f22c", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "console.log", + "signature": "Event: `'console.log'`", + "label": "'console.log'", + "apiSymbol": "'console.log'", + "depth": 1, + "scope": "api", + "anchor": "event-consolelog", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "diagnostics_channel:192addcfe8d5", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "console.info", + "signature": "Event: `'console.info'`", + "label": "'console.info'", + "apiSymbol": "'console.info'", + "depth": 1, + "scope": "api", + "anchor": "event-consoleinfo", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "diagnostics_channel:5825be615c37", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "console.debug", + "signature": "Event: `'console.debug'`", + "label": "'console.debug'", + "apiSymbol": "'console.debug'", + "depth": 1, + "scope": "api", + "anchor": "event-consoledebug", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "diagnostics_channel:e7c098f4a4be", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "console.warn", + "signature": "Event: `'console.warn'`", + "label": "'console.warn'", + "apiSymbol": "'console.warn'", + "depth": 1, + "scope": "api", + "anchor": "event-consolewarn", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "diagnostics_channel:f5d8f7c48fef", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "console.error", + "signature": "Event: `'console.error'`", + "label": "'console.error'", + "apiSymbol": "'console.error'", + "depth": 1, + "scope": "api", + "anchor": "event-consoleerror", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "diagnostics_channel:50a76b004ae9", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "http.client.request.created", + "signature": "Event: `'http.client.request.created'`", + "label": "'http.client.request.created'", + "apiSymbol": "'http.client.request.created'", + "depth": 1, + "scope": "api", + "anchor": "event-httpclientrequestcreated", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "diagnostics_channel:d19d2098844d", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "http.client.request.start", + "signature": "Event: `'http.client.request.start'`", + "label": "'http.client.request.start'", + "apiSymbol": "'http.client.request.start'", + "depth": 1, + "scope": "api", + "anchor": "event-httpclientrequeststart", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "diagnostics_channel:0efc0584b099", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "http.client.request.error", + "signature": "Event: `'http.client.request.error'`", + "label": "'http.client.request.error'", + "apiSymbol": "'http.client.request.error'", + "depth": 1, + "scope": "api", + "anchor": "event-httpclientrequesterror", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "diagnostics_channel:04e5ed42f276", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "http.client.response.finish", + "signature": "Event: `'http.client.response.finish'`", + "label": "'http.client.response.finish'", + "apiSymbol": "'http.client.response.finish'", + "depth": 1, + "scope": "api", + "anchor": "event-httpclientresponsefinish", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "diagnostics_channel:c4b514e9fd58", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "http.server.request.start", + "signature": "Event: `'http.server.request.start'`", + "label": "'http.server.request.start'", + "apiSymbol": "'http.server.request.start'", + "depth": 1, + "scope": "api", + "anchor": "event-httpserverrequeststart", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "diagnostics_channel:30048d6b5d93", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "http.server.response.created", + "signature": "Event: `'http.server.response.created'`", + "label": "'http.server.response.created'", + "apiSymbol": "'http.server.response.created'", + "depth": 1, + "scope": "api", + "anchor": "event-httpserverresponsecreated", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "diagnostics_channel:b9fcb7b3c176", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "http.server.response.finish", + "signature": "Event: `'http.server.response.finish'`", + "label": "'http.server.response.finish'", + "apiSymbol": "'http.server.response.finish'", + "depth": 1, + "scope": "api", + "anchor": "event-httpserverresponsefinish", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "diagnostics_channel:f371268e3e6e", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "http2.client.stream.created", + "signature": "Event: `'http2.client.stream.created'`", + "label": "'http2.client.stream.created'", + "apiSymbol": "'http2.client.stream.created'", + "depth": 1, + "scope": "api", + "anchor": "event-http2clientstreamcreated", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "diagnostics_channel:5c461371ec2f", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "http2.client.stream.start", + "signature": "Event: `'http2.client.stream.start'`", + "label": "'http2.client.stream.start'", + "apiSymbol": "'http2.client.stream.start'", + "depth": 1, + "scope": "api", + "anchor": "event-http2clientstreamstart", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "diagnostics_channel:0d58e966dbf6", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "http2.client.stream.error", + "signature": "Event: `'http2.client.stream.error'`", + "label": "'http2.client.stream.error'", + "apiSymbol": "'http2.client.stream.error'", + "depth": 1, + "scope": "api", + "anchor": "event-http2clientstreamerror", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "diagnostics_channel:b6fb66c771d4", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "http2.client.stream.finish", + "signature": "Event: `'http2.client.stream.finish'`", + "label": "'http2.client.stream.finish'", + "apiSymbol": "'http2.client.stream.finish'", + "depth": 1, + "scope": "api", + "anchor": "event-http2clientstreamfinish", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "diagnostics_channel:718e824eefa2", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "http2.client.stream.bodyChunkSent", + "signature": "Event: `'http2.client.stream.bodyChunkSent'`", + "label": "'http2.client.stream.bodyChunkSent'", + "apiSymbol": "'http2.client.stream.bodyChunkSent'", + "depth": 1, + "scope": "api", + "anchor": "event-http2clientstreambodychunksent", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "diagnostics_channel:401ed3ea2963", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "http2.client.stream.bodySent", + "signature": "Event: `'http2.client.stream.bodySent'`", + "label": "'http2.client.stream.bodySent'", + "apiSymbol": "'http2.client.stream.bodySent'", + "depth": 1, + "scope": "api", + "anchor": "event-http2clientstreambodysent", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "diagnostics_channel:9b614c2de9e4", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "http2.client.stream.close", + "signature": "Event: `'http2.client.stream.close'`", + "label": "'http2.client.stream.close'", + "apiSymbol": "'http2.client.stream.close'", + "depth": 1, + "scope": "api", + "anchor": "event-http2clientstreamclose", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "diagnostics_channel:83a09c52f2c6", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "http2.server.stream.created", + "signature": "Event: `'http2.server.stream.created'`", + "label": "'http2.server.stream.created'", + "apiSymbol": "'http2.server.stream.created'", + "depth": 1, + "scope": "api", + "anchor": "event-http2serverstreamcreated", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "diagnostics_channel:e25b6f904e15", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "http2.server.stream.start", + "signature": "Event: `'http2.server.stream.start'`", + "label": "'http2.server.stream.start'", + "apiSymbol": "'http2.server.stream.start'", + "depth": 1, + "scope": "api", + "anchor": "event-http2serverstreamstart", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "diagnostics_channel:16fd6ad9a398", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "http2.server.stream.error", + "signature": "Event: `'http2.server.stream.error'`", + "label": "'http2.server.stream.error'", + "apiSymbol": "'http2.server.stream.error'", + "depth": 1, + "scope": "api", + "anchor": "event-http2serverstreamerror", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "diagnostics_channel:838230e7598c", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "http2.server.stream.finish", + "signature": "Event: `'http2.server.stream.finish'`", + "label": "'http2.server.stream.finish'", + "apiSymbol": "'http2.server.stream.finish'", + "depth": 1, + "scope": "api", + "anchor": "event-http2serverstreamfinish", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "diagnostics_channel:ad7084327c33", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "http2.server.stream.close", + "signature": "Event: `'http2.server.stream.close'`", + "label": "'http2.server.stream.close'", + "apiSymbol": "'http2.server.stream.close'", + "depth": 1, + "scope": "api", + "anchor": "event-http2serverstreamclose", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "diagnostics_channel:d1c41884e542", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "module.require.start", + "signature": "Event: `'module.require.start'`", + "label": "'module.require.start'", + "apiSymbol": "'module.require.start'", + "depth": 1, + "scope": "api", + "anchor": "event-modulerequirestart", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "diagnostics_channel:4cd1c32b77c6", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "module.require.end", + "signature": "Event: `'module.require.end'`", + "label": "'module.require.end'", + "apiSymbol": "'module.require.end'", + "depth": 1, + "scope": "api", + "anchor": "event-modulerequireend", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "diagnostics_channel:cd31d16f125f", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "module.require.error", + "signature": "Event: `'module.require.error'`", + "label": "'module.require.error'", + "apiSymbol": "'module.require.error'", + "depth": 1, + "scope": "api", + "anchor": "event-modulerequireerror", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "diagnostics_channel:a2840f3e48cc", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "module.import.asyncStart", + "signature": "Event: `'module.import.asyncStart'`", + "label": "'module.import.asyncStart'", + "apiSymbol": "'module.import.asyncStart'", + "depth": 1, + "scope": "api", + "anchor": "event-moduleimportasyncstart", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "diagnostics_channel:730d6618877f", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "module.import.asyncEnd", + "signature": "Event: `'module.import.asyncEnd'`", + "label": "'module.import.asyncEnd'", + "apiSymbol": "'module.import.asyncEnd'", + "depth": 1, + "scope": "api", + "anchor": "event-moduleimportasyncend", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "diagnostics_channel:b94f162dfbad", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "module.import.error", + "signature": "Event: `'module.import.error'`", + "label": "'module.import.error'", + "apiSymbol": "'module.import.error'", + "depth": 1, + "scope": "api", + "anchor": "event-moduleimporterror", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "diagnostics_channel:96f699c20c83", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "net.client.socket", + "signature": "Event: `'net.client.socket'`", + "label": "'net.client.socket'", + "apiSymbol": "'net.client.socket'", + "depth": 1, + "scope": "api", + "anchor": "event-netclientsocket", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "diagnostics_channel:a4ac7822e041", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "net.server.socket", + "signature": "Event: `'net.server.socket'`", + "label": "'net.server.socket'", + "apiSymbol": "'net.server.socket'", + "depth": 1, + "scope": "api", + "anchor": "event-netserversocket", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "diagnostics_channel:8fb6ed70db09", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "tracing:net.server.listen:asyncStart", + "signature": "Event: `'tracing:net.server.listen:asyncStart'`", + "label": "'tracing:net.server.listen:asyncStart'", + "apiSymbol": "'tracing:net.server.listen:asyncStart'", + "depth": 1, + "scope": "api", + "anchor": "event-tracingnetserverlistenasyncstart", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "diagnostics_channel:227fa6e52c85", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "tracing:net.server.listen:asyncEnd", + "signature": "Event: `'tracing:net.server.listen:asyncEnd'`", + "label": "'tracing:net.server.listen:asyncEnd'", + "apiSymbol": "'tracing:net.server.listen:asyncEnd'", + "depth": 1, + "scope": "api", + "anchor": "event-tracingnetserverlistenasyncend", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "diagnostics_channel:2ab98bc47cfd", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "tracing:net.server.listen:error", + "signature": "Event: `'tracing:net.server.listen:error'`", + "label": "'tracing:net.server.listen:error'", + "apiSymbol": "'tracing:net.server.listen:error'", + "depth": 1, + "scope": "api", + "anchor": "event-tracingnetserverlistenerror", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "diagnostics_channel:b2b7e4c01971", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "udp.socket", + "signature": "Event: `'udp.socket'`", + "label": "'udp.socket'", + "apiSymbol": "'udp.socket'", + "depth": 1, + "scope": "api", + "anchor": "event-udpsocket", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "diagnostics_channel:d80660abc192", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "child_process", + "signature": "Event: `'child_process'`", + "label": "'child_process'", + "apiSymbol": "'child_process'", + "depth": 1, + "scope": "api", + "anchor": "event-child_process", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "diagnostics_channel:3e684ab90652", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "execve", + "signature": "Event: `'execve'`", + "label": "'execve'", + "apiSymbol": "'execve'", + "depth": 1, + "scope": "api", + "anchor": "event-execve", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "diagnostics_channel:2150baf1c289", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "locks.request.start", + "signature": "Event: `'locks.request.start'`", + "label": "'locks.request.start'", + "apiSymbol": "'locks.request.start'", + "depth": 1, + "scope": "api", + "anchor": "event-locksrequeststart", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "diagnostics_channel:ff0186747334", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "locks.request.grant", + "signature": "Event: `'locks.request.grant'`", + "label": "'locks.request.grant'", + "apiSymbol": "'locks.request.grant'", + "depth": 1, + "scope": "api", + "anchor": "event-locksrequestgrant", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "diagnostics_channel:e52bc3bff166", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "locks.request.miss", + "signature": "Event: `'locks.request.miss'`", + "label": "'locks.request.miss'", + "apiSymbol": "'locks.request.miss'", + "depth": 1, + "scope": "api", + "anchor": "event-locksrequestmiss", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "diagnostics_channel:357e89691f43", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "locks.request.end", + "signature": "Event: `'locks.request.end'`", + "label": "'locks.request.end'", + "apiSymbol": "'locks.request.end'", + "depth": 1, + "scope": "api", + "anchor": "event-locksrequestend", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "diagnostics_channel:d4ce0a297579", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "worker_threads", + "signature": "Event: `'worker_threads'`", + "label": "'worker_threads'", + "apiSymbol": "'worker_threads'", + "depth": 1, + "scope": "api", + "anchor": "event-worker_threads", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "diagnostics_channel:e311810f8dca", + "chapter": "diagnostics_channel", + "kind": "class", + "name": "Channel", + "signature": "Class: `Channel`", + "label": "Channel", + "apiSymbol": "Channel", + "depth": 1, + "scope": "api", + "anchor": "class-channel", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "diagnostics_channel:4546c9960c41", + "chapter": "diagnostics_channel", + "kind": "method", + "name": "publish", + "signature": "`channel.publish(message)`", + "label": "channel.publish(message)", + "apiSymbol": "channel.publish", + "depth": 2, + "scope": "api", + "anchor": "channelpublishmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "diagnostics_channel:9b216a62d8a3", + "chapter": "diagnostics_channel", + "kind": "method", + "name": "subscribe", + "signature": "`channel.subscribe(onMessage)`", + "label": "channel.subscribe(onMessage)", + "apiSymbol": "channel.subscribe", + "depth": 2, + "scope": "api", + "anchor": "channelsubscribeonmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "diagnostics_channel:b6526124c5e9", + "chapter": "diagnostics_channel", + "kind": "method", + "name": "unsubscribe", + "signature": "`channel.unsubscribe(onMessage)`", + "label": "channel.unsubscribe(onMessage)", + "apiSymbol": "channel.unsubscribe", + "depth": 2, + "scope": "api", + "anchor": "channelunsubscribeonmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "diagnostics_channel:67cdfaab1d61", + "chapter": "diagnostics_channel", + "kind": "method", + "name": "bindStore", + "signature": "`channel.bindStore(store[, transform])`", + "label": "channel.bindStore(store[, transform])", + "apiSymbol": "channel.bindStore", + "depth": 2, + "scope": "api", + "anchor": "channelbindstorestore-transform", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "diagnostics_channel:8e15a4c4f731", + "chapter": "diagnostics_channel", + "kind": "method", + "name": "unbindStore", + "signature": "`channel.unbindStore(store)`", + "label": "channel.unbindStore(store)", + "apiSymbol": "channel.unbindStore", + "depth": 2, + "scope": "api", + "anchor": "channelunbindstorestore", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "diagnostics_channel:5999206126f6", + "chapter": "diagnostics_channel", + "kind": "method", + "name": "runStores", + "signature": "`channel.runStores(context, fn[, thisArg[, ...args]])`", + "label": "channel.runStores(context, fn[, thisArg[, ...args]])", + "apiSymbol": "channel.runStores", + "depth": 2, + "scope": "api", + "anchor": "channelrunstorescontext-fn-thisarg-args", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "diagnostics_channel:d8ea9d9486e4", + "chapter": "diagnostics_channel", + "kind": "boolean", + "name": "return", + "signature": "`hasSubscribers` Returns: {boolean} If there are active subscribers", + "label": "hasSubscribers", + "apiSymbol": "hasSubscribers", + "depth": 2, + "scope": "api", + "anchor": "class-channel", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "diagnostics_channel:514c35ea453b", + "chapter": "diagnostics_channel", + "kind": "class", + "name": "TracingChannel", + "signature": "Class: `TracingChannel`", + "label": "TracingChannel", + "apiSymbol": "TracingChannel", + "depth": 1, + "scope": "api", + "anchor": "class-tracingchannel", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "diagnostics_channel:4d97dbb25c78", + "chapter": "diagnostics_channel", + "kind": "method", + "name": "subscribe", + "signature": "`tracingChannel.subscribe(subscribers)`", + "label": "tracingChannel.subscribe(subscribers)", + "apiSymbol": "tracingChannel.subscribe", + "depth": 2, + "scope": "api", + "anchor": "tracingchannelsubscribesubscribers", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "diagnostics_channel:02d20863fa22", + "chapter": "diagnostics_channel", + "kind": "method", + "name": "unsubscribe", + "signature": "`tracingChannel.unsubscribe(subscribers)`", + "label": "tracingChannel.unsubscribe(subscribers)", + "apiSymbol": "tracingChannel.unsubscribe", + "depth": 2, + "scope": "api", + "anchor": "tracingchannelunsubscribesubscribers", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "diagnostics_channel:02999c2ba90c", + "chapter": "diagnostics_channel", + "kind": "method", + "name": "traceSync", + "signature": "`tracingChannel.traceSync(fn[, context[, thisArg[, ...args]]])`", + "label": "tracingChannel.traceSync(fn[, context[, thisArg[, ...args]]])", + "apiSymbol": "tracingChannel.traceSync", + "depth": 2, + "scope": "api", + "anchor": "tracingchanneltracesyncfn-context-thisarg-args", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "diagnostics_channel:841661fad045", + "chapter": "diagnostics_channel", + "kind": "method", + "name": "tracePromise", + "signature": "`tracingChannel.tracePromise(fn[, context[, thisArg[, ...args]]])`", + "label": "tracingChannel.tracePromise(fn[, context[, thisArg[, ...args]]])", + "apiSymbol": "tracingChannel.tracePromise", + "depth": 2, + "scope": "api", + "anchor": "tracingchanneltracepromisefn-context-thisarg-args", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "diagnostics_channel:eefec38bb12a", + "chapter": "diagnostics_channel", + "kind": "method", + "name": "traceCallback", + "signature": "`tracingChannel.traceCallback(fn[, position[, context[, thisArg[, ...args]]]])`", + "label": "tracingChannel.traceCallback(fn[, position[, context[, thisArg[, ...args]]]])", + "apiSymbol": "tracingChannel.traceCallback", + "depth": 2, + "scope": "api", + "anchor": "tracingchanneltracecallbackfn-position-context-thisarg-args", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "diagnostics_channel:ce732ca56277", + "chapter": "diagnostics_channel", + "kind": "boolean", + "name": "return", + "signature": "`hasSubscribers` Returns: {boolean} `true` if any of the individual channels has a subscriber, `false` if not.", + "label": "hasSubscribers", + "apiSymbol": "hasSubscribers", + "depth": 2, + "scope": "api", + "anchor": "class-tracingchannel", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "dns:710020a91c93", + "chapter": "dns", + "kind": "module", + "name": "dns", + "signature": "DNS", + "label": "DNS", + "apiSymbol": "dns", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + }, + "dynamic": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + } + }, + { + "id": "dns:9d26a757b216", + "chapter": "dns", + "kind": "class", + "name": "dnsPromises.Resolver", + "signature": "Class: `dnsPromises.Resolver`", + "label": "dnsPromises.Resolver", + "apiSymbol": "dnsPromises.Resolver", + "depth": 1, + "scope": "api", + "anchor": "class-dnspromisesresolver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "dns:31c9728fecd0", + "chapter": "dns", + "kind": "method", + "name": "cancel", + "signature": "`resolver.cancel()`", + "label": "resolver.cancel()", + "apiSymbol": "resolver.cancel", + "depth": 1, + "scope": "api", + "anchor": "resolvercancel", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "dns:4fc0b8fec32c", + "chapter": "dns", + "kind": "method", + "name": "getServers", + "signature": "`dnsPromises.getServers()`", + "label": "dnsPromises.getServers()", + "apiSymbol": "dnsPromises.getServers", + "depth": 1, + "scope": "api", + "anchor": "dnspromisesgetservers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "dns:1684d350fdc7", + "chapter": "dns", + "kind": "method", + "name": "lookup", + "signature": "`dnsPromises.lookup(hostname[, options])`", + "label": "dnsPromises.lookup(hostname[, options])", + "apiSymbol": "dnsPromises.lookup", + "depth": 1, + "scope": "api", + "anchor": "dnspromiseslookuphostname-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "dns:788013947c49", + "chapter": "dns", + "kind": "method", + "name": "lookupService", + "signature": "`dnsPromises.lookupService(address, port)`", + "label": "dnsPromises.lookupService(address, port)", + "apiSymbol": "dnsPromises.lookupService", + "depth": 1, + "scope": "api", + "anchor": "dnspromiseslookupserviceaddress-port", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "dns:7da68553b6ed", + "chapter": "dns", + "kind": "method", + "name": "resolve", + "signature": "`dnsPromises.resolve(hostname[, rrtype])`", + "label": "dnsPromises.resolve(hostname[, rrtype])", + "apiSymbol": "dnsPromises.resolve", + "depth": 1, + "scope": "api", + "anchor": "dnspromisesresolvehostname-rrtype", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "dns:48e279c9cd32", + "chapter": "dns", + "kind": "method", + "name": "resolve4", + "signature": "`dnsPromises.resolve4(hostname[, options])`", + "label": "dnsPromises.resolve4(hostname[, options])", + "apiSymbol": "dnsPromises.resolve4", + "depth": 1, + "scope": "api", + "anchor": "dnspromisesresolve4hostname-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "dns:8f9ed07a487f", + "chapter": "dns", + "kind": "method", + "name": "resolve6", + "signature": "`dnsPromises.resolve6(hostname[, options])`", + "label": "dnsPromises.resolve6(hostname[, options])", + "apiSymbol": "dnsPromises.resolve6", + "depth": 1, + "scope": "api", + "anchor": "dnspromisesresolve6hostname-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "dns:d23a1715b8ba", + "chapter": "dns", + "kind": "method", + "name": "resolveAny", + "signature": "`dnsPromises.resolveAny(hostname)`", + "label": "dnsPromises.resolveAny(hostname)", + "apiSymbol": "dnsPromises.resolveAny", + "depth": 1, + "scope": "api", + "anchor": "dnspromisesresolveanyhostname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "dns:590da03e70db", + "chapter": "dns", + "kind": "method", + "name": "resolveCaa", + "signature": "`dnsPromises.resolveCaa(hostname)`", + "label": "dnsPromises.resolveCaa(hostname)", + "apiSymbol": "dnsPromises.resolveCaa", + "depth": 1, + "scope": "api", + "anchor": "dnspromisesresolvecaahostname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "dns:a803d1e0a192", + "chapter": "dns", + "kind": "method", + "name": "resolveCname", + "signature": "`dnsPromises.resolveCname(hostname)`", + "label": "dnsPromises.resolveCname(hostname)", + "apiSymbol": "dnsPromises.resolveCname", + "depth": 1, + "scope": "api", + "anchor": "dnspromisesresolvecnamehostname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "dns:586462ef8ad5", + "chapter": "dns", + "kind": "method", + "name": "resolveMx", + "signature": "`dnsPromises.resolveMx(hostname)`", + "label": "dnsPromises.resolveMx(hostname)", + "apiSymbol": "dnsPromises.resolveMx", + "depth": 1, + "scope": "api", + "anchor": "dnspromisesresolvemxhostname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "dns:847b7d14469d", + "chapter": "dns", + "kind": "method", + "name": "resolveNaptr", + "signature": "`dnsPromises.resolveNaptr(hostname)`", + "label": "dnsPromises.resolveNaptr(hostname)", + "apiSymbol": "dnsPromises.resolveNaptr", + "depth": 1, + "scope": "api", + "anchor": "dnspromisesresolvenaptrhostname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "dns:a4fec6893c05", + "chapter": "dns", + "kind": "method", + "name": "resolveNs", + "signature": "`dnsPromises.resolveNs(hostname)`", + "label": "dnsPromises.resolveNs(hostname)", + "apiSymbol": "dnsPromises.resolveNs", + "depth": 1, + "scope": "api", + "anchor": "dnspromisesresolvenshostname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "dns:a777492fa26f", + "chapter": "dns", + "kind": "method", + "name": "resolvePtr", + "signature": "`dnsPromises.resolvePtr(hostname)`", + "label": "dnsPromises.resolvePtr(hostname)", + "apiSymbol": "dnsPromises.resolvePtr", + "depth": 1, + "scope": "api", + "anchor": "dnspromisesresolveptrhostname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "dns:2356d15798d1", + "chapter": "dns", + "kind": "method", + "name": "resolveSoa", + "signature": "`dnsPromises.resolveSoa(hostname)`", + "label": "dnsPromises.resolveSoa(hostname)", + "apiSymbol": "dnsPromises.resolveSoa", + "depth": 1, + "scope": "api", + "anchor": "dnspromisesresolvesoahostname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "dns:8bc5eb74d643", + "chapter": "dns", + "kind": "method", + "name": "resolveSrv", + "signature": "`dnsPromises.resolveSrv(hostname)`", + "label": "dnsPromises.resolveSrv(hostname)", + "apiSymbol": "dnsPromises.resolveSrv", + "depth": 1, + "scope": "api", + "anchor": "dnspromisesresolvesrvhostname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "dns:3d950352573b", + "chapter": "dns", + "kind": "method", + "name": "resolveTlsa", + "signature": "`dnsPromises.resolveTlsa(hostname)`", + "label": "dnsPromises.resolveTlsa(hostname)", + "apiSymbol": "dnsPromises.resolveTlsa", + "depth": 1, + "scope": "api", + "anchor": "dnspromisesresolvetlsahostname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "dns:4b4bc3e24563", + "chapter": "dns", + "kind": "method", + "name": "resolveTxt", + "signature": "`dnsPromises.resolveTxt(hostname)`", + "label": "dnsPromises.resolveTxt(hostname)", + "apiSymbol": "dnsPromises.resolveTxt", + "depth": 1, + "scope": "api", + "anchor": "dnspromisesresolvetxthostname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "dns:1a354e828d63", + "chapter": "dns", + "kind": "method", + "name": "reverse", + "signature": "`dnsPromises.reverse(ip)`", + "label": "dnsPromises.reverse(ip)", + "apiSymbol": "dnsPromises.reverse", + "depth": 1, + "scope": "api", + "anchor": "dnspromisesreverseip", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "dns:a49662b82ac5", + "chapter": "dns", + "kind": "method", + "name": "setDefaultResultOrder", + "signature": "`dnsPromises.setDefaultResultOrder(order)`", + "label": "dnsPromises.setDefaultResultOrder(order)", + "apiSymbol": "dnsPromises.setDefaultResultOrder", + "depth": 1, + "scope": "api", + "anchor": "dnspromisessetdefaultresultorderorder", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "dns:fc12fbc986e7", + "chapter": "dns", + "kind": "method", + "name": "getDefaultResultOrder", + "signature": "`dnsPromises.getDefaultResultOrder()`", + "label": "dnsPromises.getDefaultResultOrder()", + "apiSymbol": "dnsPromises.getDefaultResultOrder", + "depth": 1, + "scope": "api", + "anchor": "dnspromisesgetdefaultresultorder", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "dns:ba0f65188cd3", + "chapter": "dns", + "kind": "method", + "name": "setServers", + "signature": "`dnsPromises.setServers(servers)`", + "label": "dnsPromises.setServers(servers)", + "apiSymbol": "dnsPromises.setServers", + "depth": 1, + "scope": "api", + "anchor": "dnspromisessetserversservers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "dns:5c15fbdbc51c", + "chapter": "dns", + "kind": "module", + "name": "`dns.resolve()`,_`dns.resolve*()`,_and_`dns.reverse()`", + "signature": "`dns.resolve()`, `dns.resolve*()`, and `dns.reverse()`", + "label": "dns.resolve()", + "apiSymbol": "dns.resolve", + "depth": 1, + "scope": "api", + "anchor": "dnsresolve-dnsresolve-and-dnsreverse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "dns:01cf87ede032", + "chapter": "dns", + "kind": "method", + "name": "lookup", + "signature": "`dns.lookup()`", + "label": "dns.lookup()", + "apiSymbol": "dns.lookup", + "depth": 1, + "scope": "api", + "anchor": "dnslookup", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "dns:0adacb1439b4", + "chapter": "dns", + "kind": "class", + "name": "dns.Resolver", + "signature": "Class: `dns.Resolver`", + "label": "dns.Resolver", + "apiSymbol": "dns.Resolver", + "depth": 1, + "scope": "api", + "anchor": "class-dnsresolver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "dns:f3fcd24bac63", + "chapter": "dns", + "kind": "method", + "name": "Resolver", + "signature": "`Resolver([options])`", + "label": "Resolver([options])", + "apiSymbol": "Resolver", + "depth": 2, + "scope": "api", + "anchor": "resolveroptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "dns:af580faea35d", + "chapter": "dns", + "kind": "method", + "name": "cancel", + "signature": "`resolver.cancel()`", + "label": "resolver.cancel()", + "apiSymbol": "resolver.cancel", + "depth": 2, + "scope": "api", + "anchor": "resolvercancel_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "dns:3ba2a74d3a16", + "chapter": "dns", + "kind": "method", + "name": "setLocalAddress", + "signature": "`resolver.setLocalAddress([ipv4][, ipv6])`", + "label": "resolver.setLocalAddress([ipv4][, ipv6])", + "apiSymbol": "resolver.setLocalAddress", + "depth": 2, + "scope": "api", + "anchor": "resolversetlocaladdressipv4-ipv6", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "dns:6ab027166169", + "chapter": "dns", + "kind": "method", + "name": "getServers", + "signature": "`dns.getServers()`", + "label": "dns.getServers()", + "apiSymbol": "dns.getServers", + "depth": 1, + "scope": "api", + "anchor": "dnsgetservers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "dns:e258f26e9af5", + "chapter": "dns", + "kind": "method", + "name": "lookup", + "signature": "`dns.lookup(hostname[, options], callback)`", + "label": "dns.lookup(hostname[, options], callback)", + "apiSymbol": "dns.lookup", + "depth": 1, + "scope": "api", + "anchor": "dnslookuphostname-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "dns:a8b5aee78cf2", + "chapter": "dns", + "kind": "method", + "name": "lookupService", + "signature": "`dns.lookupService(address, port, callback)`", + "label": "dns.lookupService(address, port, callback)", + "apiSymbol": "dns.lookupService", + "depth": 1, + "scope": "api", + "anchor": "dnslookupserviceaddress-port-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "dns:6034cfc8acea", + "chapter": "dns", + "kind": "method", + "name": "resolve", + "signature": "`dns.resolve(hostname[, rrtype], callback)`", + "label": "dns.resolve(hostname[, rrtype], callback)", + "apiSymbol": "dns.resolve", + "depth": 1, + "scope": "api", + "anchor": "dnsresolvehostname-rrtype-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "dns:c8af21a1f17d", + "chapter": "dns", + "kind": "method", + "name": "resolve4", + "signature": "`dns.resolve4(hostname[, options], callback)`", + "label": "dns.resolve4(hostname[, options], callback)", + "apiSymbol": "dns.resolve4", + "depth": 1, + "scope": "api", + "anchor": "dnsresolve4hostname-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "dns:bd35ee54a04f", + "chapter": "dns", + "kind": "method", + "name": "resolve6", + "signature": "`dns.resolve6(hostname[, options], callback)`", + "label": "dns.resolve6(hostname[, options], callback)", + "apiSymbol": "dns.resolve6", + "depth": 1, + "scope": "api", + "anchor": "dnsresolve6hostname-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "dns:5c85b8ecb063", + "chapter": "dns", + "kind": "method", + "name": "resolveAny", + "signature": "`dns.resolveAny(hostname, callback)`", + "label": "dns.resolveAny(hostname, callback)", + "apiSymbol": "dns.resolveAny", + "depth": 1, + "scope": "api", + "anchor": "dnsresolveanyhostname-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "dns:b7d56eafc408", + "chapter": "dns", + "kind": "method", + "name": "resolveCname", + "signature": "`dns.resolveCname(hostname, callback)`", + "label": "dns.resolveCname(hostname, callback)", + "apiSymbol": "dns.resolveCname", + "depth": 1, + "scope": "api", + "anchor": "dnsresolvecnamehostname-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "dns:ad576c0b1cac", + "chapter": "dns", + "kind": "method", + "name": "resolveCaa", + "signature": "`dns.resolveCaa(hostname, callback)`", + "label": "dns.resolveCaa(hostname, callback)", + "apiSymbol": "dns.resolveCaa", + "depth": 1, + "scope": "api", + "anchor": "dnsresolvecaahostname-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "dns:e96ebf0f4340", + "chapter": "dns", + "kind": "method", + "name": "resolveMx", + "signature": "`dns.resolveMx(hostname, callback)`", + "label": "dns.resolveMx(hostname, callback)", + "apiSymbol": "dns.resolveMx", + "depth": 1, + "scope": "api", + "anchor": "dnsresolvemxhostname-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "dns:09cd57380b12", + "chapter": "dns", + "kind": "method", + "name": "resolveNaptr", + "signature": "`dns.resolveNaptr(hostname, callback)`", + "label": "dns.resolveNaptr(hostname, callback)", + "apiSymbol": "dns.resolveNaptr", + "depth": 1, + "scope": "api", + "anchor": "dnsresolvenaptrhostname-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "dns:9b2964e4568d", + "chapter": "dns", + "kind": "method", + "name": "resolveNs", + "signature": "`dns.resolveNs(hostname, callback)`", + "label": "dns.resolveNs(hostname, callback)", + "apiSymbol": "dns.resolveNs", + "depth": 1, + "scope": "api", + "anchor": "dnsresolvenshostname-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "dns:5ced5f045833", + "chapter": "dns", + "kind": "method", + "name": "resolvePtr", + "signature": "`dns.resolvePtr(hostname, callback)`", + "label": "dns.resolvePtr(hostname, callback)", + "apiSymbol": "dns.resolvePtr", + "depth": 1, + "scope": "api", + "anchor": "dnsresolveptrhostname-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "dns:8e70ef33c069", + "chapter": "dns", + "kind": "method", + "name": "resolveSoa", + "signature": "`dns.resolveSoa(hostname, callback)`", + "label": "dns.resolveSoa(hostname, callback)", + "apiSymbol": "dns.resolveSoa", + "depth": 1, + "scope": "api", + "anchor": "dnsresolvesoahostname-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "dns:dd50303ab9ea", + "chapter": "dns", + "kind": "method", + "name": "resolveSrv", + "signature": "`dns.resolveSrv(hostname, callback)`", + "label": "dns.resolveSrv(hostname, callback)", + "apiSymbol": "dns.resolveSrv", + "depth": 1, + "scope": "api", + "anchor": "dnsresolvesrvhostname-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "dns:14d6393c7aa1", + "chapter": "dns", + "kind": "method", + "name": "resolveTlsa", + "signature": "`dns.resolveTlsa(hostname, callback)`", + "label": "dns.resolveTlsa(hostname, callback)", + "apiSymbol": "dns.resolveTlsa", + "depth": 1, + "scope": "api", + "anchor": "dnsresolvetlsahostname-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "dns:d8a041e64cd3", + "chapter": "dns", + "kind": "method", + "name": "resolveTxt", + "signature": "`dns.resolveTxt(hostname, callback)`", + "label": "dns.resolveTxt(hostname, callback)", + "apiSymbol": "dns.resolveTxt", + "depth": 1, + "scope": "api", + "anchor": "dnsresolvetxthostname-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "dns:01236237766b", + "chapter": "dns", + "kind": "method", + "name": "reverse", + "signature": "`dns.reverse(ip, callback)`", + "label": "dns.reverse(ip, callback)", + "apiSymbol": "dns.reverse", + "depth": 1, + "scope": "api", + "anchor": "dnsreverseip-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "dns:9e6d927d2de8", + "chapter": "dns", + "kind": "method", + "name": "setDefaultResultOrder", + "signature": "`dns.setDefaultResultOrder(order)`", + "label": "dns.setDefaultResultOrder(order)", + "apiSymbol": "dns.setDefaultResultOrder", + "depth": 1, + "scope": "api", + "anchor": "dnssetdefaultresultorderorder", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "dns:4e7fd111f3b1", + "chapter": "dns", + "kind": "method", + "name": "getDefaultResultOrder", + "signature": "`dns.getDefaultResultOrder()`", + "label": "dns.getDefaultResultOrder()", + "apiSymbol": "dns.getDefaultResultOrder", + "depth": 1, + "scope": "api", + "anchor": "dnsgetdefaultresultorder", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "dns:ceb6c0df5a08", + "chapter": "dns", + "kind": "method", + "name": "setServers", + "signature": "`dns.setServers(servers)`", + "label": "dns.setServers(servers)", + "apiSymbol": "dns.setServers", + "depth": 1, + "scope": "api", + "anchor": "dnssetserversservers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "domain:3027b2a9c9c0", + "chapter": "domain", + "kind": "module", + "name": "domain", + "signature": "Domain", + "label": "Domain", + "apiSymbol": "domain", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + }, + "dynamic": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + } + }, + { + "id": "domain:066b93b2457d", + "chapter": "domain", + "kind": "class", + "name": "Domain", + "signature": "Class: `Domain`", + "label": "Domain", + "apiSymbol": "Domain", + "depth": 1, + "scope": "api", + "anchor": "class-domain", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "domain:4cc4c464a948", + "chapter": "domain", + "kind": "method", + "name": "add", + "signature": "`domain.add(emitter)`", + "label": "domain.add(emitter)", + "apiSymbol": "domain.add", + "depth": 2, + "scope": "api", + "anchor": "domainaddemitter", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "domain:6e67fe3137e9", + "chapter": "domain", + "kind": "method", + "name": "bind", + "signature": "`domain.bind(callback)`", + "label": "domain.bind(callback)", + "apiSymbol": "domain.bind", + "depth": 2, + "scope": "api", + "anchor": "domainbindcallback", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "domain:9d805eb33429", + "chapter": "domain", + "kind": "method", + "name": "enter", + "signature": "`domain.enter()`", + "label": "domain.enter()", + "apiSymbol": "domain.enter", + "depth": 2, + "scope": "api", + "anchor": "domainenter", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "domain:b0a39284a169", + "chapter": "domain", + "kind": "method", + "name": "exit", + "signature": "`domain.exit()`", + "label": "domain.exit()", + "apiSymbol": "domain.exit", + "depth": 2, + "scope": "api", + "anchor": "domainexit", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "domain:3a81e811d22e", + "chapter": "domain", + "kind": "method", + "name": "intercept", + "signature": "`domain.intercept(callback)`", + "label": "domain.intercept(callback)", + "apiSymbol": "domain.intercept", + "depth": 2, + "scope": "api", + "anchor": "domaininterceptcallback", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "domain:9c0327571f4f", + "chapter": "domain", + "kind": "method", + "name": "remove", + "signature": "`domain.remove(emitter)`", + "label": "domain.remove(emitter)", + "apiSymbol": "domain.remove", + "depth": 2, + "scope": "api", + "anchor": "domainremoveemitter", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "domain:c71014f1575d", + "chapter": "domain", + "kind": "method", + "name": "run", + "signature": "`domain.run(fn[, ...args])`", + "label": "domain.run(fn[, ...args])", + "apiSymbol": "domain.run", + "depth": 2, + "scope": "api", + "anchor": "domainrunfn-args", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "domain:c33d5f5a8aeb", + "chapter": "domain", + "kind": "Array", + "name": "Type", + "signature": "`members` Type: {Array}", + "label": "members", + "apiSymbol": "members", + "depth": 2, + "scope": "api", + "anchor": "class-domain", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "domain:c32ec701e446", + "chapter": "domain", + "kind": "method", + "name": "create", + "signature": "`domain.create()`", + "label": "domain.create()", + "apiSymbol": "domain.create", + "depth": 1, + "scope": "api", + "anchor": "domaincreate", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "domain:213e926e2eb1", + "chapter": "domain", + "kind": "misc", + "name": "Additions to `Error` objects", + "signature": "Additions to `Error` objects", + "label": "Additions to Error objects", + "apiSymbol": "Error", + "depth": 1, + "scope": "api", + "anchor": "additions-to-error-objects", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "environment_variables:951d69862c55", + "chapter": "environment_variables", + "kind": "module", + "name": "environment_variables", + "signature": "Environment Variables", + "label": "Environment Variables", + "apiSymbol": "environment_variables", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + }, + "dynamic": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + } + }, + { + "id": "environment_variables:33438b6e6dea", + "chapter": "environment_variables", + "kind": "section", + "name": "env", + "signature": "`process.env`", + "label": "process.env", + "apiSymbol": "process.env", + "depth": 1, + "scope": "api", + "anchor": "processenv", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented for the documented embedded module-loader subset.", + "verification": "test-backed" + } + }, + { + "id": "errors:76e61c6b4a11", + "chapter": "errors", + "kind": "misc", + "name": "Errors", + "signature": "Errors", + "label": "Errors", + "apiSymbol": "Errors", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + } + }, + { + "id": "errors:7f4794f1c5f2", + "chapter": "errors", + "kind": "class", + "name": "Error", + "signature": "Class: `Error`", + "label": "Error", + "apiSymbol": "Error", + "depth": 1, + "scope": "api", + "anchor": "class-error", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:c556c64e0ff7", + "chapter": "errors", + "kind": "method", + "name": "captureStackTrace", + "signature": "`Error.captureStackTrace(targetObject[, constructorOpt])`", + "label": "Error.captureStackTrace(targetObject[, constructorOpt])", + "apiSymbol": "Error.captureStackTrace", + "depth": 2, + "scope": "api", + "anchor": "errorcapturestacktracetargetobject-constructoropt", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:25c660705430", + "chapter": "errors", + "kind": "number", + "name": "Type", + "signature": "`stackTraceLimit` Type: {number}", + "label": "stackTraceLimit", + "apiSymbol": "stackTraceLimit", + "depth": 2, + "scope": "api", + "anchor": "class-error", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:307cb3b47923", + "chapter": "errors", + "kind": "any", + "name": "Type", + "signature": "`cause` Type: {any}", + "label": "cause", + "apiSymbol": "cause", + "depth": 2, + "scope": "api", + "anchor": "class-error", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:0b8326fd49b9", + "chapter": "errors", + "kind": "string", + "name": "Type", + "signature": "`code` Type: {string}", + "label": "code", + "apiSymbol": "code", + "depth": 2, + "scope": "api", + "anchor": "class-error", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:f1090de1c75e", + "chapter": "errors", + "kind": "string", + "name": "Type", + "signature": "`message` Type: {string}", + "label": "message", + "apiSymbol": "message", + "depth": 2, + "scope": "api", + "anchor": "class-error", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:267871e38f35", + "chapter": "errors", + "kind": "string", + "name": "Type", + "signature": "`stack` Type: {string}", + "label": "stack", + "apiSymbol": "stack", + "depth": 2, + "scope": "api", + "anchor": "class-error", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:eb3641f5dbc8", + "chapter": "errors", + "kind": "class", + "name": "AssertionError", + "signature": "Class: `AssertionError`", + "label": "AssertionError", + "apiSymbol": "AssertionError", + "depth": 1, + "scope": "api", + "anchor": "class-assertionerror", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:2c13de112ff5", + "chapter": "errors", + "kind": "class", + "name": "RangeError", + "signature": "Class: `RangeError`", + "label": "RangeError", + "apiSymbol": "RangeError", + "depth": 1, + "scope": "api", + "anchor": "class-rangeerror", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:fa0b553e768a", + "chapter": "errors", + "kind": "class", + "name": "ReferenceError", + "signature": "Class: `ReferenceError`", + "label": "ReferenceError", + "apiSymbol": "ReferenceError", + "depth": 1, + "scope": "api", + "anchor": "class-referenceerror", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:a5069dc010a6", + "chapter": "errors", + "kind": "class", + "name": "SyntaxError", + "signature": "Class: `SyntaxError`", + "label": "SyntaxError", + "apiSymbol": "SyntaxError", + "depth": 1, + "scope": "api", + "anchor": "class-syntaxerror", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:8a2e6c678f19", + "chapter": "errors", + "kind": "class", + "name": "SystemError", + "signature": "Class: `SystemError`", + "label": "SystemError", + "apiSymbol": "SystemError", + "depth": 1, + "scope": "api", + "anchor": "class-systemerror", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:64d8f9706c45", + "chapter": "errors", + "kind": "string", + "name": "Type", + "signature": "`address` Type: {string}", + "label": "address", + "apiSymbol": "address", + "depth": 2, + "scope": "api", + "anchor": "class-systemerror", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:9b9d082b9877", + "chapter": "errors", + "kind": "string", + "name": "Type", + "signature": "`code` Type: {string}", + "label": "code", + "apiSymbol": "code", + "depth": 2, + "scope": "api", + "anchor": "class-systemerror", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:e66be94e4ffa", + "chapter": "errors", + "kind": "string", + "name": "Type", + "signature": "`dest` Type: {string}", + "label": "dest", + "apiSymbol": "dest", + "depth": 2, + "scope": "api", + "anchor": "class-systemerror", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:277ba61feefa", + "chapter": "errors", + "kind": "number", + "name": "Type", + "signature": "`errno` Type: {number}", + "label": "errno", + "apiSymbol": "errno", + "depth": 2, + "scope": "api", + "anchor": "class-systemerror", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:9c8858f1fab2", + "chapter": "errors", + "kind": "Object", + "name": "Type", + "signature": "`info` Type: {Object}", + "label": "info", + "apiSymbol": "info", + "depth": 2, + "scope": "api", + "anchor": "class-systemerror", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:797eb4941811", + "chapter": "errors", + "kind": "string", + "name": "Type", + "signature": "`message` Type: {string}", + "label": "message", + "apiSymbol": "message", + "depth": 2, + "scope": "api", + "anchor": "class-systemerror", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:3ab32c14d7b9", + "chapter": "errors", + "kind": "string", + "name": "Type", + "signature": "`path` Type: {string}", + "label": "path", + "apiSymbol": "path", + "depth": 2, + "scope": "api", + "anchor": "class-systemerror", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:6c0abee577fd", + "chapter": "errors", + "kind": "number", + "name": "Type", + "signature": "`port` Type: {number}", + "label": "port", + "apiSymbol": "port", + "depth": 2, + "scope": "api", + "anchor": "class-systemerror", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:2229a75bb318", + "chapter": "errors", + "kind": "string", + "name": "Type", + "signature": "`syscall` Type: {string}", + "label": "syscall", + "apiSymbol": "syscall", + "depth": 2, + "scope": "api", + "anchor": "class-systemerror", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:f091af63f645", + "chapter": "errors", + "kind": "class", + "name": "TypeError", + "signature": "Class: `TypeError`", + "label": "TypeError", + "apiSymbol": "TypeError", + "depth": 1, + "scope": "api", + "anchor": "class-typeerror", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:07593cc1d213", + "chapter": "errors", + "kind": "section", + "name": "opensslErrorStack", + "signature": "`error.opensslErrorStack`", + "label": "error.opensslErrorStack", + "apiSymbol": "error.opensslErrorStack", + "depth": 1, + "scope": "api", + "anchor": "erroropensslerrorstack", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:244449227555", + "chapter": "errors", + "kind": "section", + "name": "function", + "signature": "`error.function`", + "label": "error.function", + "apiSymbol": "error.function", + "depth": 1, + "scope": "api", + "anchor": "errorfunction", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:8bb8399c81c1", + "chapter": "errors", + "kind": "section", + "name": "library", + "signature": "`error.library`", + "label": "error.library", + "apiSymbol": "error.library", + "depth": 1, + "scope": "api", + "anchor": "errorlibrary", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:88a004ac847e", + "chapter": "errors", + "kind": "section", + "name": "reason", + "signature": "`error.reason`", + "label": "error.reason", + "apiSymbol": "error.reason", + "depth": 1, + "scope": "api", + "anchor": "errorreason", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:e0ac020287da", + "chapter": "errors", + "kind": "module", + "name": "`abort_err`", + "signature": "`ABORT_ERR`", + "label": "ABORT_ERR", + "apiSymbol": "ABORT_ERR", + "depth": 1, + "scope": "api", + "anchor": "abort_err", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:2d2c7177fe55", + "chapter": "errors", + "kind": "module", + "name": "`err_access_denied`", + "signature": "`ERR_ACCESS_DENIED`", + "label": "ERR_ACCESS_DENIED", + "apiSymbol": "ERR_ACCESS_DENIED", + "depth": 1, + "scope": "api", + "anchor": "err_access_denied", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:02346cdcedea", + "chapter": "errors", + "kind": "module", + "name": "`err_ambiguous_argument`", + "signature": "`ERR_AMBIGUOUS_ARGUMENT`", + "label": "ERR_AMBIGUOUS_ARGUMENT", + "apiSymbol": "ERR_AMBIGUOUS_ARGUMENT", + "depth": 1, + "scope": "api", + "anchor": "err_ambiguous_argument", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:f67deaf6ecde", + "chapter": "errors", + "kind": "module", + "name": "`err_arg_not_iterable`", + "signature": "`ERR_ARG_NOT_ITERABLE`", + "label": "ERR_ARG_NOT_ITERABLE", + "apiSymbol": "ERR_ARG_NOT_ITERABLE", + "depth": 1, + "scope": "api", + "anchor": "err_arg_not_iterable", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:1dc7c926bebf", + "chapter": "errors", + "kind": "module", + "name": "`err_assertion`", + "signature": "`ERR_ASSERTION`", + "label": "ERR_ASSERTION", + "apiSymbol": "ERR_ASSERTION", + "depth": 1, + "scope": "api", + "anchor": "err_assertion", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:554a1ab69130", + "chapter": "errors", + "kind": "module", + "name": "`err_async_callback`", + "signature": "`ERR_ASYNC_CALLBACK`", + "label": "ERR_ASYNC_CALLBACK", + "apiSymbol": "ERR_ASYNC_CALLBACK", + "depth": 1, + "scope": "api", + "anchor": "err_async_callback", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:70875776e701", + "chapter": "errors", + "kind": "module", + "name": "`err_async_loader_request_never_settled`", + "signature": "`ERR_ASYNC_LOADER_REQUEST_NEVER_SETTLED`", + "label": "ERR_ASYNC_LOADER_REQUEST_NEVER_SETTLED", + "apiSymbol": "ERR_ASYNC_LOADER_REQUEST_NEVER_SETTLED", + "depth": 1, + "scope": "api", + "anchor": "err_async_loader_request_never_settled", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:f9ff810384f0", + "chapter": "errors", + "kind": "module", + "name": "`err_async_type`", + "signature": "`ERR_ASYNC_TYPE`", + "label": "ERR_ASYNC_TYPE", + "apiSymbol": "ERR_ASYNC_TYPE", + "depth": 1, + "scope": "api", + "anchor": "err_async_type", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:17fd1658ce09", + "chapter": "errors", + "kind": "module", + "name": "`err_brotli_compression_failed`", + "signature": "`ERR_BROTLI_COMPRESSION_FAILED`", + "label": "ERR_BROTLI_COMPRESSION_FAILED", + "apiSymbol": "ERR_BROTLI_COMPRESSION_FAILED", + "depth": 1, + "scope": "api", + "anchor": "err_brotli_compression_failed", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:bd30c3b4a68e", + "chapter": "errors", + "kind": "module", + "name": "`err_brotli_invalid_param`", + "signature": "`ERR_BROTLI_INVALID_PARAM`", + "label": "ERR_BROTLI_INVALID_PARAM", + "apiSymbol": "ERR_BROTLI_INVALID_PARAM", + "depth": 1, + "scope": "api", + "anchor": "err_brotli_invalid_param", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:f4d0ec30d024", + "chapter": "errors", + "kind": "module", + "name": "`err_buffer_context_not_available`", + "signature": "`ERR_BUFFER_CONTEXT_NOT_AVAILABLE`", + "label": "ERR_BUFFER_CONTEXT_NOT_AVAILABLE", + "apiSymbol": "ERR_BUFFER_CONTEXT_NOT_AVAILABLE", + "depth": 1, + "scope": "api", + "anchor": "err_buffer_context_not_available", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:57519c230c2b", + "chapter": "errors", + "kind": "module", + "name": "`err_buffer_out_of_bounds`", + "signature": "`ERR_BUFFER_OUT_OF_BOUNDS`", + "label": "ERR_BUFFER_OUT_OF_BOUNDS", + "apiSymbol": "ERR_BUFFER_OUT_OF_BOUNDS", + "depth": 1, + "scope": "api", + "anchor": "err_buffer_out_of_bounds", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:df7d3e8aa746", + "chapter": "errors", + "kind": "module", + "name": "`err_buffer_too_large`", + "signature": "`ERR_BUFFER_TOO_LARGE`", + "label": "ERR_BUFFER_TOO_LARGE", + "apiSymbol": "ERR_BUFFER_TOO_LARGE", + "depth": 1, + "scope": "api", + "anchor": "err_buffer_too_large", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:dc24a9f6d88a", + "chapter": "errors", + "kind": "module", + "name": "`err_cannot_watch_sigint`", + "signature": "`ERR_CANNOT_WATCH_SIGINT`", + "label": "ERR_CANNOT_WATCH_SIGINT", + "apiSymbol": "ERR_CANNOT_WATCH_SIGINT", + "depth": 1, + "scope": "api", + "anchor": "err_cannot_watch_sigint", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:8c8be2b153de", + "chapter": "errors", + "kind": "module", + "name": "`err_child_closed_before_reply`", + "signature": "`ERR_CHILD_CLOSED_BEFORE_REPLY`", + "label": "ERR_CHILD_CLOSED_BEFORE_REPLY", + "apiSymbol": "ERR_CHILD_CLOSED_BEFORE_REPLY", + "depth": 1, + "scope": "api", + "anchor": "err_child_closed_before_reply", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:46e8b80fd8e1", + "chapter": "errors", + "kind": "module", + "name": "`err_child_process_ipc_required`", + "signature": "`ERR_CHILD_PROCESS_IPC_REQUIRED`", + "label": "ERR_CHILD_PROCESS_IPC_REQUIRED", + "apiSymbol": "ERR_CHILD_PROCESS_IPC_REQUIRED", + "depth": 1, + "scope": "api", + "anchor": "err_child_process_ipc_required", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:65ed23cc69f9", + "chapter": "errors", + "kind": "module", + "name": "`err_child_process_stdio_maxbuffer`", + "signature": "`ERR_CHILD_PROCESS_STDIO_MAXBUFFER`", + "label": "ERR_CHILD_PROCESS_STDIO_MAXBUFFER", + "apiSymbol": "ERR_CHILD_PROCESS_STDIO_MAXBUFFER", + "depth": 1, + "scope": "api", + "anchor": "err_child_process_stdio_maxbuffer", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:2be4700c3cbb", + "chapter": "errors", + "kind": "module", + "name": "`err_closed_message_port`", + "signature": "`ERR_CLOSED_MESSAGE_PORT`", + "label": "ERR_CLOSED_MESSAGE_PORT", + "apiSymbol": "ERR_CLOSED_MESSAGE_PORT", + "depth": 1, + "scope": "api", + "anchor": "err_closed_message_port", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:056cb04e0822", + "chapter": "errors", + "kind": "module", + "name": "`err_console_writable_stream`", + "signature": "`ERR_CONSOLE_WRITABLE_STREAM`", + "label": "ERR_CONSOLE_WRITABLE_STREAM", + "apiSymbol": "ERR_CONSOLE_WRITABLE_STREAM", + "depth": 1, + "scope": "api", + "anchor": "err_console_writable_stream", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:a6b622f20c74", + "chapter": "errors", + "kind": "module", + "name": "`err_construct_call_invalid`", + "signature": "`ERR_CONSTRUCT_CALL_INVALID`", + "label": "ERR_CONSTRUCT_CALL_INVALID", + "apiSymbol": "ERR_CONSTRUCT_CALL_INVALID", + "depth": 1, + "scope": "api", + "anchor": "err_construct_call_invalid", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:344f30688139", + "chapter": "errors", + "kind": "module", + "name": "`err_construct_call_required`", + "signature": "`ERR_CONSTRUCT_CALL_REQUIRED`", + "label": "ERR_CONSTRUCT_CALL_REQUIRED", + "apiSymbol": "ERR_CONSTRUCT_CALL_REQUIRED", + "depth": 1, + "scope": "api", + "anchor": "err_construct_call_required", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:7f123c9bf896", + "chapter": "errors", + "kind": "module", + "name": "`err_context_not_initialized`", + "signature": "`ERR_CONTEXT_NOT_INITIALIZED`", + "label": "ERR_CONTEXT_NOT_INITIALIZED", + "apiSymbol": "ERR_CONTEXT_NOT_INITIALIZED", + "depth": 1, + "scope": "api", + "anchor": "err_context_not_initialized", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:74c5c657e904", + "chapter": "errors", + "kind": "module", + "name": "`err_cpu_profile_already_started`", + "signature": "`ERR_CPU_PROFILE_ALREADY_STARTED`", + "label": "ERR_CPU_PROFILE_ALREADY_STARTED", + "apiSymbol": "ERR_CPU_PROFILE_ALREADY_STARTED", + "depth": 1, + "scope": "api", + "anchor": "err_cpu_profile_already_started", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:e894dcb945a5", + "chapter": "errors", + "kind": "module", + "name": "`err_cpu_profile_not_started`", + "signature": "`ERR_CPU_PROFILE_NOT_STARTED`", + "label": "ERR_CPU_PROFILE_NOT_STARTED", + "apiSymbol": "ERR_CPU_PROFILE_NOT_STARTED", + "depth": 1, + "scope": "api", + "anchor": "err_cpu_profile_not_started", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:a2faf2137f40", + "chapter": "errors", + "kind": "module", + "name": "`err_cpu_profile_too_many`", + "signature": "`ERR_CPU_PROFILE_TOO_MANY`", + "label": "ERR_CPU_PROFILE_TOO_MANY", + "apiSymbol": "ERR_CPU_PROFILE_TOO_MANY", + "depth": 1, + "scope": "api", + "anchor": "err_cpu_profile_too_many", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:cc081da5a3cd", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_argon2_not_supported`", + "signature": "`ERR_CRYPTO_ARGON2_NOT_SUPPORTED`", + "label": "ERR_CRYPTO_ARGON2_NOT_SUPPORTED", + "apiSymbol": "ERR_CRYPTO_ARGON2_NOT_SUPPORTED", + "depth": 1, + "scope": "api", + "anchor": "err_crypto_argon2_not_supported", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:6172292c1827", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_custom_engine_not_supported`", + "signature": "`ERR_CRYPTO_CUSTOM_ENGINE_NOT_SUPPORTED`", + "label": "ERR_CRYPTO_CUSTOM_ENGINE_NOT_SUPPORTED", + "apiSymbol": "ERR_CRYPTO_CUSTOM_ENGINE_NOT_SUPPORTED", + "depth": 1, + "scope": "api", + "anchor": "err_crypto_custom_engine_not_supported", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:aab5ae69ed98", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_ecdh_invalid_format`", + "signature": "`ERR_CRYPTO_ECDH_INVALID_FORMAT`", + "label": "ERR_CRYPTO_ECDH_INVALID_FORMAT", + "apiSymbol": "ERR_CRYPTO_ECDH_INVALID_FORMAT", + "depth": 1, + "scope": "api", + "anchor": "err_crypto_ecdh_invalid_format", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:f8f49ab7034b", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_ecdh_invalid_public_key`", + "signature": "`ERR_CRYPTO_ECDH_INVALID_PUBLIC_KEY`", + "label": "ERR_CRYPTO_ECDH_INVALID_PUBLIC_KEY", + "apiSymbol": "ERR_CRYPTO_ECDH_INVALID_PUBLIC_KEY", + "depth": 1, + "scope": "api", + "anchor": "err_crypto_ecdh_invalid_public_key", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:c511898eb860", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_engine_unknown`", + "signature": "`ERR_CRYPTO_ENGINE_UNKNOWN`", + "label": "ERR_CRYPTO_ENGINE_UNKNOWN", + "apiSymbol": "ERR_CRYPTO_ENGINE_UNKNOWN", + "depth": 1, + "scope": "api", + "anchor": "err_crypto_engine_unknown", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:3ad417a98b35", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_fips_forced`", + "signature": "`ERR_CRYPTO_FIPS_FORCED`", + "label": "ERR_CRYPTO_FIPS_FORCED", + "apiSymbol": "ERR_CRYPTO_FIPS_FORCED", + "depth": 1, + "scope": "api", + "anchor": "err_crypto_fips_forced", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:6007a1f7544e", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_fips_unavailable`", + "signature": "`ERR_CRYPTO_FIPS_UNAVAILABLE`", + "label": "ERR_CRYPTO_FIPS_UNAVAILABLE", + "apiSymbol": "ERR_CRYPTO_FIPS_UNAVAILABLE", + "depth": 1, + "scope": "api", + "anchor": "err_crypto_fips_unavailable", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:4804da4f5150", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_hash_finalized`", + "signature": "`ERR_CRYPTO_HASH_FINALIZED`", + "label": "ERR_CRYPTO_HASH_FINALIZED", + "apiSymbol": "ERR_CRYPTO_HASH_FINALIZED", + "depth": 1, + "scope": "api", + "anchor": "err_crypto_hash_finalized", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:cfb49877e743", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_hash_update_failed`", + "signature": "`ERR_CRYPTO_HASH_UPDATE_FAILED`", + "label": "ERR_CRYPTO_HASH_UPDATE_FAILED", + "apiSymbol": "ERR_CRYPTO_HASH_UPDATE_FAILED", + "depth": 1, + "scope": "api", + "anchor": "err_crypto_hash_update_failed", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:bb43deee0627", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_incompatible_key`", + "signature": "`ERR_CRYPTO_INCOMPATIBLE_KEY`", + "label": "ERR_CRYPTO_INCOMPATIBLE_KEY", + "apiSymbol": "ERR_CRYPTO_INCOMPATIBLE_KEY", + "depth": 1, + "scope": "api", + "anchor": "err_crypto_incompatible_key", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:703fd472c0e9", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_incompatible_key_options`", + "signature": "`ERR_CRYPTO_INCOMPATIBLE_KEY_OPTIONS`", + "label": "ERR_CRYPTO_INCOMPATIBLE_KEY_OPTIONS", + "apiSymbol": "ERR_CRYPTO_INCOMPATIBLE_KEY_OPTIONS", + "depth": 1, + "scope": "api", + "anchor": "err_crypto_incompatible_key_options", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:49af00ab3a2f", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_initialization_failed`", + "signature": "`ERR_CRYPTO_INITIALIZATION_FAILED`", + "label": "ERR_CRYPTO_INITIALIZATION_FAILED", + "apiSymbol": "ERR_CRYPTO_INITIALIZATION_FAILED", + "depth": 1, + "scope": "api", + "anchor": "err_crypto_initialization_failed", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:020aaeb70963", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_invalid_auth_tag`", + "signature": "`ERR_CRYPTO_INVALID_AUTH_TAG`", + "label": "ERR_CRYPTO_INVALID_AUTH_TAG", + "apiSymbol": "ERR_CRYPTO_INVALID_AUTH_TAG", + "depth": 1, + "scope": "api", + "anchor": "err_crypto_invalid_auth_tag", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:5b52575c6081", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_invalid_counter`", + "signature": "`ERR_CRYPTO_INVALID_COUNTER`", + "label": "ERR_CRYPTO_INVALID_COUNTER", + "apiSymbol": "ERR_CRYPTO_INVALID_COUNTER", + "depth": 1, + "scope": "api", + "anchor": "err_crypto_invalid_counter", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:9e7e407ab2fc", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_invalid_curve`", + "signature": "`ERR_CRYPTO_INVALID_CURVE`", + "label": "ERR_CRYPTO_INVALID_CURVE", + "apiSymbol": "ERR_CRYPTO_INVALID_CURVE", + "depth": 1, + "scope": "api", + "anchor": "err_crypto_invalid_curve", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:2e3d758d351a", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_invalid_digest`", + "signature": "`ERR_CRYPTO_INVALID_DIGEST`", + "label": "ERR_CRYPTO_INVALID_DIGEST", + "apiSymbol": "ERR_CRYPTO_INVALID_DIGEST", + "depth": 1, + "scope": "api", + "anchor": "err_crypto_invalid_digest", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:f5052ad2fe7d", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_invalid_iv`", + "signature": "`ERR_CRYPTO_INVALID_IV`", + "label": "ERR_CRYPTO_INVALID_IV", + "apiSymbol": "ERR_CRYPTO_INVALID_IV", + "depth": 1, + "scope": "api", + "anchor": "err_crypto_invalid_iv", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:ee4d3491fec1", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_invalid_jwk`", + "signature": "`ERR_CRYPTO_INVALID_JWK`", + "label": "ERR_CRYPTO_INVALID_JWK", + "apiSymbol": "ERR_CRYPTO_INVALID_JWK", + "depth": 1, + "scope": "api", + "anchor": "err_crypto_invalid_jwk", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:fd4b2673b1eb", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_invalid_keylen`", + "signature": "`ERR_CRYPTO_INVALID_KEYLEN`", + "label": "ERR_CRYPTO_INVALID_KEYLEN", + "apiSymbol": "ERR_CRYPTO_INVALID_KEYLEN", + "depth": 1, + "scope": "api", + "anchor": "err_crypto_invalid_keylen", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:619d9f68126a", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_invalid_keypair`", + "signature": "`ERR_CRYPTO_INVALID_KEYPAIR`", + "label": "ERR_CRYPTO_INVALID_KEYPAIR", + "apiSymbol": "ERR_CRYPTO_INVALID_KEYPAIR", + "depth": 1, + "scope": "api", + "anchor": "err_crypto_invalid_keypair", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:5fe168c464f5", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_invalid_keytype`", + "signature": "`ERR_CRYPTO_INVALID_KEYTYPE`", + "label": "ERR_CRYPTO_INVALID_KEYTYPE", + "apiSymbol": "ERR_CRYPTO_INVALID_KEYTYPE", + "depth": 1, + "scope": "api", + "anchor": "err_crypto_invalid_keytype", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:03d6ade21caf", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_invalid_key_object_type`", + "signature": "`ERR_CRYPTO_INVALID_KEY_OBJECT_TYPE`", + "label": "ERR_CRYPTO_INVALID_KEY_OBJECT_TYPE", + "apiSymbol": "ERR_CRYPTO_INVALID_KEY_OBJECT_TYPE", + "depth": 1, + "scope": "api", + "anchor": "err_crypto_invalid_key_object_type", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:f62618221d0d", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_invalid_messagelen`", + "signature": "`ERR_CRYPTO_INVALID_MESSAGELEN`", + "label": "ERR_CRYPTO_INVALID_MESSAGELEN", + "apiSymbol": "ERR_CRYPTO_INVALID_MESSAGELEN", + "depth": 1, + "scope": "api", + "anchor": "err_crypto_invalid_messagelen", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:ffb39232292e", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_invalid_scrypt_params`", + "signature": "`ERR_CRYPTO_INVALID_SCRYPT_PARAMS`", + "label": "ERR_CRYPTO_INVALID_SCRYPT_PARAMS", + "apiSymbol": "ERR_CRYPTO_INVALID_SCRYPT_PARAMS", + "depth": 1, + "scope": "api", + "anchor": "err_crypto_invalid_scrypt_params", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:62d1a569837e", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_invalid_state`", + "signature": "`ERR_CRYPTO_INVALID_STATE`", + "label": "ERR_CRYPTO_INVALID_STATE", + "apiSymbol": "ERR_CRYPTO_INVALID_STATE", + "depth": 1, + "scope": "api", + "anchor": "err_crypto_invalid_state", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:57b70c974d1f", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_invalid_tag_length`", + "signature": "`ERR_CRYPTO_INVALID_TAG_LENGTH`", + "label": "ERR_CRYPTO_INVALID_TAG_LENGTH", + "apiSymbol": "ERR_CRYPTO_INVALID_TAG_LENGTH", + "depth": 1, + "scope": "api", + "anchor": "err_crypto_invalid_tag_length", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:2e4136c48e3b", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_job_init_failed`", + "signature": "`ERR_CRYPTO_JOB_INIT_FAILED`", + "label": "ERR_CRYPTO_JOB_INIT_FAILED", + "apiSymbol": "ERR_CRYPTO_JOB_INIT_FAILED", + "depth": 1, + "scope": "api", + "anchor": "err_crypto_job_init_failed", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:05ff2e655c39", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_jwk_unsupported_curve`", + "signature": "`ERR_CRYPTO_JWK_UNSUPPORTED_CURVE`", + "label": "ERR_CRYPTO_JWK_UNSUPPORTED_CURVE", + "apiSymbol": "ERR_CRYPTO_JWK_UNSUPPORTED_CURVE", + "depth": 1, + "scope": "api", + "anchor": "err_crypto_jwk_unsupported_curve", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:5e5b95644ac5", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_jwk_unsupported_key_type`", + "signature": "`ERR_CRYPTO_JWK_UNSUPPORTED_KEY_TYPE`", + "label": "ERR_CRYPTO_JWK_UNSUPPORTED_KEY_TYPE", + "apiSymbol": "ERR_CRYPTO_JWK_UNSUPPORTED_KEY_TYPE", + "depth": 1, + "scope": "api", + "anchor": "err_crypto_jwk_unsupported_key_type", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:bc83266adddf", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_kem_not_supported`", + "signature": "`ERR_CRYPTO_KEM_NOT_SUPPORTED`", + "label": "ERR_CRYPTO_KEM_NOT_SUPPORTED", + "apiSymbol": "ERR_CRYPTO_KEM_NOT_SUPPORTED", + "depth": 1, + "scope": "api", + "anchor": "err_crypto_kem_not_supported", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:bbb816de6720", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_operation_failed`", + "signature": "`ERR_CRYPTO_OPERATION_FAILED`", + "label": "ERR_CRYPTO_OPERATION_FAILED", + "apiSymbol": "ERR_CRYPTO_OPERATION_FAILED", + "depth": 1, + "scope": "api", + "anchor": "err_crypto_operation_failed", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:dc6a81f93f20", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_pbkdf2_error`", + "signature": "`ERR_CRYPTO_PBKDF2_ERROR`", + "label": "ERR_CRYPTO_PBKDF2_ERROR", + "apiSymbol": "ERR_CRYPTO_PBKDF2_ERROR", + "depth": 1, + "scope": "api", + "anchor": "err_crypto_pbkdf2_error", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:39221d87d63f", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_scrypt_not_supported`", + "signature": "`ERR_CRYPTO_SCRYPT_NOT_SUPPORTED`", + "label": "ERR_CRYPTO_SCRYPT_NOT_SUPPORTED", + "apiSymbol": "ERR_CRYPTO_SCRYPT_NOT_SUPPORTED", + "depth": 1, + "scope": "api", + "anchor": "err_crypto_scrypt_not_supported", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:4310d2860d58", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_sign_key_required`", + "signature": "`ERR_CRYPTO_SIGN_KEY_REQUIRED`", + "label": "ERR_CRYPTO_SIGN_KEY_REQUIRED", + "apiSymbol": "ERR_CRYPTO_SIGN_KEY_REQUIRED", + "depth": 1, + "scope": "api", + "anchor": "err_crypto_sign_key_required", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:1b6193d0a254", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_timing_safe_equal_length`", + "signature": "`ERR_CRYPTO_TIMING_SAFE_EQUAL_LENGTH`", + "label": "ERR_CRYPTO_TIMING_SAFE_EQUAL_LENGTH", + "apiSymbol": "ERR_CRYPTO_TIMING_SAFE_EQUAL_LENGTH", + "depth": 1, + "scope": "api", + "anchor": "err_crypto_timing_safe_equal_length", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:0b4371b55b25", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_unknown_cipher`", + "signature": "`ERR_CRYPTO_UNKNOWN_CIPHER`", + "label": "ERR_CRYPTO_UNKNOWN_CIPHER", + "apiSymbol": "ERR_CRYPTO_UNKNOWN_CIPHER", + "depth": 1, + "scope": "api", + "anchor": "err_crypto_unknown_cipher", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:c863f78b249e", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_unknown_dh_group`", + "signature": "`ERR_CRYPTO_UNKNOWN_DH_GROUP`", + "label": "ERR_CRYPTO_UNKNOWN_DH_GROUP", + "apiSymbol": "ERR_CRYPTO_UNKNOWN_DH_GROUP", + "depth": 1, + "scope": "api", + "anchor": "err_crypto_unknown_dh_group", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:29e73b6ed77c", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_unsupported_operation`", + "signature": "`ERR_CRYPTO_UNSUPPORTED_OPERATION`", + "label": "ERR_CRYPTO_UNSUPPORTED_OPERATION", + "apiSymbol": "ERR_CRYPTO_UNSUPPORTED_OPERATION", + "depth": 1, + "scope": "api", + "anchor": "err_crypto_unsupported_operation", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:fff1522fadd2", + "chapter": "errors", + "kind": "module", + "name": "`err_debugger_error`", + "signature": "`ERR_DEBUGGER_ERROR`", + "label": "ERR_DEBUGGER_ERROR", + "apiSymbol": "ERR_DEBUGGER_ERROR", + "depth": 1, + "scope": "api", + "anchor": "err_debugger_error", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:8ac58d0d91e4", + "chapter": "errors", + "kind": "module", + "name": "`err_debugger_startup_error`", + "signature": "`ERR_DEBUGGER_STARTUP_ERROR`", + "label": "ERR_DEBUGGER_STARTUP_ERROR", + "apiSymbol": "ERR_DEBUGGER_STARTUP_ERROR", + "depth": 1, + "scope": "api", + "anchor": "err_debugger_startup_error", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:93d80817e498", + "chapter": "errors", + "kind": "module", + "name": "`err_dir_closed`", + "signature": "`ERR_DIR_CLOSED`", + "label": "ERR_DIR_CLOSED", + "apiSymbol": "ERR_DIR_CLOSED", + "depth": 1, + "scope": "api", + "anchor": "err_dir_closed", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:a6bb8593a92e", + "chapter": "errors", + "kind": "module", + "name": "`err_dir_concurrent_operation`", + "signature": "`ERR_DIR_CONCURRENT_OPERATION`", + "label": "ERR_DIR_CONCURRENT_OPERATION", + "apiSymbol": "ERR_DIR_CONCURRENT_OPERATION", + "depth": 1, + "scope": "api", + "anchor": "err_dir_concurrent_operation", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:385e93f7b3c0", + "chapter": "errors", + "kind": "module", + "name": "`err_dlopen_disabled`", + "signature": "`ERR_DLOPEN_DISABLED`", + "label": "ERR_DLOPEN_DISABLED", + "apiSymbol": "ERR_DLOPEN_DISABLED", + "depth": 1, + "scope": "api", + "anchor": "err_dlopen_disabled", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:7ebc9e9e144e", + "chapter": "errors", + "kind": "module", + "name": "`err_dlopen_failed`", + "signature": "`ERR_DLOPEN_FAILED`", + "label": "ERR_DLOPEN_FAILED", + "apiSymbol": "ERR_DLOPEN_FAILED", + "depth": 1, + "scope": "api", + "anchor": "err_dlopen_failed", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:aa3062b49ff4", + "chapter": "errors", + "kind": "module", + "name": "`err_dns_set_servers_failed`", + "signature": "`ERR_DNS_SET_SERVERS_FAILED`", + "label": "ERR_DNS_SET_SERVERS_FAILED", + "apiSymbol": "ERR_DNS_SET_SERVERS_FAILED", + "depth": 1, + "scope": "api", + "anchor": "err_dns_set_servers_failed", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:a8bbe59c280f", + "chapter": "errors", + "kind": "module", + "name": "`err_domain_callback_not_available`", + "signature": "`ERR_DOMAIN_CALLBACK_NOT_AVAILABLE`", + "label": "ERR_DOMAIN_CALLBACK_NOT_AVAILABLE", + "apiSymbol": "ERR_DOMAIN_CALLBACK_NOT_AVAILABLE", + "depth": 1, + "scope": "api", + "anchor": "err_domain_callback_not_available", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:a83d8a48b7c1", + "chapter": "errors", + "kind": "module", + "name": "`err_domain_cannot_set_uncaught_exception_capture`", + "signature": "`ERR_DOMAIN_CANNOT_SET_UNCAUGHT_EXCEPTION_CAPTURE`", + "label": "ERR_DOMAIN_CANNOT_SET_UNCAUGHT_EXCEPTION_CAPTURE", + "apiSymbol": "ERR_DOMAIN_CANNOT_SET_UNCAUGHT_EXCEPTION_CAPTURE", + "depth": 1, + "scope": "api", + "anchor": "err_domain_cannot_set_uncaught_exception_capture", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:1a7e7ab4221e", + "chapter": "errors", + "kind": "module", + "name": "`err_duplicate_startup_snapshot_main_function`", + "signature": "`ERR_DUPLICATE_STARTUP_SNAPSHOT_MAIN_FUNCTION`", + "label": "ERR_DUPLICATE_STARTUP_SNAPSHOT_MAIN_FUNCTION", + "apiSymbol": "ERR_DUPLICATE_STARTUP_SNAPSHOT_MAIN_FUNCTION", + "depth": 1, + "scope": "api", + "anchor": "err_duplicate_startup_snapshot_main_function", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:914f6b8ad5ff", + "chapter": "errors", + "kind": "module", + "name": "`err_encoding_invalid_encoded_data`", + "signature": "`ERR_ENCODING_INVALID_ENCODED_DATA`", + "label": "ERR_ENCODING_INVALID_ENCODED_DATA", + "apiSymbol": "ERR_ENCODING_INVALID_ENCODED_DATA", + "depth": 1, + "scope": "api", + "anchor": "err_encoding_invalid_encoded_data", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:6b2432f44e5e", + "chapter": "errors", + "kind": "module", + "name": "`err_encoding_not_supported`", + "signature": "`ERR_ENCODING_NOT_SUPPORTED`", + "label": "ERR_ENCODING_NOT_SUPPORTED", + "apiSymbol": "ERR_ENCODING_NOT_SUPPORTED", + "depth": 1, + "scope": "api", + "anchor": "err_encoding_not_supported", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:1bf53a9d6546", + "chapter": "errors", + "kind": "module", + "name": "`err_eval_esm_cannot_print`", + "signature": "`ERR_EVAL_ESM_CANNOT_PRINT`", + "label": "ERR_EVAL_ESM_CANNOT_PRINT", + "apiSymbol": "ERR_EVAL_ESM_CANNOT_PRINT", + "depth": 1, + "scope": "api", + "anchor": "err_eval_esm_cannot_print", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:8d80b6bf8bd8", + "chapter": "errors", + "kind": "module", + "name": "`err_event_recursion`", + "signature": "`ERR_EVENT_RECURSION`", + "label": "ERR_EVENT_RECURSION", + "apiSymbol": "ERR_EVENT_RECURSION", + "depth": 1, + "scope": "api", + "anchor": "err_event_recursion", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:2e2496d4db45", + "chapter": "errors", + "kind": "module", + "name": "`err_execution_environment_not_available`", + "signature": "`ERR_EXECUTION_ENVIRONMENT_NOT_AVAILABLE`", + "label": "ERR_EXECUTION_ENVIRONMENT_NOT_AVAILABLE", + "apiSymbol": "ERR_EXECUTION_ENVIRONMENT_NOT_AVAILABLE", + "depth": 1, + "scope": "api", + "anchor": "err_execution_environment_not_available", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:a0a96a13ff89", + "chapter": "errors", + "kind": "module", + "name": "`err_falsy_value_rejection`", + "signature": "`ERR_FALSY_VALUE_REJECTION`", + "label": "ERR_FALSY_VALUE_REJECTION", + "apiSymbol": "ERR_FALSY_VALUE_REJECTION", + "depth": 1, + "scope": "api", + "anchor": "err_falsy_value_rejection", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:6f4e0bf7be7b", + "chapter": "errors", + "kind": "module", + "name": "`err_feature_unavailable_on_platform`", + "signature": "`ERR_FEATURE_UNAVAILABLE_ON_PLATFORM`", + "label": "ERR_FEATURE_UNAVAILABLE_ON_PLATFORM", + "apiSymbol": "ERR_FEATURE_UNAVAILABLE_ON_PLATFORM", + "depth": 1, + "scope": "api", + "anchor": "err_feature_unavailable_on_platform", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:109fb306cc44", + "chapter": "errors", + "kind": "module", + "name": "`err_fs_cp_dir_to_non_dir`", + "signature": "`ERR_FS_CP_DIR_TO_NON_DIR`", + "label": "ERR_FS_CP_DIR_TO_NON_DIR", + "apiSymbol": "ERR_FS_CP_DIR_TO_NON_DIR", + "depth": 1, + "scope": "api", + "anchor": "err_fs_cp_dir_to_non_dir", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:d711577aa071", + "chapter": "errors", + "kind": "module", + "name": "`err_fs_cp_eexist`", + "signature": "`ERR_FS_CP_EEXIST`", + "label": "ERR_FS_CP_EEXIST", + "apiSymbol": "ERR_FS_CP_EEXIST", + "depth": 1, + "scope": "api", + "anchor": "err_fs_cp_eexist", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:591e537dea01", + "chapter": "errors", + "kind": "module", + "name": "`err_fs_cp_einval`", + "signature": "`ERR_FS_CP_EINVAL`", + "label": "ERR_FS_CP_EINVAL", + "apiSymbol": "ERR_FS_CP_EINVAL", + "depth": 1, + "scope": "api", + "anchor": "err_fs_cp_einval", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:193e18cbc642", + "chapter": "errors", + "kind": "module", + "name": "`err_fs_cp_fifo_pipe`", + "signature": "`ERR_FS_CP_FIFO_PIPE`", + "label": "ERR_FS_CP_FIFO_PIPE", + "apiSymbol": "ERR_FS_CP_FIFO_PIPE", + "depth": 1, + "scope": "api", + "anchor": "err_fs_cp_fifo_pipe", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:cea2d138c1c3", + "chapter": "errors", + "kind": "module", + "name": "`err_fs_cp_non_dir_to_dir`", + "signature": "`ERR_FS_CP_NON_DIR_TO_DIR`", + "label": "ERR_FS_CP_NON_DIR_TO_DIR", + "apiSymbol": "ERR_FS_CP_NON_DIR_TO_DIR", + "depth": 1, + "scope": "api", + "anchor": "err_fs_cp_non_dir_to_dir", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:b44f00ea9f00", + "chapter": "errors", + "kind": "module", + "name": "`err_fs_cp_socket`", + "signature": "`ERR_FS_CP_SOCKET`", + "label": "ERR_FS_CP_SOCKET", + "apiSymbol": "ERR_FS_CP_SOCKET", + "depth": 1, + "scope": "api", + "anchor": "err_fs_cp_socket", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:578d53ee955f", + "chapter": "errors", + "kind": "module", + "name": "`err_fs_cp_symlink_to_subdirectory`", + "signature": "`ERR_FS_CP_SYMLINK_TO_SUBDIRECTORY`", + "label": "ERR_FS_CP_SYMLINK_TO_SUBDIRECTORY", + "apiSymbol": "ERR_FS_CP_SYMLINK_TO_SUBDIRECTORY", + "depth": 1, + "scope": "api", + "anchor": "err_fs_cp_symlink_to_subdirectory", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:7508273d2cc2", + "chapter": "errors", + "kind": "module", + "name": "`err_fs_cp_unknown`", + "signature": "`ERR_FS_CP_UNKNOWN`", + "label": "ERR_FS_CP_UNKNOWN", + "apiSymbol": "ERR_FS_CP_UNKNOWN", + "depth": 1, + "scope": "api", + "anchor": "err_fs_cp_unknown", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:00ec21ce38bc", + "chapter": "errors", + "kind": "module", + "name": "`err_fs_eisdir`", + "signature": "`ERR_FS_EISDIR`", + "label": "ERR_FS_EISDIR", + "apiSymbol": "ERR_FS_EISDIR", + "depth": 1, + "scope": "api", + "anchor": "err_fs_eisdir", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:8bb2e0b96ff3", + "chapter": "errors", + "kind": "module", + "name": "`err_fs_file_too_large`", + "signature": "`ERR_FS_FILE_TOO_LARGE`", + "label": "ERR_FS_FILE_TOO_LARGE", + "apiSymbol": "ERR_FS_FILE_TOO_LARGE", + "depth": 1, + "scope": "api", + "anchor": "err_fs_file_too_large", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:c62d401ab59d", + "chapter": "errors", + "kind": "module", + "name": "`err_fs_watch_queue_overflow`", + "signature": "`ERR_FS_WATCH_QUEUE_OVERFLOW`", + "label": "ERR_FS_WATCH_QUEUE_OVERFLOW", + "apiSymbol": "ERR_FS_WATCH_QUEUE_OVERFLOW", + "depth": 1, + "scope": "api", + "anchor": "err_fs_watch_queue_overflow", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:8176b3548759", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_altsvc_invalid_origin`", + "signature": "`ERR_HTTP2_ALTSVC_INVALID_ORIGIN`", + "label": "ERR_HTTP2_ALTSVC_INVALID_ORIGIN", + "apiSymbol": "ERR_HTTP2_ALTSVC_INVALID_ORIGIN", + "depth": 1, + "scope": "api", + "anchor": "err_http2_altsvc_invalid_origin", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:1ffa5faa134b", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_altsvc_length`", + "signature": "`ERR_HTTP2_ALTSVC_LENGTH`", + "label": "ERR_HTTP2_ALTSVC_LENGTH", + "apiSymbol": "ERR_HTTP2_ALTSVC_LENGTH", + "depth": 1, + "scope": "api", + "anchor": "err_http2_altsvc_length", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:a0754b7922ca", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_connect_authority`", + "signature": "`ERR_HTTP2_CONNECT_AUTHORITY`", + "label": "ERR_HTTP2_CONNECT_AUTHORITY", + "apiSymbol": "ERR_HTTP2_CONNECT_AUTHORITY", + "depth": 1, + "scope": "api", + "anchor": "err_http2_connect_authority", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:9da29a9746b9", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_connect_path`", + "signature": "`ERR_HTTP2_CONNECT_PATH`", + "label": "ERR_HTTP2_CONNECT_PATH", + "apiSymbol": "ERR_HTTP2_CONNECT_PATH", + "depth": 1, + "scope": "api", + "anchor": "err_http2_connect_path", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:9e5b1b864d6e", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_connect_scheme`", + "signature": "`ERR_HTTP2_CONNECT_SCHEME`", + "label": "ERR_HTTP2_CONNECT_SCHEME", + "apiSymbol": "ERR_HTTP2_CONNECT_SCHEME", + "depth": 1, + "scope": "api", + "anchor": "err_http2_connect_scheme", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:3121028a67f0", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_error`", + "signature": "`ERR_HTTP2_ERROR`", + "label": "ERR_HTTP2_ERROR", + "apiSymbol": "ERR_HTTP2_ERROR", + "depth": 1, + "scope": "api", + "anchor": "err_http2_error", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:87ef2b8b5dd4", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_goaway_session`", + "signature": "`ERR_HTTP2_GOAWAY_SESSION`", + "label": "ERR_HTTP2_GOAWAY_SESSION", + "apiSymbol": "ERR_HTTP2_GOAWAY_SESSION", + "depth": 1, + "scope": "api", + "anchor": "err_http2_goaway_session", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:160c0d1ae617", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_headers_after_respond`", + "signature": "`ERR_HTTP2_HEADERS_AFTER_RESPOND`", + "label": "ERR_HTTP2_HEADERS_AFTER_RESPOND", + "apiSymbol": "ERR_HTTP2_HEADERS_AFTER_RESPOND", + "depth": 1, + "scope": "api", + "anchor": "err_http2_headers_after_respond", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:48bf7e803b41", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_headers_sent`", + "signature": "`ERR_HTTP2_HEADERS_SENT`", + "label": "ERR_HTTP2_HEADERS_SENT", + "apiSymbol": "ERR_HTTP2_HEADERS_SENT", + "depth": 1, + "scope": "api", + "anchor": "err_http2_headers_sent", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:5cccc962a5e1", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_header_single_value`", + "signature": "`ERR_HTTP2_HEADER_SINGLE_VALUE`", + "label": "ERR_HTTP2_HEADER_SINGLE_VALUE", + "apiSymbol": "ERR_HTTP2_HEADER_SINGLE_VALUE", + "depth": 1, + "scope": "api", + "anchor": "err_http2_header_single_value", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:dce0a399957f", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_info_status_not_allowed`", + "signature": "`ERR_HTTP2_INFO_STATUS_NOT_ALLOWED`", + "label": "ERR_HTTP2_INFO_STATUS_NOT_ALLOWED", + "apiSymbol": "ERR_HTTP2_INFO_STATUS_NOT_ALLOWED", + "depth": 1, + "scope": "api", + "anchor": "err_http2_info_status_not_allowed", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:1ebd2ac91e4e", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_invalid_connection_headers`", + "signature": "`ERR_HTTP2_INVALID_CONNECTION_HEADERS`", + "label": "ERR_HTTP2_INVALID_CONNECTION_HEADERS", + "apiSymbol": "ERR_HTTP2_INVALID_CONNECTION_HEADERS", + "depth": 1, + "scope": "api", + "anchor": "err_http2_invalid_connection_headers", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:63eb5a9968fd", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_invalid_header_value`", + "signature": "`ERR_HTTP2_INVALID_HEADER_VALUE`", + "label": "ERR_HTTP2_INVALID_HEADER_VALUE", + "apiSymbol": "ERR_HTTP2_INVALID_HEADER_VALUE", + "depth": 1, + "scope": "api", + "anchor": "err_http2_invalid_header_value", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:4ad8971580e9", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_invalid_info_status`", + "signature": "`ERR_HTTP2_INVALID_INFO_STATUS`", + "label": "ERR_HTTP2_INVALID_INFO_STATUS", + "apiSymbol": "ERR_HTTP2_INVALID_INFO_STATUS", + "depth": 1, + "scope": "api", + "anchor": "err_http2_invalid_info_status", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:75097044eca7", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_invalid_origin`", + "signature": "`ERR_HTTP2_INVALID_ORIGIN`", + "label": "ERR_HTTP2_INVALID_ORIGIN", + "apiSymbol": "ERR_HTTP2_INVALID_ORIGIN", + "depth": 1, + "scope": "api", + "anchor": "err_http2_invalid_origin", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:e119bdab938a", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_invalid_packed_settings_length`", + "signature": "`ERR_HTTP2_INVALID_PACKED_SETTINGS_LENGTH`", + "label": "ERR_HTTP2_INVALID_PACKED_SETTINGS_LENGTH", + "apiSymbol": "ERR_HTTP2_INVALID_PACKED_SETTINGS_LENGTH", + "depth": 1, + "scope": "api", + "anchor": "err_http2_invalid_packed_settings_length", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:aa632699a0ee", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_invalid_pseudoheader`", + "signature": "`ERR_HTTP2_INVALID_PSEUDOHEADER`", + "label": "ERR_HTTP2_INVALID_PSEUDOHEADER", + "apiSymbol": "ERR_HTTP2_INVALID_PSEUDOHEADER", + "depth": 1, + "scope": "api", + "anchor": "err_http2_invalid_pseudoheader", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:ec973ca9d700", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_invalid_session`", + "signature": "`ERR_HTTP2_INVALID_SESSION`", + "label": "ERR_HTTP2_INVALID_SESSION", + "apiSymbol": "ERR_HTTP2_INVALID_SESSION", + "depth": 1, + "scope": "api", + "anchor": "err_http2_invalid_session", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:c6d7d3dab1a8", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_invalid_setting_value`", + "signature": "`ERR_HTTP2_INVALID_SETTING_VALUE`", + "label": "ERR_HTTP2_INVALID_SETTING_VALUE", + "apiSymbol": "ERR_HTTP2_INVALID_SETTING_VALUE", + "depth": 1, + "scope": "api", + "anchor": "err_http2_invalid_setting_value", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:cf3cbd4d75fa", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_invalid_stream`", + "signature": "`ERR_HTTP2_INVALID_STREAM`", + "label": "ERR_HTTP2_INVALID_STREAM", + "apiSymbol": "ERR_HTTP2_INVALID_STREAM", + "depth": 1, + "scope": "api", + "anchor": "err_http2_invalid_stream", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:b5e6ddde0b7c", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_max_pending_settings_ack`", + "signature": "`ERR_HTTP2_MAX_PENDING_SETTINGS_ACK`", + "label": "ERR_HTTP2_MAX_PENDING_SETTINGS_ACK", + "apiSymbol": "ERR_HTTP2_MAX_PENDING_SETTINGS_ACK", + "depth": 1, + "scope": "api", + "anchor": "err_http2_max_pending_settings_ack", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:46406d50a324", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_nested_push`", + "signature": "`ERR_HTTP2_NESTED_PUSH`", + "label": "ERR_HTTP2_NESTED_PUSH", + "apiSymbol": "ERR_HTTP2_NESTED_PUSH", + "depth": 1, + "scope": "api", + "anchor": "err_http2_nested_push", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:18c92c1db453", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_no_mem`", + "signature": "`ERR_HTTP2_NO_MEM`", + "label": "ERR_HTTP2_NO_MEM", + "apiSymbol": "ERR_HTTP2_NO_MEM", + "depth": 1, + "scope": "api", + "anchor": "err_http2_no_mem", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:e79b0b4eadd5", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_no_socket_manipulation`", + "signature": "`ERR_HTTP2_NO_SOCKET_MANIPULATION`", + "label": "ERR_HTTP2_NO_SOCKET_MANIPULATION", + "apiSymbol": "ERR_HTTP2_NO_SOCKET_MANIPULATION", + "depth": 1, + "scope": "api", + "anchor": "err_http2_no_socket_manipulation", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:44424a396311", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_origin_length`", + "signature": "`ERR_HTTP2_ORIGIN_LENGTH`", + "label": "ERR_HTTP2_ORIGIN_LENGTH", + "apiSymbol": "ERR_HTTP2_ORIGIN_LENGTH", + "depth": 1, + "scope": "api", + "anchor": "err_http2_origin_length", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:0d5579703e20", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_out_of_streams`", + "signature": "`ERR_HTTP2_OUT_OF_STREAMS`", + "label": "ERR_HTTP2_OUT_OF_STREAMS", + "apiSymbol": "ERR_HTTP2_OUT_OF_STREAMS", + "depth": 1, + "scope": "api", + "anchor": "err_http2_out_of_streams", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:f1a269aedbe8", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_payload_forbidden`", + "signature": "`ERR_HTTP2_PAYLOAD_FORBIDDEN`", + "label": "ERR_HTTP2_PAYLOAD_FORBIDDEN", + "apiSymbol": "ERR_HTTP2_PAYLOAD_FORBIDDEN", + "depth": 1, + "scope": "api", + "anchor": "err_http2_payload_forbidden", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:19ab65b984d1", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_ping_cancel`", + "signature": "`ERR_HTTP2_PING_CANCEL`", + "label": "ERR_HTTP2_PING_CANCEL", + "apiSymbol": "ERR_HTTP2_PING_CANCEL", + "depth": 1, + "scope": "api", + "anchor": "err_http2_ping_cancel", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:db454cd7e582", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_ping_length`", + "signature": "`ERR_HTTP2_PING_LENGTH`", + "label": "ERR_HTTP2_PING_LENGTH", + "apiSymbol": "ERR_HTTP2_PING_LENGTH", + "depth": 1, + "scope": "api", + "anchor": "err_http2_ping_length", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:c73d379688c5", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_pseudoheader_not_allowed`", + "signature": "`ERR_HTTP2_PSEUDOHEADER_NOT_ALLOWED`", + "label": "ERR_HTTP2_PSEUDOHEADER_NOT_ALLOWED", + "apiSymbol": "ERR_HTTP2_PSEUDOHEADER_NOT_ALLOWED", + "depth": 1, + "scope": "api", + "anchor": "err_http2_pseudoheader_not_allowed", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:2707a922f688", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_push_disabled`", + "signature": "`ERR_HTTP2_PUSH_DISABLED`", + "label": "ERR_HTTP2_PUSH_DISABLED", + "apiSymbol": "ERR_HTTP2_PUSH_DISABLED", + "depth": 1, + "scope": "api", + "anchor": "err_http2_push_disabled", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:76a1cc9ec1e7", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_send_file`", + "signature": "`ERR_HTTP2_SEND_FILE`", + "label": "ERR_HTTP2_SEND_FILE", + "apiSymbol": "ERR_HTTP2_SEND_FILE", + "depth": 1, + "scope": "api", + "anchor": "err_http2_send_file", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:c07235ca435d", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_send_file_noseek`", + "signature": "`ERR_HTTP2_SEND_FILE_NOSEEK`", + "label": "ERR_HTTP2_SEND_FILE_NOSEEK", + "apiSymbol": "ERR_HTTP2_SEND_FILE_NOSEEK", + "depth": 1, + "scope": "api", + "anchor": "err_http2_send_file_noseek", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:8b37b07bb7f6", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_session_error`", + "signature": "`ERR_HTTP2_SESSION_ERROR`", + "label": "ERR_HTTP2_SESSION_ERROR", + "apiSymbol": "ERR_HTTP2_SESSION_ERROR", + "depth": 1, + "scope": "api", + "anchor": "err_http2_session_error", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:4d05c8b5434d", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_settings_cancel`", + "signature": "`ERR_HTTP2_SETTINGS_CANCEL`", + "label": "ERR_HTTP2_SETTINGS_CANCEL", + "apiSymbol": "ERR_HTTP2_SETTINGS_CANCEL", + "depth": 1, + "scope": "api", + "anchor": "err_http2_settings_cancel", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:4e49b5b5560b", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_socket_bound`", + "signature": "`ERR_HTTP2_SOCKET_BOUND`", + "label": "ERR_HTTP2_SOCKET_BOUND", + "apiSymbol": "ERR_HTTP2_SOCKET_BOUND", + "depth": 1, + "scope": "api", + "anchor": "err_http2_socket_bound", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:79fc71028e38", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_socket_unbound`", + "signature": "`ERR_HTTP2_SOCKET_UNBOUND`", + "label": "ERR_HTTP2_SOCKET_UNBOUND", + "apiSymbol": "ERR_HTTP2_SOCKET_UNBOUND", + "depth": 1, + "scope": "api", + "anchor": "err_http2_socket_unbound", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:f6e7b358d9b5", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_status_101`", + "signature": "`ERR_HTTP2_STATUS_101`", + "label": "ERR_HTTP2_STATUS_101", + "apiSymbol": "ERR_HTTP2_STATUS_101", + "depth": 1, + "scope": "api", + "anchor": "err_http2_status_101", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:e3b045f59b05", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_status_invalid`", + "signature": "`ERR_HTTP2_STATUS_INVALID`", + "label": "ERR_HTTP2_STATUS_INVALID", + "apiSymbol": "ERR_HTTP2_STATUS_INVALID", + "depth": 1, + "scope": "api", + "anchor": "err_http2_status_invalid", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:2c9b400683b3", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_stream_cancel`", + "signature": "`ERR_HTTP2_STREAM_CANCEL`", + "label": "ERR_HTTP2_STREAM_CANCEL", + "apiSymbol": "ERR_HTTP2_STREAM_CANCEL", + "depth": 1, + "scope": "api", + "anchor": "err_http2_stream_cancel", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:7553eb05b4e7", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_stream_error`", + "signature": "`ERR_HTTP2_STREAM_ERROR`", + "label": "ERR_HTTP2_STREAM_ERROR", + "apiSymbol": "ERR_HTTP2_STREAM_ERROR", + "depth": 1, + "scope": "api", + "anchor": "err_http2_stream_error", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:98e421d82468", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_stream_self_dependency`", + "signature": "`ERR_HTTP2_STREAM_SELF_DEPENDENCY`", + "label": "ERR_HTTP2_STREAM_SELF_DEPENDENCY", + "apiSymbol": "ERR_HTTP2_STREAM_SELF_DEPENDENCY", + "depth": 1, + "scope": "api", + "anchor": "err_http2_stream_self_dependency", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:d75a49c3fa05", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_too_many_custom_settings`", + "signature": "`ERR_HTTP2_TOO_MANY_CUSTOM_SETTINGS`", + "label": "ERR_HTTP2_TOO_MANY_CUSTOM_SETTINGS", + "apiSymbol": "ERR_HTTP2_TOO_MANY_CUSTOM_SETTINGS", + "depth": 1, + "scope": "api", + "anchor": "err_http2_too_many_custom_settings", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:f94974790b37", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_too_many_invalid_frames`", + "signature": "`ERR_HTTP2_TOO_MANY_INVALID_FRAMES`", + "label": "ERR_HTTP2_TOO_MANY_INVALID_FRAMES", + "apiSymbol": "ERR_HTTP2_TOO_MANY_INVALID_FRAMES", + "depth": 1, + "scope": "api", + "anchor": "err_http2_too_many_invalid_frames", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:799603ae61ed", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_trailers_already_sent`", + "signature": "`ERR_HTTP2_TRAILERS_ALREADY_SENT`", + "label": "ERR_HTTP2_TRAILERS_ALREADY_SENT", + "apiSymbol": "ERR_HTTP2_TRAILERS_ALREADY_SENT", + "depth": 1, + "scope": "api", + "anchor": "err_http2_trailers_already_sent", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:5fa9dec1e569", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_trailers_not_ready`", + "signature": "`ERR_HTTP2_TRAILERS_NOT_READY`", + "label": "ERR_HTTP2_TRAILERS_NOT_READY", + "apiSymbol": "ERR_HTTP2_TRAILERS_NOT_READY", + "depth": 1, + "scope": "api", + "anchor": "err_http2_trailers_not_ready", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:c3aa9f1635c6", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_unsupported_protocol`", + "signature": "`ERR_HTTP2_UNSUPPORTED_PROTOCOL`", + "label": "ERR_HTTP2_UNSUPPORTED_PROTOCOL", + "apiSymbol": "ERR_HTTP2_UNSUPPORTED_PROTOCOL", + "depth": 1, + "scope": "api", + "anchor": "err_http2_unsupported_protocol", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:6c447550feac", + "chapter": "errors", + "kind": "module", + "name": "`err_http_body_not_allowed`", + "signature": "`ERR_HTTP_BODY_NOT_ALLOWED`", + "label": "ERR_HTTP_BODY_NOT_ALLOWED", + "apiSymbol": "ERR_HTTP_BODY_NOT_ALLOWED", + "depth": 1, + "scope": "api", + "anchor": "err_http_body_not_allowed", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:34dda66d20a4", + "chapter": "errors", + "kind": "module", + "name": "`err_http_content_length_mismatch`", + "signature": "`ERR_HTTP_CONTENT_LENGTH_MISMATCH`", + "label": "ERR_HTTP_CONTENT_LENGTH_MISMATCH", + "apiSymbol": "ERR_HTTP_CONTENT_LENGTH_MISMATCH", + "depth": 1, + "scope": "api", + "anchor": "err_http_content_length_mismatch", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:d37359ebff74", + "chapter": "errors", + "kind": "module", + "name": "`err_http_headers_sent`", + "signature": "`ERR_HTTP_HEADERS_SENT`", + "label": "ERR_HTTP_HEADERS_SENT", + "apiSymbol": "ERR_HTTP_HEADERS_SENT", + "depth": 1, + "scope": "api", + "anchor": "err_http_headers_sent", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:44630fe01a40", + "chapter": "errors", + "kind": "module", + "name": "`err_http_invalid_header_value`", + "signature": "`ERR_HTTP_INVALID_HEADER_VALUE`", + "label": "ERR_HTTP_INVALID_HEADER_VALUE", + "apiSymbol": "ERR_HTTP_INVALID_HEADER_VALUE", + "depth": 1, + "scope": "api", + "anchor": "err_http_invalid_header_value", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:c173d3dbb50d", + "chapter": "errors", + "kind": "module", + "name": "`err_http_invalid_status_code`", + "signature": "`ERR_HTTP_INVALID_STATUS_CODE`", + "label": "ERR_HTTP_INVALID_STATUS_CODE", + "apiSymbol": "ERR_HTTP_INVALID_STATUS_CODE", + "depth": 1, + "scope": "api", + "anchor": "err_http_invalid_status_code", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:2e378807efa9", + "chapter": "errors", + "kind": "module", + "name": "`err_http_request_timeout`", + "signature": "`ERR_HTTP_REQUEST_TIMEOUT`", + "label": "ERR_HTTP_REQUEST_TIMEOUT", + "apiSymbol": "ERR_HTTP_REQUEST_TIMEOUT", + "depth": 1, + "scope": "api", + "anchor": "err_http_request_timeout", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:848bbf20e9aa", + "chapter": "errors", + "kind": "module", + "name": "`err_http_socket_assigned`", + "signature": "`ERR_HTTP_SOCKET_ASSIGNED`", + "label": "ERR_HTTP_SOCKET_ASSIGNED", + "apiSymbol": "ERR_HTTP_SOCKET_ASSIGNED", + "depth": 1, + "scope": "api", + "anchor": "err_http_socket_assigned", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:7c5a56c488a5", + "chapter": "errors", + "kind": "module", + "name": "`err_http_socket_encoding`", + "signature": "`ERR_HTTP_SOCKET_ENCODING`", + "label": "ERR_HTTP_SOCKET_ENCODING", + "apiSymbol": "ERR_HTTP_SOCKET_ENCODING", + "depth": 1, + "scope": "api", + "anchor": "err_http_socket_encoding", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:51b4204d1850", + "chapter": "errors", + "kind": "module", + "name": "`err_http_trailer_invalid`", + "signature": "`ERR_HTTP_TRAILER_INVALID`", + "label": "ERR_HTTP_TRAILER_INVALID", + "apiSymbol": "ERR_HTTP_TRAILER_INVALID", + "depth": 1, + "scope": "api", + "anchor": "err_http_trailer_invalid", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:fa5066e80d50", + "chapter": "errors", + "kind": "module", + "name": "`err_illegal_constructor`", + "signature": "`ERR_ILLEGAL_CONSTRUCTOR`", + "label": "ERR_ILLEGAL_CONSTRUCTOR", + "apiSymbol": "ERR_ILLEGAL_CONSTRUCTOR", + "depth": 1, + "scope": "api", + "anchor": "err_illegal_constructor", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:5499b270cf61", + "chapter": "errors", + "kind": "module", + "name": "`err_import_attribute_missing`", + "signature": "`ERR_IMPORT_ATTRIBUTE_MISSING`", + "label": "ERR_IMPORT_ATTRIBUTE_MISSING", + "apiSymbol": "ERR_IMPORT_ATTRIBUTE_MISSING", + "depth": 1, + "scope": "api", + "anchor": "err_import_attribute_missing", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:ca1d4f69bf83", + "chapter": "errors", + "kind": "module", + "name": "`err_import_attribute_type_incompatible`", + "signature": "`ERR_IMPORT_ATTRIBUTE_TYPE_INCOMPATIBLE`", + "label": "ERR_IMPORT_ATTRIBUTE_TYPE_INCOMPATIBLE", + "apiSymbol": "ERR_IMPORT_ATTRIBUTE_TYPE_INCOMPATIBLE", + "depth": 1, + "scope": "api", + "anchor": "err_import_attribute_type_incompatible", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:5bac42b67ae2", + "chapter": "errors", + "kind": "module", + "name": "`err_import_attribute_unsupported`", + "signature": "`ERR_IMPORT_ATTRIBUTE_UNSUPPORTED`", + "label": "ERR_IMPORT_ATTRIBUTE_UNSUPPORTED", + "apiSymbol": "ERR_IMPORT_ATTRIBUTE_UNSUPPORTED", + "depth": 1, + "scope": "api", + "anchor": "err_import_attribute_unsupported", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:bd1b6cb74a7a", + "chapter": "errors", + "kind": "module", + "name": "`err_incompatible_option_pair`", + "signature": "`ERR_INCOMPATIBLE_OPTION_PAIR`", + "label": "ERR_INCOMPATIBLE_OPTION_PAIR", + "apiSymbol": "ERR_INCOMPATIBLE_OPTION_PAIR", + "depth": 1, + "scope": "api", + "anchor": "err_incompatible_option_pair", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:0d9409025cef", + "chapter": "errors", + "kind": "module", + "name": "`err_input_type_not_allowed`", + "signature": "`ERR_INPUT_TYPE_NOT_ALLOWED`", + "label": "ERR_INPUT_TYPE_NOT_ALLOWED", + "apiSymbol": "ERR_INPUT_TYPE_NOT_ALLOWED", + "depth": 1, + "scope": "api", + "anchor": "err_input_type_not_allowed", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:e56b8ffbab4e", + "chapter": "errors", + "kind": "module", + "name": "`err_inspector_already_activated`", + "signature": "`ERR_INSPECTOR_ALREADY_ACTIVATED`", + "label": "ERR_INSPECTOR_ALREADY_ACTIVATED", + "apiSymbol": "ERR_INSPECTOR_ALREADY_ACTIVATED", + "depth": 1, + "scope": "api", + "anchor": "err_inspector_already_activated", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:8d0db429bdb1", + "chapter": "errors", + "kind": "module", + "name": "`err_inspector_already_connected`", + "signature": "`ERR_INSPECTOR_ALREADY_CONNECTED`", + "label": "ERR_INSPECTOR_ALREADY_CONNECTED", + "apiSymbol": "ERR_INSPECTOR_ALREADY_CONNECTED", + "depth": 1, + "scope": "api", + "anchor": "err_inspector_already_connected", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:b1022db7e59e", + "chapter": "errors", + "kind": "module", + "name": "`err_inspector_closed`", + "signature": "`ERR_INSPECTOR_CLOSED`", + "label": "ERR_INSPECTOR_CLOSED", + "apiSymbol": "ERR_INSPECTOR_CLOSED", + "depth": 1, + "scope": "api", + "anchor": "err_inspector_closed", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:39b33b3db42a", + "chapter": "errors", + "kind": "module", + "name": "`err_inspector_command`", + "signature": "`ERR_INSPECTOR_COMMAND`", + "label": "ERR_INSPECTOR_COMMAND", + "apiSymbol": "ERR_INSPECTOR_COMMAND", + "depth": 1, + "scope": "api", + "anchor": "err_inspector_command", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:fc2412257d3a", + "chapter": "errors", + "kind": "module", + "name": "`err_inspector_not_active`", + "signature": "`ERR_INSPECTOR_NOT_ACTIVE`", + "label": "ERR_INSPECTOR_NOT_ACTIVE", + "apiSymbol": "ERR_INSPECTOR_NOT_ACTIVE", + "depth": 1, + "scope": "api", + "anchor": "err_inspector_not_active", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:2bf1f9b87c80", + "chapter": "errors", + "kind": "module", + "name": "`err_inspector_not_available`", + "signature": "`ERR_INSPECTOR_NOT_AVAILABLE`", + "label": "ERR_INSPECTOR_NOT_AVAILABLE", + "apiSymbol": "ERR_INSPECTOR_NOT_AVAILABLE", + "depth": 1, + "scope": "api", + "anchor": "err_inspector_not_available", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:a95db60cb6b8", + "chapter": "errors", + "kind": "module", + "name": "`err_inspector_not_connected`", + "signature": "`ERR_INSPECTOR_NOT_CONNECTED`", + "label": "ERR_INSPECTOR_NOT_CONNECTED", + "apiSymbol": "ERR_INSPECTOR_NOT_CONNECTED", + "depth": 1, + "scope": "api", + "anchor": "err_inspector_not_connected", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:a98b93817cce", + "chapter": "errors", + "kind": "module", + "name": "`err_inspector_not_worker`", + "signature": "`ERR_INSPECTOR_NOT_WORKER`", + "label": "ERR_INSPECTOR_NOT_WORKER", + "apiSymbol": "ERR_INSPECTOR_NOT_WORKER", + "depth": 1, + "scope": "api", + "anchor": "err_inspector_not_worker", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:186493f3714e", + "chapter": "errors", + "kind": "module", + "name": "`err_internal_assertion`", + "signature": "`ERR_INTERNAL_ASSERTION`", + "label": "ERR_INTERNAL_ASSERTION", + "apiSymbol": "ERR_INTERNAL_ASSERTION", + "depth": 1, + "scope": "api", + "anchor": "err_internal_assertion", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:ac53bbc6e276", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_address`", + "signature": "`ERR_INVALID_ADDRESS`", + "label": "ERR_INVALID_ADDRESS", + "apiSymbol": "ERR_INVALID_ADDRESS", + "depth": 1, + "scope": "api", + "anchor": "err_invalid_address", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:3efc19d28f60", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_address_family`", + "signature": "`ERR_INVALID_ADDRESS_FAMILY`", + "label": "ERR_INVALID_ADDRESS_FAMILY", + "apiSymbol": "ERR_INVALID_ADDRESS_FAMILY", + "depth": 1, + "scope": "api", + "anchor": "err_invalid_address_family", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:1a49260b39f5", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_arg_type`", + "signature": "`ERR_INVALID_ARG_TYPE`", + "label": "ERR_INVALID_ARG_TYPE", + "apiSymbol": "ERR_INVALID_ARG_TYPE", + "depth": 1, + "scope": "api", + "anchor": "err_invalid_arg_type", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:ad8192687e9f", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_arg_value`", + "signature": "`ERR_INVALID_ARG_VALUE`", + "label": "ERR_INVALID_ARG_VALUE", + "apiSymbol": "ERR_INVALID_ARG_VALUE", + "depth": 1, + "scope": "api", + "anchor": "err_invalid_arg_value", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:87c6ee235eb9", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_async_id`", + "signature": "`ERR_INVALID_ASYNC_ID`", + "label": "ERR_INVALID_ASYNC_ID", + "apiSymbol": "ERR_INVALID_ASYNC_ID", + "depth": 1, + "scope": "api", + "anchor": "err_invalid_async_id", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:833f9eeaf71a", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_buffer_size`", + "signature": "`ERR_INVALID_BUFFER_SIZE`", + "label": "ERR_INVALID_BUFFER_SIZE", + "apiSymbol": "ERR_INVALID_BUFFER_SIZE", + "depth": 1, + "scope": "api", + "anchor": "err_invalid_buffer_size", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:003bcde06939", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_char`", + "signature": "`ERR_INVALID_CHAR`", + "label": "ERR_INVALID_CHAR", + "apiSymbol": "ERR_INVALID_CHAR", + "depth": 1, + "scope": "api", + "anchor": "err_invalid_char", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:0def7eb7c587", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_cursor_pos`", + "signature": "`ERR_INVALID_CURSOR_POS`", + "label": "ERR_INVALID_CURSOR_POS", + "apiSymbol": "ERR_INVALID_CURSOR_POS", + "depth": 1, + "scope": "api", + "anchor": "err_invalid_cursor_pos", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:bd1a72ecbcb8", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_fd`", + "signature": "`ERR_INVALID_FD`", + "label": "ERR_INVALID_FD", + "apiSymbol": "ERR_INVALID_FD", + "depth": 1, + "scope": "api", + "anchor": "err_invalid_fd", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:0bcd688b1012", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_fd_type`", + "signature": "`ERR_INVALID_FD_TYPE`", + "label": "ERR_INVALID_FD_TYPE", + "apiSymbol": "ERR_INVALID_FD_TYPE", + "depth": 1, + "scope": "api", + "anchor": "err_invalid_fd_type", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:6464f753c97f", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_file_url_host`", + "signature": "`ERR_INVALID_FILE_URL_HOST`", + "label": "ERR_INVALID_FILE_URL_HOST", + "apiSymbol": "ERR_INVALID_FILE_URL_HOST", + "depth": 1, + "scope": "api", + "anchor": "err_invalid_file_url_host", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:20b8c0056829", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_file_url_path`", + "signature": "`ERR_INVALID_FILE_URL_PATH`", + "label": "ERR_INVALID_FILE_URL_PATH", + "apiSymbol": "ERR_INVALID_FILE_URL_PATH", + "depth": 1, + "scope": "api", + "anchor": "err_invalid_file_url_path", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:e6461285520c", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_handle_type`", + "signature": "`ERR_INVALID_HANDLE_TYPE`", + "label": "ERR_INVALID_HANDLE_TYPE", + "apiSymbol": "ERR_INVALID_HANDLE_TYPE", + "depth": 1, + "scope": "api", + "anchor": "err_invalid_handle_type", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:f53daa707cce", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_http_token`", + "signature": "`ERR_INVALID_HTTP_TOKEN`", + "label": "ERR_INVALID_HTTP_TOKEN", + "apiSymbol": "ERR_INVALID_HTTP_TOKEN", + "depth": 1, + "scope": "api", + "anchor": "err_invalid_http_token", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:92490bcdf411", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_ip_address`", + "signature": "`ERR_INVALID_IP_ADDRESS`", + "label": "ERR_INVALID_IP_ADDRESS", + "apiSymbol": "ERR_INVALID_IP_ADDRESS", + "depth": 1, + "scope": "api", + "anchor": "err_invalid_ip_address", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:01cf500177db", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_mime_syntax`", + "signature": "`ERR_INVALID_MIME_SYNTAX`", + "label": "ERR_INVALID_MIME_SYNTAX", + "apiSymbol": "ERR_INVALID_MIME_SYNTAX", + "depth": 1, + "scope": "api", + "anchor": "err_invalid_mime_syntax", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:fafb6632a396", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_module`", + "signature": "`ERR_INVALID_MODULE`", + "label": "ERR_INVALID_MODULE", + "apiSymbol": "ERR_INVALID_MODULE", + "depth": 1, + "scope": "api", + "anchor": "err_invalid_module", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:785b15656eee", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_module_specifier`", + "signature": "`ERR_INVALID_MODULE_SPECIFIER`", + "label": "ERR_INVALID_MODULE_SPECIFIER", + "apiSymbol": "ERR_INVALID_MODULE_SPECIFIER", + "depth": 1, + "scope": "api", + "anchor": "err_invalid_module_specifier", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:cecc76c887c9", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_object_define_property`", + "signature": "`ERR_INVALID_OBJECT_DEFINE_PROPERTY`", + "label": "ERR_INVALID_OBJECT_DEFINE_PROPERTY", + "apiSymbol": "ERR_INVALID_OBJECT_DEFINE_PROPERTY", + "depth": 1, + "scope": "api", + "anchor": "err_invalid_object_define_property", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:b1f52121dbcc", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_package_config`", + "signature": "`ERR_INVALID_PACKAGE_CONFIG`", + "label": "ERR_INVALID_PACKAGE_CONFIG", + "apiSymbol": "ERR_INVALID_PACKAGE_CONFIG", + "depth": 1, + "scope": "api", + "anchor": "err_invalid_package_config", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:fe9602bc0282", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_package_target`", + "signature": "`ERR_INVALID_PACKAGE_TARGET`", + "label": "ERR_INVALID_PACKAGE_TARGET", + "apiSymbol": "ERR_INVALID_PACKAGE_TARGET", + "depth": 1, + "scope": "api", + "anchor": "err_invalid_package_target", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:3a0d3a3ba68f", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_protocol`", + "signature": "`ERR_INVALID_PROTOCOL`", + "label": "ERR_INVALID_PROTOCOL", + "apiSymbol": "ERR_INVALID_PROTOCOL", + "depth": 1, + "scope": "api", + "anchor": "err_invalid_protocol", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:75e3a41fb34b", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_repl_eval_config`", + "signature": "`ERR_INVALID_REPL_EVAL_CONFIG`", + "label": "ERR_INVALID_REPL_EVAL_CONFIG", + "apiSymbol": "ERR_INVALID_REPL_EVAL_CONFIG", + "depth": 1, + "scope": "api", + "anchor": "err_invalid_repl_eval_config", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:b663c591c992", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_repl_input`", + "signature": "`ERR_INVALID_REPL_INPUT`", + "label": "ERR_INVALID_REPL_INPUT", + "apiSymbol": "ERR_INVALID_REPL_INPUT", + "depth": 1, + "scope": "api", + "anchor": "err_invalid_repl_input", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:653dc9b273c7", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_return_property`", + "signature": "`ERR_INVALID_RETURN_PROPERTY`", + "label": "ERR_INVALID_RETURN_PROPERTY", + "apiSymbol": "ERR_INVALID_RETURN_PROPERTY", + "depth": 1, + "scope": "api", + "anchor": "err_invalid_return_property", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:3bfa1fc8e81f", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_return_property_value`", + "signature": "`ERR_INVALID_RETURN_PROPERTY_VALUE`", + "label": "ERR_INVALID_RETURN_PROPERTY_VALUE", + "apiSymbol": "ERR_INVALID_RETURN_PROPERTY_VALUE", + "depth": 1, + "scope": "api", + "anchor": "err_invalid_return_property_value", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:375a4ca77b0e", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_return_value`", + "signature": "`ERR_INVALID_RETURN_VALUE`", + "label": "ERR_INVALID_RETURN_VALUE", + "apiSymbol": "ERR_INVALID_RETURN_VALUE", + "depth": 1, + "scope": "api", + "anchor": "err_invalid_return_value", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:e4be3ac49c4b", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_state`", + "signature": "`ERR_INVALID_STATE`", + "label": "ERR_INVALID_STATE", + "apiSymbol": "ERR_INVALID_STATE", + "depth": 1, + "scope": "api", + "anchor": "err_invalid_state", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:09c35593d92e", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_sync_fork_input`", + "signature": "`ERR_INVALID_SYNC_FORK_INPUT`", + "label": "ERR_INVALID_SYNC_FORK_INPUT", + "apiSymbol": "ERR_INVALID_SYNC_FORK_INPUT", + "depth": 1, + "scope": "api", + "anchor": "err_invalid_sync_fork_input", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:2a3808fea063", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_this`", + "signature": "`ERR_INVALID_THIS`", + "label": "ERR_INVALID_THIS", + "apiSymbol": "ERR_INVALID_THIS", + "depth": 1, + "scope": "api", + "anchor": "err_invalid_this", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:b24b3b5e4c56", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_tuple`", + "signature": "`ERR_INVALID_TUPLE`", + "label": "ERR_INVALID_TUPLE", + "apiSymbol": "ERR_INVALID_TUPLE", + "depth": 1, + "scope": "api", + "anchor": "err_invalid_tuple", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:6dc192ecfb0d", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_typescript_syntax`", + "signature": "`ERR_INVALID_TYPESCRIPT_SYNTAX`", + "label": "ERR_INVALID_TYPESCRIPT_SYNTAX", + "apiSymbol": "ERR_INVALID_TYPESCRIPT_SYNTAX", + "depth": 1, + "scope": "api", + "anchor": "err_invalid_typescript_syntax", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:f9abbf482424", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_uri`", + "signature": "`ERR_INVALID_URI`", + "label": "ERR_INVALID_URI", + "apiSymbol": "ERR_INVALID_URI", + "depth": 1, + "scope": "api", + "anchor": "err_invalid_uri", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:92f25e7991fc", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_url`", + "signature": "`ERR_INVALID_URL`", + "label": "ERR_INVALID_URL", + "apiSymbol": "ERR_INVALID_URL", + "depth": 1, + "scope": "api", + "anchor": "err_invalid_url", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:b69c245cb7c8", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_url_pattern`", + "signature": "`ERR_INVALID_URL_PATTERN`", + "label": "ERR_INVALID_URL_PATTERN", + "apiSymbol": "ERR_INVALID_URL_PATTERN", + "depth": 1, + "scope": "api", + "anchor": "err_invalid_url_pattern", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:76b7cd91c307", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_url_scheme`", + "signature": "`ERR_INVALID_URL_SCHEME`", + "label": "ERR_INVALID_URL_SCHEME", + "apiSymbol": "ERR_INVALID_URL_SCHEME", + "depth": 1, + "scope": "api", + "anchor": "err_invalid_url_scheme", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:d5d87ccd1dfc", + "chapter": "errors", + "kind": "module", + "name": "`err_ipc_channel_closed`", + "signature": "`ERR_IPC_CHANNEL_CLOSED`", + "label": "ERR_IPC_CHANNEL_CLOSED", + "apiSymbol": "ERR_IPC_CHANNEL_CLOSED", + "depth": 1, + "scope": "api", + "anchor": "err_ipc_channel_closed", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:4971255ca18b", + "chapter": "errors", + "kind": "module", + "name": "`err_ipc_disconnected`", + "signature": "`ERR_IPC_DISCONNECTED`", + "label": "ERR_IPC_DISCONNECTED", + "apiSymbol": "ERR_IPC_DISCONNECTED", + "depth": 1, + "scope": "api", + "anchor": "err_ipc_disconnected", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:9fd1f6a22380", + "chapter": "errors", + "kind": "module", + "name": "`err_ipc_one_pipe`", + "signature": "`ERR_IPC_ONE_PIPE`", + "label": "ERR_IPC_ONE_PIPE", + "apiSymbol": "ERR_IPC_ONE_PIPE", + "depth": 1, + "scope": "api", + "anchor": "err_ipc_one_pipe", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:ec9eacaf44bb", + "chapter": "errors", + "kind": "module", + "name": "`err_ipc_sync_fork`", + "signature": "`ERR_IPC_SYNC_FORK`", + "label": "ERR_IPC_SYNC_FORK", + "apiSymbol": "ERR_IPC_SYNC_FORK", + "depth": 1, + "scope": "api", + "anchor": "err_ipc_sync_fork", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:b94438c2e664", + "chapter": "errors", + "kind": "module", + "name": "`err_ip_blocked`", + "signature": "`ERR_IP_BLOCKED`", + "label": "ERR_IP_BLOCKED", + "apiSymbol": "ERR_IP_BLOCKED", + "depth": 1, + "scope": "api", + "anchor": "err_ip_blocked", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:bc06954a62f1", + "chapter": "errors", + "kind": "module", + "name": "`err_loader_chain_incomplete`", + "signature": "`ERR_LOADER_CHAIN_INCOMPLETE`", + "label": "ERR_LOADER_CHAIN_INCOMPLETE", + "apiSymbol": "ERR_LOADER_CHAIN_INCOMPLETE", + "depth": 1, + "scope": "api", + "anchor": "err_loader_chain_incomplete", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:0581aba04342", + "chapter": "errors", + "kind": "module", + "name": "`err_load_sqlite_extension`", + "signature": "`ERR_LOAD_SQLITE_EXTENSION`", + "label": "ERR_LOAD_SQLITE_EXTENSION", + "apiSymbol": "ERR_LOAD_SQLITE_EXTENSION", + "depth": 1, + "scope": "api", + "anchor": "err_load_sqlite_extension", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:af17d53d2b2e", + "chapter": "errors", + "kind": "module", + "name": "`err_memory_allocation_failed`", + "signature": "`ERR_MEMORY_ALLOCATION_FAILED`", + "label": "ERR_MEMORY_ALLOCATION_FAILED", + "apiSymbol": "ERR_MEMORY_ALLOCATION_FAILED", + "depth": 1, + "scope": "api", + "anchor": "err_memory_allocation_failed", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:4b56da64b04a", + "chapter": "errors", + "kind": "module", + "name": "`err_message_target_context_unavailable`", + "signature": "`ERR_MESSAGE_TARGET_CONTEXT_UNAVAILABLE`", + "label": "ERR_MESSAGE_TARGET_CONTEXT_UNAVAILABLE", + "apiSymbol": "ERR_MESSAGE_TARGET_CONTEXT_UNAVAILABLE", + "depth": 1, + "scope": "api", + "anchor": "err_message_target_context_unavailable", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:de7e518366d4", + "chapter": "errors", + "kind": "module", + "name": "`err_method_not_implemented`", + "signature": "`ERR_METHOD_NOT_IMPLEMENTED`", + "label": "ERR_METHOD_NOT_IMPLEMENTED", + "apiSymbol": "ERR_METHOD_NOT_IMPLEMENTED", + "depth": 1, + "scope": "api", + "anchor": "err_method_not_implemented", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:dfcc128d38c7", + "chapter": "errors", + "kind": "module", + "name": "`err_missing_args`", + "signature": "`ERR_MISSING_ARGS`", + "label": "ERR_MISSING_ARGS", + "apiSymbol": "ERR_MISSING_ARGS", + "depth": 1, + "scope": "api", + "anchor": "err_missing_args", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:313e71dcfe5c", + "chapter": "errors", + "kind": "module", + "name": "`err_missing_option`", + "signature": "`ERR_MISSING_OPTION`", + "label": "ERR_MISSING_OPTION", + "apiSymbol": "ERR_MISSING_OPTION", + "depth": 1, + "scope": "api", + "anchor": "err_missing_option", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:d06f21bcd9cc", + "chapter": "errors", + "kind": "module", + "name": "`err_missing_passphrase`", + "signature": "`ERR_MISSING_PASSPHRASE`", + "label": "ERR_MISSING_PASSPHRASE", + "apiSymbol": "ERR_MISSING_PASSPHRASE", + "depth": 1, + "scope": "api", + "anchor": "err_missing_passphrase", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:e78d70175dea", + "chapter": "errors", + "kind": "module", + "name": "`err_missing_platform_for_worker`", + "signature": "`ERR_MISSING_PLATFORM_FOR_WORKER`", + "label": "ERR_MISSING_PLATFORM_FOR_WORKER", + "apiSymbol": "ERR_MISSING_PLATFORM_FOR_WORKER", + "depth": 1, + "scope": "api", + "anchor": "err_missing_platform_for_worker", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:063e585c6b1d", + "chapter": "errors", + "kind": "module", + "name": "`err_module_link_mismatch`", + "signature": "`ERR_MODULE_LINK_MISMATCH`", + "label": "ERR_MODULE_LINK_MISMATCH", + "apiSymbol": "ERR_MODULE_LINK_MISMATCH", + "depth": 1, + "scope": "api", + "anchor": "err_module_link_mismatch", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:485c3b061474", + "chapter": "errors", + "kind": "module", + "name": "`err_module_not_found`", + "signature": "`ERR_MODULE_NOT_FOUND`", + "label": "ERR_MODULE_NOT_FOUND", + "apiSymbol": "ERR_MODULE_NOT_FOUND", + "depth": 1, + "scope": "api", + "anchor": "err_module_not_found", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:6e9bc14ac5af", + "chapter": "errors", + "kind": "module", + "name": "`err_multiple_callback`", + "signature": "`ERR_MULTIPLE_CALLBACK`", + "label": "ERR_MULTIPLE_CALLBACK", + "apiSymbol": "ERR_MULTIPLE_CALLBACK", + "depth": 1, + "scope": "api", + "anchor": "err_multiple_callback", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:c2dc7c56f4c0", + "chapter": "errors", + "kind": "module", + "name": "`err_napi_cons_function`", + "signature": "`ERR_NAPI_CONS_FUNCTION`", + "label": "ERR_NAPI_CONS_FUNCTION", + "apiSymbol": "ERR_NAPI_CONS_FUNCTION", + "depth": 1, + "scope": "api", + "anchor": "err_napi_cons_function", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:53aff93d7d88", + "chapter": "errors", + "kind": "module", + "name": "`err_napi_invalid_dataview_args`", + "signature": "`ERR_NAPI_INVALID_DATAVIEW_ARGS`", + "label": "ERR_NAPI_INVALID_DATAVIEW_ARGS", + "apiSymbol": "ERR_NAPI_INVALID_DATAVIEW_ARGS", + "depth": 1, + "scope": "api", + "anchor": "err_napi_invalid_dataview_args", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:94defbce2694", + "chapter": "errors", + "kind": "module", + "name": "`err_napi_invalid_typedarray_alignment`", + "signature": "`ERR_NAPI_INVALID_TYPEDARRAY_ALIGNMENT`", + "label": "ERR_NAPI_INVALID_TYPEDARRAY_ALIGNMENT", + "apiSymbol": "ERR_NAPI_INVALID_TYPEDARRAY_ALIGNMENT", + "depth": 1, + "scope": "api", + "anchor": "err_napi_invalid_typedarray_alignment", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:f8051e00f147", + "chapter": "errors", + "kind": "module", + "name": "`err_napi_invalid_typedarray_length`", + "signature": "`ERR_NAPI_INVALID_TYPEDARRAY_LENGTH`", + "label": "ERR_NAPI_INVALID_TYPEDARRAY_LENGTH", + "apiSymbol": "ERR_NAPI_INVALID_TYPEDARRAY_LENGTH", + "depth": 1, + "scope": "api", + "anchor": "err_napi_invalid_typedarray_length", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:275169be88f4", + "chapter": "errors", + "kind": "module", + "name": "`err_napi_tsfn_call_js`", + "signature": "`ERR_NAPI_TSFN_CALL_JS`", + "label": "ERR_NAPI_TSFN_CALL_JS", + "apiSymbol": "ERR_NAPI_TSFN_CALL_JS", + "depth": 1, + "scope": "api", + "anchor": "err_napi_tsfn_call_js", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:b14df51bc8d4", + "chapter": "errors", + "kind": "module", + "name": "`err_napi_tsfn_get_undefined`", + "signature": "`ERR_NAPI_TSFN_GET_UNDEFINED`", + "label": "ERR_NAPI_TSFN_GET_UNDEFINED", + "apiSymbol": "ERR_NAPI_TSFN_GET_UNDEFINED", + "depth": 1, + "scope": "api", + "anchor": "err_napi_tsfn_get_undefined", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:7f7a9439872d", + "chapter": "errors", + "kind": "module", + "name": "`err_non_context_aware_disabled`", + "signature": "`ERR_NON_CONTEXT_AWARE_DISABLED`", + "label": "ERR_NON_CONTEXT_AWARE_DISABLED", + "apiSymbol": "ERR_NON_CONTEXT_AWARE_DISABLED", + "depth": 1, + "scope": "api", + "anchor": "err_non_context_aware_disabled", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:fa53c0c34106", + "chapter": "errors", + "kind": "module", + "name": "`err_not_building_snapshot`", + "signature": "`ERR_NOT_BUILDING_SNAPSHOT`", + "label": "ERR_NOT_BUILDING_SNAPSHOT", + "apiSymbol": "ERR_NOT_BUILDING_SNAPSHOT", + "depth": 1, + "scope": "api", + "anchor": "err_not_building_snapshot", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:2e2f1782dc4b", + "chapter": "errors", + "kind": "module", + "name": "`err_not_in_single_executable_application`", + "signature": "`ERR_NOT_IN_SINGLE_EXECUTABLE_APPLICATION`", + "label": "ERR_NOT_IN_SINGLE_EXECUTABLE_APPLICATION", + "apiSymbol": "ERR_NOT_IN_SINGLE_EXECUTABLE_APPLICATION", + "depth": 1, + "scope": "api", + "anchor": "err_not_in_single_executable_application", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:bc59ef481c10", + "chapter": "errors", + "kind": "module", + "name": "`err_not_supported_in_snapshot`", + "signature": "`ERR_NOT_SUPPORTED_IN_SNAPSHOT`", + "label": "ERR_NOT_SUPPORTED_IN_SNAPSHOT", + "apiSymbol": "ERR_NOT_SUPPORTED_IN_SNAPSHOT", + "depth": 1, + "scope": "api", + "anchor": "err_not_supported_in_snapshot", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:b3c2351d41a5", + "chapter": "errors", + "kind": "module", + "name": "`err_no_crypto`", + "signature": "`ERR_NO_CRYPTO`", + "label": "ERR_NO_CRYPTO", + "apiSymbol": "ERR_NO_CRYPTO", + "depth": 1, + "scope": "api", + "anchor": "err_no_crypto", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:cae28646b828", + "chapter": "errors", + "kind": "module", + "name": "`err_no_icu`", + "signature": "`ERR_NO_ICU`", + "label": "ERR_NO_ICU", + "apiSymbol": "ERR_NO_ICU", + "depth": 1, + "scope": "api", + "anchor": "err_no_icu", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:2a21cdce7923", + "chapter": "errors", + "kind": "module", + "name": "`err_no_typescript`", + "signature": "`ERR_NO_TYPESCRIPT`", + "label": "ERR_NO_TYPESCRIPT", + "apiSymbol": "ERR_NO_TYPESCRIPT", + "depth": 1, + "scope": "api", + "anchor": "err_no_typescript", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:f8b8628fb9ee", + "chapter": "errors", + "kind": "module", + "name": "`err_operation_failed`", + "signature": "`ERR_OPERATION_FAILED`", + "label": "ERR_OPERATION_FAILED", + "apiSymbol": "ERR_OPERATION_FAILED", + "depth": 1, + "scope": "api", + "anchor": "err_operation_failed", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:622cef05a25b", + "chapter": "errors", + "kind": "module", + "name": "`err_options_before_bootstrapping`", + "signature": "`ERR_OPTIONS_BEFORE_BOOTSTRAPPING`", + "label": "ERR_OPTIONS_BEFORE_BOOTSTRAPPING", + "apiSymbol": "ERR_OPTIONS_BEFORE_BOOTSTRAPPING", + "depth": 1, + "scope": "api", + "anchor": "err_options_before_bootstrapping", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:c7af89c248a0", + "chapter": "errors", + "kind": "module", + "name": "`err_out_of_range`", + "signature": "`ERR_OUT_OF_RANGE`", + "label": "ERR_OUT_OF_RANGE", + "apiSymbol": "ERR_OUT_OF_RANGE", + "depth": 1, + "scope": "api", + "anchor": "err_out_of_range", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:520ffb827726", + "chapter": "errors", + "kind": "module", + "name": "`err_package_import_not_defined`", + "signature": "`ERR_PACKAGE_IMPORT_NOT_DEFINED`", + "label": "ERR_PACKAGE_IMPORT_NOT_DEFINED", + "apiSymbol": "ERR_PACKAGE_IMPORT_NOT_DEFINED", + "depth": 1, + "scope": "api", + "anchor": "err_package_import_not_defined", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:9a703bb883e6", + "chapter": "errors", + "kind": "module", + "name": "`err_package_path_not_exported`", + "signature": "`ERR_PACKAGE_PATH_NOT_EXPORTED`", + "label": "ERR_PACKAGE_PATH_NOT_EXPORTED", + "apiSymbol": "ERR_PACKAGE_PATH_NOT_EXPORTED", + "depth": 1, + "scope": "api", + "anchor": "err_package_path_not_exported", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:68e78368d1ac", + "chapter": "errors", + "kind": "module", + "name": "`err_parse_args_invalid_option_value`", + "signature": "`ERR_PARSE_ARGS_INVALID_OPTION_VALUE`", + "label": "ERR_PARSE_ARGS_INVALID_OPTION_VALUE", + "apiSymbol": "ERR_PARSE_ARGS_INVALID_OPTION_VALUE", + "depth": 1, + "scope": "api", + "anchor": "err_parse_args_invalid_option_value", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:b6cf473b4bc8", + "chapter": "errors", + "kind": "module", + "name": "`err_parse_args_unexpected_positional`", + "signature": "`ERR_PARSE_ARGS_UNEXPECTED_POSITIONAL`", + "label": "ERR_PARSE_ARGS_UNEXPECTED_POSITIONAL", + "apiSymbol": "ERR_PARSE_ARGS_UNEXPECTED_POSITIONAL", + "depth": 1, + "scope": "api", + "anchor": "err_parse_args_unexpected_positional", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:0a551099584b", + "chapter": "errors", + "kind": "module", + "name": "`err_parse_args_unknown_option`", + "signature": "`ERR_PARSE_ARGS_UNKNOWN_OPTION`", + "label": "ERR_PARSE_ARGS_UNKNOWN_OPTION", + "apiSymbol": "ERR_PARSE_ARGS_UNKNOWN_OPTION", + "depth": 1, + "scope": "api", + "anchor": "err_parse_args_unknown_option", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:05c96c0d54cf", + "chapter": "errors", + "kind": "module", + "name": "`err_performance_invalid_timestamp`", + "signature": "`ERR_PERFORMANCE_INVALID_TIMESTAMP`", + "label": "ERR_PERFORMANCE_INVALID_TIMESTAMP", + "apiSymbol": "ERR_PERFORMANCE_INVALID_TIMESTAMP", + "depth": 1, + "scope": "api", + "anchor": "err_performance_invalid_timestamp", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:8172446365db", + "chapter": "errors", + "kind": "module", + "name": "`err_performance_measure_invalid_options`", + "signature": "`ERR_PERFORMANCE_MEASURE_INVALID_OPTIONS`", + "label": "ERR_PERFORMANCE_MEASURE_INVALID_OPTIONS", + "apiSymbol": "ERR_PERFORMANCE_MEASURE_INVALID_OPTIONS", + "depth": 1, + "scope": "api", + "anchor": "err_performance_measure_invalid_options", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:d321b9e932ef", + "chapter": "errors", + "kind": "module", + "name": "`err_proto_access`", + "signature": "`ERR_PROTO_ACCESS`", + "label": "ERR_PROTO_ACCESS", + "apiSymbol": "ERR_PROTO_ACCESS", + "depth": 1, + "scope": "api", + "anchor": "err_proto_access", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:c0f95633ca00", + "chapter": "errors", + "kind": "module", + "name": "`err_proxy_invalid_config`", + "signature": "`ERR_PROXY_INVALID_CONFIG`", + "label": "ERR_PROXY_INVALID_CONFIG", + "apiSymbol": "ERR_PROXY_INVALID_CONFIG", + "depth": 1, + "scope": "api", + "anchor": "err_proxy_invalid_config", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:914c14a158a4", + "chapter": "errors", + "kind": "module", + "name": "`err_proxy_tunnel`", + "signature": "`ERR_PROXY_TUNNEL`", + "label": "ERR_PROXY_TUNNEL", + "apiSymbol": "ERR_PROXY_TUNNEL", + "depth": 1, + "scope": "api", + "anchor": "err_proxy_tunnel", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:99ded9f60d07", + "chapter": "errors", + "kind": "module", + "name": "`err_quic_application_error`", + "signature": "`ERR_QUIC_APPLICATION_ERROR`", + "label": "ERR_QUIC_APPLICATION_ERROR", + "apiSymbol": "ERR_QUIC_APPLICATION_ERROR", + "depth": 1, + "scope": "api", + "anchor": "err_quic_application_error", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:8dab3930d180", + "chapter": "errors", + "kind": "module", + "name": "`err_quic_connection_failed`", + "signature": "`ERR_QUIC_CONNECTION_FAILED`", + "label": "ERR_QUIC_CONNECTION_FAILED", + "apiSymbol": "ERR_QUIC_CONNECTION_FAILED", + "depth": 1, + "scope": "api", + "anchor": "err_quic_connection_failed", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:a6832d79a601", + "chapter": "errors", + "kind": "module", + "name": "`err_quic_endpoint_closed`", + "signature": "`ERR_QUIC_ENDPOINT_CLOSED`", + "label": "ERR_QUIC_ENDPOINT_CLOSED", + "apiSymbol": "ERR_QUIC_ENDPOINT_CLOSED", + "depth": 1, + "scope": "api", + "anchor": "err_quic_endpoint_closed", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:9b3a144c5163", + "chapter": "errors", + "kind": "module", + "name": "`err_quic_open_stream_failed`", + "signature": "`ERR_QUIC_OPEN_STREAM_FAILED`", + "label": "ERR_QUIC_OPEN_STREAM_FAILED", + "apiSymbol": "ERR_QUIC_OPEN_STREAM_FAILED", + "depth": 1, + "scope": "api", + "anchor": "err_quic_open_stream_failed", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:266e07dc7ced", + "chapter": "errors", + "kind": "module", + "name": "`err_quic_transport_error`", + "signature": "`ERR_QUIC_TRANSPORT_ERROR`", + "label": "ERR_QUIC_TRANSPORT_ERROR", + "apiSymbol": "ERR_QUIC_TRANSPORT_ERROR", + "depth": 1, + "scope": "api", + "anchor": "err_quic_transport_error", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:a7a688eeb772", + "chapter": "errors", + "kind": "module", + "name": "`err_quic_version_negotiation_error`", + "signature": "`ERR_QUIC_VERSION_NEGOTIATION_ERROR`", + "label": "ERR_QUIC_VERSION_NEGOTIATION_ERROR", + "apiSymbol": "ERR_QUIC_VERSION_NEGOTIATION_ERROR", + "depth": 1, + "scope": "api", + "anchor": "err_quic_version_negotiation_error", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:841aa674a5cf", + "chapter": "errors", + "kind": "module", + "name": "`err_require_async_module`", + "signature": "`ERR_REQUIRE_ASYNC_MODULE`", + "label": "ERR_REQUIRE_ASYNC_MODULE", + "apiSymbol": "ERR_REQUIRE_ASYNC_MODULE", + "depth": 1, + "scope": "api", + "anchor": "err_require_async_module", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:4c111078d4e6", + "chapter": "errors", + "kind": "module", + "name": "`err_require_cycle_module`", + "signature": "`ERR_REQUIRE_CYCLE_MODULE`", + "label": "ERR_REQUIRE_CYCLE_MODULE", + "apiSymbol": "ERR_REQUIRE_CYCLE_MODULE", + "depth": 1, + "scope": "api", + "anchor": "err_require_cycle_module", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:40fd8c39f28b", + "chapter": "errors", + "kind": "module", + "name": "`err_require_esm`", + "signature": "`ERR_REQUIRE_ESM`", + "label": "ERR_REQUIRE_ESM", + "apiSymbol": "ERR_REQUIRE_ESM", + "depth": 1, + "scope": "api", + "anchor": "err_require_esm", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:50007aab8780", + "chapter": "errors", + "kind": "module", + "name": "`err_script_execution_interrupted`", + "signature": "`ERR_SCRIPT_EXECUTION_INTERRUPTED`", + "label": "ERR_SCRIPT_EXECUTION_INTERRUPTED", + "apiSymbol": "ERR_SCRIPT_EXECUTION_INTERRUPTED", + "depth": 1, + "scope": "api", + "anchor": "err_script_execution_interrupted", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:d21ae4c4d6b4", + "chapter": "errors", + "kind": "module", + "name": "`err_script_execution_timeout`", + "signature": "`ERR_SCRIPT_EXECUTION_TIMEOUT`", + "label": "ERR_SCRIPT_EXECUTION_TIMEOUT", + "apiSymbol": "ERR_SCRIPT_EXECUTION_TIMEOUT", + "depth": 1, + "scope": "api", + "anchor": "err_script_execution_timeout", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:c25c0680648b", + "chapter": "errors", + "kind": "module", + "name": "`err_server_already_listen`", + "signature": "`ERR_SERVER_ALREADY_LISTEN`", + "label": "ERR_SERVER_ALREADY_LISTEN", + "apiSymbol": "ERR_SERVER_ALREADY_LISTEN", + "depth": 1, + "scope": "api", + "anchor": "err_server_already_listen", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:b8a24ea91421", + "chapter": "errors", + "kind": "module", + "name": "`err_server_not_running`", + "signature": "`ERR_SERVER_NOT_RUNNING`", + "label": "ERR_SERVER_NOT_RUNNING", + "apiSymbol": "ERR_SERVER_NOT_RUNNING", + "depth": 1, + "scope": "api", + "anchor": "err_server_not_running", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:8ceeb2ed91b0", + "chapter": "errors", + "kind": "module", + "name": "`err_single_executable_application_asset_not_found`", + "signature": "`ERR_SINGLE_EXECUTABLE_APPLICATION_ASSET_NOT_FOUND`", + "label": "ERR_SINGLE_EXECUTABLE_APPLICATION_ASSET_NOT_FOUND", + "apiSymbol": "ERR_SINGLE_EXECUTABLE_APPLICATION_ASSET_NOT_FOUND", + "depth": 1, + "scope": "api", + "anchor": "err_single_executable_application_asset_not_found", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:a865f041bb7c", + "chapter": "errors", + "kind": "module", + "name": "`err_socket_already_bound`", + "signature": "`ERR_SOCKET_ALREADY_BOUND`", + "label": "ERR_SOCKET_ALREADY_BOUND", + "apiSymbol": "ERR_SOCKET_ALREADY_BOUND", + "depth": 1, + "scope": "api", + "anchor": "err_socket_already_bound", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:83b2c6cf5b3f", + "chapter": "errors", + "kind": "module", + "name": "`err_socket_bad_buffer_size`", + "signature": "`ERR_SOCKET_BAD_BUFFER_SIZE`", + "label": "ERR_SOCKET_BAD_BUFFER_SIZE", + "apiSymbol": "ERR_SOCKET_BAD_BUFFER_SIZE", + "depth": 1, + "scope": "api", + "anchor": "err_socket_bad_buffer_size", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:8cfa222edffd", + "chapter": "errors", + "kind": "module", + "name": "`err_socket_bad_port`", + "signature": "`ERR_SOCKET_BAD_PORT`", + "label": "ERR_SOCKET_BAD_PORT", + "apiSymbol": "ERR_SOCKET_BAD_PORT", + "depth": 1, + "scope": "api", + "anchor": "err_socket_bad_port", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:d32e72f67ef4", + "chapter": "errors", + "kind": "module", + "name": "`err_socket_bad_type`", + "signature": "`ERR_SOCKET_BAD_TYPE`", + "label": "ERR_SOCKET_BAD_TYPE", + "apiSymbol": "ERR_SOCKET_BAD_TYPE", + "depth": 1, + "scope": "api", + "anchor": "err_socket_bad_type", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:53979642f967", + "chapter": "errors", + "kind": "module", + "name": "`err_socket_buffer_size`", + "signature": "`ERR_SOCKET_BUFFER_SIZE`", + "label": "ERR_SOCKET_BUFFER_SIZE", + "apiSymbol": "ERR_SOCKET_BUFFER_SIZE", + "depth": 1, + "scope": "api", + "anchor": "err_socket_buffer_size", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:c0185664eebe", + "chapter": "errors", + "kind": "module", + "name": "`err_socket_closed`", + "signature": "`ERR_SOCKET_CLOSED`", + "label": "ERR_SOCKET_CLOSED", + "apiSymbol": "ERR_SOCKET_CLOSED", + "depth": 1, + "scope": "api", + "anchor": "err_socket_closed", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:8b292afa66e0", + "chapter": "errors", + "kind": "module", + "name": "`err_socket_closed_before_connection`", + "signature": "`ERR_SOCKET_CLOSED_BEFORE_CONNECTION`", + "label": "ERR_SOCKET_CLOSED_BEFORE_CONNECTION", + "apiSymbol": "ERR_SOCKET_CLOSED_BEFORE_CONNECTION", + "depth": 1, + "scope": "api", + "anchor": "err_socket_closed_before_connection", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:34d53c146e1f", + "chapter": "errors", + "kind": "module", + "name": "`err_socket_connection_timeout`", + "signature": "`ERR_SOCKET_CONNECTION_TIMEOUT`", + "label": "ERR_SOCKET_CONNECTION_TIMEOUT", + "apiSymbol": "ERR_SOCKET_CONNECTION_TIMEOUT", + "depth": 1, + "scope": "api", + "anchor": "err_socket_connection_timeout", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:3406f55a37c2", + "chapter": "errors", + "kind": "module", + "name": "`err_socket_dgram_is_connected`", + "signature": "`ERR_SOCKET_DGRAM_IS_CONNECTED`", + "label": "ERR_SOCKET_DGRAM_IS_CONNECTED", + "apiSymbol": "ERR_SOCKET_DGRAM_IS_CONNECTED", + "depth": 1, + "scope": "api", + "anchor": "err_socket_dgram_is_connected", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:c1e7ba9f66af", + "chapter": "errors", + "kind": "module", + "name": "`err_socket_dgram_not_connected`", + "signature": "`ERR_SOCKET_DGRAM_NOT_CONNECTED`", + "label": "ERR_SOCKET_DGRAM_NOT_CONNECTED", + "apiSymbol": "ERR_SOCKET_DGRAM_NOT_CONNECTED", + "depth": 1, + "scope": "api", + "anchor": "err_socket_dgram_not_connected", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:d117e91a9526", + "chapter": "errors", + "kind": "module", + "name": "`err_socket_dgram_not_running`", + "signature": "`ERR_SOCKET_DGRAM_NOT_RUNNING`", + "label": "ERR_SOCKET_DGRAM_NOT_RUNNING", + "apiSymbol": "ERR_SOCKET_DGRAM_NOT_RUNNING", + "depth": 1, + "scope": "api", + "anchor": "err_socket_dgram_not_running", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:e1def23be437", + "chapter": "errors", + "kind": "module", + "name": "`err_source_map_corrupt`", + "signature": "`ERR_SOURCE_MAP_CORRUPT`", + "label": "ERR_SOURCE_MAP_CORRUPT", + "apiSymbol": "ERR_SOURCE_MAP_CORRUPT", + "depth": 1, + "scope": "api", + "anchor": "err_source_map_corrupt", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:2d37dafaac37", + "chapter": "errors", + "kind": "module", + "name": "`err_source_map_missing_source`", + "signature": "`ERR_SOURCE_MAP_MISSING_SOURCE`", + "label": "ERR_SOURCE_MAP_MISSING_SOURCE", + "apiSymbol": "ERR_SOURCE_MAP_MISSING_SOURCE", + "depth": 1, + "scope": "api", + "anchor": "err_source_map_missing_source", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:cc70603d1f39", + "chapter": "errors", + "kind": "module", + "name": "`err_source_phase_not_defined`", + "signature": "`ERR_SOURCE_PHASE_NOT_DEFINED`", + "label": "ERR_SOURCE_PHASE_NOT_DEFINED", + "apiSymbol": "ERR_SOURCE_PHASE_NOT_DEFINED", + "depth": 1, + "scope": "api", + "anchor": "err_source_phase_not_defined", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:4df0cee6f207", + "chapter": "errors", + "kind": "module", + "name": "`err_sqlite_error`", + "signature": "`ERR_SQLITE_ERROR`", + "label": "ERR_SQLITE_ERROR", + "apiSymbol": "ERR_SQLITE_ERROR", + "depth": 1, + "scope": "api", + "anchor": "err_sqlite_error", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:be361a517f6f", + "chapter": "errors", + "kind": "module", + "name": "`err_sri_parse`", + "signature": "`ERR_SRI_PARSE`", + "label": "ERR_SRI_PARSE", + "apiSymbol": "ERR_SRI_PARSE", + "depth": 1, + "scope": "api", + "anchor": "err_sri_parse", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:333336c0237e", + "chapter": "errors", + "kind": "module", + "name": "`err_stream_already_finished`", + "signature": "`ERR_STREAM_ALREADY_FINISHED`", + "label": "ERR_STREAM_ALREADY_FINISHED", + "apiSymbol": "ERR_STREAM_ALREADY_FINISHED", + "depth": 1, + "scope": "api", + "anchor": "err_stream_already_finished", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:b3cb594cb7f5", + "chapter": "errors", + "kind": "module", + "name": "`err_stream_cannot_pipe`", + "signature": "`ERR_STREAM_CANNOT_PIPE`", + "label": "ERR_STREAM_CANNOT_PIPE", + "apiSymbol": "ERR_STREAM_CANNOT_PIPE", + "depth": 1, + "scope": "api", + "anchor": "err_stream_cannot_pipe", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:7b855ad7e3a0", + "chapter": "errors", + "kind": "module", + "name": "`err_stream_destroyed`", + "signature": "`ERR_STREAM_DESTROYED`", + "label": "ERR_STREAM_DESTROYED", + "apiSymbol": "ERR_STREAM_DESTROYED", + "depth": 1, + "scope": "api", + "anchor": "err_stream_destroyed", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:b69c141eb822", + "chapter": "errors", + "kind": "module", + "name": "`err_stream_null_values`", + "signature": "`ERR_STREAM_NULL_VALUES`", + "label": "ERR_STREAM_NULL_VALUES", + "apiSymbol": "ERR_STREAM_NULL_VALUES", + "depth": 1, + "scope": "api", + "anchor": "err_stream_null_values", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:8e3956acad04", + "chapter": "errors", + "kind": "module", + "name": "`err_stream_premature_close`", + "signature": "`ERR_STREAM_PREMATURE_CLOSE`", + "label": "ERR_STREAM_PREMATURE_CLOSE", + "apiSymbol": "ERR_STREAM_PREMATURE_CLOSE", + "depth": 1, + "scope": "api", + "anchor": "err_stream_premature_close", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:8fb70188d840", + "chapter": "errors", + "kind": "module", + "name": "`err_stream_push_after_eof`", + "signature": "`ERR_STREAM_PUSH_AFTER_EOF`", + "label": "ERR_STREAM_PUSH_AFTER_EOF", + "apiSymbol": "ERR_STREAM_PUSH_AFTER_EOF", + "depth": 1, + "scope": "api", + "anchor": "err_stream_push_after_eof", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:9478c6541e79", + "chapter": "errors", + "kind": "module", + "name": "`err_stream_unable_to_pipe`", + "signature": "`ERR_STREAM_UNABLE_TO_PIPE`", + "label": "ERR_STREAM_UNABLE_TO_PIPE", + "apiSymbol": "ERR_STREAM_UNABLE_TO_PIPE", + "depth": 1, + "scope": "api", + "anchor": "err_stream_unable_to_pipe", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:7ef9ee9da146", + "chapter": "errors", + "kind": "module", + "name": "`err_stream_unshift_after_end_event`", + "signature": "`ERR_STREAM_UNSHIFT_AFTER_END_EVENT`", + "label": "ERR_STREAM_UNSHIFT_AFTER_END_EVENT", + "apiSymbol": "ERR_STREAM_UNSHIFT_AFTER_END_EVENT", + "depth": 1, + "scope": "api", + "anchor": "err_stream_unshift_after_end_event", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:cc497df672f0", + "chapter": "errors", + "kind": "module", + "name": "`err_stream_wrap`", + "signature": "`ERR_STREAM_WRAP`", + "label": "ERR_STREAM_WRAP", + "apiSymbol": "ERR_STREAM_WRAP", + "depth": 1, + "scope": "api", + "anchor": "err_stream_wrap", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:eaf7a9b7ed04", + "chapter": "errors", + "kind": "module", + "name": "`err_stream_write_after_end`", + "signature": "`ERR_STREAM_WRITE_AFTER_END`", + "label": "ERR_STREAM_WRITE_AFTER_END", + "apiSymbol": "ERR_STREAM_WRITE_AFTER_END", + "depth": 1, + "scope": "api", + "anchor": "err_stream_write_after_end", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:3e8e239722af", + "chapter": "errors", + "kind": "module", + "name": "`err_string_too_long`", + "signature": "`ERR_STRING_TOO_LONG`", + "label": "ERR_STRING_TOO_LONG", + "apiSymbol": "ERR_STRING_TOO_LONG", + "depth": 1, + "scope": "api", + "anchor": "err_string_too_long", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:76b4074e4b93", + "chapter": "errors", + "kind": "module", + "name": "`err_synthetic`", + "signature": "`ERR_SYNTHETIC`", + "label": "ERR_SYNTHETIC", + "apiSymbol": "ERR_SYNTHETIC", + "depth": 1, + "scope": "api", + "anchor": "err_synthetic", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:8a0da2712905", + "chapter": "errors", + "kind": "module", + "name": "`err_system_error`", + "signature": "`ERR_SYSTEM_ERROR`", + "label": "ERR_SYSTEM_ERROR", + "apiSymbol": "ERR_SYSTEM_ERROR", + "depth": 1, + "scope": "api", + "anchor": "err_system_error", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:792502de328b", + "chapter": "errors", + "kind": "module", + "name": "`err_test_failure`", + "signature": "`ERR_TEST_FAILURE`", + "label": "ERR_TEST_FAILURE", + "apiSymbol": "ERR_TEST_FAILURE", + "depth": 1, + "scope": "api", + "anchor": "err_test_failure", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:9b1bacff6b37", + "chapter": "errors", + "kind": "module", + "name": "`err_tls_alpn_callback_invalid_result`", + "signature": "`ERR_TLS_ALPN_CALLBACK_INVALID_RESULT`", + "label": "ERR_TLS_ALPN_CALLBACK_INVALID_RESULT", + "apiSymbol": "ERR_TLS_ALPN_CALLBACK_INVALID_RESULT", + "depth": 1, + "scope": "api", + "anchor": "err_tls_alpn_callback_invalid_result", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:25e1c176c943", + "chapter": "errors", + "kind": "module", + "name": "`err_tls_alpn_callback_with_protocols`", + "signature": "`ERR_TLS_ALPN_CALLBACK_WITH_PROTOCOLS`", + "label": "ERR_TLS_ALPN_CALLBACK_WITH_PROTOCOLS", + "apiSymbol": "ERR_TLS_ALPN_CALLBACK_WITH_PROTOCOLS", + "depth": 1, + "scope": "api", + "anchor": "err_tls_alpn_callback_with_protocols", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:d52b3150fe25", + "chapter": "errors", + "kind": "module", + "name": "`err_tls_cert_altname_format`", + "signature": "`ERR_TLS_CERT_ALTNAME_FORMAT`", + "label": "ERR_TLS_CERT_ALTNAME_FORMAT", + "apiSymbol": "ERR_TLS_CERT_ALTNAME_FORMAT", + "depth": 1, + "scope": "api", + "anchor": "err_tls_cert_altname_format", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:1ff2f1a68547", + "chapter": "errors", + "kind": "module", + "name": "`err_tls_cert_altname_invalid`", + "signature": "`ERR_TLS_CERT_ALTNAME_INVALID`", + "label": "ERR_TLS_CERT_ALTNAME_INVALID", + "apiSymbol": "ERR_TLS_CERT_ALTNAME_INVALID", + "depth": 1, + "scope": "api", + "anchor": "err_tls_cert_altname_invalid", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:9533c0ce8014", + "chapter": "errors", + "kind": "module", + "name": "`err_tls_dh_param_size`", + "signature": "`ERR_TLS_DH_PARAM_SIZE`", + "label": "ERR_TLS_DH_PARAM_SIZE", + "apiSymbol": "ERR_TLS_DH_PARAM_SIZE", + "depth": 1, + "scope": "api", + "anchor": "err_tls_dh_param_size", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:9165fa555354", + "chapter": "errors", + "kind": "module", + "name": "`err_tls_handshake_timeout`", + "signature": "`ERR_TLS_HANDSHAKE_TIMEOUT`", + "label": "ERR_TLS_HANDSHAKE_TIMEOUT", + "apiSymbol": "ERR_TLS_HANDSHAKE_TIMEOUT", + "depth": 1, + "scope": "api", + "anchor": "err_tls_handshake_timeout", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:6c1afc2f4664", + "chapter": "errors", + "kind": "module", + "name": "`err_tls_invalid_context`", + "signature": "`ERR_TLS_INVALID_CONTEXT`", + "label": "ERR_TLS_INVALID_CONTEXT", + "apiSymbol": "ERR_TLS_INVALID_CONTEXT", + "depth": 1, + "scope": "api", + "anchor": "err_tls_invalid_context", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:7b8835838db3", + "chapter": "errors", + "kind": "module", + "name": "`err_tls_invalid_protocol_method`", + "signature": "`ERR_TLS_INVALID_PROTOCOL_METHOD`", + "label": "ERR_TLS_INVALID_PROTOCOL_METHOD", + "apiSymbol": "ERR_TLS_INVALID_PROTOCOL_METHOD", + "depth": 1, + "scope": "api", + "anchor": "err_tls_invalid_protocol_method", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:881be3f296ef", + "chapter": "errors", + "kind": "module", + "name": "`err_tls_invalid_protocol_version`", + "signature": "`ERR_TLS_INVALID_PROTOCOL_VERSION`", + "label": "ERR_TLS_INVALID_PROTOCOL_VERSION", + "apiSymbol": "ERR_TLS_INVALID_PROTOCOL_VERSION", + "depth": 1, + "scope": "api", + "anchor": "err_tls_invalid_protocol_version", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:de0012d185d6", + "chapter": "errors", + "kind": "module", + "name": "`err_tls_invalid_state`", + "signature": "`ERR_TLS_INVALID_STATE`", + "label": "ERR_TLS_INVALID_STATE", + "apiSymbol": "ERR_TLS_INVALID_STATE", + "depth": 1, + "scope": "api", + "anchor": "err_tls_invalid_state", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:f8422050d68c", + "chapter": "errors", + "kind": "module", + "name": "`err_tls_protocol_version_conflict`", + "signature": "`ERR_TLS_PROTOCOL_VERSION_CONFLICT`", + "label": "ERR_TLS_PROTOCOL_VERSION_CONFLICT", + "apiSymbol": "ERR_TLS_PROTOCOL_VERSION_CONFLICT", + "depth": 1, + "scope": "api", + "anchor": "err_tls_protocol_version_conflict", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:07a8f37ce38e", + "chapter": "errors", + "kind": "module", + "name": "`err_tls_psk_set_identity_hint_failed`", + "signature": "`ERR_TLS_PSK_SET_IDENTITY_HINT_FAILED`", + "label": "ERR_TLS_PSK_SET_IDENTITY_HINT_FAILED", + "apiSymbol": "ERR_TLS_PSK_SET_IDENTITY_HINT_FAILED", + "depth": 1, + "scope": "api", + "anchor": "err_tls_psk_set_identity_hint_failed", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:408088d73814", + "chapter": "errors", + "kind": "module", + "name": "`err_tls_renegotiation_disabled`", + "signature": "`ERR_TLS_RENEGOTIATION_DISABLED`", + "label": "ERR_TLS_RENEGOTIATION_DISABLED", + "apiSymbol": "ERR_TLS_RENEGOTIATION_DISABLED", + "depth": 1, + "scope": "api", + "anchor": "err_tls_renegotiation_disabled", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:ebb5c98b76d6", + "chapter": "errors", + "kind": "module", + "name": "`err_tls_required_server_name`", + "signature": "`ERR_TLS_REQUIRED_SERVER_NAME`", + "label": "ERR_TLS_REQUIRED_SERVER_NAME", + "apiSymbol": "ERR_TLS_REQUIRED_SERVER_NAME", + "depth": 1, + "scope": "api", + "anchor": "err_tls_required_server_name", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:c17db8ddab2b", + "chapter": "errors", + "kind": "module", + "name": "`err_tls_session_attack`", + "signature": "`ERR_TLS_SESSION_ATTACK`", + "label": "ERR_TLS_SESSION_ATTACK", + "apiSymbol": "ERR_TLS_SESSION_ATTACK", + "depth": 1, + "scope": "api", + "anchor": "err_tls_session_attack", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:7f7a48296d51", + "chapter": "errors", + "kind": "module", + "name": "`err_tls_sni_from_server`", + "signature": "`ERR_TLS_SNI_FROM_SERVER`", + "label": "ERR_TLS_SNI_FROM_SERVER", + "apiSymbol": "ERR_TLS_SNI_FROM_SERVER", + "depth": 1, + "scope": "api", + "anchor": "err_tls_sni_from_server", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:f577301878e6", + "chapter": "errors", + "kind": "module", + "name": "`err_trace_events_category_required`", + "signature": "`ERR_TRACE_EVENTS_CATEGORY_REQUIRED`", + "label": "ERR_TRACE_EVENTS_CATEGORY_REQUIRED", + "apiSymbol": "ERR_TRACE_EVENTS_CATEGORY_REQUIRED", + "depth": 1, + "scope": "api", + "anchor": "err_trace_events_category_required", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:ceb683fe1aca", + "chapter": "errors", + "kind": "module", + "name": "`err_trace_events_unavailable`", + "signature": "`ERR_TRACE_EVENTS_UNAVAILABLE`", + "label": "ERR_TRACE_EVENTS_UNAVAILABLE", + "apiSymbol": "ERR_TRACE_EVENTS_UNAVAILABLE", + "depth": 1, + "scope": "api", + "anchor": "err_trace_events_unavailable", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:a17fda337ebf", + "chapter": "errors", + "kind": "module", + "name": "`err_trailing_junk_after_stream_end`", + "signature": "`ERR_TRAILING_JUNK_AFTER_STREAM_END`", + "label": "ERR_TRAILING_JUNK_AFTER_STREAM_END", + "apiSymbol": "ERR_TRAILING_JUNK_AFTER_STREAM_END", + "depth": 1, + "scope": "api", + "anchor": "err_trailing_junk_after_stream_end", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:325ad59f0fc1", + "chapter": "errors", + "kind": "module", + "name": "`err_transform_already_transforming`", + "signature": "`ERR_TRANSFORM_ALREADY_TRANSFORMING`", + "label": "ERR_TRANSFORM_ALREADY_TRANSFORMING", + "apiSymbol": "ERR_TRANSFORM_ALREADY_TRANSFORMING", + "depth": 1, + "scope": "api", + "anchor": "err_transform_already_transforming", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:4af3cc70a2ff", + "chapter": "errors", + "kind": "module", + "name": "`err_transform_with_length_0`", + "signature": "`ERR_TRANSFORM_WITH_LENGTH_0`", + "label": "ERR_TRANSFORM_WITH_LENGTH_0", + "apiSymbol": "ERR_TRANSFORM_WITH_LENGTH_0", + "depth": 1, + "scope": "api", + "anchor": "err_transform_with_length_0", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:168d82885391", + "chapter": "errors", + "kind": "module", + "name": "`err_tty_init_failed`", + "signature": "`ERR_TTY_INIT_FAILED`", + "label": "ERR_TTY_INIT_FAILED", + "apiSymbol": "ERR_TTY_INIT_FAILED", + "depth": 1, + "scope": "api", + "anchor": "err_tty_init_failed", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:a7299c1d8dc9", + "chapter": "errors", + "kind": "module", + "name": "`err_unavailable_during_exit`", + "signature": "`ERR_UNAVAILABLE_DURING_EXIT`", + "label": "ERR_UNAVAILABLE_DURING_EXIT", + "apiSymbol": "ERR_UNAVAILABLE_DURING_EXIT", + "depth": 1, + "scope": "api", + "anchor": "err_unavailable_during_exit", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:baf0b69b1860", + "chapter": "errors", + "kind": "module", + "name": "`err_uncaught_exception_capture_already_set`", + "signature": "`ERR_UNCAUGHT_EXCEPTION_CAPTURE_ALREADY_SET`", + "label": "ERR_UNCAUGHT_EXCEPTION_CAPTURE_ALREADY_SET", + "apiSymbol": "ERR_UNCAUGHT_EXCEPTION_CAPTURE_ALREADY_SET", + "depth": 1, + "scope": "api", + "anchor": "err_uncaught_exception_capture_already_set", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:0da0d678a3b4", + "chapter": "errors", + "kind": "module", + "name": "`err_unescaped_characters`", + "signature": "`ERR_UNESCAPED_CHARACTERS`", + "label": "ERR_UNESCAPED_CHARACTERS", + "apiSymbol": "ERR_UNESCAPED_CHARACTERS", + "depth": 1, + "scope": "api", + "anchor": "err_unescaped_characters", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:b60477b88b97", + "chapter": "errors", + "kind": "module", + "name": "`err_unhandled_error`", + "signature": "`ERR_UNHANDLED_ERROR`", + "label": "ERR_UNHANDLED_ERROR", + "apiSymbol": "ERR_UNHANDLED_ERROR", + "depth": 1, + "scope": "api", + "anchor": "err_unhandled_error", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:82ff14d4a596", + "chapter": "errors", + "kind": "module", + "name": "`err_unknown_builtin_module`", + "signature": "`ERR_UNKNOWN_BUILTIN_MODULE`", + "label": "ERR_UNKNOWN_BUILTIN_MODULE", + "apiSymbol": "ERR_UNKNOWN_BUILTIN_MODULE", + "depth": 1, + "scope": "api", + "anchor": "err_unknown_builtin_module", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:94f4cb656785", + "chapter": "errors", + "kind": "module", + "name": "`err_unknown_credential`", + "signature": "`ERR_UNKNOWN_CREDENTIAL`", + "label": "ERR_UNKNOWN_CREDENTIAL", + "apiSymbol": "ERR_UNKNOWN_CREDENTIAL", + "depth": 1, + "scope": "api", + "anchor": "err_unknown_credential", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:7551352d64f6", + "chapter": "errors", + "kind": "module", + "name": "`err_unknown_encoding`", + "signature": "`ERR_UNKNOWN_ENCODING`", + "label": "ERR_UNKNOWN_ENCODING", + "apiSymbol": "ERR_UNKNOWN_ENCODING", + "depth": 1, + "scope": "api", + "anchor": "err_unknown_encoding", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:c5681463fa48", + "chapter": "errors", + "kind": "module", + "name": "`err_unknown_file_extension`", + "signature": "`ERR_UNKNOWN_FILE_EXTENSION`", + "label": "ERR_UNKNOWN_FILE_EXTENSION", + "apiSymbol": "ERR_UNKNOWN_FILE_EXTENSION", + "depth": 1, + "scope": "api", + "anchor": "err_unknown_file_extension", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:87f7527b64e4", + "chapter": "errors", + "kind": "module", + "name": "`err_unknown_module_format`", + "signature": "`ERR_UNKNOWN_MODULE_FORMAT`", + "label": "ERR_UNKNOWN_MODULE_FORMAT", + "apiSymbol": "ERR_UNKNOWN_MODULE_FORMAT", + "depth": 1, + "scope": "api", + "anchor": "err_unknown_module_format", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:d87cae35000d", + "chapter": "errors", + "kind": "module", + "name": "`err_unknown_signal`", + "signature": "`ERR_UNKNOWN_SIGNAL`", + "label": "ERR_UNKNOWN_SIGNAL", + "apiSymbol": "ERR_UNKNOWN_SIGNAL", + "depth": 1, + "scope": "api", + "anchor": "err_unknown_signal", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:954eabb9bc32", + "chapter": "errors", + "kind": "module", + "name": "`err_unsupported_dir_import`", + "signature": "`ERR_UNSUPPORTED_DIR_IMPORT`", + "label": "ERR_UNSUPPORTED_DIR_IMPORT", + "apiSymbol": "ERR_UNSUPPORTED_DIR_IMPORT", + "depth": 1, + "scope": "api", + "anchor": "err_unsupported_dir_import", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:e214d4aa9618", + "chapter": "errors", + "kind": "module", + "name": "`err_unsupported_esm_url_scheme`", + "signature": "`ERR_UNSUPPORTED_ESM_URL_SCHEME`", + "label": "ERR_UNSUPPORTED_ESM_URL_SCHEME", + "apiSymbol": "ERR_UNSUPPORTED_ESM_URL_SCHEME", + "depth": 1, + "scope": "api", + "anchor": "err_unsupported_esm_url_scheme", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:dcd1b99428b4", + "chapter": "errors", + "kind": "module", + "name": "`err_unsupported_node_modules_type_stripping`", + "signature": "`ERR_UNSUPPORTED_NODE_MODULES_TYPE_STRIPPING`", + "label": "ERR_UNSUPPORTED_NODE_MODULES_TYPE_STRIPPING", + "apiSymbol": "ERR_UNSUPPORTED_NODE_MODULES_TYPE_STRIPPING", + "depth": 1, + "scope": "api", + "anchor": "err_unsupported_node_modules_type_stripping", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:ad982710ceef", + "chapter": "errors", + "kind": "module", + "name": "`err_unsupported_resolve_request`", + "signature": "`ERR_UNSUPPORTED_RESOLVE_REQUEST`", + "label": "ERR_UNSUPPORTED_RESOLVE_REQUEST", + "apiSymbol": "ERR_UNSUPPORTED_RESOLVE_REQUEST", + "depth": 1, + "scope": "api", + "anchor": "err_unsupported_resolve_request", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:29dfe11fa3a0", + "chapter": "errors", + "kind": "module", + "name": "`err_unsupported_typescript_syntax`", + "signature": "`ERR_UNSUPPORTED_TYPESCRIPT_SYNTAX`", + "label": "ERR_UNSUPPORTED_TYPESCRIPT_SYNTAX", + "apiSymbol": "ERR_UNSUPPORTED_TYPESCRIPT_SYNTAX", + "depth": 1, + "scope": "api", + "anchor": "err_unsupported_typescript_syntax", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:7d418af1c733", + "chapter": "errors", + "kind": "module", + "name": "`err_use_after_close`", + "signature": "`ERR_USE_AFTER_CLOSE`", + "label": "ERR_USE_AFTER_CLOSE", + "apiSymbol": "ERR_USE_AFTER_CLOSE", + "depth": 1, + "scope": "api", + "anchor": "err_use_after_close", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:6740f8efde1a", + "chapter": "errors", + "kind": "module", + "name": "`err_valid_performance_entry_type`", + "signature": "`ERR_VALID_PERFORMANCE_ENTRY_TYPE`", + "label": "ERR_VALID_PERFORMANCE_ENTRY_TYPE", + "apiSymbol": "ERR_VALID_PERFORMANCE_ENTRY_TYPE", + "depth": 1, + "scope": "api", + "anchor": "err_valid_performance_entry_type", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:c3428053070e", + "chapter": "errors", + "kind": "module", + "name": "`err_vm_dynamic_import_callback_missing`", + "signature": "`ERR_VM_DYNAMIC_IMPORT_CALLBACK_MISSING`", + "label": "ERR_VM_DYNAMIC_IMPORT_CALLBACK_MISSING", + "apiSymbol": "ERR_VM_DYNAMIC_IMPORT_CALLBACK_MISSING", + "depth": 1, + "scope": "api", + "anchor": "err_vm_dynamic_import_callback_missing", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:671ea036e292", + "chapter": "errors", + "kind": "module", + "name": "`err_vm_dynamic_import_callback_missing_flag`", + "signature": "`ERR_VM_DYNAMIC_IMPORT_CALLBACK_MISSING_FLAG`", + "label": "ERR_VM_DYNAMIC_IMPORT_CALLBACK_MISSING_FLAG", + "apiSymbol": "ERR_VM_DYNAMIC_IMPORT_CALLBACK_MISSING_FLAG", + "depth": 1, + "scope": "api", + "anchor": "err_vm_dynamic_import_callback_missing_flag", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:5f845b9e8b2a", + "chapter": "errors", + "kind": "module", + "name": "`err_vm_module_already_linked`", + "signature": "`ERR_VM_MODULE_ALREADY_LINKED`", + "label": "ERR_VM_MODULE_ALREADY_LINKED", + "apiSymbol": "ERR_VM_MODULE_ALREADY_LINKED", + "depth": 1, + "scope": "api", + "anchor": "err_vm_module_already_linked", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:c2846989ff9e", + "chapter": "errors", + "kind": "module", + "name": "`err_vm_module_cached_data_rejected`", + "signature": "`ERR_VM_MODULE_CACHED_DATA_REJECTED`", + "label": "ERR_VM_MODULE_CACHED_DATA_REJECTED", + "apiSymbol": "ERR_VM_MODULE_CACHED_DATA_REJECTED", + "depth": 1, + "scope": "api", + "anchor": "err_vm_module_cached_data_rejected", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:079222dcd2ba", + "chapter": "errors", + "kind": "module", + "name": "`err_vm_module_cannot_create_cached_data`", + "signature": "`ERR_VM_MODULE_CANNOT_CREATE_CACHED_DATA`", + "label": "ERR_VM_MODULE_CANNOT_CREATE_CACHED_DATA", + "apiSymbol": "ERR_VM_MODULE_CANNOT_CREATE_CACHED_DATA", + "depth": 1, + "scope": "api", + "anchor": "err_vm_module_cannot_create_cached_data", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:6ea968ca12e8", + "chapter": "errors", + "kind": "module", + "name": "`err_vm_module_different_context`", + "signature": "`ERR_VM_MODULE_DIFFERENT_CONTEXT`", + "label": "ERR_VM_MODULE_DIFFERENT_CONTEXT", + "apiSymbol": "ERR_VM_MODULE_DIFFERENT_CONTEXT", + "depth": 1, + "scope": "api", + "anchor": "err_vm_module_different_context", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:e0e6b5f418e8", + "chapter": "errors", + "kind": "module", + "name": "`err_vm_module_link_failure`", + "signature": "`ERR_VM_MODULE_LINK_FAILURE`", + "label": "ERR_VM_MODULE_LINK_FAILURE", + "apiSymbol": "ERR_VM_MODULE_LINK_FAILURE", + "depth": 1, + "scope": "api", + "anchor": "err_vm_module_link_failure", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:8ee8e4ca79d2", + "chapter": "errors", + "kind": "module", + "name": "`err_vm_module_not_module`", + "signature": "`ERR_VM_MODULE_NOT_MODULE`", + "label": "ERR_VM_MODULE_NOT_MODULE", + "apiSymbol": "ERR_VM_MODULE_NOT_MODULE", + "depth": 1, + "scope": "api", + "anchor": "err_vm_module_not_module", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:ca92d1497275", + "chapter": "errors", + "kind": "module", + "name": "`err_vm_module_status`", + "signature": "`ERR_VM_MODULE_STATUS`", + "label": "ERR_VM_MODULE_STATUS", + "apiSymbol": "ERR_VM_MODULE_STATUS", + "depth": 1, + "scope": "api", + "anchor": "err_vm_module_status", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:781c4df93738", + "chapter": "errors", + "kind": "module", + "name": "`err_wasi_already_started`", + "signature": "`ERR_WASI_ALREADY_STARTED`", + "label": "ERR_WASI_ALREADY_STARTED", + "apiSymbol": "ERR_WASI_ALREADY_STARTED", + "depth": 1, + "scope": "api", + "anchor": "err_wasi_already_started", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:97f460bbd0b6", + "chapter": "errors", + "kind": "module", + "name": "`err_wasi_not_started`", + "signature": "`ERR_WASI_NOT_STARTED`", + "label": "ERR_WASI_NOT_STARTED", + "apiSymbol": "ERR_WASI_NOT_STARTED", + "depth": 1, + "scope": "api", + "anchor": "err_wasi_not_started", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:a8cbde85cdb9", + "chapter": "errors", + "kind": "module", + "name": "`err_webassembly_not_supported`", + "signature": "`ERR_WEBASSEMBLY_NOT_SUPPORTED`", + "label": "ERR_WEBASSEMBLY_NOT_SUPPORTED", + "apiSymbol": "ERR_WEBASSEMBLY_NOT_SUPPORTED", + "depth": 1, + "scope": "api", + "anchor": "err_webassembly_not_supported", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:87ff1721ed05", + "chapter": "errors", + "kind": "module", + "name": "`err_webassembly_response`", + "signature": "`ERR_WEBASSEMBLY_RESPONSE`", + "label": "ERR_WEBASSEMBLY_RESPONSE", + "apiSymbol": "ERR_WEBASSEMBLY_RESPONSE", + "depth": 1, + "scope": "api", + "anchor": "err_webassembly_response", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:75ec70605835", + "chapter": "errors", + "kind": "module", + "name": "`err_worker_init_failed`", + "signature": "`ERR_WORKER_INIT_FAILED`", + "label": "ERR_WORKER_INIT_FAILED", + "apiSymbol": "ERR_WORKER_INIT_FAILED", + "depth": 1, + "scope": "api", + "anchor": "err_worker_init_failed", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:b015bae7ee07", + "chapter": "errors", + "kind": "module", + "name": "`err_worker_invalid_exec_argv`", + "signature": "`ERR_WORKER_INVALID_EXEC_ARGV`", + "label": "ERR_WORKER_INVALID_EXEC_ARGV", + "apiSymbol": "ERR_WORKER_INVALID_EXEC_ARGV", + "depth": 1, + "scope": "api", + "anchor": "err_worker_invalid_exec_argv", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:2c78aa6542c4", + "chapter": "errors", + "kind": "module", + "name": "`err_worker_messaging_errored`", + "signature": "`ERR_WORKER_MESSAGING_ERRORED`", + "label": "ERR_WORKER_MESSAGING_ERRORED", + "apiSymbol": "ERR_WORKER_MESSAGING_ERRORED", + "depth": 1, + "scope": "api", + "anchor": "err_worker_messaging_errored", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:da02d87c4ac3", + "chapter": "errors", + "kind": "module", + "name": "`err_worker_messaging_failed`", + "signature": "`ERR_WORKER_MESSAGING_FAILED`", + "label": "ERR_WORKER_MESSAGING_FAILED", + "apiSymbol": "ERR_WORKER_MESSAGING_FAILED", + "depth": 1, + "scope": "api", + "anchor": "err_worker_messaging_failed", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:13fec05ffc9e", + "chapter": "errors", + "kind": "module", + "name": "`err_worker_messaging_same_thread`", + "signature": "`ERR_WORKER_MESSAGING_SAME_THREAD`", + "label": "ERR_WORKER_MESSAGING_SAME_THREAD", + "apiSymbol": "ERR_WORKER_MESSAGING_SAME_THREAD", + "depth": 1, + "scope": "api", + "anchor": "err_worker_messaging_same_thread", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:64f5f21e175e", + "chapter": "errors", + "kind": "module", + "name": "`err_worker_messaging_timeout`", + "signature": "`ERR_WORKER_MESSAGING_TIMEOUT`", + "label": "ERR_WORKER_MESSAGING_TIMEOUT", + "apiSymbol": "ERR_WORKER_MESSAGING_TIMEOUT", + "depth": 1, + "scope": "api", + "anchor": "err_worker_messaging_timeout", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:2a75f29ed325", + "chapter": "errors", + "kind": "module", + "name": "`err_worker_not_running`", + "signature": "`ERR_WORKER_NOT_RUNNING`", + "label": "ERR_WORKER_NOT_RUNNING", + "apiSymbol": "ERR_WORKER_NOT_RUNNING", + "depth": 1, + "scope": "api", + "anchor": "err_worker_not_running", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:b274b70ec8d4", + "chapter": "errors", + "kind": "module", + "name": "`err_worker_out_of_memory`", + "signature": "`ERR_WORKER_OUT_OF_MEMORY`", + "label": "ERR_WORKER_OUT_OF_MEMORY", + "apiSymbol": "ERR_WORKER_OUT_OF_MEMORY", + "depth": 1, + "scope": "api", + "anchor": "err_worker_out_of_memory", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:b2bc0c8cb1f7", + "chapter": "errors", + "kind": "module", + "name": "`err_worker_path`", + "signature": "`ERR_WORKER_PATH`", + "label": "ERR_WORKER_PATH", + "apiSymbol": "ERR_WORKER_PATH", + "depth": 1, + "scope": "api", + "anchor": "err_worker_path", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:aa370a80f4b1", + "chapter": "errors", + "kind": "module", + "name": "`err_worker_unserializable_error`", + "signature": "`ERR_WORKER_UNSERIALIZABLE_ERROR`", + "label": "ERR_WORKER_UNSERIALIZABLE_ERROR", + "apiSymbol": "ERR_WORKER_UNSERIALIZABLE_ERROR", + "depth": 1, + "scope": "api", + "anchor": "err_worker_unserializable_error", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:e61ae498b366", + "chapter": "errors", + "kind": "module", + "name": "`err_worker_unsupported_operation`", + "signature": "`ERR_WORKER_UNSUPPORTED_OPERATION`", + "label": "ERR_WORKER_UNSUPPORTED_OPERATION", + "apiSymbol": "ERR_WORKER_UNSUPPORTED_OPERATION", + "depth": 1, + "scope": "api", + "anchor": "err_worker_unsupported_operation", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:9deb6e3047fd", + "chapter": "errors", + "kind": "module", + "name": "`err_zlib_initialization_failed`", + "signature": "`ERR_ZLIB_INITIALIZATION_FAILED`", + "label": "ERR_ZLIB_INITIALIZATION_FAILED", + "apiSymbol": "ERR_ZLIB_INITIALIZATION_FAILED", + "depth": 1, + "scope": "api", + "anchor": "err_zlib_initialization_failed", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:fc5da7d1951e", + "chapter": "errors", + "kind": "module", + "name": "`err_zstd_invalid_param`", + "signature": "`ERR_ZSTD_INVALID_PARAM`", + "label": "ERR_ZSTD_INVALID_PARAM", + "apiSymbol": "ERR_ZSTD_INVALID_PARAM", + "depth": 1, + "scope": "api", + "anchor": "err_zstd_invalid_param", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:f090a6b81591", + "chapter": "errors", + "kind": "module", + "name": "`hpe_chunk_extensions_overflow`", + "signature": "`HPE_CHUNK_EXTENSIONS_OVERFLOW`", + "label": "HPE_CHUNK_EXTENSIONS_OVERFLOW", + "apiSymbol": "HPE_CHUNK_EXTENSIONS_OVERFLOW", + "depth": 1, + "scope": "api", + "anchor": "hpe_chunk_extensions_overflow", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:87c31df381d7", + "chapter": "errors", + "kind": "module", + "name": "`hpe_header_overflow`", + "signature": "`HPE_HEADER_OVERFLOW`", + "label": "HPE_HEADER_OVERFLOW", + "apiSymbol": "HPE_HEADER_OVERFLOW", + "depth": 1, + "scope": "api", + "anchor": "hpe_header_overflow", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:8da5f12840bc", + "chapter": "errors", + "kind": "module", + "name": "`hpe_unexpected_content_length`", + "signature": "`HPE_UNEXPECTED_CONTENT_LENGTH`", + "label": "HPE_UNEXPECTED_CONTENT_LENGTH", + "apiSymbol": "HPE_UNEXPECTED_CONTENT_LENGTH", + "depth": 1, + "scope": "api", + "anchor": "hpe_unexpected_content_length", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:d160d0cdba1d", + "chapter": "errors", + "kind": "module", + "name": "`module_not_found`", + "signature": "`MODULE_NOT_FOUND`", + "label": "MODULE_NOT_FOUND", + "apiSymbol": "MODULE_NOT_FOUND", + "depth": 1, + "scope": "api", + "anchor": "module_not_found", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:439ad52bd8d8", + "chapter": "errors", + "kind": "module", + "name": "`err_cannot_transfer_object`", + "signature": "`ERR_CANNOT_TRANSFER_OBJECT`", + "label": "ERR_CANNOT_TRANSFER_OBJECT", + "apiSymbol": "ERR_CANNOT_TRANSFER_OBJECT", + "depth": 1, + "scope": "api", + "anchor": "err_cannot_transfer_object", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:c0a7823c7c67", + "chapter": "errors", + "kind": "module", + "name": "`err_cpu_usage`", + "signature": "`ERR_CPU_USAGE`", + "label": "ERR_CPU_USAGE", + "apiSymbol": "ERR_CPU_USAGE", + "depth": 1, + "scope": "api", + "anchor": "err_cpu_usage", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:4f1d4c79332c", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_hash_digest_no_utf16`", + "signature": "`ERR_CRYPTO_HASH_DIGEST_NO_UTF16`", + "label": "ERR_CRYPTO_HASH_DIGEST_NO_UTF16", + "apiSymbol": "ERR_CRYPTO_HASH_DIGEST_NO_UTF16", + "depth": 1, + "scope": "api", + "anchor": "err_crypto_hash_digest_no_utf16", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:0e98b56c97e8", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_scrypt_invalid_parameter`", + "signature": "`ERR_CRYPTO_SCRYPT_INVALID_PARAMETER`", + "label": "ERR_CRYPTO_SCRYPT_INVALID_PARAMETER", + "apiSymbol": "ERR_CRYPTO_SCRYPT_INVALID_PARAMETER", + "depth": 1, + "scope": "api", + "anchor": "err_crypto_scrypt_invalid_parameter", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:0bb0b3213086", + "chapter": "errors", + "kind": "module", + "name": "`err_fs_invalid_symlink_type`", + "signature": "`ERR_FS_INVALID_SYMLINK_TYPE`", + "label": "ERR_FS_INVALID_SYMLINK_TYPE", + "apiSymbol": "ERR_FS_INVALID_SYMLINK_TYPE", + "depth": 1, + "scope": "api", + "anchor": "err_fs_invalid_symlink_type", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:f22975942220", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_frame_error`", + "signature": "`ERR_HTTP2_FRAME_ERROR`", + "label": "ERR_HTTP2_FRAME_ERROR", + "apiSymbol": "ERR_HTTP2_FRAME_ERROR", + "depth": 1, + "scope": "api", + "anchor": "err_http2_frame_error", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:d37ab7415eb1", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_headers_object`", + "signature": "`ERR_HTTP2_HEADERS_OBJECT`", + "label": "ERR_HTTP2_HEADERS_OBJECT", + "apiSymbol": "ERR_HTTP2_HEADERS_OBJECT", + "depth": 1, + "scope": "api", + "anchor": "err_http2_headers_object", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:82447626cae9", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_header_required`", + "signature": "`ERR_HTTP2_HEADER_REQUIRED`", + "label": "ERR_HTTP2_HEADER_REQUIRED", + "apiSymbol": "ERR_HTTP2_HEADER_REQUIRED", + "depth": 1, + "scope": "api", + "anchor": "err_http2_header_required", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:da8cf45429e4", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_info_headers_after_respond`", + "signature": "`ERR_HTTP2_INFO_HEADERS_AFTER_RESPOND`", + "label": "ERR_HTTP2_INFO_HEADERS_AFTER_RESPOND", + "apiSymbol": "ERR_HTTP2_INFO_HEADERS_AFTER_RESPOND", + "depth": 1, + "scope": "api", + "anchor": "err_http2_info_headers_after_respond", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:f846d1688f40", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_stream_closed`", + "signature": "`ERR_HTTP2_STREAM_CLOSED`", + "label": "ERR_HTTP2_STREAM_CLOSED", + "apiSymbol": "ERR_HTTP2_STREAM_CLOSED", + "depth": 1, + "scope": "api", + "anchor": "err_http2_stream_closed", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:dbdb23ef8707", + "chapter": "errors", + "kind": "module", + "name": "`err_http_invalid_char`", + "signature": "`ERR_HTTP_INVALID_CHAR`", + "label": "ERR_HTTP_INVALID_CHAR", + "apiSymbol": "ERR_HTTP_INVALID_CHAR", + "depth": 1, + "scope": "api", + "anchor": "err_http_invalid_char", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:af06e0979e6f", + "chapter": "errors", + "kind": "module", + "name": "`err_import_assertion_type_failed`", + "signature": "`ERR_IMPORT_ASSERTION_TYPE_FAILED`", + "label": "ERR_IMPORT_ASSERTION_TYPE_FAILED", + "apiSymbol": "ERR_IMPORT_ASSERTION_TYPE_FAILED", + "depth": 1, + "scope": "api", + "anchor": "err_import_assertion_type_failed", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:43950d683294", + "chapter": "errors", + "kind": "module", + "name": "`err_import_assertion_type_missing`", + "signature": "`ERR_IMPORT_ASSERTION_TYPE_MISSING`", + "label": "ERR_IMPORT_ASSERTION_TYPE_MISSING", + "apiSymbol": "ERR_IMPORT_ASSERTION_TYPE_MISSING", + "depth": 1, + "scope": "api", + "anchor": "err_import_assertion_type_missing", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:8d0d238ca2be", + "chapter": "errors", + "kind": "module", + "name": "`err_import_assertion_type_unsupported`", + "signature": "`ERR_IMPORT_ASSERTION_TYPE_UNSUPPORTED`", + "label": "ERR_IMPORT_ASSERTION_TYPE_UNSUPPORTED", + "apiSymbol": "ERR_IMPORT_ASSERTION_TYPE_UNSUPPORTED", + "depth": 1, + "scope": "api", + "anchor": "err_import_assertion_type_unsupported", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:d40a10834bde", + "chapter": "errors", + "kind": "module", + "name": "`err_index_out_of_range`", + "signature": "`ERR_INDEX_OUT_OF_RANGE`", + "label": "ERR_INDEX_OUT_OF_RANGE", + "apiSymbol": "ERR_INDEX_OUT_OF_RANGE", + "depth": 1, + "scope": "api", + "anchor": "err_index_out_of_range", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:74df823db69b", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_opt_value`", + "signature": "`ERR_INVALID_OPT_VALUE`", + "label": "ERR_INVALID_OPT_VALUE", + "apiSymbol": "ERR_INVALID_OPT_VALUE", + "depth": 1, + "scope": "api", + "anchor": "err_invalid_opt_value", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:d5e7a70605a9", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_opt_value_encoding`", + "signature": "`ERR_INVALID_OPT_VALUE_ENCODING`", + "label": "ERR_INVALID_OPT_VALUE_ENCODING", + "apiSymbol": "ERR_INVALID_OPT_VALUE_ENCODING", + "depth": 1, + "scope": "api", + "anchor": "err_invalid_opt_value_encoding", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:380651a487d3", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_performance_mark`", + "signature": "`ERR_INVALID_PERFORMANCE_MARK`", + "label": "ERR_INVALID_PERFORMANCE_MARK", + "apiSymbol": "ERR_INVALID_PERFORMANCE_MARK", + "depth": 1, + "scope": "api", + "anchor": "err_invalid_performance_mark", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:b2cf2dee707f", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_transfer_object`", + "signature": "`ERR_INVALID_TRANSFER_OBJECT`", + "label": "ERR_INVALID_TRANSFER_OBJECT", + "apiSymbol": "ERR_INVALID_TRANSFER_OBJECT", + "depth": 1, + "scope": "api", + "anchor": "err_invalid_transfer_object", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:390eb0517f49", + "chapter": "errors", + "kind": "module", + "name": "`err_manifest_assert_integrity`", + "signature": "`ERR_MANIFEST_ASSERT_INTEGRITY`", + "label": "ERR_MANIFEST_ASSERT_INTEGRITY", + "apiSymbol": "ERR_MANIFEST_ASSERT_INTEGRITY", + "depth": 1, + "scope": "api", + "anchor": "err_manifest_assert_integrity", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:f9f70133d0d3", + "chapter": "errors", + "kind": "module", + "name": "`err_manifest_dependency_missing`", + "signature": "`ERR_MANIFEST_DEPENDENCY_MISSING`", + "label": "ERR_MANIFEST_DEPENDENCY_MISSING", + "apiSymbol": "ERR_MANIFEST_DEPENDENCY_MISSING", + "depth": 1, + "scope": "api", + "anchor": "err_manifest_dependency_missing", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:4096c4d31809", + "chapter": "errors", + "kind": "module", + "name": "`err_manifest_integrity_mismatch`", + "signature": "`ERR_MANIFEST_INTEGRITY_MISMATCH`", + "label": "ERR_MANIFEST_INTEGRITY_MISMATCH", + "apiSymbol": "ERR_MANIFEST_INTEGRITY_MISMATCH", + "depth": 1, + "scope": "api", + "anchor": "err_manifest_integrity_mismatch", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:d85a9bba8d33", + "chapter": "errors", + "kind": "module", + "name": "`err_manifest_invalid_resource_field`", + "signature": "`ERR_MANIFEST_INVALID_RESOURCE_FIELD`", + "label": "ERR_MANIFEST_INVALID_RESOURCE_FIELD", + "apiSymbol": "ERR_MANIFEST_INVALID_RESOURCE_FIELD", + "depth": 1, + "scope": "api", + "anchor": "err_manifest_invalid_resource_field", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:4d6e41331130", + "chapter": "errors", + "kind": "module", + "name": "`err_manifest_invalid_specifier`", + "signature": "`ERR_MANIFEST_INVALID_SPECIFIER`", + "label": "ERR_MANIFEST_INVALID_SPECIFIER", + "apiSymbol": "ERR_MANIFEST_INVALID_SPECIFIER", + "depth": 1, + "scope": "api", + "anchor": "err_manifest_invalid_specifier", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:0549a7ac0837", + "chapter": "errors", + "kind": "module", + "name": "`err_manifest_parse_policy`", + "signature": "`ERR_MANIFEST_PARSE_POLICY`", + "label": "ERR_MANIFEST_PARSE_POLICY", + "apiSymbol": "ERR_MANIFEST_PARSE_POLICY", + "depth": 1, + "scope": "api", + "anchor": "err_manifest_parse_policy", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:2cf2e8e964aa", + "chapter": "errors", + "kind": "module", + "name": "`err_manifest_tdz`", + "signature": "`ERR_MANIFEST_TDZ`", + "label": "ERR_MANIFEST_TDZ", + "apiSymbol": "ERR_MANIFEST_TDZ", + "depth": 1, + "scope": "api", + "anchor": "err_manifest_tdz", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:2fdc4ffb3667", + "chapter": "errors", + "kind": "module", + "name": "`err_manifest_unknown_onerror`", + "signature": "`ERR_MANIFEST_UNKNOWN_ONERROR`", + "label": "ERR_MANIFEST_UNKNOWN_ONERROR", + "apiSymbol": "ERR_MANIFEST_UNKNOWN_ONERROR", + "depth": 1, + "scope": "api", + "anchor": "err_manifest_unknown_onerror", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:27bcb9745c97", + "chapter": "errors", + "kind": "module", + "name": "`err_missing_message_port_in_transfer_list`", + "signature": "`ERR_MISSING_MESSAGE_PORT_IN_TRANSFER_LIST`", + "label": "ERR_MISSING_MESSAGE_PORT_IN_TRANSFER_LIST", + "apiSymbol": "ERR_MISSING_MESSAGE_PORT_IN_TRANSFER_LIST", + "depth": 1, + "scope": "api", + "anchor": "err_missing_message_port_in_transfer_list", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:09f8cac35b41", + "chapter": "errors", + "kind": "module", + "name": "`err_missing_transferable_in_transfer_list`", + "signature": "`ERR_MISSING_TRANSFERABLE_IN_TRANSFER_LIST`", + "label": "ERR_MISSING_TRANSFERABLE_IN_TRANSFER_LIST", + "apiSymbol": "ERR_MISSING_TRANSFERABLE_IN_TRANSFER_LIST", + "depth": 1, + "scope": "api", + "anchor": "err_missing_transferable_in_transfer_list", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:c8a4f1e72052", + "chapter": "errors", + "kind": "module", + "name": "`err_napi_cons_prototype_object`", + "signature": "`ERR_NAPI_CONS_PROTOTYPE_OBJECT`", + "label": "ERR_NAPI_CONS_PROTOTYPE_OBJECT", + "apiSymbol": "ERR_NAPI_CONS_PROTOTYPE_OBJECT", + "depth": 1, + "scope": "api", + "anchor": "err_napi_cons_prototype_object", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:c5fe6f0c53b0", + "chapter": "errors", + "kind": "module", + "name": "`err_napi_tsfn_start_idle_loop`", + "signature": "`ERR_NAPI_TSFN_START_IDLE_LOOP`", + "label": "ERR_NAPI_TSFN_START_IDLE_LOOP", + "apiSymbol": "ERR_NAPI_TSFN_START_IDLE_LOOP", + "depth": 1, + "scope": "api", + "anchor": "err_napi_tsfn_start_idle_loop", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:8ad60b8eafcc", + "chapter": "errors", + "kind": "module", + "name": "`err_napi_tsfn_stop_idle_loop`", + "signature": "`ERR_NAPI_TSFN_STOP_IDLE_LOOP`", + "label": "ERR_NAPI_TSFN_STOP_IDLE_LOOP", + "apiSymbol": "ERR_NAPI_TSFN_STOP_IDLE_LOOP", + "depth": 1, + "scope": "api", + "anchor": "err_napi_tsfn_stop_idle_loop", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:245e851177d7", + "chapter": "errors", + "kind": "module", + "name": "`err_no_longer_supported`", + "signature": "`ERR_NO_LONGER_SUPPORTED`", + "label": "ERR_NO_LONGER_SUPPORTED", + "apiSymbol": "ERR_NO_LONGER_SUPPORTED", + "depth": 1, + "scope": "api", + "anchor": "err_no_longer_supported", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:84dd75ef7a58", + "chapter": "errors", + "kind": "module", + "name": "`err_outofmemory`", + "signature": "`ERR_OUTOFMEMORY`", + "label": "ERR_OUTOFMEMORY", + "apiSymbol": "ERR_OUTOFMEMORY", + "depth": 1, + "scope": "api", + "anchor": "err_outofmemory", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:6af35b4b138c", + "chapter": "errors", + "kind": "module", + "name": "`err_parse_history_data`", + "signature": "`ERR_PARSE_HISTORY_DATA`", + "label": "ERR_PARSE_HISTORY_DATA", + "apiSymbol": "ERR_PARSE_HISTORY_DATA", + "depth": 1, + "scope": "api", + "anchor": "err_parse_history_data", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:945f9d5653be", + "chapter": "errors", + "kind": "module", + "name": "`err_socket_cannot_send`", + "signature": "`ERR_SOCKET_CANNOT_SEND`", + "label": "ERR_SOCKET_CANNOT_SEND", + "apiSymbol": "ERR_SOCKET_CANNOT_SEND", + "depth": 1, + "scope": "api", + "anchor": "err_socket_cannot_send", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:56a2687d7785", + "chapter": "errors", + "kind": "module", + "name": "`err_stderr_close`", + "signature": "`ERR_STDERR_CLOSE`", + "label": "ERR_STDERR_CLOSE", + "apiSymbol": "ERR_STDERR_CLOSE", + "depth": 1, + "scope": "api", + "anchor": "err_stderr_close", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:d366ab4d6a93", + "chapter": "errors", + "kind": "module", + "name": "`err_stdout_close`", + "signature": "`ERR_STDOUT_CLOSE`", + "label": "ERR_STDOUT_CLOSE", + "apiSymbol": "ERR_STDOUT_CLOSE", + "depth": 1, + "scope": "api", + "anchor": "err_stdout_close", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:eb156aa35a3f", + "chapter": "errors", + "kind": "module", + "name": "`err_stream_read_not_implemented`", + "signature": "`ERR_STREAM_READ_NOT_IMPLEMENTED`", + "label": "ERR_STREAM_READ_NOT_IMPLEMENTED", + "apiSymbol": "ERR_STREAM_READ_NOT_IMPLEMENTED", + "depth": 1, + "scope": "api", + "anchor": "err_stream_read_not_implemented", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:a8caf4be8238", + "chapter": "errors", + "kind": "module", + "name": "`err_tap_lexer_error`", + "signature": "`ERR_TAP_LEXER_ERROR`", + "label": "ERR_TAP_LEXER_ERROR", + "apiSymbol": "ERR_TAP_LEXER_ERROR", + "depth": 1, + "scope": "api", + "anchor": "err_tap_lexer_error", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:41036708462f", + "chapter": "errors", + "kind": "module", + "name": "`err_tap_parser_error`", + "signature": "`ERR_TAP_PARSER_ERROR`", + "label": "ERR_TAP_PARSER_ERROR", + "apiSymbol": "ERR_TAP_PARSER_ERROR", + "depth": 1, + "scope": "api", + "anchor": "err_tap_parser_error", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:617359cbc761", + "chapter": "errors", + "kind": "module", + "name": "`err_tap_validation_error`", + "signature": "`ERR_TAP_VALIDATION_ERROR`", + "label": "ERR_TAP_VALIDATION_ERROR", + "apiSymbol": "ERR_TAP_VALIDATION_ERROR", + "depth": 1, + "scope": "api", + "anchor": "err_tap_validation_error", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:e2b537b9cf81", + "chapter": "errors", + "kind": "module", + "name": "`err_tls_renegotiation_failed`", + "signature": "`ERR_TLS_RENEGOTIATION_FAILED`", + "label": "ERR_TLS_RENEGOTIATION_FAILED", + "apiSymbol": "ERR_TLS_RENEGOTIATION_FAILED", + "depth": 1, + "scope": "api", + "anchor": "err_tls_renegotiation_failed", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:aa08fb64ea29", + "chapter": "errors", + "kind": "module", + "name": "`err_transferring_externalized_sharedarraybuffer`", + "signature": "`ERR_TRANSFERRING_EXTERNALIZED_SHAREDARRAYBUFFER`", + "label": "ERR_TRANSFERRING_EXTERNALIZED_SHAREDARRAYBUFFER", + "apiSymbol": "ERR_TRANSFERRING_EXTERNALIZED_SHAREDARRAYBUFFER", + "depth": 1, + "scope": "api", + "anchor": "err_transferring_externalized_sharedarraybuffer", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:2885aac07c34", + "chapter": "errors", + "kind": "module", + "name": "`err_unknown_stdin_type`", + "signature": "`ERR_UNKNOWN_STDIN_TYPE`", + "label": "ERR_UNKNOWN_STDIN_TYPE", + "apiSymbol": "ERR_UNKNOWN_STDIN_TYPE", + "depth": 1, + "scope": "api", + "anchor": "err_unknown_stdin_type", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:3002db6010f3", + "chapter": "errors", + "kind": "module", + "name": "`err_unknown_stream_type`", + "signature": "`ERR_UNKNOWN_STREAM_TYPE`", + "label": "ERR_UNKNOWN_STREAM_TYPE", + "apiSymbol": "ERR_UNKNOWN_STREAM_TYPE", + "depth": 1, + "scope": "api", + "anchor": "err_unknown_stream_type", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:c42be6185200", + "chapter": "errors", + "kind": "module", + "name": "`err_v8breakiterator`", + "signature": "`ERR_V8BREAKITERATOR`", + "label": "ERR_V8BREAKITERATOR", + "apiSymbol": "ERR_V8BREAKITERATOR", + "depth": 1, + "scope": "api", + "anchor": "err_v8breakiterator", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:576989a96e5f", + "chapter": "errors", + "kind": "module", + "name": "`err_value_out_of_range`", + "signature": "`ERR_VALUE_OUT_OF_RANGE`", + "label": "ERR_VALUE_OUT_OF_RANGE", + "apiSymbol": "ERR_VALUE_OUT_OF_RANGE", + "depth": 1, + "scope": "api", + "anchor": "err_value_out_of_range", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:2a75e3b52031", + "chapter": "errors", + "kind": "module", + "name": "`err_vm_module_linking_errored`", + "signature": "`ERR_VM_MODULE_LINKING_ERRORED`", + "label": "ERR_VM_MODULE_LINKING_ERRORED", + "apiSymbol": "ERR_VM_MODULE_LINKING_ERRORED", + "depth": 1, + "scope": "api", + "anchor": "err_vm_module_linking_errored", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:d35cd312d972", + "chapter": "errors", + "kind": "module", + "name": "`err_vm_module_not_linked`", + "signature": "`ERR_VM_MODULE_NOT_LINKED`", + "label": "ERR_VM_MODULE_NOT_LINKED", + "apiSymbol": "ERR_VM_MODULE_NOT_LINKED", + "depth": 1, + "scope": "api", + "anchor": "err_vm_module_not_linked", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:7eba9487bb7b", + "chapter": "errors", + "kind": "module", + "name": "`err_worker_unsupported_extension`", + "signature": "`ERR_WORKER_UNSUPPORTED_EXTENSION`", + "label": "ERR_WORKER_UNSUPPORTED_EXTENSION", + "apiSymbol": "ERR_WORKER_UNSUPPORTED_EXTENSION", + "depth": 1, + "scope": "api", + "anchor": "err_worker_unsupported_extension", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:b626bda0cacd", + "chapter": "errors", + "kind": "module", + "name": "`err_zlib_binding_closed`", + "signature": "`ERR_ZLIB_BINDING_CLOSED`", + "label": "ERR_ZLIB_BINDING_CLOSED", + "apiSymbol": "ERR_ZLIB_BINDING_CLOSED", + "depth": 1, + "scope": "api", + "anchor": "err_zlib_binding_closed", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:bb4a4ed9b300", + "chapter": "errors", + "kind": "module", + "name": "`cert_not_yet_valid`", + "signature": "`CERT_NOT_YET_VALID`", + "label": "CERT_NOT_YET_VALID", + "apiSymbol": "CERT_NOT_YET_VALID", + "depth": 1, + "scope": "api", + "anchor": "cert_not_yet_valid", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:c1b582bc3c62", + "chapter": "errors", + "kind": "module", + "name": "`cert_has_expired`", + "signature": "`CERT_HAS_EXPIRED`", + "label": "CERT_HAS_EXPIRED", + "apiSymbol": "CERT_HAS_EXPIRED", + "depth": 1, + "scope": "api", + "anchor": "cert_has_expired", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:d14dbc9c6b0e", + "chapter": "errors", + "kind": "module", + "name": "`crl_not_yet_valid`", + "signature": "`CRL_NOT_YET_VALID`", + "label": "CRL_NOT_YET_VALID", + "apiSymbol": "CRL_NOT_YET_VALID", + "depth": 1, + "scope": "api", + "anchor": "crl_not_yet_valid", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:ad88307c3bdd", + "chapter": "errors", + "kind": "module", + "name": "`crl_has_expired`", + "signature": "`CRL_HAS_EXPIRED`", + "label": "CRL_HAS_EXPIRED", + "apiSymbol": "CRL_HAS_EXPIRED", + "depth": 1, + "scope": "api", + "anchor": "crl_has_expired", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:423605b68df8", + "chapter": "errors", + "kind": "module", + "name": "`cert_revoked`", + "signature": "`CERT_REVOKED`", + "label": "CERT_REVOKED", + "apiSymbol": "CERT_REVOKED", + "depth": 1, + "scope": "api", + "anchor": "cert_revoked", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:4ee21bb0a84c", + "chapter": "errors", + "kind": "module", + "name": "`unable_to_get_issuer_cert`", + "signature": "`UNABLE_TO_GET_ISSUER_CERT`", + "label": "UNABLE_TO_GET_ISSUER_CERT", + "apiSymbol": "UNABLE_TO_GET_ISSUER_CERT", + "depth": 1, + "scope": "api", + "anchor": "unable_to_get_issuer_cert", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:49b99782ac4c", + "chapter": "errors", + "kind": "module", + "name": "`unable_to_get_issuer_cert_locally`", + "signature": "`UNABLE_TO_GET_ISSUER_CERT_LOCALLY`", + "label": "UNABLE_TO_GET_ISSUER_CERT_LOCALLY", + "apiSymbol": "UNABLE_TO_GET_ISSUER_CERT_LOCALLY", + "depth": 1, + "scope": "api", + "anchor": "unable_to_get_issuer_cert_locally", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:5b8761425770", + "chapter": "errors", + "kind": "module", + "name": "`depth_zero_self_signed_cert`", + "signature": "`DEPTH_ZERO_SELF_SIGNED_CERT`", + "label": "DEPTH_ZERO_SELF_SIGNED_CERT", + "apiSymbol": "DEPTH_ZERO_SELF_SIGNED_CERT", + "depth": 1, + "scope": "api", + "anchor": "depth_zero_self_signed_cert", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:6e2c3b93610c", + "chapter": "errors", + "kind": "module", + "name": "`self_signed_cert_in_chain`", + "signature": "`SELF_SIGNED_CERT_IN_CHAIN`", + "label": "SELF_SIGNED_CERT_IN_CHAIN", + "apiSymbol": "SELF_SIGNED_CERT_IN_CHAIN", + "depth": 1, + "scope": "api", + "anchor": "self_signed_cert_in_chain", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:2a650eb60ec1", + "chapter": "errors", + "kind": "module", + "name": "`cert_chain_too_long`", + "signature": "`CERT_CHAIN_TOO_LONG`", + "label": "CERT_CHAIN_TOO_LONG", + "apiSymbol": "CERT_CHAIN_TOO_LONG", + "depth": 1, + "scope": "api", + "anchor": "cert_chain_too_long", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:ba46bbc95aff", + "chapter": "errors", + "kind": "module", + "name": "`unable_to_get_crl`", + "signature": "`UNABLE_TO_GET_CRL`", + "label": "UNABLE_TO_GET_CRL", + "apiSymbol": "UNABLE_TO_GET_CRL", + "depth": 1, + "scope": "api", + "anchor": "unable_to_get_crl", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:d1075014869e", + "chapter": "errors", + "kind": "module", + "name": "`unable_to_verify_leaf_signature`", + "signature": "`UNABLE_TO_VERIFY_LEAF_SIGNATURE`", + "label": "UNABLE_TO_VERIFY_LEAF_SIGNATURE", + "apiSymbol": "UNABLE_TO_VERIFY_LEAF_SIGNATURE", + "depth": 1, + "scope": "api", + "anchor": "unable_to_verify_leaf_signature", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:375e514bbc69", + "chapter": "errors", + "kind": "module", + "name": "`cert_untrusted`", + "signature": "`CERT_UNTRUSTED`", + "label": "CERT_UNTRUSTED", + "apiSymbol": "CERT_UNTRUSTED", + "depth": 1, + "scope": "api", + "anchor": "cert_untrusted", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:467693e29391", + "chapter": "errors", + "kind": "module", + "name": "`invalid_ca`", + "signature": "`INVALID_CA`", + "label": "INVALID_CA", + "apiSymbol": "INVALID_CA", + "depth": 1, + "scope": "api", + "anchor": "invalid_ca", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:95a9de1e5fcf", + "chapter": "errors", + "kind": "module", + "name": "`path_length_exceeded`", + "signature": "`PATH_LENGTH_EXCEEDED`", + "label": "PATH_LENGTH_EXCEEDED", + "apiSymbol": "PATH_LENGTH_EXCEEDED", + "depth": 1, + "scope": "api", + "anchor": "path_length_exceeded", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:d72801142ee6", + "chapter": "errors", + "kind": "module", + "name": "`hostname_mismatch`", + "signature": "`HOSTNAME_MISMATCH`", + "label": "HOSTNAME_MISMATCH", + "apiSymbol": "HOSTNAME_MISMATCH", + "depth": 1, + "scope": "api", + "anchor": "hostname_mismatch", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:75d9c5d34364", + "chapter": "errors", + "kind": "module", + "name": "`invalid_purpose`", + "signature": "`INVALID_PURPOSE`", + "label": "INVALID_PURPOSE", + "apiSymbol": "INVALID_PURPOSE", + "depth": 1, + "scope": "api", + "anchor": "invalid_purpose", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:7e32fb96f849", + "chapter": "errors", + "kind": "module", + "name": "`cert_rejected`", + "signature": "`CERT_REJECTED`", + "label": "CERT_REJECTED", + "apiSymbol": "CERT_REJECTED", + "depth": 1, + "scope": "api", + "anchor": "cert_rejected", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:113869e011dd", + "chapter": "errors", + "kind": "module", + "name": "`cert_signature_failure`", + "signature": "`CERT_SIGNATURE_FAILURE`", + "label": "CERT_SIGNATURE_FAILURE", + "apiSymbol": "CERT_SIGNATURE_FAILURE", + "depth": 1, + "scope": "api", + "anchor": "cert_signature_failure", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:202d15146717", + "chapter": "errors", + "kind": "module", + "name": "`crl_signature_failure`", + "signature": "`CRL_SIGNATURE_FAILURE`", + "label": "CRL_SIGNATURE_FAILURE", + "apiSymbol": "CRL_SIGNATURE_FAILURE", + "depth": 1, + "scope": "api", + "anchor": "crl_signature_failure", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:346d669692ba", + "chapter": "errors", + "kind": "module", + "name": "`error_in_cert_not_before_field`", + "signature": "`ERROR_IN_CERT_NOT_BEFORE_FIELD`", + "label": "ERROR_IN_CERT_NOT_BEFORE_FIELD", + "apiSymbol": "ERROR_IN_CERT_NOT_BEFORE_FIELD", + "depth": 1, + "scope": "api", + "anchor": "error_in_cert_not_before_field", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:f2bba73f3c9d", + "chapter": "errors", + "kind": "module", + "name": "`error_in_cert_not_after_field`", + "signature": "`ERROR_IN_CERT_NOT_AFTER_FIELD`", + "label": "ERROR_IN_CERT_NOT_AFTER_FIELD", + "apiSymbol": "ERROR_IN_CERT_NOT_AFTER_FIELD", + "depth": 1, + "scope": "api", + "anchor": "error_in_cert_not_after_field", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:b47afd067f88", + "chapter": "errors", + "kind": "module", + "name": "`error_in_crl_last_update_field`", + "signature": "`ERROR_IN_CRL_LAST_UPDATE_FIELD`", + "label": "ERROR_IN_CRL_LAST_UPDATE_FIELD", + "apiSymbol": "ERROR_IN_CRL_LAST_UPDATE_FIELD", + "depth": 1, + "scope": "api", + "anchor": "error_in_crl_last_update_field", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:db9b24b9c765", + "chapter": "errors", + "kind": "module", + "name": "`error_in_crl_next_update_field`", + "signature": "`ERROR_IN_CRL_NEXT_UPDATE_FIELD`", + "label": "ERROR_IN_CRL_NEXT_UPDATE_FIELD", + "apiSymbol": "ERROR_IN_CRL_NEXT_UPDATE_FIELD", + "depth": 1, + "scope": "api", + "anchor": "error_in_crl_next_update_field", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:5cc3d7507fd1", + "chapter": "errors", + "kind": "module", + "name": "`unable_to_decrypt_cert_signature`", + "signature": "`UNABLE_TO_DECRYPT_CERT_SIGNATURE`", + "label": "UNABLE_TO_DECRYPT_CERT_SIGNATURE", + "apiSymbol": "UNABLE_TO_DECRYPT_CERT_SIGNATURE", + "depth": 1, + "scope": "api", + "anchor": "unable_to_decrypt_cert_signature", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:9327a0a0138f", + "chapter": "errors", + "kind": "module", + "name": "`unable_to_decrypt_crl_signature`", + "signature": "`UNABLE_TO_DECRYPT_CRL_SIGNATURE`", + "label": "UNABLE_TO_DECRYPT_CRL_SIGNATURE", + "apiSymbol": "UNABLE_TO_DECRYPT_CRL_SIGNATURE", + "depth": 1, + "scope": "api", + "anchor": "unable_to_decrypt_crl_signature", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:9003e1f604af", + "chapter": "errors", + "kind": "module", + "name": "`unable_to_decode_issuer_public_key`", + "signature": "`UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY`", + "label": "UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY", + "apiSymbol": "UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY", + "depth": 1, + "scope": "api", + "anchor": "unable_to_decode_issuer_public_key", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "errors:c19451db58d6", + "chapter": "errors", + "kind": "module", + "name": "`out_of_mem`", + "signature": "`OUT_OF_MEM`", + "label": "OUT_OF_MEM", + "apiSymbol": "OUT_OF_MEM", + "depth": 1, + "scope": "api", + "anchor": "out_of_mem", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "events:35d84c48c9c2", + "chapter": "events", + "kind": "module", + "name": "Events", + "signature": "Events", + "label": "Events", + "apiSymbol": "Events", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + }, + "dynamic": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + } + }, + { + "id": "events:95ba58ddaa1b", + "chapter": "events", + "kind": "module", + "name": "passing_arguments_and_`this`_to_listeners", + "signature": "Passing arguments and `this` to listeners", + "label": "Passing arguments and this to listeners", + "apiSymbol": "this", + "depth": 1, + "scope": "api", + "anchor": "passing-arguments-and-this-to-listeners", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "events:a24d4325b57d", + "chapter": "events", + "kind": "module", + "name": "`eventtarget`_and_`event`_api", + "signature": "`EventTarget` and `Event` API", + "label": "EventTarget", + "apiSymbol": "EventTarget", + "depth": 1, + "scope": "api", + "anchor": "eventtarget-and-event-api", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "events:5ec1a270a500", + "chapter": "events", + "kind": "module", + "name": "node.js_`eventtarget`_vs._dom_`eventtarget`", + "signature": "Node.js `EventTarget` vs. DOM `EventTarget`", + "label": "Node.js EventTarget vs. DOM EventTarget", + "apiSymbol": "EventTarget", + "depth": 2, + "scope": "api", + "anchor": "nodejs-eventtarget-vs-dom-eventtarget", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "events:7f27ccc79a12", + "chapter": "events", + "kind": "module", + "name": "`nodeeventtarget`_vs._`eventemitter`", + "signature": "`NodeEventTarget` vs. `EventEmitter`", + "label": "NodeEventTarget", + "apiSymbol": "NodeEventTarget", + "depth": 2, + "scope": "api", + "anchor": "nodeeventtarget-vs-eventemitter", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "events:4b769414ea5e", + "chapter": "events", + "kind": "module", + "name": "`eventtarget`_error_handling", + "signature": "`EventTarget` error handling", + "label": "EventTarget", + "apiSymbol": "EventTarget", + "depth": 2, + "scope": "api", + "anchor": "eventtarget-error-handling", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "events:e4c8500e4b93", + "chapter": "events", + "kind": "class", + "name": "Event", + "signature": "Class: `Event`", + "label": "Event", + "apiSymbol": "Event", + "depth": 2, + "scope": "api", + "anchor": "class-event", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "events:e5c069095e5c", + "chapter": "events", + "kind": "method", + "name": "composedPath", + "signature": "`event.composedPath()`", + "label": "event.composedPath()", + "apiSymbol": "event.composedPath", + "depth": 3, + "scope": "api", + "anchor": "eventcomposedpath", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "events:85436cb5ea2b", + "chapter": "events", + "kind": "method", + "name": "initEvent", + "signature": "`event.initEvent(type[, bubbles[, cancelable]])`", + "label": "event.initEvent(type[, bubbles[, cancelable]])", + "apiSymbol": "event.initEvent", + "depth": 3, + "scope": "api", + "anchor": "eventiniteventtype-bubbles-cancelable", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: The WHATWG spec considers it deprecated and users shouldn't use it at all.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "events:5848ab30b2e5", + "chapter": "events", + "kind": "method", + "name": "preventDefault", + "signature": "`event.preventDefault()`", + "label": "event.preventDefault()", + "apiSymbol": "event.preventDefault", + "depth": 3, + "scope": "api", + "anchor": "eventpreventdefault", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "events:c16743d778c4", + "chapter": "events", + "kind": "method", + "name": "stopImmediatePropagation", + "signature": "`event.stopImmediatePropagation()`", + "label": "event.stopImmediatePropagation()", + "apiSymbol": "event.stopImmediatePropagation", + "depth": 3, + "scope": "api", + "anchor": "eventstopimmediatepropagation", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "events:9bab844aa1c2", + "chapter": "events", + "kind": "method", + "name": "stopPropagation", + "signature": "`event.stopPropagation()`", + "label": "event.stopPropagation()", + "apiSymbol": "event.stopPropagation", + "depth": 3, + "scope": "api", + "anchor": "eventstoppropagation", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "events:abe0ea02a52c", + "chapter": "events", + "kind": "boolean", + "name": "Type", + "signature": "`bubbles` Type: {boolean} Always returns `false`.", + "label": "bubbles", + "apiSymbol": "bubbles", + "depth": 3, + "scope": "api", + "anchor": "class-event", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "events:44e2dc361428", + "chapter": "events", + "kind": "boolean", + "name": "Type", + "signature": "`cancelBubble` Type: {boolean}", + "label": "cancelBubble", + "apiSymbol": "cancelBubble", + "depth": 3, + "scope": "api", + "anchor": "class-event", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use [`event.stopPropagation()`][] instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "events:51ee094d86d3", + "chapter": "events", + "kind": "boolean", + "name": "Type", + "signature": "`cancelable` Type: {boolean} True if the event was created with the `cancelable` option.", + "label": "cancelable", + "apiSymbol": "cancelable", + "depth": 3, + "scope": "api", + "anchor": "class-event", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "events:369be877d737", + "chapter": "events", + "kind": "boolean", + "name": "Type", + "signature": "`composed` Type: {boolean} Always returns `false`.", + "label": "composed", + "apiSymbol": "composed", + "depth": 3, + "scope": "api", + "anchor": "class-event", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "events:4e0c88e53f49", + "chapter": "events", + "kind": "EventTarget", + "name": "Type", + "signature": "`currentTarget` Type: {EventTarget} The `EventTarget` dispatching the event.", + "label": "currentTarget", + "apiSymbol": "currentTarget", + "depth": 3, + "scope": "api", + "anchor": "class-event", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "events:1e8421d3cc04", + "chapter": "events", + "kind": "boolean", + "name": "Type", + "signature": "`defaultPrevented` Type: {boolean}", + "label": "defaultPrevented", + "apiSymbol": "defaultPrevented", + "depth": 3, + "scope": "api", + "anchor": "class-event", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "events:602700d21dcf", + "chapter": "events", + "kind": "number", + "name": "Type", + "signature": "`eventPhase` Type: {number} Returns `0` while an event is not being dispatched, `2` while it is being dispatched.", + "label": "eventPhase", + "apiSymbol": "eventPhase", + "depth": 3, + "scope": "api", + "anchor": "class-event", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "events:4e83ca3c5e4c", + "chapter": "events", + "kind": "boolean", + "name": "Type", + "signature": "`isTrusted` Type: {boolean}", + "label": "isTrusted", + "apiSymbol": "isTrusted", + "depth": 3, + "scope": "api", + "anchor": "class-event", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "events:100e8d286de2", + "chapter": "events", + "kind": "boolean", + "name": "Type", + "signature": "`returnValue` Type: {boolean} True if the event has not been canceled.", + "label": "returnValue", + "apiSymbol": "returnValue", + "depth": 3, + "scope": "api", + "anchor": "class-event", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use [`event.defaultPrevented`][] instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "events:3d3da3858847", + "chapter": "events", + "kind": "EventTarget", + "name": "Type", + "signature": "`srcElement` Type: {EventTarget} The `EventTarget` dispatching the event.", + "label": "srcElement", + "apiSymbol": "srcElement", + "depth": 3, + "scope": "api", + "anchor": "class-event", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use [`event.target`][] instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "events:fdfee26f8c22", + "chapter": "events", + "kind": "EventTarget", + "name": "Type", + "signature": "`target` Type: {EventTarget} The `EventTarget` dispatching the event.", + "label": "target", + "apiSymbol": "target", + "depth": 3, + "scope": "api", + "anchor": "class-event", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "events:051e03ef86de", + "chapter": "events", + "kind": "number", + "name": "Type", + "signature": "`timeStamp` Type: {number}", + "label": "timeStamp", + "apiSymbol": "timeStamp", + "depth": 3, + "scope": "api", + "anchor": "class-event", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "events:88b512802b39", + "chapter": "events", + "kind": "string", + "name": "Type", + "signature": "`type` Type: {string}", + "label": "type", + "apiSymbol": "type", + "depth": 3, + "scope": "api", + "anchor": "class-event", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "events:0e6d48a3f20d", + "chapter": "events", + "kind": "class", + "name": "EventTarget", + "signature": "Class: `EventTarget`", + "label": "EventTarget", + "apiSymbol": "EventTarget", + "depth": 2, + "scope": "api", + "anchor": "class-eventtarget", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "events:42fba62569dd", + "chapter": "events", + "kind": "method", + "name": "addEventListener", + "signature": "`eventTarget.addEventListener(type, listener[, options])`", + "label": "eventTarget.addEventListener(type, listener[, options])", + "apiSymbol": "eventTarget.addEventListener", + "depth": 3, + "scope": "api", + "anchor": "eventtargetaddeventlistenertype-listener-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "events:74e10bac2937", + "chapter": "events", + "kind": "method", + "name": "dispatchEvent", + "signature": "`eventTarget.dispatchEvent(event)`", + "label": "eventTarget.dispatchEvent(event)", + "apiSymbol": "eventTarget.dispatchEvent", + "depth": 3, + "scope": "api", + "anchor": "eventtargetdispatcheventevent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "events:105a39bcbc8b", + "chapter": "events", + "kind": "method", + "name": "removeEventListener", + "signature": "`eventTarget.removeEventListener(type, listener[, options])`", + "label": "eventTarget.removeEventListener(type, listener[, options])", + "apiSymbol": "eventTarget.removeEventListener", + "depth": 3, + "scope": "api", + "anchor": "eventtargetremoveeventlistenertype-listener-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "events:ca3c02a8aed0", + "chapter": "events", + "kind": "class", + "name": "CustomEvent", + "signature": "Class: `CustomEvent`", + "label": "CustomEvent", + "apiSymbol": "CustomEvent", + "depth": 2, + "scope": "api", + "anchor": "class-customevent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "events:5720c4b3c9cf", + "chapter": "events", + "kind": "any", + "name": "Type", + "signature": "`detail` Type: {any} Returns custom data passed when initializing.", + "label": "detail", + "apiSymbol": "detail", + "depth": 3, + "scope": "api", + "anchor": "class-customevent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "events:2d04eeb1c58c", + "chapter": "events", + "kind": "class", + "name": "NodeEventTarget", + "signature": "Class: `NodeEventTarget`", + "label": "NodeEventTarget", + "apiSymbol": "NodeEventTarget", + "depth": 2, + "scope": "api", + "anchor": "class-nodeeventtarget", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "events:202a497f7819", + "chapter": "events", + "kind": "method", + "name": "addListener", + "signature": "`nodeEventTarget.addListener(type, listener)`", + "label": "nodeEventTarget.addListener(type, listener)", + "apiSymbol": "nodeEventTarget.addListener", + "depth": 3, + "scope": "api", + "anchor": "nodeeventtargetaddlistenertype-listener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "events:87cb9007c53c", + "chapter": "events", + "kind": "method", + "name": "emit", + "signature": "`nodeEventTarget.emit(type, arg)`", + "label": "nodeEventTarget.emit(type, arg)", + "apiSymbol": "nodeEventTarget.emit", + "depth": 3, + "scope": "api", + "anchor": "nodeeventtargetemittype-arg", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "events:e669c515fb3f", + "chapter": "events", + "kind": "method", + "name": "eventNames", + "signature": "`nodeEventTarget.eventNames()`", + "label": "nodeEventTarget.eventNames()", + "apiSymbol": "nodeEventTarget.eventNames", + "depth": 3, + "scope": "api", + "anchor": "nodeeventtargeteventnames", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "events:8b06a2b39407", + "chapter": "events", + "kind": "method", + "name": "listenerCount", + "signature": "`nodeEventTarget.listenerCount(type)`", + "label": "nodeEventTarget.listenerCount(type)", + "apiSymbol": "nodeEventTarget.listenerCount", + "depth": 3, + "scope": "api", + "anchor": "nodeeventtargetlistenercounttype", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "events:607c57aa8216", + "chapter": "events", + "kind": "method", + "name": "setMaxListeners", + "signature": "`nodeEventTarget.setMaxListeners(n)`", + "label": "nodeEventTarget.setMaxListeners(n)", + "apiSymbol": "nodeEventTarget.setMaxListeners", + "depth": 3, + "scope": "api", + "anchor": "nodeeventtargetsetmaxlistenersn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "events:edb66e151544", + "chapter": "events", + "kind": "method", + "name": "getMaxListeners", + "signature": "`nodeEventTarget.getMaxListeners()`", + "label": "nodeEventTarget.getMaxListeners()", + "apiSymbol": "nodeEventTarget.getMaxListeners", + "depth": 3, + "scope": "api", + "anchor": "nodeeventtargetgetmaxlisteners", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "events:8e9dac2c393a", + "chapter": "events", + "kind": "method", + "name": "off", + "signature": "`nodeEventTarget.off(type, listener[, options])`", + "label": "nodeEventTarget.off(type, listener[, options])", + "apiSymbol": "nodeEventTarget.off", + "depth": 3, + "scope": "api", + "anchor": "nodeeventtargetofftype-listener-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "events:760f784ab4d9", + "chapter": "events", + "kind": "method", + "name": "on", + "signature": "`nodeEventTarget.on(type, listener)`", + "label": "nodeEventTarget.on(type, listener)", + "apiSymbol": "nodeEventTarget.on", + "depth": 3, + "scope": "api", + "anchor": "nodeeventtargetontype-listener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "events:f12a1d36b009", + "chapter": "events", + "kind": "method", + "name": "once", + "signature": "`nodeEventTarget.once(type, listener)`", + "label": "nodeEventTarget.once(type, listener)", + "apiSymbol": "nodeEventTarget.once", + "depth": 3, + "scope": "api", + "anchor": "nodeeventtargetoncetype-listener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "events:5966abd22448", + "chapter": "events", + "kind": "method", + "name": "removeAllListeners", + "signature": "`nodeEventTarget.removeAllListeners([type])`", + "label": "nodeEventTarget.removeAllListeners([type])", + "apiSymbol": "nodeEventTarget.removeAllListeners", + "depth": 3, + "scope": "api", + "anchor": "nodeeventtargetremovealllistenerstype", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "events:3d4545e78514", + "chapter": "events", + "kind": "method", + "name": "removeListener", + "signature": "`nodeEventTarget.removeListener(type, listener[, options])`", + "label": "nodeEventTarget.removeListener(type, listener[, options])", + "apiSymbol": "nodeEventTarget.removeListener", + "depth": 3, + "scope": "api", + "anchor": "nodeeventtargetremovelistenertype-listener-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "events:910527a05b92", + "chapter": "events", + "kind": "class", + "name": "EventEmitter", + "signature": "Class: `EventEmitter`", + "label": "EventEmitter", + "apiSymbol": "EventEmitter", + "depth": 1, + "scope": "api", + "anchor": "class-eventemitter", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "events:edad59305c20", + "chapter": "events", + "kind": "module", + "name": "`emitter[symbol.for('nodejs.rejection')](err,_eventname[,_...args])`", + "signature": "`emitter[Symbol.for('nodejs.rejection')](err, eventName[, ...args])`", + "label": "emitter[Symbol.for('nodejs.rejection')](err, eventName[, ...args])", + "apiSymbol": "emitter", + "depth": 2, + "scope": "api", + "anchor": "emittersymbolfornodejsrejectionerr-eventname-args", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "events:ade9c05cb8a6", + "chapter": "events", + "kind": "method", + "name": "addListener", + "signature": "`emitter.addListener(eventName, listener)`", + "label": "emitter.addListener(eventName, listener)", + "apiSymbol": "emitter.addListener", + "depth": 2, + "scope": "api", + "anchor": "emitteraddlistenereventname-listener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "events:4480339d71a7", + "chapter": "events", + "kind": "method", + "name": "emit", + "signature": "`emitter.emit(eventName[, ...args])`", + "label": "emitter.emit(eventName[, ...args])", + "apiSymbol": "emitter.emit", + "depth": 2, + "scope": "api", + "anchor": "emitteremiteventname-args", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "events:1141f56c5e25", + "chapter": "events", + "kind": "method", + "name": "eventNames", + "signature": "`emitter.eventNames()`", + "label": "emitter.eventNames()", + "apiSymbol": "emitter.eventNames", + "depth": 2, + "scope": "api", + "anchor": "emittereventnames", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "events:a11da766dad1", + "chapter": "events", + "kind": "method", + "name": "getMaxListeners", + "signature": "`emitter.getMaxListeners()`", + "label": "emitter.getMaxListeners()", + "apiSymbol": "emitter.getMaxListeners", + "depth": 2, + "scope": "api", + "anchor": "emittergetmaxlisteners", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "events:8c21cb9ee7a9", + "chapter": "events", + "kind": "method", + "name": "listenerCount", + "signature": "`emitter.listenerCount(eventName[, listener])`", + "label": "emitter.listenerCount(eventName[, listener])", + "apiSymbol": "emitter.listenerCount", + "depth": 2, + "scope": "api", + "anchor": "emitterlistenercounteventname-listener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "events:a016b013db5e", + "chapter": "events", + "kind": "method", + "name": "listeners", + "signature": "`emitter.listeners(eventName)`", + "label": "emitter.listeners(eventName)", + "apiSymbol": "emitter.listeners", + "depth": 2, + "scope": "api", + "anchor": "emitterlistenerseventname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "events:57657668f95c", + "chapter": "events", + "kind": "method", + "name": "off", + "signature": "`emitter.off(eventName, listener)`", + "label": "emitter.off(eventName, listener)", + "apiSymbol": "emitter.off", + "depth": 2, + "scope": "api", + "anchor": "emitteroffeventname-listener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "events:ca3ee0bd3471", + "chapter": "events", + "kind": "method", + "name": "on", + "signature": "`emitter.on(eventName, listener)`", + "label": "emitter.on(eventName, listener)", + "apiSymbol": "emitter.on", + "depth": 2, + "scope": "api", + "anchor": "emitteroneventname-listener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "events:fc1100224d9e", + "chapter": "events", + "kind": "method", + "name": "once", + "signature": "`emitter.once(eventName, listener)`", + "label": "emitter.once(eventName, listener)", + "apiSymbol": "emitter.once", + "depth": 2, + "scope": "api", + "anchor": "emitteronceeventname-listener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "events:c48f9e75b5cb", + "chapter": "events", + "kind": "method", + "name": "prependListener", + "signature": "`emitter.prependListener(eventName, listener)`", + "label": "emitter.prependListener(eventName, listener)", + "apiSymbol": "emitter.prependListener", + "depth": 2, + "scope": "api", + "anchor": "emitterprependlistenereventname-listener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "events:159633e9f978", + "chapter": "events", + "kind": "method", + "name": "prependOnceListener", + "signature": "`emitter.prependOnceListener(eventName, listener)`", + "label": "emitter.prependOnceListener(eventName, listener)", + "apiSymbol": "emitter.prependOnceListener", + "depth": 2, + "scope": "api", + "anchor": "emitterprependoncelistenereventname-listener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "events:4d2830e25fd6", + "chapter": "events", + "kind": "method", + "name": "removeAllListeners", + "signature": "`emitter.removeAllListeners([eventName])`", + "label": "emitter.removeAllListeners([eventName])", + "apiSymbol": "emitter.removeAllListeners", + "depth": 2, + "scope": "api", + "anchor": "emitterremovealllistenerseventname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "events:8d46803d9907", + "chapter": "events", + "kind": "method", + "name": "removeListener", + "signature": "`emitter.removeListener(eventName, listener)`", + "label": "emitter.removeListener(eventName, listener)", + "apiSymbol": "emitter.removeListener", + "depth": 2, + "scope": "api", + "anchor": "emitterremovelistenereventname-listener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "events:0794dd94e66f", + "chapter": "events", + "kind": "method", + "name": "setMaxListeners", + "signature": "`emitter.setMaxListeners(n)`", + "label": "emitter.setMaxListeners(n)", + "apiSymbol": "emitter.setMaxListeners", + "depth": 2, + "scope": "api", + "anchor": "emittersetmaxlistenersn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "events:c637289e49fa", + "chapter": "events", + "kind": "method", + "name": "rawListeners", + "signature": "`emitter.rawListeners(eventName)`", + "label": "emitter.rawListeners(eventName)", + "apiSymbol": "emitter.rawListeners", + "depth": 2, + "scope": "api", + "anchor": "emitterrawlistenerseventname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "events:84d12b6b46e2", + "chapter": "events", + "kind": "event", + "name": "newListener", + "signature": "Event: `'newListener'`", + "label": "'newListener'", + "apiSymbol": "'newListener'", + "depth": 2, + "scope": "api", + "anchor": "event-newlistener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "events:049cbb50dc90", + "chapter": "events", + "kind": "event", + "name": "removeListener", + "signature": "Event: `'removeListener'`", + "label": "'removeListener'", + "apiSymbol": "'removeListener'", + "depth": 2, + "scope": "api", + "anchor": "event-removelistener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "events:4e0415c297c2", + "chapter": "events", + "kind": "class", + "name": "events.EventEmitterAsyncResource", + "signature": "Class: `events.EventEmitterAsyncResource extends EventEmitter`", + "label": "events.EventEmitterAsyncResource extends EventEmitter", + "apiSymbol": "events.EventEmitterAsyncResource extends EventEmitter", + "depth": 1, + "scope": "api", + "anchor": "class-eventseventemitterasyncresource-extends-eventemitter", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "events:58455d496767", + "chapter": "events", + "kind": "method", + "name": "emitDestroy", + "signature": "`eventemitterasyncresource.emitDestroy()`", + "label": "eventemitterasyncresource.emitDestroy()", + "apiSymbol": "eventemitterasyncresource.emitDestroy", + "depth": 2, + "scope": "api", + "anchor": "eventemitterasyncresourceemitdestroy", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "events:d6c6ff6963c2", + "chapter": "events", + "kind": "number", + "name": "Type", + "signature": "`asyncId` Type: {number} The unique `asyncId` assigned to the resource.", + "label": "asyncId", + "apiSymbol": "asyncId", + "depth": 2, + "scope": "api", + "anchor": "class-eventseventemitterasyncresource-extends-eventemitter", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "events:74987fd6d95e", + "chapter": "events", + "kind": "AsyncResource", + "name": "Type", + "signature": "`asyncResource` Type: {AsyncResource} The underlying {AsyncResource}.", + "label": "asyncResource", + "apiSymbol": "asyncResource", + "depth": 2, + "scope": "api", + "anchor": "class-eventseventemitterasyncresource-extends-eventemitter", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "events:75764554b08f", + "chapter": "events", + "kind": "number", + "name": "Type", + "signature": "`triggerAsyncId` Type: {number} The same `triggerAsyncId` that is passed to the `AsyncResource` constructor.", + "label": "triggerAsyncId", + "apiSymbol": "triggerAsyncId", + "depth": 2, + "scope": "api", + "anchor": "class-eventseventemitterasyncresource-extends-eventemitter", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "events:27495381c85e", + "chapter": "events", + "kind": "method", + "name": "getEventListeners", + "signature": "`events.getEventListeners(emitterOrTarget, eventName)`", + "label": "events.getEventListeners(emitterOrTarget, eventName)", + "apiSymbol": "events.getEventListeners", + "depth": 1, + "scope": "api", + "anchor": "eventsgeteventlistenersemitterortarget-eventname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "events:3153e3fd08ef", + "chapter": "events", + "kind": "method", + "name": "getMaxListeners", + "signature": "`events.getMaxListeners(emitterOrTarget)`", + "label": "events.getMaxListeners(emitterOrTarget)", + "apiSymbol": "events.getMaxListeners", + "depth": 1, + "scope": "api", + "anchor": "eventsgetmaxlistenersemitterortarget", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "events:4bdb581b643c", + "chapter": "events", + "kind": "method", + "name": "once", + "signature": "`events.once(emitter, name[, options])`", + "label": "events.once(emitter, name[, options])", + "apiSymbol": "events.once", + "depth": 1, + "scope": "api", + "anchor": "eventsonceemitter-name-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "events:08926d83c96e", + "chapter": "events", + "kind": "method", + "name": "listenerCount", + "signature": "`events.listenerCount(emitterOrTarget, eventName)`", + "label": "events.listenerCount(emitterOrTarget, eventName)", + "apiSymbol": "events.listenerCount", + "depth": 1, + "scope": "api", + "anchor": "eventslistenercountemitterortarget-eventname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "events:782b53b53732", + "chapter": "events", + "kind": "method", + "name": "on", + "signature": "`events.on(emitter, eventName[, options])`", + "label": "events.on(emitter, eventName[, options])", + "apiSymbol": "events.on", + "depth": 1, + "scope": "api", + "anchor": "eventsonemitter-eventname-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "events:df4c2bafb91c", + "chapter": "events", + "kind": "method", + "name": "setMaxListeners", + "signature": "`events.setMaxListeners(n[, ...eventTargets])`", + "label": "events.setMaxListeners(n[, ...eventTargets])", + "apiSymbol": "events.setMaxListeners", + "depth": 1, + "scope": "api", + "anchor": "eventssetmaxlistenersn-eventtargets", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "events:e933c2fc3385", + "chapter": "events", + "kind": "method", + "name": "addAbortListener", + "signature": "`events.addAbortListener(signal, listener)`", + "label": "events.addAbortListener(signal, listener)", + "apiSymbol": "events.addAbortListener", + "depth": 1, + "scope": "api", + "anchor": "eventsaddabortlistenersignal-listener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "events:e65e73570ff0", + "chapter": "events", + "kind": "section", + "name": "defaultMaxListeners", + "signature": "`events.defaultMaxListeners`", + "label": "events.defaultMaxListeners", + "apiSymbol": "events.defaultMaxListeners", + "depth": 1, + "scope": "api", + "anchor": "eventsdefaultmaxlisteners", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "events:bb35aa562dcf", + "chapter": "events", + "kind": "section", + "name": "errorMonitor", + "signature": "`events.errorMonitor`", + "label": "events.errorMonitor", + "apiSymbol": "events.errorMonitor", + "depth": 1, + "scope": "api", + "anchor": "eventserrormonitor", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "events:6e0a1c15f17b", + "chapter": "events", + "kind": "boolean", + "name": "Type", + "signature": "`captureRejections` Type: {boolean}", + "label": "captureRejections", + "apiSymbol": "captureRejections", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "events:29b4e47b3232", + "chapter": "events", + "kind": "symbol", + "name": "Type", + "signature": "`captureRejectionSymbol` Type: {symbol} `Symbol.for('nodejs.rejection')`", + "label": "captureRejectionSymbol", + "apiSymbol": "captureRejectionSymbol", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:0bd3dfa2c0e4", + "chapter": "fs", + "kind": "module", + "name": "fs", + "signature": "File system", + "label": "File system", + "apiSymbol": "fs", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + }, + "dynamic": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + } + }, + { + "id": "fs:886837078c6b", + "chapter": "fs", + "kind": "class", + "name": "FileHandle", + "signature": "Class: `FileHandle`", + "label": "FileHandle", + "apiSymbol": "FileHandle", + "depth": 1, + "scope": "api", + "anchor": "class-filehandle", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:7509ca034d96", + "chapter": "fs", + "kind": "method", + "name": "appendFile", + "signature": "`filehandle.appendFile(data[, options])`", + "label": "filehandle.appendFile(data[, options])", + "apiSymbol": "filehandle.appendFile", + "depth": 2, + "scope": "api", + "anchor": "filehandleappendfiledata-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:77606e74b3ec", + "chapter": "fs", + "kind": "method", + "name": "chmod", + "signature": "`filehandle.chmod(mode)`", + "label": "filehandle.chmod(mode)", + "apiSymbol": "filehandle.chmod", + "depth": 2, + "scope": "api", + "anchor": "filehandlechmodmode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:2ffdbc463a9c", + "chapter": "fs", + "kind": "method", + "name": "chown", + "signature": "`filehandle.chown(uid, gid)`", + "label": "filehandle.chown(uid, gid)", + "apiSymbol": "filehandle.chown", + "depth": 2, + "scope": "api", + "anchor": "filehandlechownuid-gid", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:93dbe7301528", + "chapter": "fs", + "kind": "method", + "name": "close", + "signature": "`filehandle.close()`", + "label": "filehandle.close()", + "apiSymbol": "filehandle.close", + "depth": 2, + "scope": "api", + "anchor": "filehandleclose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:ee271c8ef141", + "chapter": "fs", + "kind": "method", + "name": "createReadStream", + "signature": "`filehandle.createReadStream([options])`", + "label": "filehandle.createReadStream([options])", + "apiSymbol": "filehandle.createReadStream", + "depth": 2, + "scope": "api", + "anchor": "filehandlecreatereadstreamoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:a1fc413410dc", + "chapter": "fs", + "kind": "method", + "name": "createWriteStream", + "signature": "`filehandle.createWriteStream([options])`", + "label": "filehandle.createWriteStream([options])", + "apiSymbol": "filehandle.createWriteStream", + "depth": 2, + "scope": "api", + "anchor": "filehandlecreatewritestreamoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:d33d57b92a1d", + "chapter": "fs", + "kind": "method", + "name": "datasync", + "signature": "`filehandle.datasync()`", + "label": "filehandle.datasync()", + "apiSymbol": "filehandle.datasync", + "depth": 2, + "scope": "api", + "anchor": "filehandledatasync", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:8bff339d602d", + "chapter": "fs", + "kind": "method", + "name": "read", + "signature": "`filehandle.read(buffer, offset, length, position)`", + "label": "filehandle.read(buffer, offset, length, position)", + "apiSymbol": "filehandle.read", + "depth": 2, + "scope": "api", + "anchor": "filehandlereadbuffer-offset-length-position", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:c40bb4ebc6e0", + "chapter": "fs", + "kind": "method", + "name": "read", + "signature": "`filehandle.read([options])`", + "label": "filehandle.read([options])", + "apiSymbol": "filehandle.read", + "depth": 2, + "scope": "api", + "anchor": "filehandlereadoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:37b9ee6911bc", + "chapter": "fs", + "kind": "method", + "name": "read", + "signature": "`filehandle.read(buffer[, options])`", + "label": "filehandle.read(buffer[, options])", + "apiSymbol": "filehandle.read", + "depth": 2, + "scope": "api", + "anchor": "filehandlereadbuffer-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:5e79e4419ef8", + "chapter": "fs", + "kind": "method", + "name": "readableWebStream", + "signature": "`filehandle.readableWebStream([options])`", + "label": "filehandle.readableWebStream([options])", + "apiSymbol": "filehandle.readableWebStream", + "depth": 2, + "scope": "api", + "anchor": "filehandlereadablewebstreamoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:bd80d74b4184", + "chapter": "fs", + "kind": "method", + "name": "readFile", + "signature": "`filehandle.readFile(options)`", + "label": "filehandle.readFile(options)", + "apiSymbol": "filehandle.readFile", + "depth": 2, + "scope": "api", + "anchor": "filehandlereadfileoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:0c4448395482", + "chapter": "fs", + "kind": "method", + "name": "readLines", + "signature": "`filehandle.readLines([options])`", + "label": "filehandle.readLines([options])", + "apiSymbol": "filehandle.readLines", + "depth": 2, + "scope": "api", + "anchor": "filehandlereadlinesoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:9a3fa1465bad", + "chapter": "fs", + "kind": "method", + "name": "readv", + "signature": "`filehandle.readv(buffers[, position])`", + "label": "filehandle.readv(buffers[, position])", + "apiSymbol": "filehandle.readv", + "depth": 2, + "scope": "api", + "anchor": "filehandlereadvbuffers-position", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:1cf4b859f9c4", + "chapter": "fs", + "kind": "method", + "name": "stat", + "signature": "`filehandle.stat([options])`", + "label": "filehandle.stat([options])", + "apiSymbol": "filehandle.stat", + "depth": 2, + "scope": "api", + "anchor": "filehandlestatoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:59ec45ce6f17", + "chapter": "fs", + "kind": "method", + "name": "sync", + "signature": "`filehandle.sync()`", + "label": "filehandle.sync()", + "apiSymbol": "filehandle.sync", + "depth": 2, + "scope": "api", + "anchor": "filehandlesync", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:690d17d26e1b", + "chapter": "fs", + "kind": "method", + "name": "truncate", + "signature": "`filehandle.truncate(len)`", + "label": "filehandle.truncate(len)", + "apiSymbol": "filehandle.truncate", + "depth": 2, + "scope": "api", + "anchor": "filehandletruncatelen", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:bf3f2dc9d161", + "chapter": "fs", + "kind": "method", + "name": "utimes", + "signature": "`filehandle.utimes(atime, mtime)`", + "label": "filehandle.utimes(atime, mtime)", + "apiSymbol": "filehandle.utimes", + "depth": 2, + "scope": "api", + "anchor": "filehandleutimesatime-mtime", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:d365e35631b7", + "chapter": "fs", + "kind": "method", + "name": "write", + "signature": "`filehandle.write(buffer, offset[, length[, position]])`", + "label": "filehandle.write(buffer, offset[, length[, position]])", + "apiSymbol": "filehandle.write", + "depth": 2, + "scope": "api", + "anchor": "filehandlewritebuffer-offset-length-position", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:e0274f1c227a", + "chapter": "fs", + "kind": "method", + "name": "write", + "signature": "`filehandle.write(buffer[, options])`", + "label": "filehandle.write(buffer[, options])", + "apiSymbol": "filehandle.write", + "depth": 2, + "scope": "api", + "anchor": "filehandlewritebuffer-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:c9a5ba4ae462", + "chapter": "fs", + "kind": "method", + "name": "write", + "signature": "`filehandle.write(string[, position[, encoding]])`", + "label": "filehandle.write(string[, position[, encoding]])", + "apiSymbol": "filehandle.write", + "depth": 2, + "scope": "api", + "anchor": "filehandlewritestring-position-encoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:f6da97a332b4", + "chapter": "fs", + "kind": "method", + "name": "writeFile", + "signature": "`filehandle.writeFile(data, options)`", + "label": "filehandle.writeFile(data, options)", + "apiSymbol": "filehandle.writeFile", + "depth": 2, + "scope": "api", + "anchor": "filehandlewritefiledata-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:f899b0e9d2d5", + "chapter": "fs", + "kind": "method", + "name": "writev", + "signature": "`filehandle.writev(buffers[, position])`", + "label": "filehandle.writev(buffers[, position])", + "apiSymbol": "filehandle.writev", + "depth": 2, + "scope": "api", + "anchor": "filehandlewritevbuffers-position", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:0eb79d089322", + "chapter": "fs", + "kind": "method", + "name": "[Symbol.asyncDispose]", + "signature": "`filehandle[Symbol.asyncDispose]()`", + "label": "filehandle[Symbol.asyncDispose]()", + "apiSymbol": "filehandle", + "depth": 2, + "scope": "api", + "anchor": "filehandlesymbolasyncdispose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:b74d8861c127", + "chapter": "fs", + "kind": "number", + "name": "Type", + "signature": "`fd` Type: {number} The numeric file descriptor managed by the {FileHandle} object.", + "label": "fd", + "apiSymbol": "fd", + "depth": 2, + "scope": "api", + "anchor": "class-filehandle", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:af2edb1e0be6", + "chapter": "fs", + "kind": "event", + "name": "close", + "signature": "Event: `'close'`", + "label": "'close'", + "apiSymbol": "'close'", + "depth": 2, + "scope": "api", + "anchor": "event-close", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:3d973ff903be", + "chapter": "fs", + "kind": "method", + "name": "access", + "signature": "`fsPromises.access(path[, mode])`", + "label": "fsPromises.access(path[, mode])", + "apiSymbol": "fsPromises.access", + "depth": 1, + "scope": "api", + "anchor": "fspromisesaccesspath-mode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:17685599d9fc", + "chapter": "fs", + "kind": "method", + "name": "appendFile", + "signature": "`fsPromises.appendFile(path, data[, options])`", + "label": "fsPromises.appendFile(path, data[, options])", + "apiSymbol": "fsPromises.appendFile", + "depth": 1, + "scope": "api", + "anchor": "fspromisesappendfilepath-data-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:852bcffe0f7e", + "chapter": "fs", + "kind": "method", + "name": "chmod", + "signature": "`fsPromises.chmod(path, mode)`", + "label": "fsPromises.chmod(path, mode)", + "apiSymbol": "fsPromises.chmod", + "depth": 1, + "scope": "api", + "anchor": "fspromiseschmodpath-mode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:79eab8c996ec", + "chapter": "fs", + "kind": "method", + "name": "chown", + "signature": "`fsPromises.chown(path, uid, gid)`", + "label": "fsPromises.chown(path, uid, gid)", + "apiSymbol": "fsPromises.chown", + "depth": 1, + "scope": "api", + "anchor": "fspromiseschownpath-uid-gid", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:e09abb45a683", + "chapter": "fs", + "kind": "method", + "name": "copyFile", + "signature": "`fsPromises.copyFile(src, dest[, mode])`", + "label": "fsPromises.copyFile(src, dest[, mode])", + "apiSymbol": "fsPromises.copyFile", + "depth": 1, + "scope": "api", + "anchor": "fspromisescopyfilesrc-dest-mode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:019fe8b5ce02", + "chapter": "fs", + "kind": "method", + "name": "cp", + "signature": "`fsPromises.cp(src, dest[, options])`", + "label": "fsPromises.cp(src, dest[, options])", + "apiSymbol": "fsPromises.cp", + "depth": 1, + "scope": "api", + "anchor": "fspromisescpsrc-dest-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:084655a174d5", + "chapter": "fs", + "kind": "method", + "name": "glob", + "signature": "`fsPromises.glob(pattern[, options])`", + "label": "fsPromises.glob(pattern[, options])", + "apiSymbol": "fsPromises.glob", + "depth": 1, + "scope": "api", + "anchor": "fspromisesglobpattern-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:e765ff651d7e", + "chapter": "fs", + "kind": "method", + "name": "lchmod", + "signature": "`fsPromises.lchmod(path, mode)`", + "label": "fsPromises.lchmod(path, mode)", + "apiSymbol": "fsPromises.lchmod", + "depth": 1, + "scope": "api", + "anchor": "fspromiseslchmodpath-mode", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:3d5d09fa720a", + "chapter": "fs", + "kind": "method", + "name": "lchown", + "signature": "`fsPromises.lchown(path, uid, gid)`", + "label": "fsPromises.lchown(path, uid, gid)", + "apiSymbol": "fsPromises.lchown", + "depth": 1, + "scope": "api", + "anchor": "fspromiseslchownpath-uid-gid", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:b7964602601d", + "chapter": "fs", + "kind": "method", + "name": "lutimes", + "signature": "`fsPromises.lutimes(path, atime, mtime)`", + "label": "fsPromises.lutimes(path, atime, mtime)", + "apiSymbol": "fsPromises.lutimes", + "depth": 1, + "scope": "api", + "anchor": "fspromiseslutimespath-atime-mtime", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:5f8f56d83683", + "chapter": "fs", + "kind": "method", + "name": "link", + "signature": "`fsPromises.link(existingPath, newPath)`", + "label": "fsPromises.link(existingPath, newPath)", + "apiSymbol": "fsPromises.link", + "depth": 1, + "scope": "api", + "anchor": "fspromiseslinkexistingpath-newpath", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:63d5aa86a256", + "chapter": "fs", + "kind": "method", + "name": "lstat", + "signature": "`fsPromises.lstat(path[, options])`", + "label": "fsPromises.lstat(path[, options])", + "apiSymbol": "fsPromises.lstat", + "depth": 1, + "scope": "api", + "anchor": "fspromiseslstatpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:3e37853853bb", + "chapter": "fs", + "kind": "method", + "name": "mkdir", + "signature": "`fsPromises.mkdir(path[, options])`", + "label": "fsPromises.mkdir(path[, options])", + "apiSymbol": "fsPromises.mkdir", + "depth": 1, + "scope": "api", + "anchor": "fspromisesmkdirpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:8242dab7a908", + "chapter": "fs", + "kind": "method", + "name": "mkdtemp", + "signature": "`fsPromises.mkdtemp(prefix[, options])`", + "label": "fsPromises.mkdtemp(prefix[, options])", + "apiSymbol": "fsPromises.mkdtemp", + "depth": 1, + "scope": "api", + "anchor": "fspromisesmkdtempprefix-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:0e654a55b6d2", + "chapter": "fs", + "kind": "method", + "name": "mkdtempDisposable", + "signature": "`fsPromises.mkdtempDisposable(prefix[, options])`", + "label": "fsPromises.mkdtempDisposable(prefix[, options])", + "apiSymbol": "fsPromises.mkdtempDisposable", + "depth": 1, + "scope": "api", + "anchor": "fspromisesmkdtempdisposableprefix-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:68bb2c683fe8", + "chapter": "fs", + "kind": "method", + "name": "open", + "signature": "`fsPromises.open(path, flags[, mode])`", + "label": "fsPromises.open(path, flags[, mode])", + "apiSymbol": "fsPromises.open", + "depth": 1, + "scope": "api", + "anchor": "fspromisesopenpath-flags-mode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "fs:8563d45bd004", + "chapter": "fs", + "kind": "method", + "name": "opendir", + "signature": "`fsPromises.opendir(path[, options])`", + "label": "fsPromises.opendir(path[, options])", + "apiSymbol": "fsPromises.opendir", + "depth": 1, + "scope": "api", + "anchor": "fspromisesopendirpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:8a231443d661", + "chapter": "fs", + "kind": "method", + "name": "readdir", + "signature": "`fsPromises.readdir(path[, options])`", + "label": "fsPromises.readdir(path[, options])", + "apiSymbol": "fsPromises.readdir", + "depth": 1, + "scope": "api", + "anchor": "fspromisesreaddirpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:ef0a02a312c6", + "chapter": "fs", + "kind": "method", + "name": "readFile", + "signature": "`fsPromises.readFile(path[, options])`", + "label": "fsPromises.readFile(path[, options])", + "apiSymbol": "fsPromises.readFile", + "depth": 1, + "scope": "api", + "anchor": "fspromisesreadfilepath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:93a29ff17149", + "chapter": "fs", + "kind": "method", + "name": "readlink", + "signature": "`fsPromises.readlink(path[, options])`", + "label": "fsPromises.readlink(path[, options])", + "apiSymbol": "fsPromises.readlink", + "depth": 1, + "scope": "api", + "anchor": "fspromisesreadlinkpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:12f426a57f3b", + "chapter": "fs", + "kind": "method", + "name": "realpath", + "signature": "`fsPromises.realpath(path[, options])`", + "label": "fsPromises.realpath(path[, options])", + "apiSymbol": "fsPromises.realpath", + "depth": 1, + "scope": "api", + "anchor": "fspromisesrealpathpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:c5038ffe7911", + "chapter": "fs", + "kind": "method", + "name": "rename", + "signature": "`fsPromises.rename(oldPath, newPath)`", + "label": "fsPromises.rename(oldPath, newPath)", + "apiSymbol": "fsPromises.rename", + "depth": 1, + "scope": "api", + "anchor": "fspromisesrenameoldpath-newpath", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:83ef26dac93c", + "chapter": "fs", + "kind": "method", + "name": "rmdir", + "signature": "`fsPromises.rmdir(path[, options])`", + "label": "fsPromises.rmdir(path[, options])", + "apiSymbol": "fsPromises.rmdir", + "depth": 1, + "scope": "api", + "anchor": "fspromisesrmdirpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:5c4b25e4d096", + "chapter": "fs", + "kind": "method", + "name": "rm", + "signature": "`fsPromises.rm(path[, options])`", + "label": "fsPromises.rm(path[, options])", + "apiSymbol": "fsPromises.rm", + "depth": 1, + "scope": "api", + "anchor": "fspromisesrmpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:d3c8cf7953c1", + "chapter": "fs", + "kind": "method", + "name": "stat", + "signature": "`fsPromises.stat(path[, options])`", + "label": "fsPromises.stat(path[, options])", + "apiSymbol": "fsPromises.stat", + "depth": 1, + "scope": "api", + "anchor": "fspromisesstatpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:960828f4ffd4", + "chapter": "fs", + "kind": "method", + "name": "statfs", + "signature": "`fsPromises.statfs(path[, options])`", + "label": "fsPromises.statfs(path[, options])", + "apiSymbol": "fsPromises.statfs", + "depth": 1, + "scope": "api", + "anchor": "fspromisesstatfspath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:05d3e62c35e0", + "chapter": "fs", + "kind": "method", + "name": "symlink", + "signature": "`fsPromises.symlink(target, path[, type])`", + "label": "fsPromises.symlink(target, path[, type])", + "apiSymbol": "fsPromises.symlink", + "depth": 1, + "scope": "api", + "anchor": "fspromisessymlinktarget-path-type", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:d4caa86ff798", + "chapter": "fs", + "kind": "method", + "name": "truncate", + "signature": "`fsPromises.truncate(path[, len])`", + "label": "fsPromises.truncate(path[, len])", + "apiSymbol": "fsPromises.truncate", + "depth": 1, + "scope": "api", + "anchor": "fspromisestruncatepath-len", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:e8db56a75ff7", + "chapter": "fs", + "kind": "method", + "name": "unlink", + "signature": "`fsPromises.unlink(path)`", + "label": "fsPromises.unlink(path)", + "apiSymbol": "fsPromises.unlink", + "depth": 1, + "scope": "api", + "anchor": "fspromisesunlinkpath", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:9b3b9e66a980", + "chapter": "fs", + "kind": "method", + "name": "utimes", + "signature": "`fsPromises.utimes(path, atime, mtime)`", + "label": "fsPromises.utimes(path, atime, mtime)", + "apiSymbol": "fsPromises.utimes", + "depth": 1, + "scope": "api", + "anchor": "fspromisesutimespath-atime-mtime", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:bceba6835a61", + "chapter": "fs", + "kind": "method", + "name": "watch", + "signature": "`fsPromises.watch(filename[, options])`", + "label": "fsPromises.watch(filename[, options])", + "apiSymbol": "fsPromises.watch", + "depth": 1, + "scope": "api", + "anchor": "fspromiseswatchfilename-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:f5f4b8c936d2", + "chapter": "fs", + "kind": "method", + "name": "writeFile", + "signature": "`fsPromises.writeFile(file, data[, options])`", + "label": "fsPromises.writeFile(file, data[, options])", + "apiSymbol": "fsPromises.writeFile", + "depth": 1, + "scope": "api", + "anchor": "fspromiseswritefilefile-data-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:4d881cd0aae2", + "chapter": "fs", + "kind": "Object", + "name": "Type", + "signature": "`constants` Type: {Object}", + "label": "constants", + "apiSymbol": "constants", + "depth": 1, + "scope": "api", + "anchor": "promises-api", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:fd95b2c5a3ed", + "chapter": "fs", + "kind": "method", + "name": "access", + "signature": "`fs.access(path[, mode], callback)`", + "label": "fs.access(path[, mode], callback)", + "apiSymbol": "fs.access", + "depth": 1, + "scope": "api", + "anchor": "fsaccesspath-mode-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:28a70e885ff1", + "chapter": "fs", + "kind": "method", + "name": "appendFile", + "signature": "`fs.appendFile(path, data[, options], callback)`", + "label": "fs.appendFile(path, data[, options], callback)", + "apiSymbol": "fs.appendFile", + "depth": 1, + "scope": "api", + "anchor": "fsappendfilepath-data-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:c6a516fe59c7", + "chapter": "fs", + "kind": "method", + "name": "chmod", + "signature": "`fs.chmod(path, mode, callback)`", + "label": "fs.chmod(path, mode, callback)", + "apiSymbol": "fs.chmod", + "depth": 1, + "scope": "api", + "anchor": "fschmodpath-mode-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:a6d6fed05cfc", + "chapter": "fs", + "kind": "method", + "name": "chown", + "signature": "`fs.chown(path, uid, gid, callback)`", + "label": "fs.chown(path, uid, gid, callback)", + "apiSymbol": "fs.chown", + "depth": 1, + "scope": "api", + "anchor": "fschownpath-uid-gid-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:0fe4a0d570f8", + "chapter": "fs", + "kind": "method", + "name": "close", + "signature": "`fs.close(fd[, callback])`", + "label": "fs.close(fd[, callback])", + "apiSymbol": "fs.close", + "depth": 1, + "scope": "api", + "anchor": "fsclosefd-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:3b06da9a0b11", + "chapter": "fs", + "kind": "method", + "name": "copyFile", + "signature": "`fs.copyFile(src, dest[, mode], callback)`", + "label": "fs.copyFile(src, dest[, mode], callback)", + "apiSymbol": "fs.copyFile", + "depth": 1, + "scope": "api", + "anchor": "fscopyfilesrc-dest-mode-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:f37f56fb0b74", + "chapter": "fs", + "kind": "method", + "name": "cp", + "signature": "`fs.cp(src, dest[, options], callback)`", + "label": "fs.cp(src, dest[, options], callback)", + "apiSymbol": "fs.cp", + "depth": 1, + "scope": "api", + "anchor": "fscpsrc-dest-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:548d1b5dd782", + "chapter": "fs", + "kind": "method", + "name": "createReadStream", + "signature": "`fs.createReadStream(path[, options])`", + "label": "fs.createReadStream(path[, options])", + "apiSymbol": "fs.createReadStream", + "depth": 1, + "scope": "api", + "anchor": "fscreatereadstreampath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:19d2dc1dc519", + "chapter": "fs", + "kind": "method", + "name": "createWriteStream", + "signature": "`fs.createWriteStream(path[, options])`", + "label": "fs.createWriteStream(path[, options])", + "apiSymbol": "fs.createWriteStream", + "depth": 1, + "scope": "api", + "anchor": "fscreatewritestreampath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:0e4c1681decb", + "chapter": "fs", + "kind": "method", + "name": "exists", + "signature": "`fs.exists(path, callback)`", + "label": "fs.exists(path, callback)", + "apiSymbol": "fs.exists", + "depth": 1, + "scope": "api", + "anchor": "fsexistspath-callback", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Use [`fs.stat()`][] or [`fs.access()`][] instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:baf47a394061", + "chapter": "fs", + "kind": "method", + "name": "fchmod", + "signature": "`fs.fchmod(fd, mode, callback)`", + "label": "fs.fchmod(fd, mode, callback)", + "apiSymbol": "fs.fchmod", + "depth": 1, + "scope": "api", + "anchor": "fsfchmodfd-mode-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:48a029856149", + "chapter": "fs", + "kind": "method", + "name": "fchown", + "signature": "`fs.fchown(fd, uid, gid, callback)`", + "label": "fs.fchown(fd, uid, gid, callback)", + "apiSymbol": "fs.fchown", + "depth": 1, + "scope": "api", + "anchor": "fsfchownfd-uid-gid-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:206d5374b53a", + "chapter": "fs", + "kind": "method", + "name": "fdatasync", + "signature": "`fs.fdatasync(fd, callback)`", + "label": "fs.fdatasync(fd, callback)", + "apiSymbol": "fs.fdatasync", + "depth": 1, + "scope": "api", + "anchor": "fsfdatasyncfd-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:8e9ad0f9a747", + "chapter": "fs", + "kind": "method", + "name": "fstat", + "signature": "`fs.fstat(fd[, options], callback)`", + "label": "fs.fstat(fd[, options], callback)", + "apiSymbol": "fs.fstat", + "depth": 1, + "scope": "api", + "anchor": "fsfstatfd-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:7cb76319539f", + "chapter": "fs", + "kind": "method", + "name": "fsync", + "signature": "`fs.fsync(fd, callback)`", + "label": "fs.fsync(fd, callback)", + "apiSymbol": "fs.fsync", + "depth": 1, + "scope": "api", + "anchor": "fsfsyncfd-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:3c941bdf13aa", + "chapter": "fs", + "kind": "method", + "name": "ftruncate", + "signature": "`fs.ftruncate(fd[, len], callback)`", + "label": "fs.ftruncate(fd[, len], callback)", + "apiSymbol": "fs.ftruncate", + "depth": 1, + "scope": "api", + "anchor": "fsftruncatefd-len-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:a2fa1a24c69f", + "chapter": "fs", + "kind": "method", + "name": "futimes", + "signature": "`fs.futimes(fd, atime, mtime, callback)`", + "label": "fs.futimes(fd, atime, mtime, callback)", + "apiSymbol": "fs.futimes", + "depth": 1, + "scope": "api", + "anchor": "fsfutimesfd-atime-mtime-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:8ff5599d8054", + "chapter": "fs", + "kind": "method", + "name": "glob", + "signature": "`fs.glob(pattern[, options], callback)`", + "label": "fs.glob(pattern[, options], callback)", + "apiSymbol": "fs.glob", + "depth": 1, + "scope": "api", + "anchor": "fsglobpattern-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:8174d132eb09", + "chapter": "fs", + "kind": "method", + "name": "lchmod", + "signature": "`fs.lchmod(path, mode, callback)`", + "label": "fs.lchmod(path, mode, callback)", + "apiSymbol": "fs.lchmod", + "depth": 1, + "scope": "api", + "anchor": "fslchmodpath-mode-callback", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:2208c40ffa47", + "chapter": "fs", + "kind": "method", + "name": "lchown", + "signature": "`fs.lchown(path, uid, gid, callback)`", + "label": "fs.lchown(path, uid, gid, callback)", + "apiSymbol": "fs.lchown", + "depth": 1, + "scope": "api", + "anchor": "fslchownpath-uid-gid-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:519f0d0d19f1", + "chapter": "fs", + "kind": "method", + "name": "lutimes", + "signature": "`fs.lutimes(path, atime, mtime, callback)`", + "label": "fs.lutimes(path, atime, mtime, callback)", + "apiSymbol": "fs.lutimes", + "depth": 1, + "scope": "api", + "anchor": "fslutimespath-atime-mtime-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:e2db9794ebe6", + "chapter": "fs", + "kind": "method", + "name": "link", + "signature": "`fs.link(existingPath, newPath, callback)`", + "label": "fs.link(existingPath, newPath, callback)", + "apiSymbol": "fs.link", + "depth": 1, + "scope": "api", + "anchor": "fslinkexistingpath-newpath-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:4ec2291f9f00", + "chapter": "fs", + "kind": "method", + "name": "lstat", + "signature": "`fs.lstat(path[, options], callback)`", + "label": "fs.lstat(path[, options], callback)", + "apiSymbol": "fs.lstat", + "depth": 1, + "scope": "api", + "anchor": "fslstatpath-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:f45f74c7f851", + "chapter": "fs", + "kind": "method", + "name": "mkdir", + "signature": "`fs.mkdir(path[, options], callback)`", + "label": "fs.mkdir(path[, options], callback)", + "apiSymbol": "fs.mkdir", + "depth": 1, + "scope": "api", + "anchor": "fsmkdirpath-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:594c52282a1f", + "chapter": "fs", + "kind": "method", + "name": "mkdtemp", + "signature": "`fs.mkdtemp(prefix[, options], callback)`", + "label": "fs.mkdtemp(prefix[, options], callback)", + "apiSymbol": "fs.mkdtemp", + "depth": 1, + "scope": "api", + "anchor": "fsmkdtempprefix-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:ca642ebd75ed", + "chapter": "fs", + "kind": "method", + "name": "open", + "signature": "`fs.open(path[, flags[, mode]], callback)`", + "label": "fs.open(path[, flags[, mode]], callback)", + "apiSymbol": "fs.open", + "depth": 1, + "scope": "api", + "anchor": "fsopenpath-flags-mode-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "fs:74a01715d6fb", + "chapter": "fs", + "kind": "method", + "name": "openAsBlob", + "signature": "`fs.openAsBlob(path[, options])`", + "label": "fs.openAsBlob(path[, options])", + "apiSymbol": "fs.openAsBlob", + "depth": 1, + "scope": "api", + "anchor": "fsopenasblobpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:f76a977aa3de", + "chapter": "fs", + "kind": "method", + "name": "opendir", + "signature": "`fs.opendir(path[, options], callback)`", + "label": "fs.opendir(path[, options], callback)", + "apiSymbol": "fs.opendir", + "depth": 1, + "scope": "api", + "anchor": "fsopendirpath-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:31eaa3759828", + "chapter": "fs", + "kind": "method", + "name": "read", + "signature": "`fs.read(fd, buffer, offset, length, position, callback)`", + "label": "fs.read(fd, buffer, offset, length, position, callback)", + "apiSymbol": "fs.read", + "depth": 1, + "scope": "api", + "anchor": "fsreadfd-buffer-offset-length-position-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "fs:1bc9450beba6", + "chapter": "fs", + "kind": "method", + "name": "read", + "signature": "`fs.read(fd[, options], callback)`", + "label": "fs.read(fd[, options], callback)", + "apiSymbol": "fs.read", + "depth": 1, + "scope": "api", + "anchor": "fsreadfd-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "fs:8cc1038c772b", + "chapter": "fs", + "kind": "method", + "name": "read", + "signature": "`fs.read(fd, buffer[, options], callback)`", + "label": "fs.read(fd, buffer[, options], callback)", + "apiSymbol": "fs.read", + "depth": 1, + "scope": "api", + "anchor": "fsreadfd-buffer-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "fs:796f1de63ebe", + "chapter": "fs", + "kind": "method", + "name": "readdir", + "signature": "`fs.readdir(path[, options], callback)`", + "label": "fs.readdir(path[, options], callback)", + "apiSymbol": "fs.readdir", + "depth": 1, + "scope": "api", + "anchor": "fsreaddirpath-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:1cfdfacd0fb8", + "chapter": "fs", + "kind": "method", + "name": "readFile", + "signature": "`fs.readFile(path[, options], callback)`", + "label": "fs.readFile(path[, options], callback)", + "apiSymbol": "fs.readFile", + "depth": 1, + "scope": "api", + "anchor": "fsreadfilepath-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:b7685deab3a4", + "chapter": "fs", + "kind": "method", + "name": "readlink", + "signature": "`fs.readlink(path[, options], callback)`", + "label": "fs.readlink(path[, options], callback)", + "apiSymbol": "fs.readlink", + "depth": 1, + "scope": "api", + "anchor": "fsreadlinkpath-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:ce49c205ed1a", + "chapter": "fs", + "kind": "method", + "name": "readv", + "signature": "`fs.readv(fd, buffers[, position], callback)`", + "label": "fs.readv(fd, buffers[, position], callback)", + "apiSymbol": "fs.readv", + "depth": 1, + "scope": "api", + "anchor": "fsreadvfd-buffers-position-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:174236a7164e", + "chapter": "fs", + "kind": "method", + "name": "realpath", + "signature": "`fs.realpath(path[, options], callback)`", + "label": "fs.realpath(path[, options], callback)", + "apiSymbol": "fs.realpath", + "depth": 1, + "scope": "api", + "anchor": "fsrealpathpath-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:224d2fd78095", + "chapter": "fs", + "kind": "method", + "name": "native", + "signature": "`fs.realpath.native(path[, options], callback)`", + "label": "fs.realpath.native(path[, options], callback)", + "apiSymbol": "fs.realpath.native", + "depth": 1, + "scope": "api", + "anchor": "fsrealpathnativepath-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:feb6e3f8c110", + "chapter": "fs", + "kind": "method", + "name": "rename", + "signature": "`fs.rename(oldPath, newPath, callback)`", + "label": "fs.rename(oldPath, newPath, callback)", + "apiSymbol": "fs.rename", + "depth": 1, + "scope": "api", + "anchor": "fsrenameoldpath-newpath-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:a78c8968eb96", + "chapter": "fs", + "kind": "method", + "name": "rmdir", + "signature": "`fs.rmdir(path[, options], callback)`", + "label": "fs.rmdir(path[, options], callback)", + "apiSymbol": "fs.rmdir", + "depth": 1, + "scope": "api", + "anchor": "fsrmdirpath-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:c56caf8603fa", + "chapter": "fs", + "kind": "method", + "name": "rm", + "signature": "`fs.rm(path[, options], callback)`", + "label": "fs.rm(path[, options], callback)", + "apiSymbol": "fs.rm", + "depth": 1, + "scope": "api", + "anchor": "fsrmpath-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:cef2a7909fea", + "chapter": "fs", + "kind": "method", + "name": "stat", + "signature": "`fs.stat(path[, options], callback)`", + "label": "fs.stat(path[, options], callback)", + "apiSymbol": "fs.stat", + "depth": 1, + "scope": "api", + "anchor": "fsstatpath-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:4cbe28958d33", + "chapter": "fs", + "kind": "method", + "name": "statfs", + "signature": "`fs.statfs(path[, options], callback)`", + "label": "fs.statfs(path[, options], callback)", + "apiSymbol": "fs.statfs", + "depth": 1, + "scope": "api", + "anchor": "fsstatfspath-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:54947f60eb11", + "chapter": "fs", + "kind": "method", + "name": "symlink", + "signature": "`fs.symlink(target, path[, type], callback)`", + "label": "fs.symlink(target, path[, type], callback)", + "apiSymbol": "fs.symlink", + "depth": 1, + "scope": "api", + "anchor": "fssymlinktarget-path-type-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:a79415f54c1b", + "chapter": "fs", + "kind": "method", + "name": "truncate", + "signature": "`fs.truncate(path[, len], callback)`", + "label": "fs.truncate(path[, len], callback)", + "apiSymbol": "fs.truncate", + "depth": 1, + "scope": "api", + "anchor": "fstruncatepath-len-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:0a5baf6dc3b7", + "chapter": "fs", + "kind": "method", + "name": "unlink", + "signature": "`fs.unlink(path, callback)`", + "label": "fs.unlink(path, callback)", + "apiSymbol": "fs.unlink", + "depth": 1, + "scope": "api", + "anchor": "fsunlinkpath-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:3f00663153e5", + "chapter": "fs", + "kind": "method", + "name": "unwatchFile", + "signature": "`fs.unwatchFile(filename[, listener])`", + "label": "fs.unwatchFile(filename[, listener])", + "apiSymbol": "fs.unwatchFile", + "depth": 1, + "scope": "api", + "anchor": "fsunwatchfilefilename-listener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:ac0ad1c75019", + "chapter": "fs", + "kind": "method", + "name": "utimes", + "signature": "`fs.utimes(path, atime, mtime, callback)`", + "label": "fs.utimes(path, atime, mtime, callback)", + "apiSymbol": "fs.utimes", + "depth": 1, + "scope": "api", + "anchor": "fsutimespath-atime-mtime-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:6bc85cd68c24", + "chapter": "fs", + "kind": "method", + "name": "watch", + "signature": "`fs.watch(filename[, options][, listener])`", + "label": "fs.watch(filename[, options][, listener])", + "apiSymbol": "fs.watch", + "depth": 1, + "scope": "api", + "anchor": "fswatchfilename-options-listener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "fs:895ff71e97dc", + "chapter": "fs", + "kind": "method", + "name": "watchFile", + "signature": "`fs.watchFile(filename[, options], listener)`", + "label": "fs.watchFile(filename[, options], listener)", + "apiSymbol": "fs.watchFile", + "depth": 1, + "scope": "api", + "anchor": "fswatchfilefilename-options-listener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "fs:0a51ef35e48e", + "chapter": "fs", + "kind": "method", + "name": "write", + "signature": "`fs.write(fd, buffer, offset[, length[, position]], callback)`", + "label": "fs.write(fd, buffer, offset[, length[, position]], callback)", + "apiSymbol": "fs.write", + "depth": 1, + "scope": "api", + "anchor": "fswritefd-buffer-offset-length-position-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:8f388a1342de", + "chapter": "fs", + "kind": "method", + "name": "write", + "signature": "`fs.write(fd, buffer[, options], callback)`", + "label": "fs.write(fd, buffer[, options], callback)", + "apiSymbol": "fs.write", + "depth": 1, + "scope": "api", + "anchor": "fswritefd-buffer-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:cf574f056f38", + "chapter": "fs", + "kind": "method", + "name": "write", + "signature": "`fs.write(fd, string[, position[, encoding]], callback)`", + "label": "fs.write(fd, string[, position[, encoding]], callback)", + "apiSymbol": "fs.write", + "depth": 1, + "scope": "api", + "anchor": "fswritefd-string-position-encoding-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:d836c3d9ad11", + "chapter": "fs", + "kind": "method", + "name": "writeFile", + "signature": "`fs.writeFile(file, data[, options], callback)`", + "label": "fs.writeFile(file, data[, options], callback)", + "apiSymbol": "fs.writeFile", + "depth": 1, + "scope": "api", + "anchor": "fswritefilefile-data-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:1b4fcde3d80f", + "chapter": "fs", + "kind": "module", + "name": "using_`fs.writefile()`_with_file_descriptors", + "signature": "Using `fs.writeFile()` with file descriptors", + "label": "Using fs.writeFile() with file descriptors", + "apiSymbol": "fs.writeFile", + "depth": 2, + "scope": "api", + "anchor": "using-fswritefile-with-file-descriptors", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:b0472d4ad2d1", + "chapter": "fs", + "kind": "method", + "name": "writev", + "signature": "`fs.writev(fd, buffers[, position], callback)`", + "label": "fs.writev(fd, buffers[, position], callback)", + "apiSymbol": "fs.writev", + "depth": 1, + "scope": "api", + "anchor": "fswritevfd-buffers-position-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:bb014e8c9326", + "chapter": "fs", + "kind": "method", + "name": "accessSync", + "signature": "`fs.accessSync(path[, mode])`", + "label": "fs.accessSync(path[, mode])", + "apiSymbol": "fs.accessSync", + "depth": 1, + "scope": "api", + "anchor": "fsaccesssyncpath-mode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:e2ea9dde15f4", + "chapter": "fs", + "kind": "method", + "name": "appendFileSync", + "signature": "`fs.appendFileSync(path, data[, options])`", + "label": "fs.appendFileSync(path, data[, options])", + "apiSymbol": "fs.appendFileSync", + "depth": 1, + "scope": "api", + "anchor": "fsappendfilesyncpath-data-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:dac71a8b3dc1", + "chapter": "fs", + "kind": "method", + "name": "chmodSync", + "signature": "`fs.chmodSync(path, mode)`", + "label": "fs.chmodSync(path, mode)", + "apiSymbol": "fs.chmodSync", + "depth": 1, + "scope": "api", + "anchor": "fschmodsyncpath-mode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:3c5a54b5045a", + "chapter": "fs", + "kind": "method", + "name": "chownSync", + "signature": "`fs.chownSync(path, uid, gid)`", + "label": "fs.chownSync(path, uid, gid)", + "apiSymbol": "fs.chownSync", + "depth": 1, + "scope": "api", + "anchor": "fschownsyncpath-uid-gid", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:fbdeeb96f11f", + "chapter": "fs", + "kind": "method", + "name": "closeSync", + "signature": "`fs.closeSync(fd)`", + "label": "fs.closeSync(fd)", + "apiSymbol": "fs.closeSync", + "depth": 1, + "scope": "api", + "anchor": "fsclosesyncfd", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:f6e89df9976d", + "chapter": "fs", + "kind": "method", + "name": "copyFileSync", + "signature": "`fs.copyFileSync(src, dest[, mode])`", + "label": "fs.copyFileSync(src, dest[, mode])", + "apiSymbol": "fs.copyFileSync", + "depth": 1, + "scope": "api", + "anchor": "fscopyfilesyncsrc-dest-mode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:bb1248bb82ed", + "chapter": "fs", + "kind": "method", + "name": "cpSync", + "signature": "`fs.cpSync(src, dest[, options])`", + "label": "fs.cpSync(src, dest[, options])", + "apiSymbol": "fs.cpSync", + "depth": 1, + "scope": "api", + "anchor": "fscpsyncsrc-dest-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:fca100ee30a2", + "chapter": "fs", + "kind": "method", + "name": "existsSync", + "signature": "`fs.existsSync(path)`", + "label": "fs.existsSync(path)", + "apiSymbol": "fs.existsSync", + "depth": 1, + "scope": "api", + "anchor": "fsexistssyncpath", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:b9851094b62a", + "chapter": "fs", + "kind": "method", + "name": "fchmodSync", + "signature": "`fs.fchmodSync(fd, mode)`", + "label": "fs.fchmodSync(fd, mode)", + "apiSymbol": "fs.fchmodSync", + "depth": 1, + "scope": "api", + "anchor": "fsfchmodsyncfd-mode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:2d46f6d5ae28", + "chapter": "fs", + "kind": "method", + "name": "fchownSync", + "signature": "`fs.fchownSync(fd, uid, gid)`", + "label": "fs.fchownSync(fd, uid, gid)", + "apiSymbol": "fs.fchownSync", + "depth": 1, + "scope": "api", + "anchor": "fsfchownsyncfd-uid-gid", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:281e942abda9", + "chapter": "fs", + "kind": "method", + "name": "fdatasyncSync", + "signature": "`fs.fdatasyncSync(fd)`", + "label": "fs.fdatasyncSync(fd)", + "apiSymbol": "fs.fdatasyncSync", + "depth": 1, + "scope": "api", + "anchor": "fsfdatasyncsyncfd", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:b5516b093511", + "chapter": "fs", + "kind": "method", + "name": "fstatSync", + "signature": "`fs.fstatSync(fd[, options])`", + "label": "fs.fstatSync(fd[, options])", + "apiSymbol": "fs.fstatSync", + "depth": 1, + "scope": "api", + "anchor": "fsfstatsyncfd-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:25a81254454a", + "chapter": "fs", + "kind": "method", + "name": "fsyncSync", + "signature": "`fs.fsyncSync(fd)`", + "label": "fs.fsyncSync(fd)", + "apiSymbol": "fs.fsyncSync", + "depth": 1, + "scope": "api", + "anchor": "fsfsyncsyncfd", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:8bca86083737", + "chapter": "fs", + "kind": "method", + "name": "ftruncateSync", + "signature": "`fs.ftruncateSync(fd[, len])`", + "label": "fs.ftruncateSync(fd[, len])", + "apiSymbol": "fs.ftruncateSync", + "depth": 1, + "scope": "api", + "anchor": "fsftruncatesyncfd-len", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:9c37915c5845", + "chapter": "fs", + "kind": "method", + "name": "futimesSync", + "signature": "`fs.futimesSync(fd, atime, mtime)`", + "label": "fs.futimesSync(fd, atime, mtime)", + "apiSymbol": "fs.futimesSync", + "depth": 1, + "scope": "api", + "anchor": "fsfutimessyncfd-atime-mtime", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:e0baabf8ecf5", + "chapter": "fs", + "kind": "method", + "name": "globSync", + "signature": "`fs.globSync(pattern[, options])`", + "label": "fs.globSync(pattern[, options])", + "apiSymbol": "fs.globSync", + "depth": 1, + "scope": "api", + "anchor": "fsglobsyncpattern-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:66fc8542076e", + "chapter": "fs", + "kind": "method", + "name": "lchmodSync", + "signature": "`fs.lchmodSync(path, mode)`", + "label": "fs.lchmodSync(path, mode)", + "apiSymbol": "fs.lchmodSync", + "depth": 1, + "scope": "api", + "anchor": "fslchmodsyncpath-mode", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:745b97380b35", + "chapter": "fs", + "kind": "method", + "name": "lchownSync", + "signature": "`fs.lchownSync(path, uid, gid)`", + "label": "fs.lchownSync(path, uid, gid)", + "apiSymbol": "fs.lchownSync", + "depth": 1, + "scope": "api", + "anchor": "fslchownsyncpath-uid-gid", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:bda1971bbc1e", + "chapter": "fs", + "kind": "method", + "name": "lutimesSync", + "signature": "`fs.lutimesSync(path, atime, mtime)`", + "label": "fs.lutimesSync(path, atime, mtime)", + "apiSymbol": "fs.lutimesSync", + "depth": 1, + "scope": "api", + "anchor": "fslutimessyncpath-atime-mtime", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:0365aee0e526", + "chapter": "fs", + "kind": "method", + "name": "linkSync", + "signature": "`fs.linkSync(existingPath, newPath)`", + "label": "fs.linkSync(existingPath, newPath)", + "apiSymbol": "fs.linkSync", + "depth": 1, + "scope": "api", + "anchor": "fslinksyncexistingpath-newpath", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:83917862164f", + "chapter": "fs", + "kind": "method", + "name": "lstatSync", + "signature": "`fs.lstatSync(path[, options])`", + "label": "fs.lstatSync(path[, options])", + "apiSymbol": "fs.lstatSync", + "depth": 1, + "scope": "api", + "anchor": "fslstatsyncpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:ba4f446256a8", + "chapter": "fs", + "kind": "method", + "name": "mkdirSync", + "signature": "`fs.mkdirSync(path[, options])`", + "label": "fs.mkdirSync(path[, options])", + "apiSymbol": "fs.mkdirSync", + "depth": 1, + "scope": "api", + "anchor": "fsmkdirsyncpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:676cb0d7a016", + "chapter": "fs", + "kind": "method", + "name": "mkdtempSync", + "signature": "`fs.mkdtempSync(prefix[, options])`", + "label": "fs.mkdtempSync(prefix[, options])", + "apiSymbol": "fs.mkdtempSync", + "depth": 1, + "scope": "api", + "anchor": "fsmkdtempsyncprefix-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:df150721a7eb", + "chapter": "fs", + "kind": "method", + "name": "mkdtempDisposableSync", + "signature": "`fs.mkdtempDisposableSync(prefix[, options])`", + "label": "fs.mkdtempDisposableSync(prefix[, options])", + "apiSymbol": "fs.mkdtempDisposableSync", + "depth": 1, + "scope": "api", + "anchor": "fsmkdtempdisposablesyncprefix-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:6c7d156d5e06", + "chapter": "fs", + "kind": "method", + "name": "opendirSync", + "signature": "`fs.opendirSync(path[, options])`", + "label": "fs.opendirSync(path[, options])", + "apiSymbol": "fs.opendirSync", + "depth": 1, + "scope": "api", + "anchor": "fsopendirsyncpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:3eff976b63c2", + "chapter": "fs", + "kind": "method", + "name": "openSync", + "signature": "`fs.openSync(path[, flags[, mode]])`", + "label": "fs.openSync(path[, flags[, mode]])", + "apiSymbol": "fs.openSync", + "depth": 1, + "scope": "api", + "anchor": "fsopensyncpath-flags-mode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "fs:4ab10f30ecd4", + "chapter": "fs", + "kind": "method", + "name": "readdirSync", + "signature": "`fs.readdirSync(path[, options])`", + "label": "fs.readdirSync(path[, options])", + "apiSymbol": "fs.readdirSync", + "depth": 1, + "scope": "api", + "anchor": "fsreaddirsyncpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:59635a07942b", + "chapter": "fs", + "kind": "method", + "name": "readFileSync", + "signature": "`fs.readFileSync(path[, options])`", + "label": "fs.readFileSync(path[, options])", + "apiSymbol": "fs.readFileSync", + "depth": 1, + "scope": "api", + "anchor": "fsreadfilesyncpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:05cb88c2c56a", + "chapter": "fs", + "kind": "method", + "name": "readlinkSync", + "signature": "`fs.readlinkSync(path[, options])`", + "label": "fs.readlinkSync(path[, options])", + "apiSymbol": "fs.readlinkSync", + "depth": 1, + "scope": "api", + "anchor": "fsreadlinksyncpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:d3c7d391185a", + "chapter": "fs", + "kind": "method", + "name": "readSync", + "signature": "`fs.readSync(fd, buffer, offset, length[, position])`", + "label": "fs.readSync(fd, buffer, offset, length[, position])", + "apiSymbol": "fs.readSync", + "depth": 1, + "scope": "api", + "anchor": "fsreadsyncfd-buffer-offset-length-position", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "fs:2b9d0635ca32", + "chapter": "fs", + "kind": "method", + "name": "readSync", + "signature": "`fs.readSync(fd, buffer[, options])`", + "label": "fs.readSync(fd, buffer[, options])", + "apiSymbol": "fs.readSync", + "depth": 1, + "scope": "api", + "anchor": "fsreadsyncfd-buffer-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "fs:9b90630d0b0b", + "chapter": "fs", + "kind": "method", + "name": "readvSync", + "signature": "`fs.readvSync(fd, buffers[, position])`", + "label": "fs.readvSync(fd, buffers[, position])", + "apiSymbol": "fs.readvSync", + "depth": 1, + "scope": "api", + "anchor": "fsreadvsyncfd-buffers-position", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:46f75099c37b", + "chapter": "fs", + "kind": "method", + "name": "realpathSync", + "signature": "`fs.realpathSync(path[, options])`", + "label": "fs.realpathSync(path[, options])", + "apiSymbol": "fs.realpathSync", + "depth": 1, + "scope": "api", + "anchor": "fsrealpathsyncpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:efbc61051a14", + "chapter": "fs", + "kind": "method", + "name": "native", + "signature": "`fs.realpathSync.native(path[, options])`", + "label": "fs.realpathSync.native(path[, options])", + "apiSymbol": "fs.realpathSync.native", + "depth": 1, + "scope": "api", + "anchor": "fsrealpathsyncnativepath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:ba7d747a4147", + "chapter": "fs", + "kind": "method", + "name": "renameSync", + "signature": "`fs.renameSync(oldPath, newPath)`", + "label": "fs.renameSync(oldPath, newPath)", + "apiSymbol": "fs.renameSync", + "depth": 1, + "scope": "api", + "anchor": "fsrenamesyncoldpath-newpath", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:29cf0a7eb183", + "chapter": "fs", + "kind": "method", + "name": "rmdirSync", + "signature": "`fs.rmdirSync(path[, options])`", + "label": "fs.rmdirSync(path[, options])", + "apiSymbol": "fs.rmdirSync", + "depth": 1, + "scope": "api", + "anchor": "fsrmdirsyncpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:9de63e7e0c60", + "chapter": "fs", + "kind": "method", + "name": "rmSync", + "signature": "`fs.rmSync(path[, options])`", + "label": "fs.rmSync(path[, options])", + "apiSymbol": "fs.rmSync", + "depth": 1, + "scope": "api", + "anchor": "fsrmsyncpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:fa16474796d3", + "chapter": "fs", + "kind": "method", + "name": "statSync", + "signature": "`fs.statSync(path[, options])`", + "label": "fs.statSync(path[, options])", + "apiSymbol": "fs.statSync", + "depth": 1, + "scope": "api", + "anchor": "fsstatsyncpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:8d2b6228554c", + "chapter": "fs", + "kind": "method", + "name": "statfsSync", + "signature": "`fs.statfsSync(path[, options])`", + "label": "fs.statfsSync(path[, options])", + "apiSymbol": "fs.statfsSync", + "depth": 1, + "scope": "api", + "anchor": "fsstatfssyncpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:d0d7735d797c", + "chapter": "fs", + "kind": "method", + "name": "symlinkSync", + "signature": "`fs.symlinkSync(target, path[, type])`", + "label": "fs.symlinkSync(target, path[, type])", + "apiSymbol": "fs.symlinkSync", + "depth": 1, + "scope": "api", + "anchor": "fssymlinksynctarget-path-type", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:49bc5269b6ff", + "chapter": "fs", + "kind": "method", + "name": "truncateSync", + "signature": "`fs.truncateSync(path[, len])`", + "label": "fs.truncateSync(path[, len])", + "apiSymbol": "fs.truncateSync", + "depth": 1, + "scope": "api", + "anchor": "fstruncatesyncpath-len", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:00f9a3c9a960", + "chapter": "fs", + "kind": "method", + "name": "unlinkSync", + "signature": "`fs.unlinkSync(path)`", + "label": "fs.unlinkSync(path)", + "apiSymbol": "fs.unlinkSync", + "depth": 1, + "scope": "api", + "anchor": "fsunlinksyncpath", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:ad5262f4704b", + "chapter": "fs", + "kind": "method", + "name": "utimesSync", + "signature": "`fs.utimesSync(path, atime, mtime)`", + "label": "fs.utimesSync(path, atime, mtime)", + "apiSymbol": "fs.utimesSync", + "depth": 1, + "scope": "api", + "anchor": "fsutimessyncpath-atime-mtime", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:668889893efc", + "chapter": "fs", + "kind": "method", + "name": "writeFileSync", + "signature": "`fs.writeFileSync(file, data[, options])`", + "label": "fs.writeFileSync(file, data[, options])", + "apiSymbol": "fs.writeFileSync", + "depth": 1, + "scope": "api", + "anchor": "fswritefilesyncfile-data-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:ecd038299cfd", + "chapter": "fs", + "kind": "method", + "name": "writeSync", + "signature": "`fs.writeSync(fd, buffer, offset[, length[, position]])`", + "label": "fs.writeSync(fd, buffer, offset[, length[, position]])", + "apiSymbol": "fs.writeSync", + "depth": 1, + "scope": "api", + "anchor": "fswritesyncfd-buffer-offset-length-position", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:5069083736b9", + "chapter": "fs", + "kind": "method", + "name": "writeSync", + "signature": "`fs.writeSync(fd, buffer[, options])`", + "label": "fs.writeSync(fd, buffer[, options])", + "apiSymbol": "fs.writeSync", + "depth": 1, + "scope": "api", + "anchor": "fswritesyncfd-buffer-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:09de5457a74e", + "chapter": "fs", + "kind": "method", + "name": "writeSync", + "signature": "`fs.writeSync(fd, string[, position[, encoding]])`", + "label": "fs.writeSync(fd, string[, position[, encoding]])", + "apiSymbol": "fs.writeSync", + "depth": 1, + "scope": "api", + "anchor": "fswritesyncfd-string-position-encoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:4b70362ca185", + "chapter": "fs", + "kind": "method", + "name": "writevSync", + "signature": "`fs.writevSync(fd, buffers[, position])`", + "label": "fs.writevSync(fd, buffers[, position])", + "apiSymbol": "fs.writevSync", + "depth": 1, + "scope": "api", + "anchor": "fswritevsyncfd-buffers-position", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:0700728ff82b", + "chapter": "fs", + "kind": "class", + "name": "fs.Dir", + "signature": "Class: `fs.Dir`", + "label": "fs.Dir", + "apiSymbol": "fs.Dir", + "depth": 1, + "scope": "api", + "anchor": "class-fsdir", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:8f0992fd2676", + "chapter": "fs", + "kind": "method", + "name": "close", + "signature": "`dir.close()`", + "label": "dir.close()", + "apiSymbol": "dir.close", + "depth": 2, + "scope": "api", + "anchor": "dirclose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:dafe70445346", + "chapter": "fs", + "kind": "method", + "name": "close", + "signature": "`dir.close(callback)`", + "label": "dir.close(callback)", + "apiSymbol": "dir.close", + "depth": 2, + "scope": "api", + "anchor": "dirclosecallback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:ab1eb3512a46", + "chapter": "fs", + "kind": "method", + "name": "closeSync", + "signature": "`dir.closeSync()`", + "label": "dir.closeSync()", + "apiSymbol": "dir.closeSync", + "depth": 2, + "scope": "api", + "anchor": "dirclosesync", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:1237c8f2cdaf", + "chapter": "fs", + "kind": "method", + "name": "read", + "signature": "`dir.read()`", + "label": "dir.read()", + "apiSymbol": "dir.read", + "depth": 2, + "scope": "api", + "anchor": "dirread", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:9a4bb9761d36", + "chapter": "fs", + "kind": "method", + "name": "read", + "signature": "`dir.read(callback)`", + "label": "dir.read(callback)", + "apiSymbol": "dir.read", + "depth": 2, + "scope": "api", + "anchor": "dirreadcallback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:1fdce227cd9a", + "chapter": "fs", + "kind": "method", + "name": "readSync", + "signature": "`dir.readSync()`", + "label": "dir.readSync()", + "apiSymbol": "dir.readSync", + "depth": 2, + "scope": "api", + "anchor": "dirreadsync", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:1d0eaa01f1be", + "chapter": "fs", + "kind": "method", + "name": "[Symbol.asyncIterator]", + "signature": "`dir[Symbol.asyncIterator]()`", + "label": "dir[Symbol.asyncIterator]()", + "apiSymbol": "dir", + "depth": 2, + "scope": "api", + "anchor": "dirsymbolasynciterator", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:4966ee8cacca", + "chapter": "fs", + "kind": "method", + "name": "[Symbol.asyncDispose]", + "signature": "`dir[Symbol.asyncDispose]()`", + "label": "dir[Symbol.asyncDispose]()", + "apiSymbol": "dir", + "depth": 2, + "scope": "api", + "anchor": "dirsymbolasyncdispose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:c1769a18ab33", + "chapter": "fs", + "kind": "method", + "name": "[Symbol.dispose]", + "signature": "`dir[Symbol.dispose]()`", + "label": "dir[Symbol.dispose]()", + "apiSymbol": "dir", + "depth": 2, + "scope": "api", + "anchor": "dirsymboldispose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:87ae9b6e5321", + "chapter": "fs", + "kind": "string", + "name": "Type", + "signature": "`path` Type: {string}", + "label": "path", + "apiSymbol": "path", + "depth": 2, + "scope": "api", + "anchor": "class-fsdir", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:6ba1f059c061", + "chapter": "fs", + "kind": "class", + "name": "fs.Dirent", + "signature": "Class: `fs.Dirent`", + "label": "fs.Dirent", + "apiSymbol": "fs.Dirent", + "depth": 1, + "scope": "api", + "anchor": "class-fsdirent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:1f335191caec", + "chapter": "fs", + "kind": "method", + "name": "isBlockDevice", + "signature": "`dirent.isBlockDevice()`", + "label": "dirent.isBlockDevice()", + "apiSymbol": "dirent.isBlockDevice", + "depth": 2, + "scope": "api", + "anchor": "direntisblockdevice", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "fs:6f67bd847cb5", + "chapter": "fs", + "kind": "method", + "name": "isCharacterDevice", + "signature": "`dirent.isCharacterDevice()`", + "label": "dirent.isCharacterDevice()", + "apiSymbol": "dirent.isCharacterDevice", + "depth": 2, + "scope": "api", + "anchor": "direntischaracterdevice", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "fs:9a775bd97bf2", + "chapter": "fs", + "kind": "method", + "name": "isDirectory", + "signature": "`dirent.isDirectory()`", + "label": "dirent.isDirectory()", + "apiSymbol": "dirent.isDirectory", + "depth": 2, + "scope": "api", + "anchor": "direntisdirectory", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "fs:118f97cef6a1", + "chapter": "fs", + "kind": "method", + "name": "isFIFO", + "signature": "`dirent.isFIFO()`", + "label": "dirent.isFIFO()", + "apiSymbol": "dirent.isFIFO", + "depth": 2, + "scope": "api", + "anchor": "direntisfifo", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "fs:2dfaea02ec63", + "chapter": "fs", + "kind": "method", + "name": "isFile", + "signature": "`dirent.isFile()`", + "label": "dirent.isFile()", + "apiSymbol": "dirent.isFile", + "depth": 2, + "scope": "api", + "anchor": "direntisfile", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "fs:62ecccf02d3b", + "chapter": "fs", + "kind": "method", + "name": "isSocket", + "signature": "`dirent.isSocket()`", + "label": "dirent.isSocket()", + "apiSymbol": "dirent.isSocket", + "depth": 2, + "scope": "api", + "anchor": "direntissocket", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "fs:925fe5a4413e", + "chapter": "fs", + "kind": "method", + "name": "isSymbolicLink", + "signature": "`dirent.isSymbolicLink()`", + "label": "dirent.isSymbolicLink()", + "apiSymbol": "dirent.isSymbolicLink", + "depth": 2, + "scope": "api", + "anchor": "direntissymboliclink", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "fs:0996e04aa348", + "chapter": "fs", + "kind": "string|Buffer", + "name": "Type", + "signature": "`name` Type: {string|Buffer}", + "label": "name", + "apiSymbol": "name", + "depth": 2, + "scope": "api", + "anchor": "class-fsdirent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:7c31ccd9e935", + "chapter": "fs", + "kind": "string", + "name": "Type", + "signature": "`parentPath` Type: {string}", + "label": "parentPath", + "apiSymbol": "parentPath", + "depth": 2, + "scope": "api", + "anchor": "class-fsdirent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:b32d5f6a7bd6", + "chapter": "fs", + "kind": "class", + "name": "fs.FSWatcher", + "signature": "Class: `fs.FSWatcher`", + "label": "fs.FSWatcher", + "apiSymbol": "fs.FSWatcher", + "depth": 1, + "scope": "api", + "anchor": "class-fsfswatcher", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:5ac07bccf3dd", + "chapter": "fs", + "kind": "method", + "name": "close", + "signature": "`watcher.close()`", + "label": "watcher.close()", + "apiSymbol": "watcher.close", + "depth": 2, + "scope": "api", + "anchor": "watcherclose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:cf1e24d2cfc9", + "chapter": "fs", + "kind": "method", + "name": "ref", + "signature": "`watcher.ref()`", + "label": "watcher.ref()", + "apiSymbol": "watcher.ref", + "depth": 2, + "scope": "api", + "anchor": "watcherref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:f1d34ce9ba28", + "chapter": "fs", + "kind": "method", + "name": "unref", + "signature": "`watcher.unref()`", + "label": "watcher.unref()", + "apiSymbol": "watcher.unref", + "depth": 2, + "scope": "api", + "anchor": "watcherunref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:b79e3f76cb72", + "chapter": "fs", + "kind": "event", + "name": "change", + "signature": "Event: `'change'`", + "label": "'change'", + "apiSymbol": "'change'", + "depth": 2, + "scope": "api", + "anchor": "event-change", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:7364d8aee5ea", + "chapter": "fs", + "kind": "event", + "name": "close", + "signature": "Event: `'close'`", + "label": "'close'", + "apiSymbol": "'close'", + "depth": 2, + "scope": "api", + "anchor": "event-close_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:031d6b41d802", + "chapter": "fs", + "kind": "event", + "name": "error", + "signature": "Event: `'error'`", + "label": "'error'", + "apiSymbol": "'error'", + "depth": 2, + "scope": "api", + "anchor": "event-error", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:d51e95ac7f61", + "chapter": "fs", + "kind": "class", + "name": "fs.StatWatcher", + "signature": "Class: `fs.StatWatcher`", + "label": "fs.StatWatcher", + "apiSymbol": "fs.StatWatcher", + "depth": 1, + "scope": "api", + "anchor": "class-fsstatwatcher", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:988f90491829", + "chapter": "fs", + "kind": "method", + "name": "ref", + "signature": "`watcher.ref()`", + "label": "watcher.ref()", + "apiSymbol": "watcher.ref", + "depth": 2, + "scope": "api", + "anchor": "watcherref_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:034365c650a1", + "chapter": "fs", + "kind": "method", + "name": "unref", + "signature": "`watcher.unref()`", + "label": "watcher.unref()", + "apiSymbol": "watcher.unref", + "depth": 2, + "scope": "api", + "anchor": "watcherunref_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:70a17bd2bec1", + "chapter": "fs", + "kind": "class", + "name": "fs.ReadStream", + "signature": "Class: `fs.ReadStream`", + "label": "fs.ReadStream", + "apiSymbol": "fs.ReadStream", + "depth": 1, + "scope": "api", + "anchor": "class-fsreadstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:89e032fbc073", + "chapter": "fs", + "kind": "number", + "name": "Type", + "signature": "`bytesRead` Type: {number}", + "label": "bytesRead", + "apiSymbol": "bytesRead", + "depth": 2, + "scope": "api", + "anchor": "class-fsreadstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:1097ed6f3550", + "chapter": "fs", + "kind": "string|Buffer", + "name": "Type", + "signature": "`path` Type: {string|Buffer}", + "label": "path", + "apiSymbol": "path", + "depth": 2, + "scope": "api", + "anchor": "class-fsreadstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:e94276a4f603", + "chapter": "fs", + "kind": "boolean", + "name": "Type", + "signature": "`pending` Type: {boolean}", + "label": "pending", + "apiSymbol": "pending", + "depth": 2, + "scope": "api", + "anchor": "class-fsreadstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:fc9d5f0bd4ef", + "chapter": "fs", + "kind": "event", + "name": "close", + "signature": "Event: `'close'`", + "label": "'close'", + "apiSymbol": "'close'", + "depth": 2, + "scope": "api", + "anchor": "event-close_2", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:8048afed7bb3", + "chapter": "fs", + "kind": "event", + "name": "open", + "signature": "Event: `'open'`", + "label": "'open'", + "apiSymbol": "'open'", + "depth": 2, + "scope": "api", + "anchor": "event-open", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:b01db8ac01c6", + "chapter": "fs", + "kind": "event", + "name": "ready", + "signature": "Event: `'ready'`", + "label": "'ready'", + "apiSymbol": "'ready'", + "depth": 2, + "scope": "api", + "anchor": "event-ready", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:9e2d6b3a74c4", + "chapter": "fs", + "kind": "class", + "name": "fs.Stats", + "signature": "Class: `fs.Stats`", + "label": "fs.Stats", + "apiSymbol": "fs.Stats", + "depth": 1, + "scope": "api", + "anchor": "class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:18959c24e4e7", + "chapter": "fs", + "kind": "method", + "name": "isBlockDevice", + "signature": "`stats.isBlockDevice()`", + "label": "stats.isBlockDevice()", + "apiSymbol": "stats.isBlockDevice", + "depth": 2, + "scope": "api", + "anchor": "statsisblockdevice", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "fs:8b5f86ca00da", + "chapter": "fs", + "kind": "method", + "name": "isCharacterDevice", + "signature": "`stats.isCharacterDevice()`", + "label": "stats.isCharacterDevice()", + "apiSymbol": "stats.isCharacterDevice", + "depth": 2, + "scope": "api", + "anchor": "statsischaracterdevice", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "fs:be43482bd90b", + "chapter": "fs", + "kind": "method", + "name": "isDirectory", + "signature": "`stats.isDirectory()`", + "label": "stats.isDirectory()", + "apiSymbol": "stats.isDirectory", + "depth": 2, + "scope": "api", + "anchor": "statsisdirectory", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "fs:2729abbbdfe6", + "chapter": "fs", + "kind": "method", + "name": "isFIFO", + "signature": "`stats.isFIFO()`", + "label": "stats.isFIFO()", + "apiSymbol": "stats.isFIFO", + "depth": 2, + "scope": "api", + "anchor": "statsisfifo", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "fs:e065a4e22ea2", + "chapter": "fs", + "kind": "method", + "name": "isFile", + "signature": "`stats.isFile()`", + "label": "stats.isFile()", + "apiSymbol": "stats.isFile", + "depth": 2, + "scope": "api", + "anchor": "statsisfile", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "fs:8860f69477be", + "chapter": "fs", + "kind": "method", + "name": "isSocket", + "signature": "`stats.isSocket()`", + "label": "stats.isSocket()", + "apiSymbol": "stats.isSocket", + "depth": 2, + "scope": "api", + "anchor": "statsissocket", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "fs:e83ef70b61dc", + "chapter": "fs", + "kind": "method", + "name": "isSymbolicLink", + "signature": "`stats.isSymbolicLink()`", + "label": "stats.isSymbolicLink()", + "apiSymbol": "stats.isSymbolicLink", + "depth": 2, + "scope": "api", + "anchor": "statsissymboliclink", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "fs:20786cc9ebdf", + "chapter": "fs", + "kind": "number|bigint", + "name": "Type", + "signature": "`dev` Type: {number|bigint}", + "label": "dev", + "apiSymbol": "dev", + "depth": 2, + "scope": "api", + "anchor": "class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:1f3f0c9b2b31", + "chapter": "fs", + "kind": "number|bigint", + "name": "Type", + "signature": "`ino` Type: {number|bigint}", + "label": "ino", + "apiSymbol": "ino", + "depth": 2, + "scope": "api", + "anchor": "class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:e6f5dffde66b", + "chapter": "fs", + "kind": "number|bigint", + "name": "Type", + "signature": "`mode` Type: {number|bigint}", + "label": "mode", + "apiSymbol": "mode", + "depth": 2, + "scope": "api", + "anchor": "class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:5809098972ff", + "chapter": "fs", + "kind": "number|bigint", + "name": "Type", + "signature": "`nlink` Type: {number|bigint}", + "label": "nlink", + "apiSymbol": "nlink", + "depth": 2, + "scope": "api", + "anchor": "class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:d7ac2147678c", + "chapter": "fs", + "kind": "number|bigint", + "name": "Type", + "signature": "`uid` Type: {number|bigint}", + "label": "uid", + "apiSymbol": "uid", + "depth": 2, + "scope": "api", + "anchor": "class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:3b127ccf2d6e", + "chapter": "fs", + "kind": "number|bigint", + "name": "Type", + "signature": "`gid` Type: {number|bigint}", + "label": "gid", + "apiSymbol": "gid", + "depth": 2, + "scope": "api", + "anchor": "class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:2965d137edaf", + "chapter": "fs", + "kind": "number|bigint", + "name": "Type", + "signature": "`rdev` Type: {number|bigint}", + "label": "rdev", + "apiSymbol": "rdev", + "depth": 2, + "scope": "api", + "anchor": "class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:8afaf1066b78", + "chapter": "fs", + "kind": "number|bigint", + "name": "Type", + "signature": "`size` Type: {number|bigint}", + "label": "size", + "apiSymbol": "size", + "depth": 2, + "scope": "api", + "anchor": "class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:c639785e166d", + "chapter": "fs", + "kind": "number|bigint", + "name": "Type", + "signature": "`blksize` Type: {number|bigint}", + "label": "blksize", + "apiSymbol": "blksize", + "depth": 2, + "scope": "api", + "anchor": "class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:a679ec1055f9", + "chapter": "fs", + "kind": "number|bigint", + "name": "Type", + "signature": "`blocks` Type: {number|bigint}", + "label": "blocks", + "apiSymbol": "blocks", + "depth": 2, + "scope": "api", + "anchor": "class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:a5eb34c0428f", + "chapter": "fs", + "kind": "number|bigint", + "name": "Type", + "signature": "`atimeMs` Type: {number|bigint}", + "label": "atimeMs", + "apiSymbol": "atimeMs", + "depth": 2, + "scope": "api", + "anchor": "class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:51681a49aa5b", + "chapter": "fs", + "kind": "number|bigint", + "name": "Type", + "signature": "`mtimeMs` Type: {number|bigint}", + "label": "mtimeMs", + "apiSymbol": "mtimeMs", + "depth": 2, + "scope": "api", + "anchor": "class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:c28b6f8896c7", + "chapter": "fs", + "kind": "number|bigint", + "name": "Type", + "signature": "`ctimeMs` Type: {number|bigint}", + "label": "ctimeMs", + "apiSymbol": "ctimeMs", + "depth": 2, + "scope": "api", + "anchor": "class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:02f8cefc6a0f", + "chapter": "fs", + "kind": "number|bigint", + "name": "Type", + "signature": "`birthtimeMs` Type: {number|bigint}", + "label": "birthtimeMs", + "apiSymbol": "birthtimeMs", + "depth": 2, + "scope": "api", + "anchor": "class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:8643d6850d73", + "chapter": "fs", + "kind": "bigint", + "name": "Type", + "signature": "`atimeNs` Type: {bigint}", + "label": "atimeNs", + "apiSymbol": "atimeNs", + "depth": 2, + "scope": "api", + "anchor": "class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:16813488e5d1", + "chapter": "fs", + "kind": "bigint", + "name": "Type", + "signature": "`mtimeNs` Type: {bigint}", + "label": "mtimeNs", + "apiSymbol": "mtimeNs", + "depth": 2, + "scope": "api", + "anchor": "class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:42515e76deed", + "chapter": "fs", + "kind": "bigint", + "name": "Type", + "signature": "`ctimeNs` Type: {bigint}", + "label": "ctimeNs", + "apiSymbol": "ctimeNs", + "depth": 2, + "scope": "api", + "anchor": "class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:3270d8cad8fc", + "chapter": "fs", + "kind": "bigint", + "name": "Type", + "signature": "`birthtimeNs` Type: {bigint}", + "label": "birthtimeNs", + "apiSymbol": "birthtimeNs", + "depth": 2, + "scope": "api", + "anchor": "class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:a967f5c6b78e", + "chapter": "fs", + "kind": "Date", + "name": "Type", + "signature": "`atime` Type: {Date}", + "label": "atime", + "apiSymbol": "atime", + "depth": 2, + "scope": "api", + "anchor": "class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:f7513d4484b9", + "chapter": "fs", + "kind": "Date", + "name": "Type", + "signature": "`mtime` Type: {Date}", + "label": "mtime", + "apiSymbol": "mtime", + "depth": 2, + "scope": "api", + "anchor": "class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:cfeab88f962f", + "chapter": "fs", + "kind": "Date", + "name": "Type", + "signature": "`ctime` Type: {Date}", + "label": "ctime", + "apiSymbol": "ctime", + "depth": 2, + "scope": "api", + "anchor": "class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:1e32671123c6", + "chapter": "fs", + "kind": "Date", + "name": "Type", + "signature": "`birthtime` Type: {Date}", + "label": "birthtime", + "apiSymbol": "birthtime", + "depth": 2, + "scope": "api", + "anchor": "class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:2da67f34e84e", + "chapter": "fs", + "kind": "class", + "name": "fs.StatFs", + "signature": "Class: `fs.StatFs`", + "label": "fs.StatFs", + "apiSymbol": "fs.StatFs", + "depth": 1, + "scope": "api", + "anchor": "class-fsstatfs", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:eb5d75d27df4", + "chapter": "fs", + "kind": "number|bigint", + "name": "Type", + "signature": "`bavail` Type: {number|bigint}", + "label": "bavail", + "apiSymbol": "bavail", + "depth": 2, + "scope": "api", + "anchor": "class-fsstatfs", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:bce506d811f8", + "chapter": "fs", + "kind": "number|bigint", + "name": "Type", + "signature": "`bfree` Type: {number|bigint}", + "label": "bfree", + "apiSymbol": "bfree", + "depth": 2, + "scope": "api", + "anchor": "class-fsstatfs", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:fcd0f2b57d05", + "chapter": "fs", + "kind": "number|bigint", + "name": "Type", + "signature": "`blocks` Type: {number|bigint}", + "label": "blocks", + "apiSymbol": "blocks", + "depth": 2, + "scope": "api", + "anchor": "class-fsstatfs", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:8f9cdecf8983", + "chapter": "fs", + "kind": "number|bigint", + "name": "Type", + "signature": "`bsize` Type: {number|bigint}", + "label": "bsize", + "apiSymbol": "bsize", + "depth": 2, + "scope": "api", + "anchor": "class-fsstatfs", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:4d046e9b2b75", + "chapter": "fs", + "kind": "number|bigint", + "name": "Type", + "signature": "`ffree` Type: {number|bigint}", + "label": "ffree", + "apiSymbol": "ffree", + "depth": 2, + "scope": "api", + "anchor": "class-fsstatfs", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:d056678eaa8f", + "chapter": "fs", + "kind": "number|bigint", + "name": "Type", + "signature": "`files` Type: {number|bigint}", + "label": "files", + "apiSymbol": "files", + "depth": 2, + "scope": "api", + "anchor": "class-fsstatfs", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:50b1621ed254", + "chapter": "fs", + "kind": "number|bigint", + "name": "Type", + "signature": "`type` Type: {number|bigint}", + "label": "type", + "apiSymbol": "type", + "depth": 2, + "scope": "api", + "anchor": "class-fsstatfs", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:3616aeebdd25", + "chapter": "fs", + "kind": "class", + "name": "fs.Utf8Stream", + "signature": "Class: `fs.Utf8Stream`", + "label": "fs.Utf8Stream", + "apiSymbol": "fs.Utf8Stream", + "depth": 1, + "scope": "api", + "anchor": "class-fsutf8stream", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:4fa376d6e25e", + "chapter": "fs", + "kind": "method", + "name": "destroy", + "signature": "`utf8Stream.destroy()`", + "label": "utf8Stream.destroy()", + "apiSymbol": "utf8Stream.destroy", + "depth": 2, + "scope": "api", + "anchor": "utf8streamdestroy", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:8365aa7a5edc", + "chapter": "fs", + "kind": "method", + "name": "end", + "signature": "`utf8Stream.end()`", + "label": "utf8Stream.end()", + "apiSymbol": "utf8Stream.end", + "depth": 2, + "scope": "api", + "anchor": "utf8streamend", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:51c873b34d16", + "chapter": "fs", + "kind": "method", + "name": "flush", + "signature": "`utf8Stream.flush(callback)`", + "label": "utf8Stream.flush(callback)", + "apiSymbol": "utf8Stream.flush", + "depth": 2, + "scope": "api", + "anchor": "utf8streamflushcallback", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:0b12b89d6c24", + "chapter": "fs", + "kind": "method", + "name": "flushSync", + "signature": "`utf8Stream.flushSync()`", + "label": "utf8Stream.flushSync()", + "apiSymbol": "utf8Stream.flushSync", + "depth": 2, + "scope": "api", + "anchor": "utf8streamflushsync", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:8703035de37d", + "chapter": "fs", + "kind": "method", + "name": "reopen", + "signature": "`utf8Stream.reopen(file)`", + "label": "utf8Stream.reopen(file)", + "apiSymbol": "utf8Stream.reopen", + "depth": 2, + "scope": "api", + "anchor": "utf8streamreopenfile", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:9d047ff0985c", + "chapter": "fs", + "kind": "method", + "name": "write", + "signature": "`utf8Stream.write(data)`", + "label": "utf8Stream.write(data)", + "apiSymbol": "utf8Stream.write", + "depth": 2, + "scope": "api", + "anchor": "utf8streamwritedata", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:42a6ccd98a72", + "chapter": "fs", + "kind": "method", + "name": "[Symbol.dispose]", + "signature": "`utf8Stream[Symbol.dispose]()`", + "label": "utf8Stream[Symbol.dispose]()", + "apiSymbol": "utf8Stream", + "depth": 2, + "scope": "api", + "anchor": "utf8streamsymboldispose", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:1a0626006251", + "chapter": "fs", + "kind": "boolean", + "name": "append", + "signature": "`append` {boolean} Whether the stream is appending to the file or truncating it.", + "label": "append", + "apiSymbol": "append", + "depth": 2, + "scope": "api", + "anchor": "class-fsutf8stream", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:a0001f699ad9", + "chapter": "fs", + "kind": "string", + "name": "contentMode", + "signature": "`contentMode` {string} The type of data that can be written to the stream. Supported values are `'utf8'` or `'buffer'`. **Default**: `'utf8'`.", + "label": "contentMode", + "apiSymbol": "contentMode", + "depth": 2, + "scope": "api", + "anchor": "class-fsutf8stream", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:d988344f328a", + "chapter": "fs", + "kind": "number", + "name": "fd", + "signature": "`fd` {number} The file descriptor that is being written to.", + "label": "fd", + "apiSymbol": "fd", + "depth": 2, + "scope": "api", + "anchor": "class-fsutf8stream", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:536f95ee41e6", + "chapter": "fs", + "kind": "string", + "name": "file", + "signature": "`file` {string} The file that is being written to.", + "label": "file", + "apiSymbol": "file", + "depth": 2, + "scope": "api", + "anchor": "class-fsutf8stream", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:e09fb5743c13", + "chapter": "fs", + "kind": "boolean", + "name": "fsync", + "signature": "`fsync` {boolean} Whether the stream is performing a `fs.fsyncSync()` after every write operation.", + "label": "fsync", + "apiSymbol": "fsync", + "depth": 2, + "scope": "api", + "anchor": "class-fsutf8stream", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:344c32326cd9", + "chapter": "fs", + "kind": "number", + "name": "maxLength", + "signature": "`maxLength` {number} The maximum length of the internal buffer. If a write operation would cause the buffer to exceed `maxLength`, the data written is dropped and a drop event is emitted with the dropped data.", + "label": "maxLength", + "apiSymbol": "maxLength", + "depth": 2, + "scope": "api", + "anchor": "class-fsutf8stream", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:c19423abd2a5", + "chapter": "fs", + "kind": "number", + "name": "minLength", + "signature": "`minLength` {number} The minimum length of the internal buffer that is required to be full before flushing.", + "label": "minLength", + "apiSymbol": "minLength", + "depth": 2, + "scope": "api", + "anchor": "class-fsutf8stream", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:e26282630600", + "chapter": "fs", + "kind": "boolean", + "name": "mkdir", + "signature": "`mkdir` {boolean} Whether the stream should ensure that the directory for the `dest` file exists. If `true`, it will create the directory if it does not exist. **Default**: `false`.", + "label": "mkdir", + "apiSymbol": "mkdir", + "depth": 2, + "scope": "api", + "anchor": "class-fsutf8stream", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "fs:624d89bc3819", + "chapter": "fs", + "kind": "number|string", + "name": "mode", + "signature": "`mode` {number|string} The mode of the file that is being written to.", + "label": "mode", + "apiSymbol": "mode", + "depth": 2, + "scope": "api", + "anchor": "class-fsutf8stream", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:e1fb24c528b9", + "chapter": "fs", + "kind": "number", + "name": "periodicFlush", + "signature": "`periodicFlush` {number} The number of milliseconds between flushes. If set to `0`, no periodic flushes will be performed.", + "label": "periodicFlush", + "apiSymbol": "periodicFlush", + "depth": 2, + "scope": "api", + "anchor": "class-fsutf8stream", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:eacd2bd696a7", + "chapter": "fs", + "kind": "boolean", + "name": "sync", + "signature": "`sync` {boolean} Whether the stream is writing synchronously or asynchronously.", + "label": "sync", + "apiSymbol": "sync", + "depth": 2, + "scope": "api", + "anchor": "class-fsutf8stream", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:e4987ee88b62", + "chapter": "fs", + "kind": "boolean", + "name": "writing", + "signature": "`writing` {boolean} Whether the stream is currently writing data to the file.", + "label": "writing", + "apiSymbol": "writing", + "depth": 2, + "scope": "api", + "anchor": "class-fsutf8stream", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:0d8a4cfae207", + "chapter": "fs", + "kind": "event", + "name": "close", + "signature": "Event: `'close'`", + "label": "'close'", + "apiSymbol": "'close'", + "depth": 2, + "scope": "api", + "anchor": "event-close_3", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:34975f29786a", + "chapter": "fs", + "kind": "event", + "name": "drain", + "signature": "Event: `'drain'`", + "label": "'drain'", + "apiSymbol": "'drain'", + "depth": 2, + "scope": "api", + "anchor": "event-drain", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:01ad890e8ab9", + "chapter": "fs", + "kind": "event", + "name": "drop", + "signature": "Event: `'drop'`", + "label": "'drop'", + "apiSymbol": "'drop'", + "depth": 2, + "scope": "api", + "anchor": "event-drop", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:c65cbc52a2c8", + "chapter": "fs", + "kind": "event", + "name": "error", + "signature": "Event: `'error'`", + "label": "'error'", + "apiSymbol": "'error'", + "depth": 2, + "scope": "api", + "anchor": "event-error_1", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:82ec7e5fdd12", + "chapter": "fs", + "kind": "event", + "name": "finish", + "signature": "Event: `'finish'`", + "label": "'finish'", + "apiSymbol": "'finish'", + "depth": 2, + "scope": "api", + "anchor": "event-finish", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:76e97a63153b", + "chapter": "fs", + "kind": "event", + "name": "ready", + "signature": "Event: `'ready'`", + "label": "'ready'", + "apiSymbol": "'ready'", + "depth": 2, + "scope": "api", + "anchor": "event-ready_1", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:721e22645a92", + "chapter": "fs", + "kind": "event", + "name": "write", + "signature": "Event: `'write'`", + "label": "'write'", + "apiSymbol": "'write'", + "depth": 2, + "scope": "api", + "anchor": "event-write", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:a3a6d2b82c48", + "chapter": "fs", + "kind": "class", + "name": "fs.WriteStream", + "signature": "Class: `fs.WriteStream`", + "label": "fs.WriteStream", + "apiSymbol": "fs.WriteStream", + "depth": 1, + "scope": "api", + "anchor": "class-fswritestream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:f3d18d9a1560", + "chapter": "fs", + "kind": "method", + "name": "close", + "signature": "`writeStream.close([callback])`", + "label": "writeStream.close([callback])", + "apiSymbol": "writeStream.close", + "depth": 2, + "scope": "api", + "anchor": "writestreamclosecallback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:ff47fa09330e", + "chapter": "fs", + "kind": "section", + "name": "bytesWritten", + "signature": "`writeStream.bytesWritten`", + "label": "writeStream.bytesWritten", + "apiSymbol": "writeStream.bytesWritten", + "depth": 2, + "scope": "api", + "anchor": "writestreambyteswritten", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:83ac087e7704", + "chapter": "fs", + "kind": "section", + "name": "path", + "signature": "`writeStream.path`", + "label": "writeStream.path", + "apiSymbol": "writeStream.path", + "depth": 2, + "scope": "api", + "anchor": "writestreampath", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:8b8084446f59", + "chapter": "fs", + "kind": "boolean", + "name": "Type", + "signature": "`pending` Type: {boolean}", + "label": "pending", + "apiSymbol": "pending", + "depth": 2, + "scope": "api", + "anchor": "class-fswritestream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:2890c22679f2", + "chapter": "fs", + "kind": "event", + "name": "close", + "signature": "Event: `'close'`", + "label": "'close'", + "apiSymbol": "'close'", + "depth": 2, + "scope": "api", + "anchor": "event-close_4", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:399c12e08dc7", + "chapter": "fs", + "kind": "event", + "name": "open", + "signature": "Event: `'open'`", + "label": "'open'", + "apiSymbol": "'open'", + "depth": 2, + "scope": "api", + "anchor": "event-open_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:bd767ab89494", + "chapter": "fs", + "kind": "event", + "name": "ready", + "signature": "Event: `'ready'`", + "label": "'ready'", + "apiSymbol": "'ready'", + "depth": 2, + "scope": "api", + "anchor": "event-ready_2", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "fs:c6d54b148bca", + "chapter": "fs", + "kind": "Object", + "name": "Type", + "signature": "`constants` Type: {Object}", + "label": "constants", + "apiSymbol": "constants", + "depth": 1, + "scope": "api", + "anchor": "common-objects", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "globals:fc125a63d4c2", + "chapter": "globals", + "kind": "misc", + "name": "Global objects", + "signature": "Global objects", + "label": "Global objects", + "apiSymbol": "Global objects", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + }, + "dynamic": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + } + }, + { + "id": "globals:86d4ea5a74c7", + "chapter": "globals", + "kind": "class", + "name": "AbortController", + "signature": "Class: `AbortController`", + "label": "AbortController", + "apiSymbol": "AbortController", + "depth": 1, + "scope": "api", + "anchor": "class-abortcontroller", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Provided by the embedded engine's web/global compatibility layer.", + "verification": "test-backed" + } + }, + { + "id": "globals:a7652dabd314", + "chapter": "globals", + "kind": "method", + "name": "abort", + "signature": "`abortController.abort([reason])`", + "label": "abortController.abort([reason])", + "apiSymbol": "abortController.abort", + "depth": 2, + "scope": "api", + "anchor": "abortcontrollerabortreason", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "globals:5cda665ef9c7", + "chapter": "globals", + "kind": "AbortSignal", + "name": "Type", + "signature": "`signal` Type: {AbortSignal}", + "label": "signal", + "apiSymbol": "signal", + "depth": 2, + "scope": "api", + "anchor": "class-abortcontroller", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "globals:cab94a87201e", + "chapter": "globals", + "kind": "class", + "name": "AbortSignal", + "signature": "Class: `AbortSignal`", + "label": "AbortSignal", + "apiSymbol": "AbortSignal", + "depth": 1, + "scope": "api", + "anchor": "class-abortsignal", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Provided by the embedded engine's web/global compatibility layer.", + "verification": "test-backed" + } + }, + { + "id": "globals:127f66819ead", + "chapter": "globals", + "kind": "method", + "name": "throwIfAborted", + "signature": "`abortSignal.throwIfAborted()`", + "label": "abortSignal.throwIfAborted()", + "apiSymbol": "abortSignal.throwIfAborted", + "depth": 2, + "scope": "api", + "anchor": "abortsignalthrowifaborted", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "globals:672ac9138dd9", + "chapter": "globals", + "kind": "boolean", + "name": "Type", + "signature": "`aborted` Type: {boolean}", + "label": "aborted", + "apiSymbol": "aborted", + "depth": 2, + "scope": "api", + "anchor": "class-abortsignal", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "globals:a09eb9b8d16e", + "chapter": "globals", + "kind": "Function", + "name": "Type", + "signature": "`onabort` Type: {Function}", + "label": "onabort", + "apiSymbol": "onabort", + "depth": 2, + "scope": "api", + "anchor": "class-abortsignal", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "globals:b7312ad84180", + "chapter": "globals", + "kind": "any", + "name": "Type", + "signature": "`reason` Type: {any}", + "label": "reason", + "apiSymbol": "reason", + "depth": 2, + "scope": "api", + "anchor": "class-abortsignal", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "globals:5a696632369d", + "chapter": "globals", + "kind": "event", + "name": "abort", + "signature": "Event: `'abort'`", + "label": "'abort'", + "apiSymbol": "'abort'", + "depth": 2, + "scope": "api", + "anchor": "event-abort", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "globals:fedbef36d3c4", + "chapter": "globals", + "kind": "class", + "name": "Blob", + "signature": "Class: `Blob`", + "label": "Blob", + "apiSymbol": "Blob", + "depth": 1, + "scope": "api", + "anchor": "class-blob", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Provided by the embedded engine's web/global compatibility layer.", + "verification": "test-backed" + } + }, + { + "id": "globals:037ae687e118", + "chapter": "globals", + "kind": "class", + "name": "BroadcastChannel", + "signature": "Class: `BroadcastChannel`", + "label": "BroadcastChannel", + "apiSymbol": "BroadcastChannel", + "depth": 1, + "scope": "api", + "anchor": "class-broadcastchannel", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Verified absent from the embedded engine's web/global compatibility layer.", + "verification": "verified-absence" + } + }, + { + "id": "globals:eb29ec8d1737", + "chapter": "globals", + "kind": "class", + "name": "Buffer", + "signature": "Class: `Buffer`", + "label": "Buffer", + "apiSymbol": "Buffer", + "depth": 1, + "scope": "api", + "anchor": "class-buffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Provided when the embedded npm module bootstrap runs; absent from standalone dynamic islands.", + "verification": "test-backed" + } + }, + { + "id": "globals:c9caa83b54e7", + "chapter": "globals", + "kind": "class", + "name": "ByteLengthQueuingStrategy", + "signature": "Class: `ByteLengthQueuingStrategy`", + "label": "ByteLengthQueuingStrategy", + "apiSymbol": "ByteLengthQueuingStrategy", + "depth": 1, + "scope": "api", + "anchor": "class-bytelengthqueuingstrategy", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Verified absent from the embedded engine's web/global compatibility layer.", + "verification": "verified-absence" + } + }, + { + "id": "globals:32f1cce26e66", + "chapter": "globals", + "kind": "class", + "name": "CloseEvent", + "signature": "Class: `CloseEvent`", + "label": "CloseEvent", + "apiSymbol": "CloseEvent", + "depth": 1, + "scope": "api", + "anchor": "class-closeevent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Verified absent from the embedded engine's web/global compatibility layer.", + "verification": "verified-absence" + } + }, + { + "id": "globals:f0bf30fb92df", + "chapter": "globals", + "kind": "class", + "name": "CompressionStream", + "signature": "Class: `CompressionStream`", + "label": "CompressionStream", + "apiSymbol": "CompressionStream", + "depth": 1, + "scope": "api", + "anchor": "class-compressionstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Verified absent from the embedded engine's web/global compatibility layer.", + "verification": "verified-absence" + } + }, + { + "id": "globals:0c56fc210ea2", + "chapter": "globals", + "kind": "class", + "name": "CountQueuingStrategy", + "signature": "Class: `CountQueuingStrategy`", + "label": "CountQueuingStrategy", + "apiSymbol": "CountQueuingStrategy", + "depth": 1, + "scope": "api", + "anchor": "class-countqueuingstrategy", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Verified absent from the embedded engine's web/global compatibility layer.", + "verification": "verified-absence" + } + }, + { + "id": "globals:51985f41d8af", + "chapter": "globals", + "kind": "class", + "name": "Crypto", + "signature": "Class: `Crypto`", + "label": "Crypto", + "apiSymbol": "Crypto", + "depth": 1, + "scope": "api", + "anchor": "class-crypto", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "globals:60c93cf58364", + "chapter": "globals", + "kind": "class", + "name": "CryptoKey", + "signature": "Class: `CryptoKey`", + "label": "CryptoKey", + "apiSymbol": "CryptoKey", + "depth": 1, + "scope": "api", + "anchor": "class-cryptokey", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Verified absent from the embedded engine's web/global compatibility layer.", + "verification": "verified-absence" + } + }, + { + "id": "globals:d03b17009dd3", + "chapter": "globals", + "kind": "class", + "name": "CustomEvent", + "signature": "Class: `CustomEvent`", + "label": "CustomEvent", + "apiSymbol": "CustomEvent", + "depth": 1, + "scope": "api", + "anchor": "class-customevent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Provided by the embedded engine's web/global compatibility layer.", + "verification": "test-backed" + } + }, + { + "id": "globals:402cbed48ca0", + "chapter": "globals", + "kind": "class", + "name": "DecompressionStream", + "signature": "Class: `DecompressionStream`", + "label": "DecompressionStream", + "apiSymbol": "DecompressionStream", + "depth": 1, + "scope": "api", + "anchor": "class-decompressionstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Verified absent from the embedded engine's web/global compatibility layer.", + "verification": "verified-absence" + } + }, + { + "id": "globals:6dd9e909552a", + "chapter": "globals", + "kind": "class", + "name": "DOMException", + "signature": "Class: `DOMException`", + "label": "DOMException", + "apiSymbol": "DOMException", + "depth": 1, + "scope": "api", + "anchor": "class-domexception", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Provided by the embedded engine's web/global compatibility layer.", + "verification": "test-backed" + } + }, + { + "id": "globals:9e3f482c4c2d", + "chapter": "globals", + "kind": "class", + "name": "Event", + "signature": "Class: `Event`", + "label": "Event", + "apiSymbol": "Event", + "depth": 1, + "scope": "api", + "anchor": "class-event", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Provided by the embedded engine's web/global compatibility layer.", + "verification": "test-backed" + } + }, + { + "id": "globals:3c623a789a40", + "chapter": "globals", + "kind": "class", + "name": "EventSource", + "signature": "Class: `EventSource`", + "label": "EventSource", + "apiSymbol": "EventSource", + "depth": 1, + "scope": "api", + "anchor": "class-eventsource", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Enable this API with the [`--experimental-eventsource`][] CLI flag.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Verified absent from the embedded engine's web/global compatibility layer.", + "verification": "verified-absence" + } + }, + { + "id": "globals:3e97945356cd", + "chapter": "globals", + "kind": "class", + "name": "EventTarget", + "signature": "Class: `EventTarget`", + "label": "EventTarget", + "apiSymbol": "EventTarget", + "depth": 1, + "scope": "api", + "anchor": "class-eventtarget", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Provided by the embedded engine's web/global compatibility layer.", + "verification": "test-backed" + } + }, + { + "id": "globals:482351dc6f5f", + "chapter": "globals", + "kind": "class", + "name": "File", + "signature": "Class: `File`", + "label": "File", + "apiSymbol": "File", + "depth": 1, + "scope": "api", + "anchor": "class-file", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Provided by the embedded engine's web/global compatibility layer.", + "verification": "test-backed" + } + }, + { + "id": "globals:12270865dff0", + "chapter": "globals", + "kind": "class", + "name": "FormData", + "signature": "Class: `FormData`", + "label": "FormData", + "apiSymbol": "FormData", + "depth": 1, + "scope": "api", + "anchor": "class-formdata", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Verified absent from the embedded engine's web/global compatibility layer.", + "verification": "verified-absence" + } + }, + { + "id": "globals:5cc144620be0", + "chapter": "globals", + "kind": "class", + "name": "Headers", + "signature": "Class: `Headers`", + "label": "Headers", + "apiSymbol": "Headers", + "depth": 1, + "scope": "api", + "anchor": "class-headers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Provided by the embedded engine's web/global compatibility layer.", + "verification": "test-backed" + } + }, + { + "id": "globals:c6a0ed20cb87", + "chapter": "globals", + "kind": "class", + "name": "MessageChannel", + "signature": "Class: `MessageChannel`", + "label": "MessageChannel", + "apiSymbol": "MessageChannel", + "depth": 1, + "scope": "api", + "anchor": "class-messagechannel", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Provided by the embedded engine's web/global compatibility layer.", + "verification": "test-backed" + } + }, + { + "id": "globals:5ba72f5bdda8", + "chapter": "globals", + "kind": "class", + "name": "MessageEvent", + "signature": "Class: `MessageEvent`", + "label": "MessageEvent", + "apiSymbol": "MessageEvent", + "depth": 1, + "scope": "api", + "anchor": "class-messageevent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Provided by the embedded engine's web/global compatibility layer.", + "verification": "test-backed" + } + }, + { + "id": "globals:ddbf8800228f", + "chapter": "globals", + "kind": "class", + "name": "MessagePort", + "signature": "Class: `MessagePort`", + "label": "MessagePort", + "apiSymbol": "MessagePort", + "depth": 1, + "scope": "api", + "anchor": "class-messageport", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Provided by the embedded engine's web/global compatibility layer.", + "verification": "test-backed" + } + }, + { + "id": "globals:36fbe5411f99", + "chapter": "globals", + "kind": "class", + "name": "Navigator", + "signature": "Class: `Navigator`", + "label": "Navigator", + "apiSymbol": "Navigator", + "depth": 1, + "scope": "api", + "anchor": "class-navigator", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development. Disable this API with the [`--no-experimental-global-navigator`][] CLI flag.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Verified absent from the embedded engine's web/global compatibility layer.", + "verification": "verified-absence" + } + }, + { + "id": "globals:8be763f02225", + "chapter": "globals", + "kind": "class", + "name": "PerformanceEntry", + "signature": "Class: `PerformanceEntry`", + "label": "PerformanceEntry", + "apiSymbol": "PerformanceEntry", + "depth": 1, + "scope": "api", + "anchor": "class-performanceentry", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "globals:2f72eee9b9c6", + "chapter": "globals", + "kind": "class", + "name": "PerformanceMark", + "signature": "Class: `PerformanceMark`", + "label": "PerformanceMark", + "apiSymbol": "PerformanceMark", + "depth": 1, + "scope": "api", + "anchor": "class-performancemark", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "globals:d5615d0cc57b", + "chapter": "globals", + "kind": "class", + "name": "PerformanceMeasure", + "signature": "Class: `PerformanceMeasure`", + "label": "PerformanceMeasure", + "apiSymbol": "PerformanceMeasure", + "depth": 1, + "scope": "api", + "anchor": "class-performancemeasure", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "globals:3e729822f63e", + "chapter": "globals", + "kind": "class", + "name": "PerformanceObserver", + "signature": "Class: `PerformanceObserver`", + "label": "PerformanceObserver", + "apiSymbol": "PerformanceObserver", + "depth": 1, + "scope": "api", + "anchor": "class-performanceobserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "globals:5d3eb95faf5e", + "chapter": "globals", + "kind": "class", + "name": "PerformanceObserverEntryList", + "signature": "Class: `PerformanceObserverEntryList`", + "label": "PerformanceObserverEntryList", + "apiSymbol": "PerformanceObserverEntryList", + "depth": 1, + "scope": "api", + "anchor": "class-performanceobserverentrylist", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "globals:ec94d1ae83f4", + "chapter": "globals", + "kind": "class", + "name": "PerformanceResourceTiming", + "signature": "Class: `PerformanceResourceTiming`", + "label": "PerformanceResourceTiming", + "apiSymbol": "PerformanceResourceTiming", + "depth": 1, + "scope": "api", + "anchor": "class-performanceresourcetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "globals:9912d590e3ea", + "chapter": "globals", + "kind": "class", + "name": "ReadableByteStreamController", + "signature": "Class: `ReadableByteStreamController`", + "label": "ReadableByteStreamController", + "apiSymbol": "ReadableByteStreamController", + "depth": 1, + "scope": "api", + "anchor": "class-readablebytestreamcontroller", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Verified absent from the embedded engine's web/global compatibility layer.", + "verification": "verified-absence" + } + }, + { + "id": "globals:a0093dee34e6", + "chapter": "globals", + "kind": "class", + "name": "ReadableStream", + "signature": "Class: `ReadableStream`", + "label": "ReadableStream", + "apiSymbol": "ReadableStream", + "depth": 1, + "scope": "api", + "anchor": "class-readablestream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Provided by the embedded engine's web/global compatibility layer.", + "verification": "test-backed" + } + }, + { + "id": "globals:ef8b2bcf314d", + "chapter": "globals", + "kind": "class", + "name": "ReadableStreamBYOBReader", + "signature": "Class: `ReadableStreamBYOBReader`", + "label": "ReadableStreamBYOBReader", + "apiSymbol": "ReadableStreamBYOBReader", + "depth": 1, + "scope": "api", + "anchor": "class-readablestreambyobreader", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Verified absent from the embedded engine's web/global compatibility layer.", + "verification": "verified-absence" + } + }, + { + "id": "globals:6b66289d8518", + "chapter": "globals", + "kind": "class", + "name": "ReadableStreamBYOBRequest", + "signature": "Class: `ReadableStreamBYOBRequest`", + "label": "ReadableStreamBYOBRequest", + "apiSymbol": "ReadableStreamBYOBRequest", + "depth": 1, + "scope": "api", + "anchor": "class-readablestreambyobrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Verified absent from the embedded engine's web/global compatibility layer.", + "verification": "verified-absence" + } + }, + { + "id": "globals:32c92edb2758", + "chapter": "globals", + "kind": "class", + "name": "ReadableStreamDefaultController", + "signature": "Class: `ReadableStreamDefaultController`", + "label": "ReadableStreamDefaultController", + "apiSymbol": "ReadableStreamDefaultController", + "depth": 1, + "scope": "api", + "anchor": "class-readablestreamdefaultcontroller", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "globals:ce47d7157e8d", + "chapter": "globals", + "kind": "class", + "name": "ReadableStreamDefaultReader", + "signature": "Class: `ReadableStreamDefaultReader`", + "label": "ReadableStreamDefaultReader", + "apiSymbol": "ReadableStreamDefaultReader", + "depth": 1, + "scope": "api", + "anchor": "class-readablestreamdefaultreader", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "globals:800eead6fee7", + "chapter": "globals", + "kind": "class", + "name": "Request", + "signature": "Class: `Request`", + "label": "Request", + "apiSymbol": "Request", + "depth": 1, + "scope": "api", + "anchor": "class-request", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Provided by the embedded engine's web/global compatibility layer.", + "verification": "test-backed" + } + }, + { + "id": "globals:f47460ff0212", + "chapter": "globals", + "kind": "class", + "name": "Response", + "signature": "Class: `Response`", + "label": "Response", + "apiSymbol": "Response", + "depth": 1, + "scope": "api", + "anchor": "class-response", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Provided by the embedded engine's web/global compatibility layer.", + "verification": "test-backed" + } + }, + { + "id": "globals:4d2dccff54ef", + "chapter": "globals", + "kind": "class", + "name": "Storage", + "signature": "Class: `Storage`", + "label": "Storage", + "apiSymbol": "Storage", + "depth": 1, + "scope": "api", + "anchor": "class-storage", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate. Enable this API with [`--experimental-webstorage`][].", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Verified absent from the embedded engine's web/global compatibility layer.", + "verification": "verified-absence" + } + }, + { + "id": "globals:075a2eb7d99b", + "chapter": "globals", + "kind": "class", + "name": "SubtleCrypto", + "signature": "Class: `SubtleCrypto`", + "label": "SubtleCrypto", + "apiSymbol": "SubtleCrypto", + "depth": 1, + "scope": "api", + "anchor": "class-subtlecrypto", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Verified absent from the embedded engine's web/global compatibility layer.", + "verification": "verified-absence" + } + }, + { + "id": "globals:941a42dcbf77", + "chapter": "globals", + "kind": "class", + "name": "TextDecoder", + "signature": "Class: `TextDecoder`", + "label": "TextDecoder", + "apiSymbol": "TextDecoder", + "depth": 1, + "scope": "api", + "anchor": "class-textdecoder", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Provided by the embedded engine's web/global compatibility layer.", + "verification": "test-backed" + } + }, + { + "id": "globals:e82968d70acf", + "chapter": "globals", + "kind": "class", + "name": "TextDecoderStream", + "signature": "Class: `TextDecoderStream`", + "label": "TextDecoderStream", + "apiSymbol": "TextDecoderStream", + "depth": 1, + "scope": "api", + "anchor": "class-textdecoderstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Provided by the embedded engine's web/global compatibility layer.", + "verification": "test-backed" + } + }, + { + "id": "globals:7969459a50b1", + "chapter": "globals", + "kind": "class", + "name": "TextEncoder", + "signature": "Class: `TextEncoder`", + "label": "TextEncoder", + "apiSymbol": "TextEncoder", + "depth": 1, + "scope": "api", + "anchor": "class-textencoder", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Provided by the embedded engine's web/global compatibility layer.", + "verification": "test-backed" + } + }, + { + "id": "globals:7666ae12389a", + "chapter": "globals", + "kind": "class", + "name": "TextEncoderStream", + "signature": "Class: `TextEncoderStream`", + "label": "TextEncoderStream", + "apiSymbol": "TextEncoderStream", + "depth": 1, + "scope": "api", + "anchor": "class-textencoderstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Verified absent from the embedded engine's web/global compatibility layer.", + "verification": "verified-absence" + } + }, + { + "id": "globals:0aeef1233e72", + "chapter": "globals", + "kind": "class", + "name": "TransformStream", + "signature": "Class: `TransformStream`", + "label": "TransformStream", + "apiSymbol": "TransformStream", + "depth": 1, + "scope": "api", + "anchor": "class-transformstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Provided by the embedded engine's web/global compatibility layer.", + "verification": "test-backed" + } + }, + { + "id": "globals:d452bfc1fa16", + "chapter": "globals", + "kind": "class", + "name": "TransformStreamDefaultController", + "signature": "Class: `TransformStreamDefaultController`", + "label": "TransformStreamDefaultController", + "apiSymbol": "TransformStreamDefaultController", + "depth": 1, + "scope": "api", + "anchor": "class-transformstreamdefaultcontroller", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Verified absent from the embedded engine's web/global compatibility layer.", + "verification": "verified-absence" + } + }, + { + "id": "globals:b2bc5f93ed3e", + "chapter": "globals", + "kind": "class", + "name": "URL", + "signature": "Class: `URL`", + "label": "URL", + "apiSymbol": "URL", + "depth": 1, + "scope": "api", + "anchor": "class-url", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Provided when the embedded npm module bootstrap runs; absent from standalone dynamic islands.", + "verification": "test-backed" + } + }, + { + "id": "globals:f3b0d8532129", + "chapter": "globals", + "kind": "class", + "name": "URLPattern", + "signature": "Class: `URLPattern`", + "label": "URLPattern", + "apiSymbol": "URLPattern", + "depth": 1, + "scope": "api", + "anchor": "class-urlpattern", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Verified absent from the embedded engine's web/global compatibility layer.", + "verification": "verified-absence" + } + }, + { + "id": "globals:e4754b03b0a0", + "chapter": "globals", + "kind": "class", + "name": "URLSearchParams", + "signature": "Class: `URLSearchParams`", + "label": "URLSearchParams", + "apiSymbol": "URLSearchParams", + "depth": 1, + "scope": "api", + "anchor": "class-urlsearchparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Provided by the embedded engine's web/global compatibility layer.", + "verification": "test-backed" + } + }, + { + "id": "globals:bb6a0ce7ccb5", + "chapter": "globals", + "kind": "class", + "name": "WebAssembly", + "signature": "Class: `WebAssembly`", + "label": "WebAssembly", + "apiSymbol": "WebAssembly", + "depth": 1, + "scope": "api", + "anchor": "class-webassembly", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Verified absent from the embedded engine's web/global compatibility layer.", + "verification": "verified-absence" + } + }, + { + "id": "globals:0a9307472b31", + "chapter": "globals", + "kind": "class", + "name": "WebSocket", + "signature": "Class: `WebSocket`", + "label": "WebSocket", + "apiSymbol": "WebSocket", + "depth": 1, + "scope": "api", + "anchor": "class-websocket", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Verified absent from the embedded engine's web/global compatibility layer.", + "verification": "verified-absence" + } + }, + { + "id": "globals:7243286a15c6", + "chapter": "globals", + "kind": "class", + "name": "WritableStream", + "signature": "Class: `WritableStream`", + "label": "WritableStream", + "apiSymbol": "WritableStream", + "depth": 1, + "scope": "api", + "anchor": "class-writablestream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Verified absent from the embedded engine's web/global compatibility layer.", + "verification": "verified-absence" + } + }, + { + "id": "globals:f3b66cce64be", + "chapter": "globals", + "kind": "class", + "name": "WritableStreamDefaultController", + "signature": "Class: `WritableStreamDefaultController`", + "label": "WritableStreamDefaultController", + "apiSymbol": "WritableStreamDefaultController", + "depth": 1, + "scope": "api", + "anchor": "class-writablestreamdefaultcontroller", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Verified absent from the embedded engine's web/global compatibility layer.", + "verification": "verified-absence" + } + }, + { + "id": "globals:168841134aee", + "chapter": "globals", + "kind": "class", + "name": "WritableStreamDefaultWriter", + "signature": "Class: `WritableStreamDefaultWriter`", + "label": "WritableStreamDefaultWriter", + "apiSymbol": "WritableStreamDefaultWriter", + "depth": 1, + "scope": "api", + "anchor": "class-writablestreamdefaultwriter", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Verified absent from the embedded engine's web/global compatibility layer.", + "verification": "verified-absence" + } + }, + { + "id": "globals:12db26fa50a4", + "chapter": "globals", + "kind": "method", + "name": "atob", + "signature": "`atob(data)`", + "label": "atob(data)", + "apiSymbol": "atob", + "depth": 1, + "scope": "api", + "anchor": "atobdata", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy. Use `Buffer.from(data, 'base64')` instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Provided by the embedded engine's web/global compatibility layer.", + "verification": "test-backed" + } + }, + { + "id": "globals:492f9d1e6cda", + "chapter": "globals", + "kind": "method", + "name": "btoa", + "signature": "`btoa(data)`", + "label": "btoa(data)", + "apiSymbol": "btoa", + "depth": 1, + "scope": "api", + "anchor": "btoadata", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy. Use `buf.toString('base64')` instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Provided by the embedded engine's web/global compatibility layer.", + "verification": "test-backed" + } + }, + { + "id": "globals:b50c4cf7a87e", + "chapter": "globals", + "kind": "method", + "name": "clearImmediate", + "signature": "`clearImmediate(immediateObject)`", + "label": "clearImmediate(immediateObject)", + "apiSymbol": "clearImmediate", + "depth": 1, + "scope": "api", + "anchor": "clearimmediateimmediateobject", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Provided when the embedded npm module bootstrap runs; absent from standalone dynamic islands.", + "verification": "test-backed" + } + }, + { + "id": "globals:55a3655f45c6", + "chapter": "globals", + "kind": "method", + "name": "clearInterval", + "signature": "`clearInterval(intervalObject)`", + "label": "clearInterval(intervalObject)", + "apiSymbol": "clearInterval", + "depth": 1, + "scope": "api", + "anchor": "clearintervalintervalobject", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Provided by the embedded engine's web/global compatibility layer.", + "verification": "test-backed" + } + }, + { + "id": "globals:2104fad64cb5", + "chapter": "globals", + "kind": "method", + "name": "clearTimeout", + "signature": "`clearTimeout(timeoutObject)`", + "label": "clearTimeout(timeoutObject)", + "apiSymbol": "clearTimeout", + "depth": 1, + "scope": "api", + "anchor": "cleartimeouttimeoutobject", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Provided by the embedded engine's web/global compatibility layer.", + "verification": "test-backed" + } + }, + { + "id": "globals:0899a0efb5bd", + "chapter": "globals", + "kind": "method", + "name": "queueMicrotask", + "signature": "`queueMicrotask(callback)`", + "label": "queueMicrotask(callback)", + "apiSymbol": "queueMicrotask", + "depth": 1, + "scope": "api", + "anchor": "queuemicrotaskcallback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Provided by the embedded engine's web/global compatibility layer.", + "verification": "test-backed" + } + }, + { + "id": "globals:1b96b651b46c", + "chapter": "globals", + "kind": "method", + "name": "require", + "signature": "`require()`", + "label": "require()", + "apiSymbol": "require", + "depth": 1, + "scope": "api", + "anchor": "require", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "globals:482c12cf48d3", + "chapter": "globals", + "kind": "method", + "name": "setImmediate", + "signature": "`setImmediate(callback[, ...args])`", + "label": "setImmediate(callback[, ...args])", + "apiSymbol": "setImmediate", + "depth": 1, + "scope": "api", + "anchor": "setimmediatecallback-args", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Provided when the embedded npm module bootstrap runs; absent from standalone dynamic islands.", + "verification": "test-backed" + } + }, + { + "id": "globals:e65f234079c9", + "chapter": "globals", + "kind": "method", + "name": "setInterval", + "signature": "`setInterval(callback, delay[, ...args])`", + "label": "setInterval(callback, delay[, ...args])", + "apiSymbol": "setInterval", + "depth": 1, + "scope": "api", + "anchor": "setintervalcallback-delay-args", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Provided by the embedded engine's web/global compatibility layer.", + "verification": "test-backed" + } + }, + { + "id": "globals:bed5b9832d30", + "chapter": "globals", + "kind": "method", + "name": "setTimeout", + "signature": "`setTimeout(callback, delay[, ...args])`", + "label": "setTimeout(callback, delay[, ...args])", + "apiSymbol": "setTimeout", + "depth": 1, + "scope": "api", + "anchor": "settimeoutcallback-delay-args", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Provided by the embedded engine's web/global compatibility layer.", + "verification": "test-backed" + } + }, + { + "id": "globals:609a4c1f4306", + "chapter": "globals", + "kind": "method", + "name": "structuredClone", + "signature": "`structuredClone(value[, options])`", + "label": "structuredClone(value[, options])", + "apiSymbol": "structuredClone", + "depth": 1, + "scope": "api", + "anchor": "structuredclonevalue-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Provided by the embedded engine's web/global compatibility layer.", + "verification": "test-backed" + } + }, + { + "id": "globals:64abdef12c10", + "chapter": "globals", + "kind": "misc", + "name": "`__dirname`", + "signature": "`__dirname`", + "label": "__dirname", + "apiSymbol": "__dirname", + "depth": 1, + "scope": "api", + "anchor": "__dirname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "globals:ae2fd91a032e", + "chapter": "globals", + "kind": "misc", + "name": "`__filename`", + "signature": "`__filename`", + "label": "__filename", + "apiSymbol": "__filename", + "depth": 1, + "scope": "api", + "anchor": "__filename", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "globals:3e877d17013f", + "chapter": "globals", + "kind": "misc", + "name": "`console`", + "signature": "`console`", + "label": "console", + "apiSymbol": "console", + "depth": 1, + "scope": "api", + "anchor": "console", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "globals:e589e2084522", + "chapter": "globals", + "kind": "misc", + "name": "`crypto`", + "signature": "`crypto`", + "label": "crypto", + "apiSymbol": "crypto", + "depth": 1, + "scope": "api", + "anchor": "crypto", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "globals:21beec880090", + "chapter": "globals", + "kind": "misc", + "name": "`exports`", + "signature": "`exports`", + "label": "exports", + "apiSymbol": "exports", + "depth": 1, + "scope": "api", + "anchor": "exports", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "globals:f0011d8c00c8", + "chapter": "globals", + "kind": "misc", + "name": "`fetch`", + "signature": "`fetch`", + "label": "fetch", + "apiSymbol": "fetch", + "depth": 1, + "scope": "api", + "anchor": "fetch", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the documented scriptc module-loader subset.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "globals:7631b7edee96", + "chapter": "globals", + "kind": "misc", + "name": "`global`", + "signature": "`global`", + "label": "global", + "apiSymbol": "global", + "depth": 1, + "scope": "api", + "anchor": "global", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy. Use [`globalThis`][] instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "globals:0a45bbc44df3", + "chapter": "globals", + "kind": "misc", + "name": "`localstorage`", + "signature": "`localStorage`", + "label": "localStorage", + "apiSymbol": "localStorage", + "depth": 1, + "scope": "api", + "anchor": "localstorage", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate. Enable this API with [`--experimental-webstorage`][].", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "globals:d7f1044c33e6", + "chapter": "globals", + "kind": "misc", + "name": "`module`", + "signature": "`module`", + "label": "module", + "apiSymbol": "module", + "depth": 1, + "scope": "api", + "anchor": "module", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "globals:3386121a2393", + "chapter": "globals", + "kind": "misc", + "name": "`navigator`", + "signature": "`navigator`", + "label": "navigator", + "apiSymbol": "navigator", + "depth": 1, + "scope": "api", + "anchor": "navigator", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development. Disable this API with the [`--no-experimental-global-navigator`][] CLI flag.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "globals:7fb795acad1e", + "chapter": "globals", + "kind": "number", + "name": "Type", + "signature": "`hardwareConcurrency` Type: {number}", + "label": "hardwareConcurrency", + "apiSymbol": "hardwareConcurrency", + "depth": 2, + "scope": "api", + "anchor": "navigator", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development. Disable this API with the [`--no-experimental-global-navigator`][] CLI flag.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "globals:a8d356fae78b", + "chapter": "globals", + "kind": "string", + "name": "Type", + "signature": "`language` Type: {string}", + "label": "language", + "apiSymbol": "language", + "depth": 2, + "scope": "api", + "anchor": "navigator", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development. Disable this API with the [`--no-experimental-global-navigator`][] CLI flag.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "globals:0f132fcbba37", + "chapter": "globals", + "kind": "string\\[]", + "name": "Type", + "signature": "`languages` Type: {string\\[]}", + "label": "languages", + "apiSymbol": "languages", + "depth": 2, + "scope": "api", + "anchor": "navigator", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development. Disable this API with the [`--no-experimental-global-navigator`][] CLI flag.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "globals:d2393015164b", + "chapter": "globals", + "kind": "section", + "name": "locks", + "signature": "`navigator.locks`", + "label": "navigator.locks", + "apiSymbol": "navigator.locks", + "depth": 2, + "scope": "api", + "anchor": "navigatorlocks", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "globals:d386eaf756b4", + "chapter": "globals", + "kind": "string", + "name": "Type", + "signature": "`platform` Type: {string}", + "label": "platform", + "apiSymbol": "platform", + "depth": 2, + "scope": "api", + "anchor": "navigator", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development. Disable this API with the [`--no-experimental-global-navigator`][] CLI flag.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "globals:fc0a32e8c26f", + "chapter": "globals", + "kind": "string", + "name": "Type", + "signature": "`userAgent` Type: {string}", + "label": "userAgent", + "apiSymbol": "userAgent", + "depth": 2, + "scope": "api", + "anchor": "navigator", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development. Disable this API with the [`--no-experimental-global-navigator`][] CLI flag.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "globals:b412bf9a456d", + "chapter": "globals", + "kind": "misc", + "name": "`performance`", + "signature": "`performance`", + "label": "performance", + "apiSymbol": "performance", + "depth": 1, + "scope": "api", + "anchor": "performance", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "globals:2e74aa321feb", + "chapter": "globals", + "kind": "misc", + "name": "`process`", + "signature": "`process`", + "label": "process", + "apiSymbol": "process", + "depth": 1, + "scope": "api", + "anchor": "process", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "globals:468e2e550926", + "chapter": "globals", + "kind": "misc", + "name": "`sessionstorage`", + "signature": "`sessionStorage`", + "label": "sessionStorage", + "apiSymbol": "sessionStorage", + "depth": 1, + "scope": "api", + "anchor": "sessionstorage", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate. Enable this API with [`--experimental-webstorage`][].", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:cd22e4322d72", + "chapter": "http", + "kind": "module", + "name": "http", + "signature": "HTTP", + "label": "HTTP", + "apiSymbol": "http", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + }, + "dynamic": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + } + }, + { + "id": "http:d88367cab5af", + "chapter": "http", + "kind": "module", + "name": "`no_proxy`_format", + "signature": "`NO_PROXY` Format", + "label": "NO_PROXY", + "apiSymbol": "NO_PROXY", + "depth": 1, + "scope": "api", + "anchor": "no_proxy-format", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:50e7b858b0c8", + "chapter": "http", + "kind": "class", + "name": "http.Agent", + "signature": "Class: `http.Agent`", + "label": "http.Agent", + "apiSymbol": "http.Agent", + "depth": 1, + "scope": "api", + "anchor": "class-httpagent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "http:b54cc6bd538f", + "chapter": "http", + "kind": "method", + "name": "createConnection", + "signature": "`agent.createConnection(options[, callback])`", + "label": "agent.createConnection(options[, callback])", + "apiSymbol": "agent.createConnection", + "depth": 2, + "scope": "api", + "anchor": "agentcreateconnectionoptions-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:4b8e229664ee", + "chapter": "http", + "kind": "method", + "name": "keepSocketAlive", + "signature": "`agent.keepSocketAlive(socket)`", + "label": "agent.keepSocketAlive(socket)", + "apiSymbol": "agent.keepSocketAlive", + "depth": 2, + "scope": "api", + "anchor": "agentkeepsocketalivesocket", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:03f55f9e9545", + "chapter": "http", + "kind": "method", + "name": "reuseSocket", + "signature": "`agent.reuseSocket(socket, request)`", + "label": "agent.reuseSocket(socket, request)", + "apiSymbol": "agent.reuseSocket", + "depth": 2, + "scope": "api", + "anchor": "agentreusesocketsocket-request", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:4412054a1c94", + "chapter": "http", + "kind": "method", + "name": "destroy", + "signature": "`agent.destroy()`", + "label": "agent.destroy()", + "apiSymbol": "agent.destroy", + "depth": 2, + "scope": "api", + "anchor": "agentdestroy", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "http:9dcbe1834859", + "chapter": "http", + "kind": "method", + "name": "getName", + "signature": "`agent.getName([options])`", + "label": "agent.getName([options])", + "apiSymbol": "agent.getName", + "depth": 2, + "scope": "api", + "anchor": "agentgetnameoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:f893782f02ad", + "chapter": "http", + "kind": "Object", + "name": "Type", + "signature": "`freeSockets` Type: {Object}", + "label": "freeSockets", + "apiSymbol": "freeSockets", + "depth": 2, + "scope": "api", + "anchor": "class-httpagent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:633e1b32c473", + "chapter": "http", + "kind": "number", + "name": "Type", + "signature": "`maxFreeSockets` Type: {number}", + "label": "maxFreeSockets", + "apiSymbol": "maxFreeSockets", + "depth": 2, + "scope": "api", + "anchor": "class-httpagent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:d7fccee3bcd1", + "chapter": "http", + "kind": "number", + "name": "Type", + "signature": "`maxSockets` Type: {number}", + "label": "maxSockets", + "apiSymbol": "maxSockets", + "depth": 2, + "scope": "api", + "anchor": "class-httpagent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:4465848a997b", + "chapter": "http", + "kind": "number", + "name": "Type", + "signature": "`maxTotalSockets` Type: {number}", + "label": "maxTotalSockets", + "apiSymbol": "maxTotalSockets", + "depth": 2, + "scope": "api", + "anchor": "class-httpagent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:08e346d54bbd", + "chapter": "http", + "kind": "Object", + "name": "Type", + "signature": "`requests` Type: {Object}", + "label": "requests", + "apiSymbol": "requests", + "depth": 2, + "scope": "api", + "anchor": "class-httpagent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:83aa2fca28da", + "chapter": "http", + "kind": "Object", + "name": "Type", + "signature": "`sockets` Type: {Object}", + "label": "sockets", + "apiSymbol": "sockets", + "depth": 2, + "scope": "api", + "anchor": "class-httpagent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:508791d1190a", + "chapter": "http", + "kind": "class", + "name": "http.ClientRequest", + "signature": "Class: `http.ClientRequest`", + "label": "http.ClientRequest", + "apiSymbol": "http.ClientRequest", + "depth": 1, + "scope": "api", + "anchor": "class-httpclientrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "http:699bd7ca4c9d", + "chapter": "http", + "kind": "method", + "name": "abort", + "signature": "`request.abort()`", + "label": "request.abort()", + "apiSymbol": "request.abort", + "depth": 2, + "scope": "api", + "anchor": "requestabort", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Use [`request.destroy()`][] instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "http:d887741bdc1c", + "chapter": "http", + "kind": "method", + "name": "cork", + "signature": "`request.cork()`", + "label": "request.cork()", + "apiSymbol": "request.cork", + "depth": 2, + "scope": "api", + "anchor": "requestcork", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:341fa63e40e0", + "chapter": "http", + "kind": "method", + "name": "end", + "signature": "`request.end([data[, encoding]][, callback])`", + "label": "request.end([data[, encoding]][, callback])", + "apiSymbol": "request.end", + "depth": 2, + "scope": "api", + "anchor": "requestenddata-encoding-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "http:e1e900929f5e", + "chapter": "http", + "kind": "method", + "name": "destroy", + "signature": "`request.destroy([error])`", + "label": "request.destroy([error])", + "apiSymbol": "request.destroy", + "depth": 2, + "scope": "api", + "anchor": "requestdestroyerror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "http:c97b29ba514a", + "chapter": "http", + "kind": "boolean", + "name": "Type", + "signature": "`destroyed` Type: {boolean}", + "label": "destroyed", + "apiSymbol": "destroyed", + "depth": 3, + "scope": "api", + "anchor": "requestdestroyerror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:74853b35d31e", + "chapter": "http", + "kind": "method", + "name": "flushHeaders", + "signature": "`request.flushHeaders()`", + "label": "request.flushHeaders()", + "apiSymbol": "request.flushHeaders", + "depth": 2, + "scope": "api", + "anchor": "requestflushheaders", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "http:86b569e78a9d", + "chapter": "http", + "kind": "method", + "name": "getHeader", + "signature": "`request.getHeader(name)`", + "label": "request.getHeader(name)", + "apiSymbol": "request.getHeader", + "depth": 2, + "scope": "api", + "anchor": "requestgetheadername", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "http:25809046eb60", + "chapter": "http", + "kind": "method", + "name": "getHeaderNames", + "signature": "`request.getHeaderNames()`", + "label": "request.getHeaderNames()", + "apiSymbol": "request.getHeaderNames", + "depth": 2, + "scope": "api", + "anchor": "requestgetheadernames", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:f9b09cd05350", + "chapter": "http", + "kind": "method", + "name": "getHeaders", + "signature": "`request.getHeaders()`", + "label": "request.getHeaders()", + "apiSymbol": "request.getHeaders", + "depth": 2, + "scope": "api", + "anchor": "requestgetheaders", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:cc38a70a8c04", + "chapter": "http", + "kind": "method", + "name": "getRawHeaderNames", + "signature": "`request.getRawHeaderNames()`", + "label": "request.getRawHeaderNames()", + "apiSymbol": "request.getRawHeaderNames", + "depth": 2, + "scope": "api", + "anchor": "requestgetrawheadernames", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:bc74800d10ed", + "chapter": "http", + "kind": "method", + "name": "hasHeader", + "signature": "`request.hasHeader(name)`", + "label": "request.hasHeader(name)", + "apiSymbol": "request.hasHeader", + "depth": 2, + "scope": "api", + "anchor": "requesthasheadername", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:b8ffaf5d1736", + "chapter": "http", + "kind": "method", + "name": "removeHeader", + "signature": "`request.removeHeader(name)`", + "label": "request.removeHeader(name)", + "apiSymbol": "request.removeHeader", + "depth": 2, + "scope": "api", + "anchor": "requestremoveheadername", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "http:81ce1c376f47", + "chapter": "http", + "kind": "method", + "name": "setHeader", + "signature": "`request.setHeader(name, value)`", + "label": "request.setHeader(name, value)", + "apiSymbol": "request.setHeader", + "depth": 2, + "scope": "api", + "anchor": "requestsetheadername-value", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "http:c0e36f818882", + "chapter": "http", + "kind": "method", + "name": "setNoDelay", + "signature": "`request.setNoDelay([noDelay])`", + "label": "request.setNoDelay([noDelay])", + "apiSymbol": "request.setNoDelay", + "depth": 2, + "scope": "api", + "anchor": "requestsetnodelaynodelay", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:68a58047a546", + "chapter": "http", + "kind": "method", + "name": "setSocketKeepAlive", + "signature": "`request.setSocketKeepAlive([enable][, initialDelay])`", + "label": "request.setSocketKeepAlive([enable][, initialDelay])", + "apiSymbol": "request.setSocketKeepAlive", + "depth": 2, + "scope": "api", + "anchor": "requestsetsocketkeepaliveenable-initialdelay", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:25eed7e38e70", + "chapter": "http", + "kind": "method", + "name": "setTimeout", + "signature": "`request.setTimeout(timeout[, callback])`", + "label": "request.setTimeout(timeout[, callback])", + "apiSymbol": "request.setTimeout", + "depth": 2, + "scope": "api", + "anchor": "requestsettimeouttimeout-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "http:5dda2e8e4c17", + "chapter": "http", + "kind": "method", + "name": "uncork", + "signature": "`request.uncork()`", + "label": "request.uncork()", + "apiSymbol": "request.uncork", + "depth": 2, + "scope": "api", + "anchor": "requestuncork", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:e37d891a9deb", + "chapter": "http", + "kind": "method", + "name": "write", + "signature": "`request.write(chunk[, encoding][, callback])`", + "label": "request.write(chunk[, encoding][, callback])", + "apiSymbol": "request.write", + "depth": 2, + "scope": "api", + "anchor": "requestwritechunk-encoding-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "http:e59b03f6f36f", + "chapter": "http", + "kind": "boolean", + "name": "Type", + "signature": "`aborted` Type: {boolean}", + "label": "aborted", + "apiSymbol": "aborted", + "depth": 2, + "scope": "api", + "anchor": "class-httpclientrequest", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. Check [`request.destroyed`][] instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:3faa2253d444", + "chapter": "http", + "kind": "stream.Duplex", + "name": "Type", + "signature": "`connection` Type: {stream.Duplex}", + "label": "connection", + "apiSymbol": "connection", + "depth": 2, + "scope": "api", + "anchor": "class-httpclientrequest", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. Use [`request.socket`][].", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:5615544092c0", + "chapter": "http", + "kind": "boolean", + "name": "Type", + "signature": "`finished` Type: {boolean}", + "label": "finished", + "apiSymbol": "finished", + "depth": 2, + "scope": "api", + "anchor": "class-httpclientrequest", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. Use [`request.writableEnded`][].", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:faf8578bc834", + "chapter": "http", + "kind": "number", + "name": "Type", + "signature": "`maxHeadersCount` Type: {number} **Default:** `2000`", + "label": "maxHeadersCount", + "apiSymbol": "maxHeadersCount", + "depth": 2, + "scope": "api", + "anchor": "class-httpclientrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:a0535d8905bf", + "chapter": "http", + "kind": "string", + "name": "Type", + "signature": "`path` Type: {string} The request path.", + "label": "path", + "apiSymbol": "path", + "depth": 2, + "scope": "api", + "anchor": "class-httpclientrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:7b4e9ea6e7a0", + "chapter": "http", + "kind": "string", + "name": "Type", + "signature": "`method` Type: {string} The request method.", + "label": "method", + "apiSymbol": "method", + "depth": 2, + "scope": "api", + "anchor": "class-httpclientrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:2f11ef94eff8", + "chapter": "http", + "kind": "string", + "name": "Type", + "signature": "`host` Type: {string} The request host.", + "label": "host", + "apiSymbol": "host", + "depth": 2, + "scope": "api", + "anchor": "class-httpclientrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:35955276d318", + "chapter": "http", + "kind": "string", + "name": "Type", + "signature": "`protocol` Type: {string} The request protocol.", + "label": "protocol", + "apiSymbol": "protocol", + "depth": 2, + "scope": "api", + "anchor": "class-httpclientrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:9ca269feac75", + "chapter": "http", + "kind": "boolean", + "name": "Type", + "signature": "`reusedSocket` Type: {boolean} Whether the request is send through a reused socket.", + "label": "reusedSocket", + "apiSymbol": "reusedSocket", + "depth": 2, + "scope": "api", + "anchor": "class-httpclientrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:96df713b3e0c", + "chapter": "http", + "kind": "stream.Duplex", + "name": "Type", + "signature": "`socket` Type: {stream.Duplex}", + "label": "socket", + "apiSymbol": "socket", + "depth": 2, + "scope": "api", + "anchor": "class-httpclientrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:74c2bb983dc2", + "chapter": "http", + "kind": "boolean", + "name": "Type", + "signature": "`writableEnded` Type: {boolean}", + "label": "writableEnded", + "apiSymbol": "writableEnded", + "depth": 2, + "scope": "api", + "anchor": "class-httpclientrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:fa5bc7118fe2", + "chapter": "http", + "kind": "boolean", + "name": "Type", + "signature": "`writableFinished` Type: {boolean}", + "label": "writableFinished", + "apiSymbol": "writableFinished", + "depth": 2, + "scope": "api", + "anchor": "class-httpclientrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:ea5e122663f9", + "chapter": "http", + "kind": "event", + "name": "abort", + "signature": "Event: `'abort'`", + "label": "'abort'", + "apiSymbol": "'abort'", + "depth": 2, + "scope": "api", + "anchor": "event-abort", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. Listen for the `'close'` event instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:35c1dba0105b", + "chapter": "http", + "kind": "event", + "name": "close", + "signature": "Event: `'close'`", + "label": "'close'", + "apiSymbol": "'close'", + "depth": 2, + "scope": "api", + "anchor": "event-close", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:73b6cf571d34", + "chapter": "http", + "kind": "event", + "name": "connect", + "signature": "Event: `'connect'`", + "label": "'connect'", + "apiSymbol": "'connect'", + "depth": 2, + "scope": "api", + "anchor": "event-connect", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:38a9f64d7ac7", + "chapter": "http", + "kind": "event", + "name": "continue", + "signature": "Event: `'continue'`", + "label": "'continue'", + "apiSymbol": "'continue'", + "depth": 2, + "scope": "api", + "anchor": "event-continue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:9d0cbf420019", + "chapter": "http", + "kind": "event", + "name": "finish", + "signature": "Event: `'finish'`", + "label": "'finish'", + "apiSymbol": "'finish'", + "depth": 2, + "scope": "api", + "anchor": "event-finish", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:6fe7a6f0d989", + "chapter": "http", + "kind": "event", + "name": "information", + "signature": "Event: `'information'`", + "label": "'information'", + "apiSymbol": "'information'", + "depth": 2, + "scope": "api", + "anchor": "event-information", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:320a817d6c5f", + "chapter": "http", + "kind": "event", + "name": "response", + "signature": "Event: `'response'`", + "label": "'response'", + "apiSymbol": "'response'", + "depth": 2, + "scope": "api", + "anchor": "event-response", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:668a203db85a", + "chapter": "http", + "kind": "event", + "name": "socket", + "signature": "Event: `'socket'`", + "label": "'socket'", + "apiSymbol": "'socket'", + "depth": 2, + "scope": "api", + "anchor": "event-socket", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:9d754f9b95de", + "chapter": "http", + "kind": "event", + "name": "timeout", + "signature": "Event: `'timeout'`", + "label": "'timeout'", + "apiSymbol": "'timeout'", + "depth": 2, + "scope": "api", + "anchor": "event-timeout", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:5427e767fb53", + "chapter": "http", + "kind": "event", + "name": "upgrade", + "signature": "Event: `'upgrade'`", + "label": "'upgrade'", + "apiSymbol": "'upgrade'", + "depth": 2, + "scope": "api", + "anchor": "event-upgrade", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:fba3d102ff13", + "chapter": "http", + "kind": "class", + "name": "http.Server", + "signature": "Class: `http.Server`", + "label": "http.Server", + "apiSymbol": "http.Server", + "depth": 1, + "scope": "api", + "anchor": "class-httpserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "http:82652eac4646", + "chapter": "http", + "kind": "method", + "name": "close", + "signature": "`server.close([callback])`", + "label": "server.close([callback])", + "apiSymbol": "server.close", + "depth": 2, + "scope": "api", + "anchor": "serverclosecallback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:8c58d9380210", + "chapter": "http", + "kind": "method", + "name": "closeAllConnections", + "signature": "`server.closeAllConnections()`", + "label": "server.closeAllConnections()", + "apiSymbol": "server.closeAllConnections", + "depth": 2, + "scope": "api", + "anchor": "servercloseallconnections", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:c09ff35929a5", + "chapter": "http", + "kind": "method", + "name": "closeIdleConnections", + "signature": "`server.closeIdleConnections()`", + "label": "server.closeIdleConnections()", + "apiSymbol": "server.closeIdleConnections", + "depth": 2, + "scope": "api", + "anchor": "servercloseidleconnections", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:8fd12000bf0d", + "chapter": "http", + "kind": "method", + "name": "listen", + "signature": "`server.listen()`", + "label": "server.listen()", + "apiSymbol": "server.listen", + "depth": 2, + "scope": "api", + "anchor": "serverlisten", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:0b835344503f", + "chapter": "http", + "kind": "method", + "name": "setTimeout", + "signature": "`server.setTimeout([msecs][, callback])`", + "label": "server.setTimeout([msecs][, callback])", + "apiSymbol": "server.setTimeout", + "depth": 2, + "scope": "api", + "anchor": "serversettimeoutmsecs-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:bf7aa520d261", + "chapter": "http", + "kind": "method", + "name": "[Symbol.asyncDispose]", + "signature": "`server[Symbol.asyncDispose]()`", + "label": "server[Symbol.asyncDispose]()", + "apiSymbol": "server", + "depth": 2, + "scope": "api", + "anchor": "serversymbolasyncdispose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:fdb7ed8f0e78", + "chapter": "http", + "kind": "number", + "name": "Type", + "signature": "`headersTimeout` Type: {number} **Default:** The minimum between [`server.requestTimeout`][] or `60000`.", + "label": "headersTimeout", + "apiSymbol": "headersTimeout", + "depth": 2, + "scope": "api", + "anchor": "class-httpserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:010bd8804efe", + "chapter": "http", + "kind": "boolean", + "name": "Type", + "signature": "`listening` Type: {boolean} Indicates whether or not the server is listening for connections.", + "label": "listening", + "apiSymbol": "listening", + "depth": 2, + "scope": "api", + "anchor": "class-httpserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:2b341e7f7ddb", + "chapter": "http", + "kind": "number", + "name": "Type", + "signature": "`maxHeadersCount` Type: {number} **Default:** `2000`", + "label": "maxHeadersCount", + "apiSymbol": "maxHeadersCount", + "depth": 2, + "scope": "api", + "anchor": "class-httpserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:ab29ce0fdbf0", + "chapter": "http", + "kind": "number", + "name": "Type", + "signature": "`requestTimeout` Type: {number} **Default:** `300000`", + "label": "requestTimeout", + "apiSymbol": "requestTimeout", + "depth": 2, + "scope": "api", + "anchor": "class-httpserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:42c7fab8ca10", + "chapter": "http", + "kind": "number", + "name": "Type", + "signature": "`maxRequestsPerSocket` Type: {number} Requests per socket. **Default:** 0 (no limit)", + "label": "maxRequestsPerSocket", + "apiSymbol": "maxRequestsPerSocket", + "depth": 2, + "scope": "api", + "anchor": "class-httpserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:5346f7cf76ef", + "chapter": "http", + "kind": "number", + "name": "Type", + "signature": "`timeout` Type: {number} Timeout in milliseconds. **Default:** 0 (no timeout)", + "label": "timeout", + "apiSymbol": "timeout", + "depth": 2, + "scope": "api", + "anchor": "class-httpserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:9454e5061309", + "chapter": "http", + "kind": "number", + "name": "Type", + "signature": "`keepAliveTimeout` Type: {number} Timeout in milliseconds. **Default:** `5000` (5 seconds).", + "label": "keepAliveTimeout", + "apiSymbol": "keepAliveTimeout", + "depth": 2, + "scope": "api", + "anchor": "class-httpserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:dd7fc0b08678", + "chapter": "http", + "kind": "number", + "name": "Type", + "signature": "`keepAliveTimeoutBuffer` Type: {number} Timeout in milliseconds. **Default:** `1000` (1 second).", + "label": "keepAliveTimeoutBuffer", + "apiSymbol": "keepAliveTimeoutBuffer", + "depth": 2, + "scope": "api", + "anchor": "class-httpserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:04e4c748e66c", + "chapter": "http", + "kind": "event", + "name": "checkContinue", + "signature": "Event: `'checkContinue'`", + "label": "'checkContinue'", + "apiSymbol": "'checkContinue'", + "depth": 2, + "scope": "api", + "anchor": "event-checkcontinue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:94779f37e2b9", + "chapter": "http", + "kind": "event", + "name": "checkExpectation", + "signature": "Event: `'checkExpectation'`", + "label": "'checkExpectation'", + "apiSymbol": "'checkExpectation'", + "depth": 2, + "scope": "api", + "anchor": "event-checkexpectation", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:578453140bad", + "chapter": "http", + "kind": "event", + "name": "clientError", + "signature": "Event: `'clientError'`", + "label": "'clientError'", + "apiSymbol": "'clientError'", + "depth": 2, + "scope": "api", + "anchor": "event-clienterror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:4f972cc3ace1", + "chapter": "http", + "kind": "event", + "name": "close", + "signature": "Event: `'close'`", + "label": "'close'", + "apiSymbol": "'close'", + "depth": 2, + "scope": "api", + "anchor": "event-close_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:b8c1116474f8", + "chapter": "http", + "kind": "event", + "name": "connect", + "signature": "Event: `'connect'`", + "label": "'connect'", + "apiSymbol": "'connect'", + "depth": 2, + "scope": "api", + "anchor": "event-connect_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:b7cecdb6b204", + "chapter": "http", + "kind": "event", + "name": "connection", + "signature": "Event: `'connection'`", + "label": "'connection'", + "apiSymbol": "'connection'", + "depth": 2, + "scope": "api", + "anchor": "event-connection", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:c80ae5a2d83b", + "chapter": "http", + "kind": "event", + "name": "dropRequest", + "signature": "Event: `'dropRequest'`", + "label": "'dropRequest'", + "apiSymbol": "'dropRequest'", + "depth": 2, + "scope": "api", + "anchor": "event-droprequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:339af3bba7c2", + "chapter": "http", + "kind": "event", + "name": "request", + "signature": "Event: `'request'`", + "label": "'request'", + "apiSymbol": "'request'", + "depth": 2, + "scope": "api", + "anchor": "event-request", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:a2483d6ba775", + "chapter": "http", + "kind": "event", + "name": "upgrade", + "signature": "Event: `'upgrade'`", + "label": "'upgrade'", + "apiSymbol": "'upgrade'", + "depth": 2, + "scope": "api", + "anchor": "event-upgrade_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:6e7394163abe", + "chapter": "http", + "kind": "class", + "name": "http.ServerResponse", + "signature": "Class: `http.ServerResponse`", + "label": "http.ServerResponse", + "apiSymbol": "http.ServerResponse", + "depth": 1, + "scope": "api", + "anchor": "class-httpserverresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:5d49a750aaa2", + "chapter": "http", + "kind": "method", + "name": "addTrailers", + "signature": "`response.addTrailers(headers)`", + "label": "response.addTrailers(headers)", + "apiSymbol": "response.addTrailers", + "depth": 2, + "scope": "api", + "anchor": "responseaddtrailersheaders", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:24f6cee09a10", + "chapter": "http", + "kind": "method", + "name": "cork", + "signature": "`response.cork()`", + "label": "response.cork()", + "apiSymbol": "response.cork", + "depth": 2, + "scope": "api", + "anchor": "responsecork", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:dff9a3ca561c", + "chapter": "http", + "kind": "method", + "name": "end", + "signature": "`response.end([data[, encoding]][, callback])`", + "label": "response.end([data[, encoding]][, callback])", + "apiSymbol": "response.end", + "depth": 2, + "scope": "api", + "anchor": "responseenddata-encoding-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:a0ccf487a6bd", + "chapter": "http", + "kind": "method", + "name": "flushHeaders", + "signature": "`response.flushHeaders()`", + "label": "response.flushHeaders()", + "apiSymbol": "response.flushHeaders", + "depth": 2, + "scope": "api", + "anchor": "responseflushheaders", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:aad2e291d9d6", + "chapter": "http", + "kind": "method", + "name": "getHeader", + "signature": "`response.getHeader(name)`", + "label": "response.getHeader(name)", + "apiSymbol": "response.getHeader", + "depth": 2, + "scope": "api", + "anchor": "responsegetheadername", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:b56d71384037", + "chapter": "http", + "kind": "method", + "name": "getHeaderNames", + "signature": "`response.getHeaderNames()`", + "label": "response.getHeaderNames()", + "apiSymbol": "response.getHeaderNames", + "depth": 2, + "scope": "api", + "anchor": "responsegetheadernames", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:96fd543306ea", + "chapter": "http", + "kind": "method", + "name": "getHeaders", + "signature": "`response.getHeaders()`", + "label": "response.getHeaders()", + "apiSymbol": "response.getHeaders", + "depth": 2, + "scope": "api", + "anchor": "responsegetheaders", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:c8a4bfdfc4d0", + "chapter": "http", + "kind": "method", + "name": "hasHeader", + "signature": "`response.hasHeader(name)`", + "label": "response.hasHeader(name)", + "apiSymbol": "response.hasHeader", + "depth": 2, + "scope": "api", + "anchor": "responsehasheadername", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:647c835d4451", + "chapter": "http", + "kind": "method", + "name": "removeHeader", + "signature": "`response.removeHeader(name)`", + "label": "response.removeHeader(name)", + "apiSymbol": "response.removeHeader", + "depth": 2, + "scope": "api", + "anchor": "responseremoveheadername", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:fdf576d37b29", + "chapter": "http", + "kind": "method", + "name": "setHeader", + "signature": "`response.setHeader(name, value)`", + "label": "response.setHeader(name, value)", + "apiSymbol": "response.setHeader", + "depth": 2, + "scope": "api", + "anchor": "responsesetheadername-value", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:9386b96109c1", + "chapter": "http", + "kind": "method", + "name": "setTimeout", + "signature": "`response.setTimeout(msecs[, callback])`", + "label": "response.setTimeout(msecs[, callback])", + "apiSymbol": "response.setTimeout", + "depth": 2, + "scope": "api", + "anchor": "responsesettimeoutmsecs-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:d3f843e2124c", + "chapter": "http", + "kind": "method", + "name": "uncork", + "signature": "`response.uncork()`", + "label": "response.uncork()", + "apiSymbol": "response.uncork", + "depth": 2, + "scope": "api", + "anchor": "responseuncork", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:c5cb551c2ee7", + "chapter": "http", + "kind": "method", + "name": "write", + "signature": "`response.write(chunk[, encoding][, callback])`", + "label": "response.write(chunk[, encoding][, callback])", + "apiSymbol": "response.write", + "depth": 2, + "scope": "api", + "anchor": "responsewritechunk-encoding-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:143590280ee6", + "chapter": "http", + "kind": "method", + "name": "writeContinue", + "signature": "`response.writeContinue()`", + "label": "response.writeContinue()", + "apiSymbol": "response.writeContinue", + "depth": 2, + "scope": "api", + "anchor": "responsewritecontinue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:57b2dd383796", + "chapter": "http", + "kind": "method", + "name": "writeEarlyHints", + "signature": "`response.writeEarlyHints(hints[, callback])`", + "label": "response.writeEarlyHints(hints[, callback])", + "apiSymbol": "response.writeEarlyHints", + "depth": 2, + "scope": "api", + "anchor": "responsewriteearlyhintshints-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:4979906727da", + "chapter": "http", + "kind": "method", + "name": "writeHead", + "signature": "`response.writeHead(statusCode[, statusMessage][, headers])`", + "label": "response.writeHead(statusCode[, statusMessage][, headers])", + "apiSymbol": "response.writeHead", + "depth": 2, + "scope": "api", + "anchor": "responsewriteheadstatuscode-statusmessage-headers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:66f1ca12e0bb", + "chapter": "http", + "kind": "method", + "name": "writeProcessing", + "signature": "`response.writeProcessing()`", + "label": "response.writeProcessing()", + "apiSymbol": "response.writeProcessing", + "depth": 2, + "scope": "api", + "anchor": "responsewriteprocessing", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:12beff0a3bb6", + "chapter": "http", + "kind": "stream.Duplex", + "name": "Type", + "signature": "`connection` Type: {stream.Duplex}", + "label": "connection", + "apiSymbol": "connection", + "depth": 2, + "scope": "api", + "anchor": "class-httpserverresponse", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. Use [`response.socket`][].", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:38e3aac34721", + "chapter": "http", + "kind": "boolean", + "name": "Type", + "signature": "`finished` Type: {boolean}", + "label": "finished", + "apiSymbol": "finished", + "depth": 2, + "scope": "api", + "anchor": "class-httpserverresponse", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. Use [`response.writableEnded`][].", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:7a94e9340df2", + "chapter": "http", + "kind": "boolean", + "name": "Type", + "signature": "`headersSent` Type: {boolean}", + "label": "headersSent", + "apiSymbol": "headersSent", + "depth": 2, + "scope": "api", + "anchor": "class-httpserverresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:4a53204d9649", + "chapter": "http", + "kind": "http.IncomingMessage", + "name": "Type", + "signature": "`req` Type: {http.IncomingMessage}", + "label": "req", + "apiSymbol": "req", + "depth": 2, + "scope": "api", + "anchor": "class-httpserverresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:fa11ab31f0e6", + "chapter": "http", + "kind": "boolean", + "name": "Type", + "signature": "`sendDate` Type: {boolean}", + "label": "sendDate", + "apiSymbol": "sendDate", + "depth": 2, + "scope": "api", + "anchor": "class-httpserverresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:57050d6e0076", + "chapter": "http", + "kind": "stream.Duplex", + "name": "Type", + "signature": "`socket` Type: {stream.Duplex}", + "label": "socket", + "apiSymbol": "socket", + "depth": 2, + "scope": "api", + "anchor": "class-httpserverresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:bc826f3bcd62", + "chapter": "http", + "kind": "number", + "name": "Type", + "signature": "`statusCode` Type: {number} **Default:** `200`", + "label": "statusCode", + "apiSymbol": "statusCode", + "depth": 2, + "scope": "api", + "anchor": "class-httpserverresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:e00df4284589", + "chapter": "http", + "kind": "string", + "name": "Type", + "signature": "`statusMessage` Type: {string}", + "label": "statusMessage", + "apiSymbol": "statusMessage", + "depth": 2, + "scope": "api", + "anchor": "class-httpserverresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:5cbc98eb7f57", + "chapter": "http", + "kind": "boolean", + "name": "Type", + "signature": "`strictContentLength` Type: {boolean} **Default:** `false`", + "label": "strictContentLength", + "apiSymbol": "strictContentLength", + "depth": 2, + "scope": "api", + "anchor": "class-httpserverresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:be6478ef1ac5", + "chapter": "http", + "kind": "boolean", + "name": "Type", + "signature": "`writableEnded` Type: {boolean}", + "label": "writableEnded", + "apiSymbol": "writableEnded", + "depth": 2, + "scope": "api", + "anchor": "class-httpserverresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:ed88fea9d382", + "chapter": "http", + "kind": "boolean", + "name": "Type", + "signature": "`writableFinished` Type: {boolean}", + "label": "writableFinished", + "apiSymbol": "writableFinished", + "depth": 2, + "scope": "api", + "anchor": "class-httpserverresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:22adc7f45501", + "chapter": "http", + "kind": "event", + "name": "close", + "signature": "Event: `'close'`", + "label": "'close'", + "apiSymbol": "'close'", + "depth": 2, + "scope": "api", + "anchor": "event-close_2", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:132a0664efe7", + "chapter": "http", + "kind": "event", + "name": "finish", + "signature": "Event: `'finish'`", + "label": "'finish'", + "apiSymbol": "'finish'", + "depth": 2, + "scope": "api", + "anchor": "event-finish_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:5551fd92152f", + "chapter": "http", + "kind": "class", + "name": "http.IncomingMessage", + "signature": "Class: `http.IncomingMessage`", + "label": "http.IncomingMessage", + "apiSymbol": "http.IncomingMessage", + "depth": 1, + "scope": "api", + "anchor": "class-httpincomingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "http:6e8b5aa393f9", + "chapter": "http", + "kind": "method", + "name": "destroy", + "signature": "`message.destroy([error])`", + "label": "message.destroy([error])", + "apiSymbol": "message.destroy", + "depth": 2, + "scope": "api", + "anchor": "messagedestroyerror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "http:12b0e718b202", + "chapter": "http", + "kind": "method", + "name": "setTimeout", + "signature": "`message.setTimeout(msecs[, callback])`", + "label": "message.setTimeout(msecs[, callback])", + "apiSymbol": "message.setTimeout", + "depth": 2, + "scope": "api", + "anchor": "messagesettimeoutmsecs-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:f3370b31b459", + "chapter": "http", + "kind": "boolean", + "name": "Type", + "signature": "`aborted` Type: {boolean}", + "label": "aborted", + "apiSymbol": "aborted", + "depth": 2, + "scope": "api", + "anchor": "class-httpincomingmessage", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. Check `message.destroyed` from <stream.Readable>.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:a6f5bff3bacd", + "chapter": "http", + "kind": "boolean", + "name": "Type", + "signature": "`complete` Type: {boolean}", + "label": "complete", + "apiSymbol": "complete", + "depth": 2, + "scope": "api", + "anchor": "class-httpincomingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:161bfd79afc5", + "chapter": "http", + "kind": "section", + "name": "connection", + "signature": "`message.connection`", + "label": "message.connection", + "apiSymbol": "message.connection", + "depth": 2, + "scope": "api", + "anchor": "messageconnection", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. Use [`message.socket`][].", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:6ea8d1d67963", + "chapter": "http", + "kind": "Object", + "name": "Type", + "signature": "`headers` Type: {Object}", + "label": "headers", + "apiSymbol": "headers", + "depth": 2, + "scope": "api", + "anchor": "class-httpincomingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:7a1651d7dcd8", + "chapter": "http", + "kind": "Object", + "name": "Type", + "signature": "`headersDistinct` Type: {Object}", + "label": "headersDistinct", + "apiSymbol": "headersDistinct", + "depth": 2, + "scope": "api", + "anchor": "class-httpincomingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:e8094e96df7a", + "chapter": "http", + "kind": "string", + "name": "Type", + "signature": "`httpVersion` Type: {string}", + "label": "httpVersion", + "apiSymbol": "httpVersion", + "depth": 2, + "scope": "api", + "anchor": "class-httpincomingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:7fc5fcb57970", + "chapter": "http", + "kind": "string", + "name": "Type", + "signature": "`method` Type: {string}", + "label": "method", + "apiSymbol": "method", + "depth": 2, + "scope": "api", + "anchor": "class-httpincomingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:c1409aafdd68", + "chapter": "http", + "kind": "string\\[]", + "name": "Type", + "signature": "`rawHeaders` Type: {string\\[]}", + "label": "rawHeaders", + "apiSymbol": "rawHeaders", + "depth": 2, + "scope": "api", + "anchor": "class-httpincomingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:bf10950dea48", + "chapter": "http", + "kind": "string\\[]", + "name": "Type", + "signature": "`rawTrailers` Type: {string\\[]}", + "label": "rawTrailers", + "apiSymbol": "rawTrailers", + "depth": 2, + "scope": "api", + "anchor": "class-httpincomingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:63ef1a2fb4c2", + "chapter": "http", + "kind": "stream.Duplex", + "name": "Type", + "signature": "`socket` Type: {stream.Duplex}", + "label": "socket", + "apiSymbol": "socket", + "depth": 2, + "scope": "api", + "anchor": "class-httpincomingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:d11963648b05", + "chapter": "http", + "kind": "number", + "name": "Type", + "signature": "`statusCode` Type: {number}", + "label": "statusCode", + "apiSymbol": "statusCode", + "depth": 2, + "scope": "api", + "anchor": "class-httpincomingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:86be6f46681e", + "chapter": "http", + "kind": "string", + "name": "Type", + "signature": "`statusMessage` Type: {string}", + "label": "statusMessage", + "apiSymbol": "statusMessage", + "depth": 2, + "scope": "api", + "anchor": "class-httpincomingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:0a0f06df64f2", + "chapter": "http", + "kind": "Object", + "name": "Type", + "signature": "`trailers` Type: {Object}", + "label": "trailers", + "apiSymbol": "trailers", + "depth": 2, + "scope": "api", + "anchor": "class-httpincomingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:a28c536aa46c", + "chapter": "http", + "kind": "Object", + "name": "Type", + "signature": "`trailersDistinct` Type: {Object}", + "label": "trailersDistinct", + "apiSymbol": "trailersDistinct", + "depth": 2, + "scope": "api", + "anchor": "class-httpincomingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:2c7de66edc4c", + "chapter": "http", + "kind": "string", + "name": "Type", + "signature": "`url` Type: {string}", + "label": "url", + "apiSymbol": "url", + "depth": 2, + "scope": "api", + "anchor": "class-httpincomingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:a0087d39beb4", + "chapter": "http", + "kind": "event", + "name": "aborted", + "signature": "Event: `'aborted'`", + "label": "'aborted'", + "apiSymbol": "'aborted'", + "depth": 2, + "scope": "api", + "anchor": "event-aborted", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. Listen for `'close'` event instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:56bfbfa42cb2", + "chapter": "http", + "kind": "event", + "name": "close", + "signature": "Event: `'close'`", + "label": "'close'", + "apiSymbol": "'close'", + "depth": 2, + "scope": "api", + "anchor": "event-close_3", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:d8c91ef893fa", + "chapter": "http", + "kind": "class", + "name": "http.OutgoingMessage", + "signature": "Class: `http.OutgoingMessage`", + "label": "http.OutgoingMessage", + "apiSymbol": "http.OutgoingMessage", + "depth": 1, + "scope": "api", + "anchor": "class-httpoutgoingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:613d68e8030b", + "chapter": "http", + "kind": "method", + "name": "addTrailers", + "signature": "`outgoingMessage.addTrailers(headers)`", + "label": "outgoingMessage.addTrailers(headers)", + "apiSymbol": "outgoingMessage.addTrailers", + "depth": 2, + "scope": "api", + "anchor": "outgoingmessageaddtrailersheaders", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:162aa5d0fb74", + "chapter": "http", + "kind": "method", + "name": "appendHeader", + "signature": "`outgoingMessage.appendHeader(name, value)`", + "label": "outgoingMessage.appendHeader(name, value)", + "apiSymbol": "outgoingMessage.appendHeader", + "depth": 2, + "scope": "api", + "anchor": "outgoingmessageappendheadername-value", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:ae27089d326b", + "chapter": "http", + "kind": "method", + "name": "cork", + "signature": "`outgoingMessage.cork()`", + "label": "outgoingMessage.cork()", + "apiSymbol": "outgoingMessage.cork", + "depth": 2, + "scope": "api", + "anchor": "outgoingmessagecork", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:7bb2ca93136d", + "chapter": "http", + "kind": "method", + "name": "destroy", + "signature": "`outgoingMessage.destroy([error])`", + "label": "outgoingMessage.destroy([error])", + "apiSymbol": "outgoingMessage.destroy", + "depth": 2, + "scope": "api", + "anchor": "outgoingmessagedestroyerror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:f6cd0e4e4ab4", + "chapter": "http", + "kind": "method", + "name": "end", + "signature": "`outgoingMessage.end(chunk[, encoding][, callback])`", + "label": "outgoingMessage.end(chunk[, encoding][, callback])", + "apiSymbol": "outgoingMessage.end", + "depth": 2, + "scope": "api", + "anchor": "outgoingmessageendchunk-encoding-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:c570c0e57047", + "chapter": "http", + "kind": "method", + "name": "flushHeaders", + "signature": "`outgoingMessage.flushHeaders()`", + "label": "outgoingMessage.flushHeaders()", + "apiSymbol": "outgoingMessage.flushHeaders", + "depth": 2, + "scope": "api", + "anchor": "outgoingmessageflushheaders", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:7fe945b2f992", + "chapter": "http", + "kind": "method", + "name": "getHeader", + "signature": "`outgoingMessage.getHeader(name)`", + "label": "outgoingMessage.getHeader(name)", + "apiSymbol": "outgoingMessage.getHeader", + "depth": 2, + "scope": "api", + "anchor": "outgoingmessagegetheadername", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:a8b1da062d05", + "chapter": "http", + "kind": "method", + "name": "getHeaderNames", + "signature": "`outgoingMessage.getHeaderNames()`", + "label": "outgoingMessage.getHeaderNames()", + "apiSymbol": "outgoingMessage.getHeaderNames", + "depth": 2, + "scope": "api", + "anchor": "outgoingmessagegetheadernames", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:27f0008f0617", + "chapter": "http", + "kind": "method", + "name": "getHeaders", + "signature": "`outgoingMessage.getHeaders()`", + "label": "outgoingMessage.getHeaders()", + "apiSymbol": "outgoingMessage.getHeaders", + "depth": 2, + "scope": "api", + "anchor": "outgoingmessagegetheaders", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:08b63b7ee849", + "chapter": "http", + "kind": "method", + "name": "hasHeader", + "signature": "`outgoingMessage.hasHeader(name)`", + "label": "outgoingMessage.hasHeader(name)", + "apiSymbol": "outgoingMessage.hasHeader", + "depth": 2, + "scope": "api", + "anchor": "outgoingmessagehasheadername", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:ce45c25f3e5f", + "chapter": "http", + "kind": "method", + "name": "pipe", + "signature": "`outgoingMessage.pipe()`", + "label": "outgoingMessage.pipe()", + "apiSymbol": "outgoingMessage.pipe", + "depth": 2, + "scope": "api", + "anchor": "outgoingmessagepipe", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:cf7cc98750c4", + "chapter": "http", + "kind": "method", + "name": "removeHeader", + "signature": "`outgoingMessage.removeHeader(name)`", + "label": "outgoingMessage.removeHeader(name)", + "apiSymbol": "outgoingMessage.removeHeader", + "depth": 2, + "scope": "api", + "anchor": "outgoingmessageremoveheadername", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:25f35443d760", + "chapter": "http", + "kind": "method", + "name": "setHeader", + "signature": "`outgoingMessage.setHeader(name, value)`", + "label": "outgoingMessage.setHeader(name, value)", + "apiSymbol": "outgoingMessage.setHeader", + "depth": 2, + "scope": "api", + "anchor": "outgoingmessagesetheadername-value", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:d3a5b2e0adb8", + "chapter": "http", + "kind": "method", + "name": "setHeaders", + "signature": "`outgoingMessage.setHeaders(headers)`", + "label": "outgoingMessage.setHeaders(headers)", + "apiSymbol": "outgoingMessage.setHeaders", + "depth": 2, + "scope": "api", + "anchor": "outgoingmessagesetheadersheaders", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:35c3b035a9c0", + "chapter": "http", + "kind": "method", + "name": "setTimeout", + "signature": "`outgoingMessage.setTimeout(msecs[, callback])`", + "label": "outgoingMessage.setTimeout(msecs[, callback])", + "apiSymbol": "outgoingMessage.setTimeout", + "depth": 2, + "scope": "api", + "anchor": "outgoingmessagesettimeoutmsecs-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:90c945912535", + "chapter": "http", + "kind": "method", + "name": "uncork", + "signature": "`outgoingMessage.uncork()`", + "label": "outgoingMessage.uncork()", + "apiSymbol": "outgoingMessage.uncork", + "depth": 2, + "scope": "api", + "anchor": "outgoingmessageuncork", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:8b618d8d7bd7", + "chapter": "http", + "kind": "method", + "name": "write", + "signature": "`outgoingMessage.write(chunk[, encoding][, callback])`", + "label": "outgoingMessage.write(chunk[, encoding][, callback])", + "apiSymbol": "outgoingMessage.write", + "depth": 2, + "scope": "api", + "anchor": "outgoingmessagewritechunk-encoding-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:c4e43e2764bf", + "chapter": "http", + "kind": "section", + "name": "connection", + "signature": "`outgoingMessage.connection`", + "label": "outgoingMessage.connection", + "apiSymbol": "outgoingMessage.connection", + "depth": 2, + "scope": "api", + "anchor": "outgoingmessageconnection", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Use [`outgoingMessage.socket`][] instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:85a27ee5cb25", + "chapter": "http", + "kind": "boolean", + "name": "Type", + "signature": "`headersSent` Type: {boolean}", + "label": "headersSent", + "apiSymbol": "headersSent", + "depth": 2, + "scope": "api", + "anchor": "class-httpoutgoingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:fffe9369593f", + "chapter": "http", + "kind": "stream.Duplex", + "name": "Type", + "signature": "`socket` Type: {stream.Duplex}", + "label": "socket", + "apiSymbol": "socket", + "depth": 2, + "scope": "api", + "anchor": "class-httpoutgoingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:6e147234a13d", + "chapter": "http", + "kind": "number", + "name": "Type", + "signature": "`writableCorked` Type: {number}", + "label": "writableCorked", + "apiSymbol": "writableCorked", + "depth": 2, + "scope": "api", + "anchor": "class-httpoutgoingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:ad8f73a39719", + "chapter": "http", + "kind": "boolean", + "name": "Type", + "signature": "`writableEnded` Type: {boolean}", + "label": "writableEnded", + "apiSymbol": "writableEnded", + "depth": 2, + "scope": "api", + "anchor": "class-httpoutgoingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:9a1edc22b0fc", + "chapter": "http", + "kind": "boolean", + "name": "Type", + "signature": "`writableFinished` Type: {boolean}", + "label": "writableFinished", + "apiSymbol": "writableFinished", + "depth": 2, + "scope": "api", + "anchor": "class-httpoutgoingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:e50e0a0a819c", + "chapter": "http", + "kind": "number", + "name": "Type", + "signature": "`writableHighWaterMark` Type: {number}", + "label": "writableHighWaterMark", + "apiSymbol": "writableHighWaterMark", + "depth": 2, + "scope": "api", + "anchor": "class-httpoutgoingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:04ff23acfecb", + "chapter": "http", + "kind": "number", + "name": "Type", + "signature": "`writableLength` Type: {number}", + "label": "writableLength", + "apiSymbol": "writableLength", + "depth": 2, + "scope": "api", + "anchor": "class-httpoutgoingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:30eab20decda", + "chapter": "http", + "kind": "boolean", + "name": "Type", + "signature": "`writableObjectMode` Type: {boolean}", + "label": "writableObjectMode", + "apiSymbol": "writableObjectMode", + "depth": 2, + "scope": "api", + "anchor": "class-httpoutgoingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:8edf4b5f7327", + "chapter": "http", + "kind": "event", + "name": "drain", + "signature": "Event: `'drain'`", + "label": "'drain'", + "apiSymbol": "'drain'", + "depth": 2, + "scope": "api", + "anchor": "event-drain", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:ea93acc37dc6", + "chapter": "http", + "kind": "event", + "name": "finish", + "signature": "Event: `'finish'`", + "label": "'finish'", + "apiSymbol": "'finish'", + "depth": 2, + "scope": "api", + "anchor": "event-finish_2", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:c3af63bc0c7f", + "chapter": "http", + "kind": "event", + "name": "prefinish", + "signature": "Event: `'prefinish'`", + "label": "'prefinish'", + "apiSymbol": "'prefinish'", + "depth": 2, + "scope": "api", + "anchor": "event-prefinish", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:76f05de80d85", + "chapter": "http", + "kind": "class", + "name": "WebSocket", + "signature": "Class: `WebSocket`", + "label": "WebSocket", + "apiSymbol": "WebSocket", + "depth": 1, + "scope": "api", + "anchor": "class-websocket", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:30aff27747f4", + "chapter": "http", + "kind": "method", + "name": "createServer", + "signature": "`http.createServer([options][, requestListener])`", + "label": "http.createServer([options][, requestListener])", + "apiSymbol": "http.createServer", + "depth": 1, + "scope": "api", + "anchor": "httpcreateserveroptions-requestlistener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "http:7ea8ba3dee5b", + "chapter": "http", + "kind": "method", + "name": "get", + "signature": "`http.get(options[, callback])`", + "label": "http.get(options[, callback])", + "apiSymbol": "http.get", + "depth": 1, + "scope": "api", + "anchor": "httpgetoptions-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "http:f811fa4ce2d6", + "chapter": "http", + "kind": "method", + "name": "get", + "signature": "`http.get(url[, options][, callback])`", + "label": "http.get(url[, options][, callback])", + "apiSymbol": "http.get", + "depth": 1, + "scope": "api", + "anchor": "httpgeturl-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "http:32baf9e396dd", + "chapter": "http", + "kind": "method", + "name": "request", + "signature": "`http.request(options[, callback])`", + "label": "http.request(options[, callback])", + "apiSymbol": "http.request", + "depth": 1, + "scope": "api", + "anchor": "httprequestoptions-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "http:e322a87c4c90", + "chapter": "http", + "kind": "method", + "name": "request", + "signature": "`http.request(url[, options][, callback])`", + "label": "http.request(url[, options][, callback])", + "apiSymbol": "http.request", + "depth": 1, + "scope": "api", + "anchor": "httprequesturl-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "http:ffd08b3738f5", + "chapter": "http", + "kind": "method", + "name": "validateHeaderName", + "signature": "`http.validateHeaderName(name[, label])`", + "label": "http.validateHeaderName(name[, label])", + "apiSymbol": "http.validateHeaderName", + "depth": 1, + "scope": "api", + "anchor": "httpvalidateheadernamename-label", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:546a5b4ce764", + "chapter": "http", + "kind": "method", + "name": "validateHeaderValue", + "signature": "`http.validateHeaderValue(name, value)`", + "label": "http.validateHeaderValue(name, value)", + "apiSymbol": "http.validateHeaderValue", + "depth": 1, + "scope": "api", + "anchor": "httpvalidateheadervaluename-value", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:af6c9693f43f", + "chapter": "http", + "kind": "method", + "name": "setMaxIdleHTTPParsers", + "signature": "`http.setMaxIdleHTTPParsers(max)`", + "label": "http.setMaxIdleHTTPParsers(max)", + "apiSymbol": "http.setMaxIdleHTTPParsers", + "depth": 1, + "scope": "api", + "anchor": "httpsetmaxidlehttpparsersmax", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:8560905323e9", + "chapter": "http", + "kind": "method", + "name": "setGlobalProxyFromEnv", + "signature": "`http.setGlobalProxyFromEnv([proxyEnv])`", + "label": "http.setGlobalProxyFromEnv([proxyEnv])", + "apiSymbol": "http.setGlobalProxyFromEnv", + "depth": 1, + "scope": "api", + "anchor": "httpsetglobalproxyfromenvproxyenv", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http:f66d2eaf2bc0", + "chapter": "http", + "kind": "string\\[]", + "name": "Type", + "signature": "`METHODS` Type: {string\\[]}", + "label": "METHODS", + "apiSymbol": "METHODS", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "http:6677a9ec0cc9", + "chapter": "http", + "kind": "Object", + "name": "Type", + "signature": "`STATUS_CODES` Type: {Object}", + "label": "STATUS_CODES", + "apiSymbol": "STATUS_CODES", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "http:420a2f28f2fc", + "chapter": "http", + "kind": "http.Agent", + "name": "Type", + "signature": "`globalAgent` Type: {http.Agent}", + "label": "globalAgent", + "apiSymbol": "globalAgent", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "http:8ee25cb4a690", + "chapter": "http", + "kind": "number", + "name": "Type", + "signature": "`maxHeaderSize` Type: {number}", + "label": "maxHeaderSize", + "apiSymbol": "maxHeaderSize", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "http2:d34dea393f4d", + "chapter": "http2", + "kind": "module", + "name": "http/2", + "signature": "HTTP/2", + "label": "HTTP/2", + "apiSymbol": "http/2", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + } + }, + { + "id": "http2:6296dfa8e5d1", + "chapter": "http2", + "kind": "module", + "name": "supporting_the_`connect`_method", + "signature": "Supporting the `CONNECT` method", + "label": "Supporting the CONNECT method", + "apiSymbol": "CONNECT", + "depth": 1, + "scope": "api", + "anchor": "supporting-the-connect-method", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:609e3d53a6b1", + "chapter": "http2", + "kind": "module", + "name": "the_extended_`connect`_protocol", + "signature": "The extended `CONNECT` protocol", + "label": "The extended CONNECT protocol", + "apiSymbol": "CONNECT", + "depth": 1, + "scope": "api", + "anchor": "the-extended-connect-protocol", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:8952daf4b40b", + "chapter": "http2", + "kind": "class", + "name": "Http2Session", + "signature": "Class: `Http2Session`", + "label": "Http2Session", + "apiSymbol": "Http2Session", + "depth": 1, + "scope": "api", + "anchor": "class-http2session", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:2823055151cf", + "chapter": "http2", + "kind": "module", + "name": "`http2session`_and_sockets", + "signature": "`Http2Session` and sockets", + "label": "Http2Session", + "apiSymbol": "Http2Session", + "depth": 2, + "scope": "api", + "anchor": "http2session-and-sockets", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:0ad816b9c85c", + "chapter": "http2", + "kind": "method", + "name": "close", + "signature": "`http2session.close([callback])`", + "label": "http2session.close([callback])", + "apiSymbol": "http2session.close", + "depth": 2, + "scope": "api", + "anchor": "http2sessionclosecallback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:f4b8c67ad381", + "chapter": "http2", + "kind": "method", + "name": "destroy", + "signature": "`http2session.destroy([error][, code])`", + "label": "http2session.destroy([error][, code])", + "apiSymbol": "http2session.destroy", + "depth": 2, + "scope": "api", + "anchor": "http2sessiondestroyerror-code", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:f4cbef218fa9", + "chapter": "http2", + "kind": "method", + "name": "goaway", + "signature": "`http2session.goaway([code[, lastStreamID[, opaqueData]]])`", + "label": "http2session.goaway([code[, lastStreamID[, opaqueData]]])", + "apiSymbol": "http2session.goaway", + "depth": 2, + "scope": "api", + "anchor": "http2sessiongoawaycode-laststreamid-opaquedata", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:cced6fa9ba62", + "chapter": "http2", + "kind": "method", + "name": "ping", + "signature": "`http2session.ping([payload, ]callback)`", + "label": "http2session.ping([payload, ]callback)", + "apiSymbol": "http2session.ping", + "depth": 2, + "scope": "api", + "anchor": "http2sessionpingpayload-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:1f6c8cf81a35", + "chapter": "http2", + "kind": "method", + "name": "ref", + "signature": "`http2session.ref()`", + "label": "http2session.ref()", + "apiSymbol": "http2session.ref", + "depth": 2, + "scope": "api", + "anchor": "http2sessionref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:725acf2f7140", + "chapter": "http2", + "kind": "method", + "name": "setLocalWindowSize", + "signature": "`http2session.setLocalWindowSize(windowSize)`", + "label": "http2session.setLocalWindowSize(windowSize)", + "apiSymbol": "http2session.setLocalWindowSize", + "depth": 2, + "scope": "api", + "anchor": "http2sessionsetlocalwindowsizewindowsize", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:0144a989d733", + "chapter": "http2", + "kind": "method", + "name": "setTimeout", + "signature": "`http2session.setTimeout(msecs, callback)`", + "label": "http2session.setTimeout(msecs, callback)", + "apiSymbol": "http2session.setTimeout", + "depth": 2, + "scope": "api", + "anchor": "http2sessionsettimeoutmsecs-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:92f25dc5bc9b", + "chapter": "http2", + "kind": "method", + "name": "settings", + "signature": "`http2session.settings([settings][, callback])`", + "label": "http2session.settings([settings][, callback])", + "apiSymbol": "http2session.settings", + "depth": 2, + "scope": "api", + "anchor": "http2sessionsettingssettings-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:d63b0ac3df8b", + "chapter": "http2", + "kind": "method", + "name": "unref", + "signature": "`http2session.unref()`", + "label": "http2session.unref()", + "apiSymbol": "http2session.unref", + "depth": 2, + "scope": "api", + "anchor": "http2sessionunref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:13821134cf25", + "chapter": "http2", + "kind": "string|undefined", + "name": "Type", + "signature": "`alpnProtocol` Type: {string|undefined}", + "label": "alpnProtocol", + "apiSymbol": "alpnProtocol", + "depth": 2, + "scope": "api", + "anchor": "class-http2session", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:4fe09ce9cf4b", + "chapter": "http2", + "kind": "boolean", + "name": "Type", + "signature": "`closed` Type: {boolean}", + "label": "closed", + "apiSymbol": "closed", + "depth": 2, + "scope": "api", + "anchor": "class-http2session", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:45446ad28641", + "chapter": "http2", + "kind": "boolean", + "name": "Type", + "signature": "`connecting` Type: {boolean}", + "label": "connecting", + "apiSymbol": "connecting", + "depth": 2, + "scope": "api", + "anchor": "class-http2session", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:16fd13553e8b", + "chapter": "http2", + "kind": "boolean", + "name": "Type", + "signature": "`destroyed` Type: {boolean}", + "label": "destroyed", + "apiSymbol": "destroyed", + "depth": 2, + "scope": "api", + "anchor": "class-http2session", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:bcc288bd6ac0", + "chapter": "http2", + "kind": "boolean|undefined", + "name": "Type", + "signature": "`encrypted` Type: {boolean|undefined}", + "label": "encrypted", + "apiSymbol": "encrypted", + "depth": 2, + "scope": "api", + "anchor": "class-http2session", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:47cbe0a4952c", + "chapter": "http2", + "kind": "HTTP/2 Settings Object", + "name": "Type", + "signature": "`localSettings` Type: {HTTP/2 Settings Object}", + "label": "localSettings", + "apiSymbol": "localSettings", + "depth": 2, + "scope": "api", + "anchor": "class-http2session", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:8dd63a543d12", + "chapter": "http2", + "kind": "string\\[]|undefined", + "name": "Type", + "signature": "`originSet` Type: {string\\[]|undefined}", + "label": "originSet", + "apiSymbol": "originSet", + "depth": 2, + "scope": "api", + "anchor": "class-http2session", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:5c51c1461256", + "chapter": "http2", + "kind": "boolean", + "name": "Type", + "signature": "`pendingSettingsAck` Type: {boolean}", + "label": "pendingSettingsAck", + "apiSymbol": "pendingSettingsAck", + "depth": 2, + "scope": "api", + "anchor": "class-http2session", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:b2e54dd10443", + "chapter": "http2", + "kind": "HTTP/2 Settings Object", + "name": "Type", + "signature": "`remoteSettings` Type: {HTTP/2 Settings Object}", + "label": "remoteSettings", + "apiSymbol": "remoteSettings", + "depth": 2, + "scope": "api", + "anchor": "class-http2session", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:19707f39c6d0", + "chapter": "http2", + "kind": "net.Socket|tls.TLSSocket", + "name": "Type", + "signature": "`socket` Type: {net.Socket|tls.TLSSocket}", + "label": "socket", + "apiSymbol": "socket", + "depth": 2, + "scope": "api", + "anchor": "class-http2session", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:df44dffba55a", + "chapter": "http2", + "kind": "section", + "name": "state", + "signature": "`http2session.state`", + "label": "http2session.state", + "apiSymbol": "http2session.state", + "depth": 2, + "scope": "api", + "anchor": "http2sessionstate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:c991e11e1d43", + "chapter": "http2", + "kind": "number", + "name": "Type", + "signature": "`type` Type: {number}", + "label": "type", + "apiSymbol": "type", + "depth": 2, + "scope": "api", + "anchor": "class-http2session", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:965dc30fccc4", + "chapter": "http2", + "kind": "event", + "name": "close", + "signature": "Event: `'close'`", + "label": "'close'", + "apiSymbol": "'close'", + "depth": 2, + "scope": "api", + "anchor": "event-close", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:90001eb58d9a", + "chapter": "http2", + "kind": "event", + "name": "connect", + "signature": "Event: `'connect'`", + "label": "'connect'", + "apiSymbol": "'connect'", + "depth": 2, + "scope": "api", + "anchor": "event-connect", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:8c37d6371554", + "chapter": "http2", + "kind": "event", + "name": "error", + "signature": "Event: `'error'`", + "label": "'error'", + "apiSymbol": "'error'", + "depth": 2, + "scope": "api", + "anchor": "event-error", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:7dbc3d65db95", + "chapter": "http2", + "kind": "event", + "name": "frameError", + "signature": "Event: `'frameError'`", + "label": "'frameError'", + "apiSymbol": "'frameError'", + "depth": 2, + "scope": "api", + "anchor": "event-frameerror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:2f060122a905", + "chapter": "http2", + "kind": "event", + "name": "goaway", + "signature": "Event: `'goaway'`", + "label": "'goaway'", + "apiSymbol": "'goaway'", + "depth": 2, + "scope": "api", + "anchor": "event-goaway", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:4bef6d971dff", + "chapter": "http2", + "kind": "event", + "name": "localSettings", + "signature": "Event: `'localSettings'`", + "label": "'localSettings'", + "apiSymbol": "'localSettings'", + "depth": 2, + "scope": "api", + "anchor": "event-localsettings", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:2e38fa87d5df", + "chapter": "http2", + "kind": "event", + "name": "ping", + "signature": "Event: `'ping'`", + "label": "'ping'", + "apiSymbol": "'ping'", + "depth": 2, + "scope": "api", + "anchor": "event-ping", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:0eceeea2f0d2", + "chapter": "http2", + "kind": "event", + "name": "remoteSettings", + "signature": "Event: `'remoteSettings'`", + "label": "'remoteSettings'", + "apiSymbol": "'remoteSettings'", + "depth": 2, + "scope": "api", + "anchor": "event-remotesettings", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:8c2e3dfd9860", + "chapter": "http2", + "kind": "event", + "name": "stream", + "signature": "Event: `'stream'`", + "label": "'stream'", + "apiSymbol": "'stream'", + "depth": 2, + "scope": "api", + "anchor": "event-stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:35a3072bc370", + "chapter": "http2", + "kind": "event", + "name": "timeout", + "signature": "Event: `'timeout'`", + "label": "'timeout'", + "apiSymbol": "'timeout'", + "depth": 2, + "scope": "api", + "anchor": "event-timeout", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:76a1fc4fed90", + "chapter": "http2", + "kind": "class", + "name": "ServerHttp2Session", + "signature": "Class: `ServerHttp2Session`", + "label": "ServerHttp2Session", + "apiSymbol": "ServerHttp2Session", + "depth": 1, + "scope": "api", + "anchor": "class-serverhttp2session", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:6d2f4096de0f", + "chapter": "http2", + "kind": "method", + "name": "altsvc", + "signature": "`serverhttp2session.altsvc(alt, originOrStream)`", + "label": "serverhttp2session.altsvc(alt, originOrStream)", + "apiSymbol": "serverhttp2session.altsvc", + "depth": 2, + "scope": "api", + "anchor": "serverhttp2sessionaltsvcalt-originorstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:d37741190d5b", + "chapter": "http2", + "kind": "method", + "name": "origin", + "signature": "`serverhttp2session.origin(...origins)`", + "label": "serverhttp2session.origin(...origins)", + "apiSymbol": "serverhttp2session.origin", + "depth": 2, + "scope": "api", + "anchor": "serverhttp2sessionoriginorigins", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:49ddba896033", + "chapter": "http2", + "kind": "class", + "name": "ClientHttp2Session", + "signature": "Class: `ClientHttp2Session`", + "label": "ClientHttp2Session", + "apiSymbol": "ClientHttp2Session", + "depth": 1, + "scope": "api", + "anchor": "class-clienthttp2session", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:2229531783ce", + "chapter": "http2", + "kind": "method", + "name": "request", + "signature": "`clienthttp2session.request(headers[, options])`", + "label": "clienthttp2session.request(headers[, options])", + "apiSymbol": "clienthttp2session.request", + "depth": 2, + "scope": "api", + "anchor": "clienthttp2sessionrequestheaders-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:896fbb1fa2f7", + "chapter": "http2", + "kind": "event", + "name": "altsvc", + "signature": "Event: `'altsvc'`", + "label": "'altsvc'", + "apiSymbol": "'altsvc'", + "depth": 2, + "scope": "api", + "anchor": "event-altsvc", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:153d1dfdcfaf", + "chapter": "http2", + "kind": "event", + "name": "origin", + "signature": "Event: `'origin'`", + "label": "'origin'", + "apiSymbol": "'origin'", + "depth": 2, + "scope": "api", + "anchor": "event-origin", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:a2f001035565", + "chapter": "http2", + "kind": "class", + "name": "Http2Stream", + "signature": "Class: `Http2Stream`", + "label": "Http2Stream", + "apiSymbol": "Http2Stream", + "depth": 1, + "scope": "api", + "anchor": "class-http2stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:811c732a98da", + "chapter": "http2", + "kind": "module", + "name": "`http2stream`_lifecycle", + "signature": "`Http2Stream` Lifecycle", + "label": "Http2Stream", + "apiSymbol": "Http2Stream", + "depth": 2, + "scope": "api", + "anchor": "http2stream-lifecycle", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:5802396b25c4", + "chapter": "http2", + "kind": "method", + "name": "close", + "signature": "`http2stream.close(code[, callback])`", + "label": "http2stream.close(code[, callback])", + "apiSymbol": "http2stream.close", + "depth": 2, + "scope": "api", + "anchor": "http2streamclosecode-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:087f4039376e", + "chapter": "http2", + "kind": "method", + "name": "priority", + "signature": "`http2stream.priority(options)`", + "label": "http2stream.priority(options)", + "apiSymbol": "http2stream.priority", + "depth": 2, + "scope": "api", + "anchor": "http2streampriorityoptions", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: support for priority signaling has been deprecated in the [RFC 9113][] and is no longer supported in Node.js.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:12ed0a4b3b64", + "chapter": "http2", + "kind": "method", + "name": "setTimeout", + "signature": "`http2stream.setTimeout(msecs, callback)`", + "label": "http2stream.setTimeout(msecs, callback)", + "apiSymbol": "http2stream.setTimeout", + "depth": 2, + "scope": "api", + "anchor": "http2streamsettimeoutmsecs-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:c1274ca65fc2", + "chapter": "http2", + "kind": "method", + "name": "sendTrailers", + "signature": "`http2stream.sendTrailers(headers)`", + "label": "http2stream.sendTrailers(headers)", + "apiSymbol": "http2stream.sendTrailers", + "depth": 2, + "scope": "api", + "anchor": "http2streamsendtrailersheaders", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:f2e5b1cace83", + "chapter": "http2", + "kind": "boolean", + "name": "Type", + "signature": "`aborted` Type: {boolean}", + "label": "aborted", + "apiSymbol": "aborted", + "depth": 2, + "scope": "api", + "anchor": "class-http2stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:40c49fe9397d", + "chapter": "http2", + "kind": "number", + "name": "Type", + "signature": "`bufferSize` Type: {number}", + "label": "bufferSize", + "apiSymbol": "bufferSize", + "depth": 2, + "scope": "api", + "anchor": "class-http2stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:d56e207a8736", + "chapter": "http2", + "kind": "boolean", + "name": "Type", + "signature": "`closed` Type: {boolean}", + "label": "closed", + "apiSymbol": "closed", + "depth": 2, + "scope": "api", + "anchor": "class-http2stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:93885dd8d07f", + "chapter": "http2", + "kind": "boolean", + "name": "Type", + "signature": "`destroyed` Type: {boolean}", + "label": "destroyed", + "apiSymbol": "destroyed", + "depth": 2, + "scope": "api", + "anchor": "class-http2stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:dae5d4dade50", + "chapter": "http2", + "kind": "boolean", + "name": "Type", + "signature": "`endAfterHeaders` Type: {boolean}", + "label": "endAfterHeaders", + "apiSymbol": "endAfterHeaders", + "depth": 2, + "scope": "api", + "anchor": "class-http2stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:941027bf4ad0", + "chapter": "http2", + "kind": "number|undefined", + "name": "Type", + "signature": "`id` Type: {number|undefined}", + "label": "id", + "apiSymbol": "id", + "depth": 2, + "scope": "api", + "anchor": "class-http2stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:959528914ba6", + "chapter": "http2", + "kind": "boolean", + "name": "Type", + "signature": "`pending` Type: {boolean}", + "label": "pending", + "apiSymbol": "pending", + "depth": 2, + "scope": "api", + "anchor": "class-http2stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:1d6d4fae17c4", + "chapter": "http2", + "kind": "number", + "name": "Type", + "signature": "`rstCode` Type: {number}", + "label": "rstCode", + "apiSymbol": "rstCode", + "depth": 2, + "scope": "api", + "anchor": "class-http2stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:734f8d3605fd", + "chapter": "http2", + "kind": "HTTP/2 Headers Object", + "name": "Type", + "signature": "`sentHeaders` Type: {HTTP/2 Headers Object}", + "label": "sentHeaders", + "apiSymbol": "sentHeaders", + "depth": 2, + "scope": "api", + "anchor": "class-http2stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:8a4c9b51dbf0", + "chapter": "http2", + "kind": "HTTP/2 Headers Object\\[]", + "name": "Type", + "signature": "`sentInfoHeaders` Type: {HTTP/2 Headers Object\\[]}", + "label": "sentInfoHeaders", + "apiSymbol": "sentInfoHeaders", + "depth": 2, + "scope": "api", + "anchor": "class-http2stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:c18a72edad22", + "chapter": "http2", + "kind": "HTTP/2 Headers Object", + "name": "Type", + "signature": "`sentTrailers` Type: {HTTP/2 Headers Object}", + "label": "sentTrailers", + "apiSymbol": "sentTrailers", + "depth": 2, + "scope": "api", + "anchor": "class-http2stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:f91b46f2a6e4", + "chapter": "http2", + "kind": "Http2Session", + "name": "Type", + "signature": "`session` Type: {Http2Session}", + "label": "session", + "apiSymbol": "session", + "depth": 2, + "scope": "api", + "anchor": "class-http2stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:2339e8707e12", + "chapter": "http2", + "kind": "section", + "name": "state", + "signature": "`http2stream.state`", + "label": "http2stream.state", + "apiSymbol": "http2stream.state", + "depth": 2, + "scope": "api", + "anchor": "http2streamstate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:044b0bda4bf7", + "chapter": "http2", + "kind": "event", + "name": "aborted", + "signature": "Event: `'aborted'`", + "label": "'aborted'", + "apiSymbol": "'aborted'", + "depth": 2, + "scope": "api", + "anchor": "event-aborted", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:dcdf1e2bf173", + "chapter": "http2", + "kind": "event", + "name": "close", + "signature": "Event: `'close'`", + "label": "'close'", + "apiSymbol": "'close'", + "depth": 2, + "scope": "api", + "anchor": "event-close_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:1368bf1cf6a3", + "chapter": "http2", + "kind": "event", + "name": "error", + "signature": "Event: `'error'`", + "label": "'error'", + "apiSymbol": "'error'", + "depth": 2, + "scope": "api", + "anchor": "event-error_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:cfdf361f7c14", + "chapter": "http2", + "kind": "event", + "name": "frameError", + "signature": "Event: `'frameError'`", + "label": "'frameError'", + "apiSymbol": "'frameError'", + "depth": 2, + "scope": "api", + "anchor": "event-frameerror_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:bc852715b7a7", + "chapter": "http2", + "kind": "event", + "name": "ready", + "signature": "Event: `'ready'`", + "label": "'ready'", + "apiSymbol": "'ready'", + "depth": 2, + "scope": "api", + "anchor": "event-ready", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:001f8780d406", + "chapter": "http2", + "kind": "event", + "name": "timeout", + "signature": "Event: `'timeout'`", + "label": "'timeout'", + "apiSymbol": "'timeout'", + "depth": 2, + "scope": "api", + "anchor": "event-timeout_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:0d9fd2ecbc59", + "chapter": "http2", + "kind": "event", + "name": "trailers", + "signature": "Event: `'trailers'`", + "label": "'trailers'", + "apiSymbol": "'trailers'", + "depth": 2, + "scope": "api", + "anchor": "event-trailers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:78e226961cb6", + "chapter": "http2", + "kind": "event", + "name": "wantTrailers", + "signature": "Event: `'wantTrailers'`", + "label": "'wantTrailers'", + "apiSymbol": "'wantTrailers'", + "depth": 2, + "scope": "api", + "anchor": "event-wanttrailers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:d9c0bcef72b7", + "chapter": "http2", + "kind": "class", + "name": "ClientHttp2Stream", + "signature": "Class: `ClientHttp2Stream`", + "label": "ClientHttp2Stream", + "apiSymbol": "ClientHttp2Stream", + "depth": 1, + "scope": "api", + "anchor": "class-clienthttp2stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:f3e1632653dd", + "chapter": "http2", + "kind": "event", + "name": "continue", + "signature": "Event: `'continue'`", + "label": "'continue'", + "apiSymbol": "'continue'", + "depth": 2, + "scope": "api", + "anchor": "event-continue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:f3358d38326c", + "chapter": "http2", + "kind": "event", + "name": "headers", + "signature": "Event: `'headers'`", + "label": "'headers'", + "apiSymbol": "'headers'", + "depth": 2, + "scope": "api", + "anchor": "event-headers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:76248374e016", + "chapter": "http2", + "kind": "event", + "name": "push", + "signature": "Event: `'push'`", + "label": "'push'", + "apiSymbol": "'push'", + "depth": 2, + "scope": "api", + "anchor": "event-push", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:a18d6a44e906", + "chapter": "http2", + "kind": "event", + "name": "response", + "signature": "Event: `'response'`", + "label": "'response'", + "apiSymbol": "'response'", + "depth": 2, + "scope": "api", + "anchor": "event-response", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:29d7675853c3", + "chapter": "http2", + "kind": "class", + "name": "ServerHttp2Stream", + "signature": "Class: `ServerHttp2Stream`", + "label": "ServerHttp2Stream", + "apiSymbol": "ServerHttp2Stream", + "depth": 1, + "scope": "api", + "anchor": "class-serverhttp2stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:5bce6633446f", + "chapter": "http2", + "kind": "method", + "name": "additionalHeaders", + "signature": "`http2stream.additionalHeaders(headers)`", + "label": "http2stream.additionalHeaders(headers)", + "apiSymbol": "http2stream.additionalHeaders", + "depth": 2, + "scope": "api", + "anchor": "http2streamadditionalheadersheaders", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:a8c46c9885ff", + "chapter": "http2", + "kind": "method", + "name": "pushStream", + "signature": "`http2stream.pushStream(headers[, options], callback)`", + "label": "http2stream.pushStream(headers[, options], callback)", + "apiSymbol": "http2stream.pushStream", + "depth": 2, + "scope": "api", + "anchor": "http2streampushstreamheaders-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:71946ea781a1", + "chapter": "http2", + "kind": "method", + "name": "respond", + "signature": "`http2stream.respond([headers[, options]])`", + "label": "http2stream.respond([headers[, options]])", + "apiSymbol": "http2stream.respond", + "depth": 2, + "scope": "api", + "anchor": "http2streamrespondheaders-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:c0353b97f605", + "chapter": "http2", + "kind": "method", + "name": "respondWithFD", + "signature": "`http2stream.respondWithFD(fd[, headers[, options]])`", + "label": "http2stream.respondWithFD(fd[, headers[, options]])", + "apiSymbol": "http2stream.respondWithFD", + "depth": 2, + "scope": "api", + "anchor": "http2streamrespondwithfdfd-headers-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:da9bbbdbdff5", + "chapter": "http2", + "kind": "method", + "name": "respondWithFile", + "signature": "`http2stream.respondWithFile(path[, headers[, options]])`", + "label": "http2stream.respondWithFile(path[, headers[, options]])", + "apiSymbol": "http2stream.respondWithFile", + "depth": 2, + "scope": "api", + "anchor": "http2streamrespondwithfilepath-headers-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:8d1372e69d84", + "chapter": "http2", + "kind": "boolean", + "name": "Type", + "signature": "`headersSent` Type: {boolean}", + "label": "headersSent", + "apiSymbol": "headersSent", + "depth": 2, + "scope": "api", + "anchor": "class-serverhttp2stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:a7d245bee40d", + "chapter": "http2", + "kind": "boolean", + "name": "Type", + "signature": "`pushAllowed` Type: {boolean}", + "label": "pushAllowed", + "apiSymbol": "pushAllowed", + "depth": 2, + "scope": "api", + "anchor": "class-serverhttp2stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:ae0a8c606d68", + "chapter": "http2", + "kind": "class", + "name": "Http2Server", + "signature": "Class: `Http2Server`", + "label": "Http2Server", + "apiSymbol": "Http2Server", + "depth": 1, + "scope": "api", + "anchor": "class-http2server", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:3dbe6bfc4025", + "chapter": "http2", + "kind": "method", + "name": "close", + "signature": "`server.close([callback])`", + "label": "server.close([callback])", + "apiSymbol": "server.close", + "depth": 2, + "scope": "api", + "anchor": "serverclosecallback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:c2faceee804f", + "chapter": "http2", + "kind": "method", + "name": "[Symbol.asyncDispose]", + "signature": "`server[Symbol.asyncDispose]()`", + "label": "server[Symbol.asyncDispose]()", + "apiSymbol": "server", + "depth": 2, + "scope": "api", + "anchor": "serversymbolasyncdispose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:402d7d59733c", + "chapter": "http2", + "kind": "method", + "name": "setTimeout", + "signature": "`server.setTimeout([msecs][, callback])`", + "label": "server.setTimeout([msecs][, callback])", + "apiSymbol": "server.setTimeout", + "depth": 2, + "scope": "api", + "anchor": "serversettimeoutmsecs-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:a2a774ceb90d", + "chapter": "http2", + "kind": "method", + "name": "updateSettings", + "signature": "`server.updateSettings([settings])`", + "label": "server.updateSettings([settings])", + "apiSymbol": "server.updateSettings", + "depth": 2, + "scope": "api", + "anchor": "serverupdatesettingssettings", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:2503e492d8e1", + "chapter": "http2", + "kind": "number", + "name": "Type", + "signature": "`timeout` Type: {number} Timeout in milliseconds. **Default:** 0 (no timeout)", + "label": "timeout", + "apiSymbol": "timeout", + "depth": 2, + "scope": "api", + "anchor": "class-http2server", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:5ebd83633c9b", + "chapter": "http2", + "kind": "event", + "name": "checkContinue", + "signature": "Event: `'checkContinue'`", + "label": "'checkContinue'", + "apiSymbol": "'checkContinue'", + "depth": 2, + "scope": "api", + "anchor": "event-checkcontinue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:f6fcaf096c2f", + "chapter": "http2", + "kind": "event", + "name": "connection", + "signature": "Event: `'connection'`", + "label": "'connection'", + "apiSymbol": "'connection'", + "depth": 2, + "scope": "api", + "anchor": "event-connection", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:2e51051fb44a", + "chapter": "http2", + "kind": "event", + "name": "request", + "signature": "Event: `'request'`", + "label": "'request'", + "apiSymbol": "'request'", + "depth": 2, + "scope": "api", + "anchor": "event-request", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:6a175b99924a", + "chapter": "http2", + "kind": "event", + "name": "session", + "signature": "Event: `'session'`", + "label": "'session'", + "apiSymbol": "'session'", + "depth": 2, + "scope": "api", + "anchor": "event-session", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:1de30d5f99ae", + "chapter": "http2", + "kind": "event", + "name": "sessionError", + "signature": "Event: `'sessionError'`", + "label": "'sessionError'", + "apiSymbol": "'sessionError'", + "depth": 2, + "scope": "api", + "anchor": "event-sessionerror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:bf8d98873d12", + "chapter": "http2", + "kind": "event", + "name": "stream", + "signature": "Event: `'stream'`", + "label": "'stream'", + "apiSymbol": "'stream'", + "depth": 2, + "scope": "api", + "anchor": "event-stream_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:8115b797b787", + "chapter": "http2", + "kind": "event", + "name": "timeout", + "signature": "Event: `'timeout'`", + "label": "'timeout'", + "apiSymbol": "'timeout'", + "depth": 2, + "scope": "api", + "anchor": "event-timeout_2", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:7c85961a699d", + "chapter": "http2", + "kind": "class", + "name": "Http2SecureServer", + "signature": "Class: `Http2SecureServer`", + "label": "Http2SecureServer", + "apiSymbol": "Http2SecureServer", + "depth": 1, + "scope": "api", + "anchor": "class-http2secureserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:bb509dd4ad74", + "chapter": "http2", + "kind": "method", + "name": "close", + "signature": "`server.close([callback])`", + "label": "server.close([callback])", + "apiSymbol": "server.close", + "depth": 2, + "scope": "api", + "anchor": "serverclosecallback_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:163ebea6b827", + "chapter": "http2", + "kind": "method", + "name": "setTimeout", + "signature": "`server.setTimeout([msecs][, callback])`", + "label": "server.setTimeout([msecs][, callback])", + "apiSymbol": "server.setTimeout", + "depth": 2, + "scope": "api", + "anchor": "serversettimeoutmsecs-callback_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:66add03fb1b6", + "chapter": "http2", + "kind": "method", + "name": "updateSettings", + "signature": "`server.updateSettings([settings])`", + "label": "server.updateSettings([settings])", + "apiSymbol": "server.updateSettings", + "depth": 2, + "scope": "api", + "anchor": "serverupdatesettingssettings_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:1b49792fd8a8", + "chapter": "http2", + "kind": "number", + "name": "Type", + "signature": "`timeout` Type: {number} Timeout in milliseconds. **Default:** 0 (no timeout)", + "label": "timeout", + "apiSymbol": "timeout", + "depth": 2, + "scope": "api", + "anchor": "class-http2secureserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:86d09445edd3", + "chapter": "http2", + "kind": "event", + "name": "checkContinue", + "signature": "Event: `'checkContinue'`", + "label": "'checkContinue'", + "apiSymbol": "'checkContinue'", + "depth": 2, + "scope": "api", + "anchor": "event-checkcontinue_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:79c7b1e06d72", + "chapter": "http2", + "kind": "event", + "name": "connection", + "signature": "Event: `'connection'`", + "label": "'connection'", + "apiSymbol": "'connection'", + "depth": 2, + "scope": "api", + "anchor": "event-connection_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:71af92ed7b0f", + "chapter": "http2", + "kind": "event", + "name": "request", + "signature": "Event: `'request'`", + "label": "'request'", + "apiSymbol": "'request'", + "depth": 2, + "scope": "api", + "anchor": "event-request_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:26ce5ba2d4d9", + "chapter": "http2", + "kind": "event", + "name": "session", + "signature": "Event: `'session'`", + "label": "'session'", + "apiSymbol": "'session'", + "depth": 2, + "scope": "api", + "anchor": "event-session_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:161153d15286", + "chapter": "http2", + "kind": "event", + "name": "sessionError", + "signature": "Event: `'sessionError'`", + "label": "'sessionError'", + "apiSymbol": "'sessionError'", + "depth": 2, + "scope": "api", + "anchor": "event-sessionerror_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:1a27855c8a25", + "chapter": "http2", + "kind": "event", + "name": "stream", + "signature": "Event: `'stream'`", + "label": "'stream'", + "apiSymbol": "'stream'", + "depth": 2, + "scope": "api", + "anchor": "event-stream_2", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:6229a5081a27", + "chapter": "http2", + "kind": "event", + "name": "timeout", + "signature": "Event: `'timeout'`", + "label": "'timeout'", + "apiSymbol": "'timeout'", + "depth": 2, + "scope": "api", + "anchor": "event-timeout_3", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:7a07cce491a7", + "chapter": "http2", + "kind": "event", + "name": "unknownProtocol", + "signature": "Event: `'unknownProtocol'`", + "label": "'unknownProtocol'", + "apiSymbol": "'unknownProtocol'", + "depth": 2, + "scope": "api", + "anchor": "event-unknownprotocol", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:c6359f9afccf", + "chapter": "http2", + "kind": "method", + "name": "createServer", + "signature": "`http2.createServer([options][, onRequestHandler])`", + "label": "http2.createServer([options][, onRequestHandler])", + "apiSymbol": "http2.createServer", + "depth": 1, + "scope": "api", + "anchor": "http2createserveroptions-onrequesthandler", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:242e1cb51c75", + "chapter": "http2", + "kind": "method", + "name": "createSecureServer", + "signature": "`http2.createSecureServer(options[, onRequestHandler])`", + "label": "http2.createSecureServer(options[, onRequestHandler])", + "apiSymbol": "http2.createSecureServer", + "depth": 1, + "scope": "api", + "anchor": "http2createsecureserveroptions-onrequesthandler", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:680716981c63", + "chapter": "http2", + "kind": "method", + "name": "connect", + "signature": "`http2.connect(authority[, options][, listener])`", + "label": "http2.connect(authority[, options][, listener])", + "apiSymbol": "http2.connect", + "depth": 1, + "scope": "api", + "anchor": "http2connectauthority-options-listener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:e379aa61a461", + "chapter": "http2", + "kind": "method", + "name": "getDefaultSettings", + "signature": "`http2.getDefaultSettings()`", + "label": "http2.getDefaultSettings()", + "apiSymbol": "http2.getDefaultSettings", + "depth": 1, + "scope": "api", + "anchor": "http2getdefaultsettings", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:06a55a7b8ea7", + "chapter": "http2", + "kind": "method", + "name": "getPackedSettings", + "signature": "`http2.getPackedSettings([settings])`", + "label": "http2.getPackedSettings([settings])", + "apiSymbol": "http2.getPackedSettings", + "depth": 1, + "scope": "api", + "anchor": "http2getpackedsettingssettings", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:74bbd922d21b", + "chapter": "http2", + "kind": "method", + "name": "getUnpackedSettings", + "signature": "`http2.getUnpackedSettings(buf)`", + "label": "http2.getUnpackedSettings(buf)", + "apiSymbol": "http2.getUnpackedSettings", + "depth": 1, + "scope": "api", + "anchor": "http2getunpackedsettingsbuf", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:bb79e3765b91", + "chapter": "http2", + "kind": "method", + "name": "performServerHandshake", + "signature": "`http2.performServerHandshake(socket[, options])`", + "label": "http2.performServerHandshake(socket[, options])", + "apiSymbol": "http2.performServerHandshake", + "depth": 1, + "scope": "api", + "anchor": "http2performserverhandshakesocket-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:cf84bcf149a1", + "chapter": "http2", + "kind": "section", + "name": "constants", + "signature": "`http2.constants`", + "label": "http2.constants", + "apiSymbol": "http2.constants", + "depth": 1, + "scope": "api", + "anchor": "http2constants", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:3686f80264d2", + "chapter": "http2", + "kind": "module", + "name": "error_codes_for_`rst_stream`_and_`goaway`", + "signature": "Error codes for `RST_STREAM` and `GOAWAY`", + "label": "Error codes for RST_STREAM and GOAWAY", + "apiSymbol": "RST_STREAM", + "depth": 2, + "scope": "api", + "anchor": "error-codes-for-rst_stream-and-goaway", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:f4e11c45f3f3", + "chapter": "http2", + "kind": "symbol", + "name": "Type", + "signature": "`sensitiveHeaders` Type: {symbol}", + "label": "sensitiveHeaders", + "apiSymbol": "sensitiveHeaders", + "depth": 1, + "scope": "api", + "anchor": "core-api", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:eb9e125f0e4f", + "chapter": "http2", + "kind": "class", + "name": "http2.Http2ServerRequest", + "signature": "Class: `http2.Http2ServerRequest`", + "label": "http2.Http2ServerRequest", + "apiSymbol": "http2.Http2ServerRequest", + "depth": 1, + "scope": "api", + "anchor": "class-http2http2serverrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:ec664bd1b54e", + "chapter": "http2", + "kind": "method", + "name": "destroy", + "signature": "`request.destroy([error])`", + "label": "request.destroy([error])", + "apiSymbol": "request.destroy", + "depth": 2, + "scope": "api", + "anchor": "requestdestroyerror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:e7b7e6caa073", + "chapter": "http2", + "kind": "method", + "name": "setTimeout", + "signature": "`request.setTimeout(msecs, callback)`", + "label": "request.setTimeout(msecs, callback)", + "apiSymbol": "request.setTimeout", + "depth": 2, + "scope": "api", + "anchor": "requestsettimeoutmsecs-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:bf1c565acb31", + "chapter": "http2", + "kind": "boolean", + "name": "Type", + "signature": "`aborted` Type: {boolean}", + "label": "aborted", + "apiSymbol": "aborted", + "depth": 2, + "scope": "api", + "anchor": "class-http2http2serverrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:eabf9c3e27e6", + "chapter": "http2", + "kind": "string", + "name": "Type", + "signature": "`authority` Type: {string}", + "label": "authority", + "apiSymbol": "authority", + "depth": 2, + "scope": "api", + "anchor": "class-http2http2serverrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:e348f998e755", + "chapter": "http2", + "kind": "boolean", + "name": "Type", + "signature": "`complete` Type: {boolean}", + "label": "complete", + "apiSymbol": "complete", + "depth": 2, + "scope": "api", + "anchor": "class-http2http2serverrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:622ff72078b1", + "chapter": "http2", + "kind": "net.Socket|tls.TLSSocket", + "name": "Type", + "signature": "`connection` Type: {net.Socket|tls.TLSSocket}", + "label": "connection", + "apiSymbol": "connection", + "depth": 2, + "scope": "api", + "anchor": "class-http2http2serverrequest", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. Use [`request.socket`][].", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:e3bca47a3a84", + "chapter": "http2", + "kind": "Object", + "name": "Type", + "signature": "`headers` Type: {Object}", + "label": "headers", + "apiSymbol": "headers", + "depth": 2, + "scope": "api", + "anchor": "class-http2http2serverrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:6f500d89c819", + "chapter": "http2", + "kind": "string", + "name": "Type", + "signature": "`httpVersion` Type: {string}", + "label": "httpVersion", + "apiSymbol": "httpVersion", + "depth": 2, + "scope": "api", + "anchor": "class-http2http2serverrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:756fb6a7298f", + "chapter": "http2", + "kind": "string", + "name": "Type", + "signature": "`method` Type: {string}", + "label": "method", + "apiSymbol": "method", + "depth": 2, + "scope": "api", + "anchor": "class-http2http2serverrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:2c3b46e3d2e2", + "chapter": "http2", + "kind": "HTTP/2 Raw Headers", + "name": "Type", + "signature": "`rawHeaders` Type: {HTTP/2 Raw Headers}", + "label": "rawHeaders", + "apiSymbol": "rawHeaders", + "depth": 2, + "scope": "api", + "anchor": "class-http2http2serverrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:91a2937e1252", + "chapter": "http2", + "kind": "string\\[]", + "name": "Type", + "signature": "`rawTrailers` Type: {string\\[]}", + "label": "rawTrailers", + "apiSymbol": "rawTrailers", + "depth": 2, + "scope": "api", + "anchor": "class-http2http2serverrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:409442c3d132", + "chapter": "http2", + "kind": "string", + "name": "Type", + "signature": "`scheme` Type: {string}", + "label": "scheme", + "apiSymbol": "scheme", + "depth": 2, + "scope": "api", + "anchor": "class-http2http2serverrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:5c266757bc0c", + "chapter": "http2", + "kind": "net.Socket|tls.TLSSocket", + "name": "Type", + "signature": "`socket` Type: {net.Socket|tls.TLSSocket}", + "label": "socket", + "apiSymbol": "socket", + "depth": 2, + "scope": "api", + "anchor": "class-http2http2serverrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:55bbe07e47aa", + "chapter": "http2", + "kind": "Http2Stream", + "name": "Type", + "signature": "`stream` Type: {Http2Stream}", + "label": "stream", + "apiSymbol": "stream", + "depth": 2, + "scope": "api", + "anchor": "class-http2http2serverrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:9788bf31c26e", + "chapter": "http2", + "kind": "Object", + "name": "Type", + "signature": "`trailers` Type: {Object}", + "label": "trailers", + "apiSymbol": "trailers", + "depth": 2, + "scope": "api", + "anchor": "class-http2http2serverrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:78cb12766f93", + "chapter": "http2", + "kind": "string", + "name": "Type", + "signature": "`url` Type: {string}", + "label": "url", + "apiSymbol": "url", + "depth": 2, + "scope": "api", + "anchor": "class-http2http2serverrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:a5d565d32ad8", + "chapter": "http2", + "kind": "event", + "name": "aborted", + "signature": "Event: `'aborted'`", + "label": "'aborted'", + "apiSymbol": "'aborted'", + "depth": 2, + "scope": "api", + "anchor": "event-aborted_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:052c6a11243c", + "chapter": "http2", + "kind": "event", + "name": "close", + "signature": "Event: `'close'`", + "label": "'close'", + "apiSymbol": "'close'", + "depth": 2, + "scope": "api", + "anchor": "event-close_2", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:8e4623c9bee8", + "chapter": "http2", + "kind": "class", + "name": "http2.Http2ServerResponse", + "signature": "Class: `http2.Http2ServerResponse`", + "label": "http2.Http2ServerResponse", + "apiSymbol": "http2.Http2ServerResponse", + "depth": 1, + "scope": "api", + "anchor": "class-http2http2serverresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:2dddf8716f12", + "chapter": "http2", + "kind": "method", + "name": "addTrailers", + "signature": "`response.addTrailers(headers)`", + "label": "response.addTrailers(headers)", + "apiSymbol": "response.addTrailers", + "depth": 2, + "scope": "api", + "anchor": "responseaddtrailersheaders", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:ccf6193b4c76", + "chapter": "http2", + "kind": "method", + "name": "appendHeader", + "signature": "`response.appendHeader(name, value)`", + "label": "response.appendHeader(name, value)", + "apiSymbol": "response.appendHeader", + "depth": 2, + "scope": "api", + "anchor": "responseappendheadername-value", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:2cd90631110d", + "chapter": "http2", + "kind": "method", + "name": "createPushResponse", + "signature": "`response.createPushResponse(headers, callback)`", + "label": "response.createPushResponse(headers, callback)", + "apiSymbol": "response.createPushResponse", + "depth": 2, + "scope": "api", + "anchor": "responsecreatepushresponseheaders-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:389de6adb8e2", + "chapter": "http2", + "kind": "method", + "name": "end", + "signature": "`response.end([data[, encoding]][, callback])`", + "label": "response.end([data[, encoding]][, callback])", + "apiSymbol": "response.end", + "depth": 2, + "scope": "api", + "anchor": "responseenddata-encoding-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:02f00d298856", + "chapter": "http2", + "kind": "method", + "name": "getHeader", + "signature": "`response.getHeader(name)`", + "label": "response.getHeader(name)", + "apiSymbol": "response.getHeader", + "depth": 2, + "scope": "api", + "anchor": "responsegetheadername", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:90e7c1967850", + "chapter": "http2", + "kind": "method", + "name": "getHeaderNames", + "signature": "`response.getHeaderNames()`", + "label": "response.getHeaderNames()", + "apiSymbol": "response.getHeaderNames", + "depth": 2, + "scope": "api", + "anchor": "responsegetheadernames", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:0870e5404508", + "chapter": "http2", + "kind": "method", + "name": "getHeaders", + "signature": "`response.getHeaders()`", + "label": "response.getHeaders()", + "apiSymbol": "response.getHeaders", + "depth": 2, + "scope": "api", + "anchor": "responsegetheaders", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:6a7c0e7f4b3e", + "chapter": "http2", + "kind": "method", + "name": "hasHeader", + "signature": "`response.hasHeader(name)`", + "label": "response.hasHeader(name)", + "apiSymbol": "response.hasHeader", + "depth": 2, + "scope": "api", + "anchor": "responsehasheadername", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:3c0929523f76", + "chapter": "http2", + "kind": "method", + "name": "removeHeader", + "signature": "`response.removeHeader(name)`", + "label": "response.removeHeader(name)", + "apiSymbol": "response.removeHeader", + "depth": 2, + "scope": "api", + "anchor": "responseremoveheadername", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:8a0628bc7af4", + "chapter": "http2", + "kind": "method", + "name": "setHeader", + "signature": "`response.setHeader(name, value)`", + "label": "response.setHeader(name, value)", + "apiSymbol": "response.setHeader", + "depth": 2, + "scope": "api", + "anchor": "responsesetheadername-value", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:8c76c08fe197", + "chapter": "http2", + "kind": "method", + "name": "setTimeout", + "signature": "`response.setTimeout(msecs[, callback])`", + "label": "response.setTimeout(msecs[, callback])", + "apiSymbol": "response.setTimeout", + "depth": 2, + "scope": "api", + "anchor": "responsesettimeoutmsecs-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:9417df303cd3", + "chapter": "http2", + "kind": "method", + "name": "write", + "signature": "`response.write(chunk[, encoding][, callback])`", + "label": "response.write(chunk[, encoding][, callback])", + "apiSymbol": "response.write", + "depth": 2, + "scope": "api", + "anchor": "responsewritechunk-encoding-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:b2265ee703a4", + "chapter": "http2", + "kind": "method", + "name": "writeContinue", + "signature": "`response.writeContinue()`", + "label": "response.writeContinue()", + "apiSymbol": "response.writeContinue", + "depth": 2, + "scope": "api", + "anchor": "responsewritecontinue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:d1481ac6ad80", + "chapter": "http2", + "kind": "method", + "name": "writeEarlyHints", + "signature": "`response.writeEarlyHints(hints)`", + "label": "response.writeEarlyHints(hints)", + "apiSymbol": "response.writeEarlyHints", + "depth": 2, + "scope": "api", + "anchor": "responsewriteearlyhintshints", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:b551a5ca3a62", + "chapter": "http2", + "kind": "method", + "name": "writeHead", + "signature": "`response.writeHead(statusCode[, statusMessage][, headers])`", + "label": "response.writeHead(statusCode[, statusMessage][, headers])", + "apiSymbol": "response.writeHead", + "depth": 2, + "scope": "api", + "anchor": "responsewriteheadstatuscode-statusmessage-headers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:ae9b6a1ea75e", + "chapter": "http2", + "kind": "net.Socket|tls.TLSSocket", + "name": "Type", + "signature": "`connection` Type: {net.Socket|tls.TLSSocket}", + "label": "connection", + "apiSymbol": "connection", + "depth": 2, + "scope": "api", + "anchor": "class-http2http2serverresponse", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. Use [`response.socket`][].", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:5dd06d15a6f6", + "chapter": "http2", + "kind": "boolean", + "name": "Type", + "signature": "`finished` Type: {boolean}", + "label": "finished", + "apiSymbol": "finished", + "depth": 2, + "scope": "api", + "anchor": "class-http2http2serverresponse", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. Use [`response.writableEnded`][].", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:769f28a2ad9b", + "chapter": "http2", + "kind": "boolean", + "name": "Type", + "signature": "`headersSent` Type: {boolean}", + "label": "headersSent", + "apiSymbol": "headersSent", + "depth": 2, + "scope": "api", + "anchor": "class-http2http2serverresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:e5da26d368f8", + "chapter": "http2", + "kind": "http2.Http2ServerRequest", + "name": "Type", + "signature": "`req` Type: {http2.Http2ServerRequest}", + "label": "req", + "apiSymbol": "req", + "depth": 2, + "scope": "api", + "anchor": "class-http2http2serverresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:6ee664a5a21b", + "chapter": "http2", + "kind": "boolean", + "name": "Type", + "signature": "`sendDate` Type: {boolean}", + "label": "sendDate", + "apiSymbol": "sendDate", + "depth": 2, + "scope": "api", + "anchor": "class-http2http2serverresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:cd987e511544", + "chapter": "http2", + "kind": "net.Socket|tls.TLSSocket", + "name": "Type", + "signature": "`socket` Type: {net.Socket|tls.TLSSocket}", + "label": "socket", + "apiSymbol": "socket", + "depth": 2, + "scope": "api", + "anchor": "class-http2http2serverresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:ce3de195f200", + "chapter": "http2", + "kind": "number", + "name": "Type", + "signature": "`statusCode` Type: {number}", + "label": "statusCode", + "apiSymbol": "statusCode", + "depth": 2, + "scope": "api", + "anchor": "class-http2http2serverresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:dc8b64206bbd", + "chapter": "http2", + "kind": "string", + "name": "Type", + "signature": "`statusMessage` Type: {string}", + "label": "statusMessage", + "apiSymbol": "statusMessage", + "depth": 2, + "scope": "api", + "anchor": "class-http2http2serverresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:3bc6917ba9ea", + "chapter": "http2", + "kind": "Http2Stream", + "name": "Type", + "signature": "`stream` Type: {Http2Stream}", + "label": "stream", + "apiSymbol": "stream", + "depth": 2, + "scope": "api", + "anchor": "class-http2http2serverresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:001356307366", + "chapter": "http2", + "kind": "boolean", + "name": "Type", + "signature": "`writableEnded` Type: {boolean}", + "label": "writableEnded", + "apiSymbol": "writableEnded", + "depth": 2, + "scope": "api", + "anchor": "class-http2http2serverresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:ff3b0bf7f43d", + "chapter": "http2", + "kind": "event", + "name": "close", + "signature": "Event: `'close'`", + "label": "'close'", + "apiSymbol": "'close'", + "depth": 2, + "scope": "api", + "anchor": "event-close_3", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:67d56ddf01e4", + "chapter": "http2", + "kind": "event", + "name": "finish", + "signature": "Event: `'finish'`", + "label": "'finish'", + "apiSymbol": "'finish'", + "depth": 2, + "scope": "api", + "anchor": "event-finish", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "http2:c262b200b595", + "chapter": "http2", + "kind": "module", + "name": "note_on_`:authority`_and_`host`", + "signature": "Note on `:authority` and `host`", + "label": "Note on :authority and host", + "apiSymbol": ":authority", + "depth": 1, + "scope": "api", + "anchor": "note-on-authority-and-host", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "https:30e1fa35e1bd", + "chapter": "https", + "kind": "module", + "name": "https", + "signature": "HTTPS", + "label": "HTTPS", + "apiSymbol": "https", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + }, + "dynamic": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + } + }, + { + "id": "https:7c1063eafcf3", + "chapter": "https", + "kind": "class", + "name": "https.Agent", + "signature": "Class: `https.Agent`", + "label": "https.Agent", + "apiSymbol": "https.Agent", + "depth": 1, + "scope": "api", + "anchor": "class-httpsagent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "https:f180dfed7707", + "chapter": "https", + "kind": "class", + "name": "https.Server", + "signature": "Class: `https.Server`", + "label": "https.Server", + "apiSymbol": "https.Server", + "depth": 1, + "scope": "api", + "anchor": "class-httpsserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "https:2c15a6b7a66d", + "chapter": "https", + "kind": "method", + "name": "close", + "signature": "`server.close([callback])`", + "label": "server.close([callback])", + "apiSymbol": "server.close", + "depth": 2, + "scope": "api", + "anchor": "serverclosecallback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "https:3aa494c7e94b", + "chapter": "https", + "kind": "method", + "name": "[Symbol.asyncDispose]", + "signature": "`server[Symbol.asyncDispose]()`", + "label": "server[Symbol.asyncDispose]()", + "apiSymbol": "server", + "depth": 2, + "scope": "api", + "anchor": "serversymbolasyncdispose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "https:e549c5016960", + "chapter": "https", + "kind": "method", + "name": "closeAllConnections", + "signature": "`server.closeAllConnections()`", + "label": "server.closeAllConnections()", + "apiSymbol": "server.closeAllConnections", + "depth": 2, + "scope": "api", + "anchor": "servercloseallconnections", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "https:b7235bc8bef3", + "chapter": "https", + "kind": "method", + "name": "closeIdleConnections", + "signature": "`server.closeIdleConnections()`", + "label": "server.closeIdleConnections()", + "apiSymbol": "server.closeIdleConnections", + "depth": 2, + "scope": "api", + "anchor": "servercloseidleconnections", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "https:2bb41f479711", + "chapter": "https", + "kind": "method", + "name": "listen", + "signature": "`server.listen()`", + "label": "server.listen()", + "apiSymbol": "server.listen", + "depth": 2, + "scope": "api", + "anchor": "serverlisten", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "https:238525ea3743", + "chapter": "https", + "kind": "method", + "name": "setTimeout", + "signature": "`server.setTimeout([msecs][, callback])`", + "label": "server.setTimeout([msecs][, callback])", + "apiSymbol": "server.setTimeout", + "depth": 2, + "scope": "api", + "anchor": "serversettimeoutmsecs-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "https:79d27bbfc81c", + "chapter": "https", + "kind": "number", + "name": "Type", + "signature": "`headersTimeout` Type: {number} **Default:** `60000`", + "label": "headersTimeout", + "apiSymbol": "headersTimeout", + "depth": 2, + "scope": "api", + "anchor": "class-httpsserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "https:705c007905d2", + "chapter": "https", + "kind": "number", + "name": "Type", + "signature": "`maxHeadersCount` Type: {number} **Default:** `2000`", + "label": "maxHeadersCount", + "apiSymbol": "maxHeadersCount", + "depth": 2, + "scope": "api", + "anchor": "class-httpsserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "https:d3f2bf1b271e", + "chapter": "https", + "kind": "number", + "name": "Type", + "signature": "`requestTimeout` Type: {number} **Default:** `300000`", + "label": "requestTimeout", + "apiSymbol": "requestTimeout", + "depth": 2, + "scope": "api", + "anchor": "class-httpsserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "https:b0a22c39ef5b", + "chapter": "https", + "kind": "number", + "name": "Type", + "signature": "`timeout` Type: {number} **Default:** 0 (no timeout)", + "label": "timeout", + "apiSymbol": "timeout", + "depth": 2, + "scope": "api", + "anchor": "class-httpsserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "https:dd64c534c494", + "chapter": "https", + "kind": "number", + "name": "Type", + "signature": "`keepAliveTimeout` Type: {number} **Default:** `5000` (5 seconds)", + "label": "keepAliveTimeout", + "apiSymbol": "keepAliveTimeout", + "depth": 2, + "scope": "api", + "anchor": "class-httpsserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "https:19a8c08fbe38", + "chapter": "https", + "kind": "method", + "name": "createServer", + "signature": "`https.createServer([options][, requestListener])`", + "label": "https.createServer([options][, requestListener])", + "apiSymbol": "https.createServer", + "depth": 1, + "scope": "api", + "anchor": "httpscreateserveroptions-requestlistener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "https:e6e6ab3162b3", + "chapter": "https", + "kind": "method", + "name": "get", + "signature": "`https.get(options[, callback])`", + "label": "https.get(options[, callback])", + "apiSymbol": "https.get", + "depth": 1, + "scope": "api", + "anchor": "httpsgetoptions-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "https:5dfd4dcbf840", + "chapter": "https", + "kind": "method", + "name": "get", + "signature": "`https.get(url[, options][, callback])`", + "label": "https.get(url[, options][, callback])", + "apiSymbol": "https.get", + "depth": 1, + "scope": "api", + "anchor": "httpsgeturl-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "https:4495f7d7245b", + "chapter": "https", + "kind": "method", + "name": "request", + "signature": "`https.request(options[, callback])`", + "label": "https.request(options[, callback])", + "apiSymbol": "https.request", + "depth": 1, + "scope": "api", + "anchor": "httpsrequestoptions-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "https:90a745bc6f83", + "chapter": "https", + "kind": "method", + "name": "request", + "signature": "`https.request(url[, options][, callback])`", + "label": "https.request(url[, options][, callback])", + "apiSymbol": "https.request", + "depth": 1, + "scope": "api", + "anchor": "httpsrequesturl-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "https:411d4901404d", + "chapter": "https", + "kind": "section", + "name": "globalAgent", + "signature": "`https.globalAgent`", + "label": "https.globalAgent", + "apiSymbol": "https.globalAgent", + "depth": 1, + "scope": "api", + "anchor": "httpsglobalagent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "inspector:75d4a0236715", + "chapter": "inspector", + "kind": "module", + "name": "inspector", + "signature": "Inspector", + "label": "Inspector", + "apiSymbol": "inspector", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + } + }, + { + "id": "inspector:7e98f25e350f", + "chapter": "inspector", + "kind": "class", + "name": "inspector.Session", + "signature": "Class: `inspector.Session`", + "label": "inspector.Session", + "apiSymbol": "inspector.Session", + "depth": 1, + "scope": "api", + "anchor": "class-inspectorsession", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "inspector:da810b155bf9", + "chapter": "inspector", + "kind": "method", + "name": "connect", + "signature": "`session.connect()`", + "label": "session.connect()", + "apiSymbol": "session.connect", + "depth": 2, + "scope": "api", + "anchor": "sessionconnect", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "inspector:2fbe3854b786", + "chapter": "inspector", + "kind": "method", + "name": "connectToMainThread", + "signature": "`session.connectToMainThread()`", + "label": "session.connectToMainThread()", + "apiSymbol": "session.connectToMainThread", + "depth": 2, + "scope": "api", + "anchor": "sessionconnecttomainthread", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "inspector:0f46763d8dcd", + "chapter": "inspector", + "kind": "method", + "name": "disconnect", + "signature": "`session.disconnect()`", + "label": "session.disconnect()", + "apiSymbol": "session.disconnect", + "depth": 2, + "scope": "api", + "anchor": "sessiondisconnect", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "inspector:8e69ad0e666b", + "chapter": "inspector", + "kind": "method", + "name": "post", + "signature": "`session.post(method[, params])`", + "label": "session.post(method[, params])", + "apiSymbol": "session.post", + "depth": 2, + "scope": "api", + "anchor": "sessionpostmethod-params", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "inspector:b8dd22ac0374", + "chapter": "inspector", + "kind": "event", + "name": "inspectorNotification", + "signature": "Event: `'inspectorNotification'`", + "label": "'inspectorNotification'", + "apiSymbol": "'inspectorNotification'", + "depth": 2, + "scope": "api", + "anchor": "event-inspectornotification", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "inspector:a4eb954ec85d", + "chapter": "inspector", + "kind": "event", + "name": "`", + "signature": "Event: ``", + "label": "", + "apiSymbol": "", + "depth": 2, + "scope": "api", + "anchor": "event-inspector-protocol-method", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "inspector:144b7c164639", + "chapter": "inspector", + "kind": "class", + "name": "inspector.Session", + "signature": "Class: `inspector.Session`", + "label": "inspector.Session", + "apiSymbol": "inspector.Session", + "depth": 1, + "scope": "api", + "anchor": "class-inspectorsession_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "inspector:11f760f5ac88", + "chapter": "inspector", + "kind": "method", + "name": "connect", + "signature": "`session.connect()`", + "label": "session.connect()", + "apiSymbol": "session.connect", + "depth": 2, + "scope": "api", + "anchor": "sessionconnect_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "inspector:6a4172b0db63", + "chapter": "inspector", + "kind": "method", + "name": "connectToMainThread", + "signature": "`session.connectToMainThread()`", + "label": "session.connectToMainThread()", + "apiSymbol": "session.connectToMainThread", + "depth": 2, + "scope": "api", + "anchor": "sessionconnecttomainthread_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "inspector:07954dae5df5", + "chapter": "inspector", + "kind": "method", + "name": "disconnect", + "signature": "`session.disconnect()`", + "label": "session.disconnect()", + "apiSymbol": "session.disconnect", + "depth": 2, + "scope": "api", + "anchor": "sessiondisconnect_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "inspector:8a9096e0d872", + "chapter": "inspector", + "kind": "method", + "name": "post", + "signature": "`session.post(method[, params][, callback])`", + "label": "session.post(method[, params][, callback])", + "apiSymbol": "session.post", + "depth": 2, + "scope": "api", + "anchor": "sessionpostmethod-params-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "inspector:f429a2197858", + "chapter": "inspector", + "kind": "event", + "name": "inspectorNotification", + "signature": "Event: `'inspectorNotification'`", + "label": "'inspectorNotification'", + "apiSymbol": "'inspectorNotification'", + "depth": 2, + "scope": "api", + "anchor": "event-inspectornotification_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "inspector:11fb65d02d7f", + "chapter": "inspector", + "kind": "event", + "name": "`;", + "signature": "Event: ``;", + "label": ";", + "apiSymbol": "", + "depth": 2, + "scope": "api", + "anchor": "event-inspector-protocol-method_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "inspector:495a3305b81e", + "chapter": "inspector", + "kind": "method", + "name": "close", + "signature": "`inspector.close()`", + "label": "inspector.close()", + "apiSymbol": "inspector.close", + "depth": 1, + "scope": "api", + "anchor": "inspectorclose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "inspector:36b6a1d4187f", + "chapter": "inspector", + "kind": "method", + "name": "open", + "signature": "`inspector.open([port[, host[, wait]]])`", + "label": "inspector.open([port[, host[, wait]]])", + "apiSymbol": "inspector.open", + "depth": 1, + "scope": "api", + "anchor": "inspectoropenport-host-wait", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "inspector:c2b9b25f44d8", + "chapter": "inspector", + "kind": "method", + "name": "url", + "signature": "`inspector.url()`", + "label": "inspector.url()", + "apiSymbol": "inspector.url", + "depth": 1, + "scope": "api", + "anchor": "inspectorurl", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "inspector:ac0af066a800", + "chapter": "inspector", + "kind": "method", + "name": "waitForDebugger", + "signature": "`inspector.waitForDebugger()`", + "label": "inspector.waitForDebugger()", + "apiSymbol": "inspector.waitForDebugger", + "depth": 1, + "scope": "api", + "anchor": "inspectorwaitfordebugger", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "inspector:eeb4613729c7", + "chapter": "inspector", + "kind": "Object", + "name": "Type", + "signature": "`console` Type: {Object} An object to send messages to the remote inspector console.", + "label": "console", + "apiSymbol": "console", + "depth": 1, + "scope": "api", + "anchor": "common-objects", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "inspector:daecf7c2a28f", + "chapter": "inspector", + "kind": "method", + "name": "dataReceived", + "signature": "`inspector.Network.dataReceived([params])`", + "label": "inspector.Network.dataReceived([params])", + "apiSymbol": "inspector.Network.dataReceived", + "depth": 1, + "scope": "api", + "anchor": "inspectornetworkdatareceivedparams", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "inspector:9923d95e16ba", + "chapter": "inspector", + "kind": "method", + "name": "dataSent", + "signature": "`inspector.Network.dataSent([params])`", + "label": "inspector.Network.dataSent([params])", + "apiSymbol": "inspector.Network.dataSent", + "depth": 1, + "scope": "api", + "anchor": "inspectornetworkdatasentparams", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "inspector:782080f91c05", + "chapter": "inspector", + "kind": "method", + "name": "requestWillBeSent", + "signature": "`inspector.Network.requestWillBeSent([params])`", + "label": "inspector.Network.requestWillBeSent([params])", + "apiSymbol": "inspector.Network.requestWillBeSent", + "depth": 1, + "scope": "api", + "anchor": "inspectornetworkrequestwillbesentparams", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "inspector:9849da6fbbfb", + "chapter": "inspector", + "kind": "method", + "name": "responseReceived", + "signature": "`inspector.Network.responseReceived([params])`", + "label": "inspector.Network.responseReceived([params])", + "apiSymbol": "inspector.Network.responseReceived", + "depth": 1, + "scope": "api", + "anchor": "inspectornetworkresponsereceivedparams", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "inspector:31d03ff45321", + "chapter": "inspector", + "kind": "method", + "name": "loadingFinished", + "signature": "`inspector.Network.loadingFinished([params])`", + "label": "inspector.Network.loadingFinished([params])", + "apiSymbol": "inspector.Network.loadingFinished", + "depth": 1, + "scope": "api", + "anchor": "inspectornetworkloadingfinishedparams", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "inspector:283d5981db84", + "chapter": "inspector", + "kind": "method", + "name": "loadingFailed", + "signature": "`inspector.Network.loadingFailed([params])`", + "label": "inspector.Network.loadingFailed([params])", + "apiSymbol": "inspector.Network.loadingFailed", + "depth": 1, + "scope": "api", + "anchor": "inspectornetworkloadingfailedparams", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "inspector:8194789fc3ed", + "chapter": "inspector", + "kind": "method", + "name": "webSocketCreated", + "signature": "`inspector.Network.webSocketCreated([params])`", + "label": "inspector.Network.webSocketCreated([params])", + "apiSymbol": "inspector.Network.webSocketCreated", + "depth": 1, + "scope": "api", + "anchor": "inspectornetworkwebsocketcreatedparams", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "inspector:073a58206ebd", + "chapter": "inspector", + "kind": "method", + "name": "webSocketHandshakeResponseReceived", + "signature": "`inspector.Network.webSocketHandshakeResponseReceived([params])`", + "label": "inspector.Network.webSocketHandshakeResponseReceived([params])", + "apiSymbol": "inspector.Network.webSocketHandshakeResponseReceived", + "depth": 1, + "scope": "api", + "anchor": "inspectornetworkwebsockethandshakeresponsereceivedparams", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "inspector:e32f46ffbe49", + "chapter": "inspector", + "kind": "method", + "name": "webSocketClosed", + "signature": "`inspector.Network.webSocketClosed([params])`", + "label": "inspector.Network.webSocketClosed([params])", + "apiSymbol": "inspector.Network.webSocketClosed", + "depth": 1, + "scope": "api", + "anchor": "inspectornetworkwebsocketclosedparams", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "inspector:754fde4d242c", + "chapter": "inspector", + "kind": "section", + "name": "put", + "signature": "`inspector.NetworkResources.put`", + "label": "inspector.NetworkResources.put", + "apiSymbol": "inspector.NetworkResources.put", + "depth": 1, + "scope": "api", + "anchor": "inspectornetworkresourcesput", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active Development", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "modules:407c51651126", + "chapter": "modules", + "kind": "module", + "name": "module", + "signature": "Modules: CommonJS modules", + "label": "Modules: CommonJS modules", + "apiSymbol": "module", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + }, + "dynamic": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + } + }, + { + "id": "modules:748c4e009d36", + "chapter": "modules", + "kind": "module", + "name": "loading_ecmascript_modules_using_`require()`", + "signature": "Loading ECMAScript modules using `require()`", + "label": "Loading ECMAScript modules using require()", + "apiSymbol": "require", + "depth": 1, + "scope": "api", + "anchor": "loading-ecmascript-modules-using-require", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the documented scriptc module-loader subset.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented for the documented embedded module-loader subset.", + "verification": "test-backed" + } + }, + { + "id": "modules:b261076c9f37", + "chapter": "modules", + "kind": "module", + "name": "`__dirname`", + "signature": "`__dirname`", + "label": "__dirname", + "apiSymbol": "__dirname", + "depth": 1, + "scope": "api", + "anchor": "__dirname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the documented scriptc module-loader subset.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented for the documented embedded module-loader subset.", + "verification": "test-backed" + } + }, + { + "id": "modules:e625dd8580d1", + "chapter": "modules", + "kind": "module", + "name": "`__filename`", + "signature": "`__filename`", + "label": "__filename", + "apiSymbol": "__filename", + "depth": 1, + "scope": "api", + "anchor": "__filename", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the documented scriptc module-loader subset.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented for the documented embedded module-loader subset.", + "verification": "test-backed" + } + }, + { + "id": "modules:d5b495045982", + "chapter": "modules", + "kind": "module", + "name": "`exports`", + "signature": "`exports`", + "label": "exports", + "apiSymbol": "exports", + "depth": 1, + "scope": "api", + "anchor": "exports", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the documented scriptc module-loader subset.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented for the documented embedded module-loader subset.", + "verification": "test-backed" + } + }, + { + "id": "modules:5a5f51b4fc3e", + "chapter": "modules", + "kind": "module", + "name": "`module`", + "signature": "`module`", + "label": "module", + "apiSymbol": "module", + "depth": 1, + "scope": "api", + "anchor": "module", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "unreviewed", + "detail": "Not yet classified; tracked as open parity work.", + "verification": "unreviewed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented for the documented embedded module-loader subset.", + "verification": "test-backed" + } + }, + { + "id": "modules:056495e043c6", + "chapter": "modules", + "kind": "method", + "name": "require", + "signature": "`require(id)`", + "label": "require(id)", + "apiSymbol": "require", + "depth": 1, + "scope": "api", + "anchor": "requireid", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the documented scriptc module-loader subset.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented for the documented embedded module-loader subset.", + "verification": "test-backed" + } + }, + { + "id": "modules:954d775e870c", + "chapter": "modules", + "kind": "method", + "name": "resolve", + "signature": "`require.resolve(request[, options])`", + "label": "require.resolve(request[, options])", + "apiSymbol": "require.resolve", + "depth": 2, + "scope": "api", + "anchor": "requireresolverequest-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "Not implemented in scriptc's static module-loader subset yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Not implemented in the embedded module-loader subset yet.", + "verification": "declared-gap" + } + }, + { + "id": "modules:249279b983c4", + "chapter": "modules", + "kind": "method", + "name": "paths", + "signature": "`require.resolve.paths(request)`", + "label": "require.resolve.paths(request)", + "apiSymbol": "require.resolve.paths", + "depth": 3, + "scope": "api", + "anchor": "requireresolvepathsrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "Not implemented in scriptc's static module-loader subset yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Not implemented in the embedded module-loader subset yet.", + "verification": "declared-gap" + } + }, + { + "id": "modules:be556cbed19e", + "chapter": "modules", + "kind": "Object", + "name": "Type", + "signature": "`cache` Type: {Object}", + "label": "cache", + "apiSymbol": "cache", + "depth": 2, + "scope": "api", + "anchor": "requireid", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "Not implemented in scriptc's static module-loader subset yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented for the documented embedded module-loader subset.", + "verification": "test-backed" + } + }, + { + "id": "modules:48aa32b742d7", + "chapter": "modules", + "kind": "Object", + "name": "Type", + "signature": "`extensions` Type: {Object}", + "label": "extensions", + "apiSymbol": "extensions", + "depth": 2, + "scope": "api", + "anchor": "requireid", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "Not implemented in scriptc's static module-loader subset yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Not implemented in the embedded module-loader subset yet.", + "verification": "declared-gap" + } + }, + { + "id": "modules:3b647f98c57f", + "chapter": "modules", + "kind": "module | undefined", + "name": "Type", + "signature": "`main` Type: {module | undefined}", + "label": "main", + "apiSymbol": "main", + "depth": 2, + "scope": "api", + "anchor": "requireid", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the documented scriptc module-loader subset.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Not implemented in the embedded module-loader subset yet.", + "verification": "declared-gap" + } + }, + { + "id": "modules:09f0d43f4cd8", + "chapter": "modules", + "kind": "module", + "name": "module", + "signature": "The `module` object", + "label": "The module object", + "apiSymbol": "module", + "depth": 1, + "scope": "api", + "anchor": "the-module-object", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "unreviewed", + "detail": "Not yet classified; tracked as open parity work.", + "verification": "unreviewed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented for the documented embedded module-loader subset.", + "verification": "test-backed" + } + }, + { + "id": "modules:43f2429babdc", + "chapter": "modules", + "kind": "method", + "name": "require", + "signature": "`module.require(id)`", + "label": "module.require(id)", + "apiSymbol": "module.require", + "depth": 2, + "scope": "api", + "anchor": "modulerequireid", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the documented scriptc module-loader subset.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Not implemented in the embedded module-loader subset yet.", + "verification": "declared-gap" + } + }, + { + "id": "modules:6da2d3248165", + "chapter": "modules", + "kind": "module\\[]", + "name": "Type", + "signature": "`children` Type: {module\\[]}", + "label": "children", + "apiSymbol": "children", + "depth": 2, + "scope": "api", + "anchor": "the-module-object", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "Not implemented in scriptc's static module-loader subset yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Not implemented in the embedded module-loader subset yet.", + "verification": "declared-gap" + } + }, + { + "id": "modules:e063afa1f252", + "chapter": "modules", + "kind": "Object", + "name": "Type", + "signature": "`exports` Type: {Object}", + "label": "exports", + "apiSymbol": "exports", + "depth": 2, + "scope": "api", + "anchor": "the-module-object", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the documented scriptc module-loader subset.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented for the documented embedded module-loader subset.", + "verification": "test-backed" + } + }, + { + "id": "modules:478c1a7222f7", + "chapter": "modules", + "kind": "module", + "name": "`exports`_shortcut", + "signature": "`exports` shortcut", + "label": "exports", + "apiSymbol": "exports", + "depth": 3, + "scope": "api", + "anchor": "exports-shortcut", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the documented scriptc module-loader subset.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented for the documented embedded module-loader subset.", + "verification": "test-backed" + } + }, + { + "id": "modules:d075de97814c", + "chapter": "modules", + "kind": "string", + "name": "Type", + "signature": "`filename` Type: {string}", + "label": "filename", + "apiSymbol": "filename", + "depth": 2, + "scope": "api", + "anchor": "the-module-object", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the documented scriptc module-loader subset.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented for the documented embedded module-loader subset.", + "verification": "test-backed" + } + }, + { + "id": "modules:a9747d3ba468", + "chapter": "modules", + "kind": "string", + "name": "Type", + "signature": "`id` Type: {string}", + "label": "id", + "apiSymbol": "id", + "depth": 2, + "scope": "api", + "anchor": "the-module-object", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "Not implemented in scriptc's static module-loader subset yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented for the documented embedded module-loader subset.", + "verification": "test-backed" + } + }, + { + "id": "modules:da6596907e16", + "chapter": "modules", + "kind": "boolean", + "name": "Type", + "signature": "`isPreloading` Type: {boolean} `true` if the module is running during the Node.js preload phase.", + "label": "isPreloading", + "apiSymbol": "isPreloading", + "depth": 2, + "scope": "api", + "anchor": "the-module-object", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "Not implemented in scriptc's static module-loader subset yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Not implemented in the embedded module-loader subset yet.", + "verification": "declared-gap" + } + }, + { + "id": "modules:e6ff44b0445e", + "chapter": "modules", + "kind": "boolean", + "name": "Type", + "signature": "`loaded` Type: {boolean}", + "label": "loaded", + "apiSymbol": "loaded", + "depth": 2, + "scope": "api", + "anchor": "the-module-object", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "Not implemented in scriptc's static module-loader subset yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented for the documented embedded module-loader subset.", + "verification": "test-backed" + } + }, + { + "id": "modules:a6403934f0b5", + "chapter": "modules", + "kind": "module | null | undefined", + "name": "Type", + "signature": "`parent` Type: {module | null | undefined}", + "label": "parent", + "apiSymbol": "parent", + "depth": 2, + "scope": "api", + "anchor": "the-module-object", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Please use [`require.main`][] and [`module.children`][] instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "Not implemented in scriptc's static module-loader subset yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented for the documented embedded module-loader subset.", + "verification": "test-backed" + } + }, + { + "id": "modules:8093a07cb637", + "chapter": "modules", + "kind": "string", + "name": "Type", + "signature": "`path` Type: {string}", + "label": "path", + "apiSymbol": "path", + "depth": 2, + "scope": "api", + "anchor": "the-module-object", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "unreviewed", + "detail": "Not yet classified; tracked as open parity work.", + "verification": "unreviewed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented for the documented embedded module-loader subset.", + "verification": "test-backed" + } + }, + { + "id": "modules:06d390012d4d", + "chapter": "modules", + "kind": "string\\[]", + "name": "Type", + "signature": "`paths` Type: {string\\[]}", + "label": "paths", + "apiSymbol": "paths", + "depth": 2, + "scope": "api", + "anchor": "the-module-object", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "Not implemented in scriptc's static module-loader subset yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Not implemented in the embedded module-loader subset yet.", + "verification": "declared-gap" + } + }, + { + "id": "modules:9500e0c7ec5b", + "chapter": "modules", + "kind": "module", + "name": "the_`module`_object", + "signature": "The `Module` object", + "label": "The Module object", + "apiSymbol": "Module", + "depth": 1, + "scope": "api", + "anchor": "the-module-object_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "Not implemented in scriptc's static module-loader subset yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Not implemented in the embedded module-loader subset yet.", + "verification": "declared-gap" + } + }, + { + "id": "modules:b7b296f1ef44", + "chapter": "modules", + "kind": "misc", + "name": "built-in_modules_with_mandatory_`node:`_prefix", + "signature": "Built-in modules with mandatory `node:` prefix", + "label": "Built-in modules with mandatory node: prefix", + "apiSymbol": "node:", + "depth": 1, + "scope": "api", + "anchor": "built-in-modules-with-mandatory-node-prefix", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the documented scriptc module-loader subset.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented for the documented embedded module-loader subset.", + "verification": "test-backed" + } + }, + { + "id": "modules:3b9ec73acaba", + "chapter": "modules", + "kind": "misc", + "name": "Loading from `node_modules` folders", + "signature": "Loading from `node_modules` folders", + "label": "Loading from node_modules folders", + "apiSymbol": "node_modules", + "depth": 1, + "scope": "api", + "anchor": "loading-from-node_modules-folders", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the documented scriptc module-loader subset.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented for the documented embedded module-loader subset.", + "verification": "test-backed" + } + }, + { + "id": "esm:cbbbc5888f51", + "chapter": "esm", + "kind": "misc", + "name": "Modules: ECMAScript modules", + "signature": "Modules: ECMAScript modules", + "label": "Modules: ECMAScript modules", + "apiSymbol": "Modules: ECMAScript modules", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + }, + "dynamic": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + } + }, + { + "id": "esm:398729f00331", + "chapter": "esm", + "kind": "Object", + "name": "Type", + "signature": "`meta` Type: {Object}", + "label": "meta", + "apiSymbol": "meta", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "Not implemented in scriptc's static module-loader subset yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Not implemented in the embedded module-loader subset yet.", + "verification": "declared-gap" + } + }, + { + "id": "esm:770cc3feb10f", + "chapter": "esm", + "kind": "method", + "name": "resolve", + "signature": "`import.meta.resolve(specifier)`", + "label": "import.meta.resolve(specifier)", + "apiSymbol": "import.meta.resolve", + "depth": 2, + "scope": "api", + "anchor": "importmetaresolvespecifier", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "Not implemented in scriptc's static module-loader subset yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Not implemented in the embedded module-loader subset yet.", + "verification": "declared-gap" + } + }, + { + "id": "esm:3d34d71eee99", + "chapter": "esm", + "kind": "string", + "name": "Type", + "signature": "`dirname` Type: {string} The directory name of the current module.", + "label": "dirname", + "apiSymbol": "dirname", + "depth": 2, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "Not implemented in scriptc's static module-loader subset yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Not implemented in the embedded module-loader subset yet.", + "verification": "declared-gap" + } + }, + { + "id": "esm:a5296bf4d3c8", + "chapter": "esm", + "kind": "string", + "name": "Type", + "signature": "`filename` Type: {string} The full absolute path and filename of the current module, with symlinks resolved.", + "label": "filename", + "apiSymbol": "filename", + "depth": 2, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "Not implemented in scriptc's static module-loader subset yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Not implemented in the embedded module-loader subset yet.", + "verification": "declared-gap" + } + }, + { + "id": "esm:da8d4c5ee6d4", + "chapter": "esm", + "kind": "string", + "name": "Type", + "signature": "`url` Type: {string} The absolute `file:` URL of the module.", + "label": "url", + "apiSymbol": "url", + "depth": 2, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "unreviewed", + "detail": "Not yet classified; tracked as open parity work.", + "verification": "unreviewed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented for the documented embedded module-loader subset.", + "verification": "test-backed" + } + }, + { + "id": "esm:f3967e55a1b9", + "chapter": "esm", + "kind": "boolean", + "name": "Type", + "signature": "`main` Type: {boolean} `true` when the current module is the entry point of the current process; `false` otherwise.", + "label": "main", + "apiSymbol": "main", + "depth": 2, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "1.0", + "level": 1, + "text": "Early development", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "Not implemented in scriptc's static module-loader subset yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Not implemented in the embedded module-loader subset yet.", + "verification": "declared-gap" + } + }, + { + "id": "esm:6c87e539e091", + "chapter": "esm", + "kind": "misc", + "name": "`import`_specifiers", + "signature": "`import` Specifiers", + "label": "import", + "apiSymbol": "import", + "depth": 1, + "scope": "api", + "anchor": "import-specifiers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the documented scriptc module-loader subset.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented for the documented embedded module-loader subset.", + "verification": "test-backed" + } + }, + { + "id": "esm:2a244b54b925", + "chapter": "esm", + "kind": "module", + "name": "`file:`_urls", + "signature": "`file:` URLs", + "label": "file:", + "apiSymbol": "file:", + "depth": 2, + "scope": "api", + "anchor": "file-urls", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the documented scriptc module-loader subset.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented for the documented embedded module-loader subset.", + "verification": "test-backed" + } + }, + { + "id": "esm:9822dee686fe", + "chapter": "esm", + "kind": "module", + "name": "`data:`_imports", + "signature": "`data:` imports", + "label": "data:", + "apiSymbol": "data:", + "depth": 2, + "scope": "api", + "anchor": "data-imports", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "Not implemented in scriptc's static module-loader subset yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Not implemented in the embedded module-loader subset yet.", + "verification": "declared-gap" + } + }, + { + "id": "esm:be988d8c5641", + "chapter": "esm", + "kind": "module", + "name": "`node:`_imports", + "signature": "`node:` imports", + "label": "node:", + "apiSymbol": "node:", + "depth": 2, + "scope": "api", + "anchor": "node-imports", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the documented scriptc module-loader subset.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented for the documented embedded module-loader subset.", + "verification": "test-backed" + } + }, + { + "id": "esm:42b89f19c721", + "chapter": "esm", + "kind": "misc", + "name": "`import()`_expressions", + "signature": "`import()` expressions", + "label": "import()", + "apiSymbol": "import", + "depth": 1, + "scope": "api", + "anchor": "import-expressions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the documented scriptc module-loader subset.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented for the documented embedded module-loader subset.", + "verification": "test-backed" + } + }, + { + "id": "esm:1cd65a249eb8", + "chapter": "esm", + "kind": "module", + "name": "`import`_statements", + "signature": "`import` statements", + "label": "import", + "apiSymbol": "import", + "depth": 1, + "scope": "api", + "anchor": "import-statements", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the documented scriptc module-loader subset.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented for the documented embedded module-loader subset.", + "verification": "test-backed" + } + }, + { + "id": "esm:2ea8c24c8d10", + "chapter": "esm", + "kind": "module", + "name": "`require`", + "signature": "`require`", + "label": "require", + "apiSymbol": "require", + "depth": 1, + "scope": "api", + "anchor": "require", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "Not implemented in scriptc's static module-loader subset yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Not implemented in the embedded module-loader subset yet.", + "verification": "declared-gap" + } + }, + { + "id": "esm:d2f2039bf558", + "chapter": "esm", + "kind": "module", + "name": "no_`require`,_`exports`,_or_`module.exports`", + "signature": "No `require`, `exports`, or `module.exports`", + "label": "No require, exports, or module.exports", + "apiSymbol": "require", + "depth": 1, + "scope": "api", + "anchor": "no-require-exports-or-moduleexports", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "Not implemented in scriptc's static module-loader subset yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Not implemented in the embedded module-loader subset yet.", + "verification": "declared-gap" + } + }, + { + "id": "esm:42a5ef0b1e3a", + "chapter": "esm", + "kind": "module", + "name": "no_`__filename`_or_`__dirname`", + "signature": "No `__filename` or `__dirname`", + "label": "No __filename or __dirname", + "apiSymbol": "__filename", + "depth": 1, + "scope": "api", + "anchor": "no-__filename-or-__dirname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "Not implemented in scriptc's static module-loader subset yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Not implemented in the embedded module-loader subset yet.", + "verification": "declared-gap" + } + }, + { + "id": "esm:f13c9567bec7", + "chapter": "esm", + "kind": "module", + "name": "no_`require.main`", + "signature": "No `require.main`", + "label": "No require.main", + "apiSymbol": "require.main", + "depth": 1, + "scope": "api", + "anchor": "no-requiremain", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "Not implemented in scriptc's static module-loader subset yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Not implemented in the embedded module-loader subset yet.", + "verification": "declared-gap" + } + }, + { + "id": "esm:d161faeca501", + "chapter": "esm", + "kind": "module", + "name": "no_`require.resolve`", + "signature": "No `require.resolve`", + "label": "No require.resolve", + "apiSymbol": "require.resolve", + "depth": 1, + "scope": "api", + "anchor": "no-requireresolve", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "Not implemented in scriptc's static module-loader subset yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Not implemented in the embedded module-loader subset yet.", + "verification": "declared-gap" + } + }, + { + "id": "esm:915bca871ae7", + "chapter": "esm", + "kind": "module", + "name": "no_`node_path`", + "signature": "No `NODE_PATH`", + "label": "No NODE_PATH", + "apiSymbol": "NODE_PATH", + "depth": 1, + "scope": "api", + "anchor": "no-node_path", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "Not implemented in scriptc's static module-loader subset yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Not implemented in the embedded module-loader subset yet.", + "verification": "declared-gap" + } + }, + { + "id": "esm:a2d3948d79c1", + "chapter": "esm", + "kind": "module", + "name": "no_`require.extensions`", + "signature": "No `require.extensions`", + "label": "No require.extensions", + "apiSymbol": "require.extensions", + "depth": 1, + "scope": "api", + "anchor": "no-requireextensions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "Not implemented in scriptc's static module-loader subset yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Not implemented in the embedded module-loader subset yet.", + "verification": "declared-gap" + } + }, + { + "id": "esm:b26a1a3160c5", + "chapter": "esm", + "kind": "module", + "name": "no_`require.cache`", + "signature": "No `require.cache`", + "label": "No require.cache", + "apiSymbol": "require.cache", + "depth": 1, + "scope": "api", + "anchor": "no-requirecache", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "Not implemented in scriptc's static module-loader subset yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Not implemented in the embedded module-loader subset yet.", + "verification": "declared-gap" + } + }, + { + "id": "esm:5fac97cf09fd", + "chapter": "esm", + "kind": "misc", + "name": "top-level_`await`", + "signature": "Top-level `await`", + "label": "Top-level await", + "apiSymbol": "await", + "depth": 1, + "scope": "api", + "anchor": "top-level-await", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the documented scriptc module-loader subset.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented for the documented embedded module-loader subset.", + "verification": "test-backed" + } + }, + { + "id": "module:010bae4a52c1", + "chapter": "module", + "kind": "module", + "name": "modules:_`node:module`_api", + "signature": "Modules: `node:module` API", + "label": "Modules: node:module API", + "apiSymbol": "node:module", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + }, + "dynamic": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + } + }, + { + "id": "module:c350c12559fe", + "chapter": "module", + "kind": "module", + "name": "the_`module`_object", + "signature": "The `Module` object", + "label": "The Module object", + "apiSymbol": "Module", + "depth": 1, + "scope": "api", + "anchor": "the-module-object", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "module:9d8908f53c16", + "chapter": "module", + "kind": "method", + "name": "createRequire", + "signature": "`module.createRequire(filename)`", + "label": "module.createRequire(filename)", + "apiSymbol": "module.createRequire", + "depth": 2, + "scope": "api", + "anchor": "modulecreaterequirefilename", + "nodeStability": null, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "module:94dee3eb15e0", + "chapter": "module", + "kind": "method", + "name": "findPackageJSON", + "signature": "`module.findPackageJSON(specifier[, base])`", + "label": "module.findPackageJSON(specifier[, base])", + "apiSymbol": "module.findPackageJSON", + "depth": 2, + "scope": "api", + "anchor": "modulefindpackagejsonspecifier-base", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active Development", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "module:f6fbd730ec50", + "chapter": "module", + "kind": "method", + "name": "isBuiltin", + "signature": "`module.isBuiltin(moduleName)`", + "label": "module.isBuiltin(moduleName)", + "apiSymbol": "module.isBuiltin", + "depth": 2, + "scope": "api", + "anchor": "moduleisbuiltinmodulename", + "nodeStability": null, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "module:3d54b9c0e7c7", + "chapter": "module", + "kind": "method", + "name": "register", + "signature": "`module.register(specifier[, parentURL][, options])`", + "label": "module.register(specifier[, parentURL][, options])", + "apiSymbol": "module.register", + "depth": 2, + "scope": "api", + "anchor": "moduleregisterspecifier-parenturl-options", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Use [`module.registerHooks()`][] instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "module:8ff8dc23b804", + "chapter": "module", + "kind": "method", + "name": "registerHooks", + "signature": "`module.registerHooks(options)`", + "label": "module.registerHooks(options)", + "apiSymbol": "module.registerHooks", + "depth": 2, + "scope": "api", + "anchor": "moduleregisterhooksoptions", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "module:aa4c3c8d7c9a", + "chapter": "module", + "kind": "method", + "name": "stripTypeScriptTypes", + "signature": "`module.stripTypeScriptTypes(code[, options])`", + "label": "module.stripTypeScriptTypes(code[, options])", + "apiSymbol": "module.stripTypeScriptTypes", + "depth": 2, + "scope": "api", + "anchor": "modulestriptypescripttypescode-options", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "module:85115e1e8511", + "chapter": "module", + "kind": "method", + "name": "syncBuiltinESMExports", + "signature": "`module.syncBuiltinESMExports()`", + "label": "module.syncBuiltinESMExports()", + "apiSymbol": "module.syncBuiltinESMExports", + "depth": 2, + "scope": "api", + "anchor": "modulesyncbuiltinesmexports", + "nodeStability": null, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "module:15fffe123676", + "chapter": "module", + "kind": "string\\[]", + "name": "Type", + "signature": "`builtinModules` Type: {string\\[]}", + "label": "builtinModules", + "apiSymbol": "builtinModules", + "depth": 2, + "scope": "api", + "anchor": "the-module-object", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "module:7e2798ff7fc1", + "chapter": "module", + "kind": "method", + "name": "enableCompileCache", + "signature": "`module.enableCompileCache([options])`", + "label": "module.enableCompileCache([options])", + "apiSymbol": "module.enableCompileCache", + "depth": 1, + "scope": "api", + "anchor": "moduleenablecompilecacheoptions", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "module:5bd39a385e2c", + "chapter": "module", + "kind": "method", + "name": "flushCompileCache", + "signature": "`module.flushCompileCache()`", + "label": "module.flushCompileCache()", + "apiSymbol": "module.flushCompileCache", + "depth": 1, + "scope": "api", + "anchor": "moduleflushcompilecache", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "module:aeb80bcfec08", + "chapter": "module", + "kind": "method", + "name": "getCompileCacheDir", + "signature": "`module.getCompileCacheDir()`", + "label": "module.getCompileCacheDir()", + "apiSymbol": "module.getCompileCacheDir", + "depth": 1, + "scope": "api", + "anchor": "modulegetcompilecachedir", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "module:e163ffeb7c47", + "chapter": "module", + "kind": "section", + "name": "compileCacheStatus", + "signature": "`module.constants.compileCacheStatus`", + "label": "module.constants.compileCacheStatus", + "apiSymbol": "module.constants.compileCacheStatus", + "depth": 1, + "scope": "api", + "anchor": "moduleconstantscompilecachestatus", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "module:c94ee6d8a102", + "chapter": "module", + "kind": "class", + "name": "module.SourceMap", + "signature": "Class: `module.SourceMap`", + "label": "module.SourceMap", + "apiSymbol": "module.SourceMap", + "depth": 1, + "scope": "api", + "anchor": "class-modulesourcemap", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "module:112bfcb4f027", + "chapter": "module", + "kind": "method", + "name": "findEntry", + "signature": "`sourceMap.findEntry(lineOffset, columnOffset)`", + "label": "sourceMap.findEntry(lineOffset, columnOffset)", + "apiSymbol": "sourceMap.findEntry", + "depth": 2, + "scope": "api", + "anchor": "sourcemapfindentrylineoffset-columnoffset", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "module:34ac288a1e43", + "chapter": "module", + "kind": "method", + "name": "findOrigin", + "signature": "`sourceMap.findOrigin(lineNumber, columnNumber)`", + "label": "sourceMap.findOrigin(lineNumber, columnNumber)", + "apiSymbol": "sourceMap.findOrigin", + "depth": 2, + "scope": "api", + "anchor": "sourcemapfindoriginlinenumber-columnnumber", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "module:ae3d77ef4af2", + "chapter": "module", + "kind": "Object", + "name": "return", + "signature": "`payload` Returns: {Object}", + "label": "payload", + "apiSymbol": "payload", + "depth": 2, + "scope": "api", + "anchor": "class-modulesourcemap", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "module:98f96a7a43aa", + "chapter": "module", + "kind": "method", + "name": "getSourceMapsSupport", + "signature": "`module.getSourceMapsSupport()`", + "label": "module.getSourceMapsSupport()", + "apiSymbol": "module.getSourceMapsSupport", + "depth": 1, + "scope": "api", + "anchor": "modulegetsourcemapssupport", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "module:ccc5785834c2", + "chapter": "module", + "kind": "method", + "name": "findSourceMap", + "signature": "`module.findSourceMap(path)`", + "label": "module.findSourceMap(path)", + "apiSymbol": "module.findSourceMap", + "depth": 1, + "scope": "api", + "anchor": "modulefindsourcemappath", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "module:1a931cc1687d", + "chapter": "module", + "kind": "method", + "name": "setSourceMapsSupport", + "signature": "`module.setSourceMapsSupport(enabled[, options])`", + "label": "module.setSourceMapsSupport(enabled[, options])", + "apiSymbol": "module.setSourceMapsSupport", + "depth": 1, + "scope": "api", + "anchor": "modulesetsourcemapssupportenabled-options", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "module:3e194cae16a0", + "chapter": "module", + "kind": "module", + "name": "registering_hooks_before_application_code_runs_with_a_`data:`_url", + "signature": "Registering hooks before application code runs with a `data:` URL", + "label": "Registering hooks before application code runs with a data: URL", + "apiSymbol": "data:", + "depth": 1, + "scope": "api", + "anchor": "registering-hooks-before-application-code-runs-with-a-data-url", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "module:40fc43ea4dff", + "chapter": "module", + "kind": "module", + "name": "hook_functions_accepted_by_`module.registerhooks()`", + "signature": "Hook functions accepted by `module.registerHooks()`", + "label": "Hook functions accepted by module.registerHooks()", + "apiSymbol": "module.registerHooks", + "depth": 1, + "scope": "api", + "anchor": "hook-functions-accepted-by-moduleregisterhooks", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "module:6adb33d3a573", + "chapter": "module", + "kind": "module", + "name": "synchronous_`resolve(specifier,_context,_nextresolve)`", + "signature": "Synchronous `resolve(specifier, context, nextResolve)`", + "label": "Synchronous resolve(specifier, context, nextResolve)", + "apiSymbol": "resolve", + "depth": 1, + "scope": "api", + "anchor": "synchronous-resolvespecifier-context-nextresolve", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "module:5e3f1bc1c4c1", + "chapter": "module", + "kind": "module", + "name": "synchronous_`load(url,_context,_nextload)`", + "signature": "Synchronous `load(url, context, nextLoad)`", + "label": "Synchronous load(url, context, nextLoad)", + "apiSymbol": "load", + "depth": 1, + "scope": "api", + "anchor": "synchronous-loadurl-context-nextload", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "module:5af285eecd9c", + "chapter": "module", + "kind": "module", + "name": "accepted_final_formats_returned_by_`load`", + "signature": "Accepted final formats returned by `load`", + "label": "Accepted final formats returned by load", + "apiSymbol": "load", + "depth": 2, + "scope": "api", + "anchor": "accepted-final-formats-returned-by-load", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "module:45b84dcd4cb5", + "chapter": "module", + "kind": "module", + "name": "asynchronous_hooks_accepted_by_`module.register()`", + "signature": "Asynchronous hooks accepted by `module.register()`", + "label": "Asynchronous hooks accepted by module.register()", + "apiSymbol": "module.register", + "depth": 1, + "scope": "api", + "anchor": "asynchronous-hooks-accepted-by-moduleregister", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active Development", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "module:4446fe337c1f", + "chapter": "module", + "kind": "module", + "name": "asynchronous_`resolve(specifier,_context,_nextresolve)`", + "signature": "Asynchronous `resolve(specifier, context, nextResolve)`", + "label": "Asynchronous resolve(specifier, context, nextResolve)", + "apiSymbol": "resolve", + "depth": 1, + "scope": "api", + "anchor": "asynchronous-resolvespecifier-context-nextresolve", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active Development", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "module:0567054ffe29", + "chapter": "module", + "kind": "module", + "name": "asynchronous_`load(url,_context,_nextload)`", + "signature": "Asynchronous `load(url, context, nextLoad)`", + "label": "Asynchronous load(url, context, nextLoad)", + "apiSymbol": "load", + "depth": 1, + "scope": "api", + "anchor": "asynchronous-loadurl-context-nextload", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active Development", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "module:ef9f58bf7f69", + "chapter": "module", + "kind": "method", + "name": "initialize", + "signature": "`initialize()`", + "label": "initialize()", + "apiSymbol": "initialize", + "depth": 1, + "scope": "api", + "anchor": "initialize", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active Development", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "packages:ab92bf0ae7fe", + "chapter": "packages", + "kind": "misc", + "name": "Modules: Packages", + "signature": "Modules: Packages", + "label": "Modules: Packages", + "apiSymbol": "Modules: Packages", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + }, + "dynamic": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + } + }, + { + "id": "packages:e4e12db6fba6", + "chapter": "packages", + "kind": "module", + "name": "`package.json`_and_file_extensions", + "signature": "`package.json` and file extensions", + "label": "package.json", + "apiSymbol": "package.json", + "depth": 1, + "scope": "api", + "anchor": "packagejson-and-file-extensions", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented for the documented scriptc module-loader subset.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented for the documented embedded module-loader subset.", + "verification": "test-backed" + } + }, + { + "id": "packages:e3b770c4d8b1", + "chapter": "packages", + "kind": "misc", + "name": "node.js_`package.json`_field_definitions", + "signature": "Node.js `package.json` field definitions", + "label": "Node.js package.json field definitions", + "apiSymbol": "package.json", + "depth": 1, + "scope": "api", + "anchor": "nodejs-packagejson-field-definitions", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented for the documented scriptc module-loader subset.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented for the documented embedded module-loader subset.", + "verification": "test-backed" + } + }, + { + "id": "packages:b6d20a843522", + "chapter": "packages", + "kind": "module", + "name": "`\"name\"`", + "signature": "`\"name\"`", + "label": "\"name\"", + "apiSymbol": "\"name\"", + "depth": 2, + "scope": "api", + "anchor": "name", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented for the documented scriptc module-loader subset.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented for the documented embedded module-loader subset.", + "verification": "test-backed" + } + }, + { + "id": "packages:10cca2a3ef0e", + "chapter": "packages", + "kind": "module", + "name": "`\"main\"`", + "signature": "`\"main\"`", + "label": "\"main\"", + "apiSymbol": "\"main\"", + "depth": 2, + "scope": "api", + "anchor": "main", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented for the documented scriptc module-loader subset.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented for the documented embedded module-loader subset.", + "verification": "test-backed" + } + }, + { + "id": "packages:bec1b7b9334b", + "chapter": "packages", + "kind": "module", + "name": "`\"type\"`", + "signature": "`\"type\"`", + "label": "\"type\"", + "apiSymbol": "\"type\"", + "depth": 2, + "scope": "api", + "anchor": "type", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented for the documented scriptc module-loader subset.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented for the documented embedded module-loader subset.", + "verification": "test-backed" + } + }, + { + "id": "packages:1cb07d11fb3a", + "chapter": "packages", + "kind": "module", + "name": "`\"exports\"`", + "signature": "`\"exports\"`", + "label": "\"exports\"", + "apiSymbol": "\"exports\"", + "depth": 2, + "scope": "api", + "anchor": "exports", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented for the documented scriptc module-loader subset.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented for the documented embedded module-loader subset.", + "verification": "test-backed" + } + }, + { + "id": "packages:72775c823949", + "chapter": "packages", + "kind": "module", + "name": "`\"imports\"`", + "signature": "`\"imports\"`", + "label": "\"imports\"", + "apiSymbol": "\"imports\"", + "depth": 2, + "scope": "api", + "anchor": "imports", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented for the documented scriptc module-loader subset.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented for the documented embedded module-loader subset.", + "verification": "test-backed" + } + }, + { + "id": "typescript:962aa6ea9774", + "chapter": "typescript", + "kind": "module", + "name": "modules:_typescript", + "signature": "Modules: TypeScript", + "label": "Modules: TypeScript", + "apiSymbol": "modules:_typescript", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + } + }, + { + "id": "typescript:e0b7094a6baa", + "chapter": "typescript", + "kind": "module", + "name": "importing_types_without_`type`_keyword", + "signature": "Importing types without `type` keyword", + "label": "Importing types without type keyword", + "apiSymbol": "type", + "depth": 1, + "scope": "api", + "anchor": "importing-types-without-type-keyword", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "Not implemented in scriptc's static module-loader subset yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Not implemented in the embedded module-loader subset yet.", + "verification": "declared-gap" + } + }, + { + "id": "net:257fba929cb6", + "chapter": "net", + "kind": "module", + "name": "net", + "signature": "Net", + "label": "Net", + "apiSymbol": "net", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + }, + "dynamic": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + } + }, + { + "id": "net:a4534171f578", + "chapter": "net", + "kind": "class", + "name": "net.BlockList", + "signature": "Class: `net.BlockList`", + "label": "net.BlockList", + "apiSymbol": "net.BlockList", + "depth": 1, + "scope": "api", + "anchor": "class-netblocklist", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:aa4d5d08e9a5", + "chapter": "net", + "kind": "method", + "name": "addAddress", + "signature": "`blockList.addAddress(address[, type])`", + "label": "blockList.addAddress(address[, type])", + "apiSymbol": "blockList.addAddress", + "depth": 2, + "scope": "api", + "anchor": "blocklistaddaddressaddress-type", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:035828cd10e1", + "chapter": "net", + "kind": "method", + "name": "addRange", + "signature": "`blockList.addRange(start, end[, type])`", + "label": "blockList.addRange(start, end[, type])", + "apiSymbol": "blockList.addRange", + "depth": 2, + "scope": "api", + "anchor": "blocklistaddrangestart-end-type", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:a2c2a1e796ad", + "chapter": "net", + "kind": "method", + "name": "addSubnet", + "signature": "`blockList.addSubnet(net, prefix[, type])`", + "label": "blockList.addSubnet(net, prefix[, type])", + "apiSymbol": "blockList.addSubnet", + "depth": 2, + "scope": "api", + "anchor": "blocklistaddsubnetnet-prefix-type", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:278a3ce510c8", + "chapter": "net", + "kind": "method", + "name": "check", + "signature": "`blockList.check(address[, type])`", + "label": "blockList.check(address[, type])", + "apiSymbol": "blockList.check", + "depth": 2, + "scope": "api", + "anchor": "blocklistcheckaddress-type", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:4ff6a4c12f52", + "chapter": "net", + "kind": "method", + "name": "isBlockList", + "signature": "`BlockList.isBlockList(value)`", + "label": "BlockList.isBlockList(value)", + "apiSymbol": "BlockList.isBlockList", + "depth": 2, + "scope": "api", + "anchor": "blocklistisblocklistvalue", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:07e5de315d95", + "chapter": "net", + "kind": "method", + "name": "fromJSON", + "signature": "`blockList.fromJSON(value)`", + "label": "blockList.fromJSON(value)", + "apiSymbol": "blockList.fromJSON", + "depth": 2, + "scope": "api", + "anchor": "blocklistfromjsonvalue", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:fb2019fd5533", + "chapter": "net", + "kind": "method", + "name": "toJSON", + "signature": "`blockList.toJSON()`", + "label": "blockList.toJSON()", + "apiSymbol": "blockList.toJSON", + "depth": 2, + "scope": "api", + "anchor": "blocklisttojson", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:044763579a8b", + "chapter": "net", + "kind": "string\\[]", + "name": "Type", + "signature": "`rules` Type: {string\\[]}", + "label": "rules", + "apiSymbol": "rules", + "depth": 2, + "scope": "api", + "anchor": "class-netblocklist", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:89343bd5aaf9", + "chapter": "net", + "kind": "class", + "name": "net.SocketAddress", + "signature": "Class: `net.SocketAddress`", + "label": "net.SocketAddress", + "apiSymbol": "net.SocketAddress", + "depth": 1, + "scope": "api", + "anchor": "class-netsocketaddress", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:d8b7ddef1a9e", + "chapter": "net", + "kind": "method", + "name": "parse", + "signature": "`SocketAddress.parse(input)`", + "label": "SocketAddress.parse(input)", + "apiSymbol": "SocketAddress.parse", + "depth": 2, + "scope": "api", + "anchor": "socketaddressparseinput", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:ecb37fc5e10a", + "chapter": "net", + "kind": "string", + "name": "Type", + "signature": "`address` Type: {string}", + "label": "address", + "apiSymbol": "address", + "depth": 2, + "scope": "api", + "anchor": "class-netsocketaddress", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:700645a75b6d", + "chapter": "net", + "kind": "string", + "name": "Type", + "signature": "`family` Type: {string} Either `'ipv4'` or `'ipv6'`.", + "label": "family", + "apiSymbol": "family", + "depth": 2, + "scope": "api", + "anchor": "class-netsocketaddress", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:edb24548b5ad", + "chapter": "net", + "kind": "number", + "name": "Type", + "signature": "`flowlabel` Type: {number}", + "label": "flowlabel", + "apiSymbol": "flowlabel", + "depth": 2, + "scope": "api", + "anchor": "class-netsocketaddress", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:d3fe623d8a5d", + "chapter": "net", + "kind": "number", + "name": "Type", + "signature": "`port` Type: {number}", + "label": "port", + "apiSymbol": "port", + "depth": 2, + "scope": "api", + "anchor": "class-netsocketaddress", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:9cc05694ab6f", + "chapter": "net", + "kind": "class", + "name": "net.Server", + "signature": "Class: `net.Server`", + "label": "net.Server", + "apiSymbol": "net.Server", + "depth": 1, + "scope": "api", + "anchor": "class-netserver", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "net:e4829b616e5e", + "chapter": "net", + "kind": "method", + "name": "address", + "signature": "`server.address()`", + "label": "server.address()", + "apiSymbol": "server.address", + "depth": 2, + "scope": "api", + "anchor": "serveraddress", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:8b0b6930cf28", + "chapter": "net", + "kind": "method", + "name": "close", + "signature": "`server.close([callback])`", + "label": "server.close([callback])", + "apiSymbol": "server.close", + "depth": 2, + "scope": "api", + "anchor": "serverclosecallback", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:cb8af1f3e96e", + "chapter": "net", + "kind": "method", + "name": "[Symbol.asyncDispose]", + "signature": "`server[Symbol.asyncDispose]()`", + "label": "server[Symbol.asyncDispose]()", + "apiSymbol": "server", + "depth": 2, + "scope": "api", + "anchor": "serversymbolasyncdispose", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:d771bbf766b3", + "chapter": "net", + "kind": "method", + "name": "getConnections", + "signature": "`server.getConnections(callback)`", + "label": "server.getConnections(callback)", + "apiSymbol": "server.getConnections", + "depth": 2, + "scope": "api", + "anchor": "servergetconnectionscallback", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:46c3dc88f874", + "chapter": "net", + "kind": "method", + "name": "listen", + "signature": "`server.listen()`", + "label": "server.listen()", + "apiSymbol": "server.listen", + "depth": 2, + "scope": "api", + "anchor": "serverlisten", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:641706b9cde1", + "chapter": "net", + "kind": "method", + "name": "listen", + "signature": "`server.listen(handle[, backlog][, callback])`", + "label": "server.listen(handle[, backlog][, callback])", + "apiSymbol": "server.listen", + "depth": 3, + "scope": "api", + "anchor": "serverlistenhandle-backlog-callback", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:69ae5c16ea9b", + "chapter": "net", + "kind": "method", + "name": "listen", + "signature": "`server.listen(options[, callback])`", + "label": "server.listen(options[, callback])", + "apiSymbol": "server.listen", + "depth": 3, + "scope": "api", + "anchor": "serverlistenoptions-callback", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:8db90e9d7226", + "chapter": "net", + "kind": "method", + "name": "listen", + "signature": "`server.listen(path[, backlog][, callback])`", + "label": "server.listen(path[, backlog][, callback])", + "apiSymbol": "server.listen", + "depth": 3, + "scope": "api", + "anchor": "serverlistenpath-backlog-callback", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:3f2a5a150495", + "chapter": "net", + "kind": "method", + "name": "listen", + "signature": "`server.listen([port[, host[, backlog]]][, callback])`", + "label": "server.listen([port[, host[, backlog]]][, callback])", + "apiSymbol": "server.listen", + "depth": 3, + "scope": "api", + "anchor": "serverlistenport-host-backlog-callback", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:bfc1c02de603", + "chapter": "net", + "kind": "method", + "name": "ref", + "signature": "`server.ref()`", + "label": "server.ref()", + "apiSymbol": "server.ref", + "depth": 2, + "scope": "api", + "anchor": "serverref", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:e8c45031923b", + "chapter": "net", + "kind": "method", + "name": "unref", + "signature": "`server.unref()`", + "label": "server.unref()", + "apiSymbol": "server.unref", + "depth": 2, + "scope": "api", + "anchor": "serverunref", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:f512fa4d215e", + "chapter": "net", + "kind": "boolean", + "name": "Type", + "signature": "`listening` Type: {boolean} Indicates whether or not the server is listening for connections.", + "label": "listening", + "apiSymbol": "listening", + "depth": 2, + "scope": "api", + "anchor": "class-netserver", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:9bdb0c5b0e96", + "chapter": "net", + "kind": "integer", + "name": "Type", + "signature": "`maxConnections` Type: {integer}", + "label": "maxConnections", + "apiSymbol": "maxConnections", + "depth": 2, + "scope": "api", + "anchor": "class-netserver", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:5067a03de492", + "chapter": "net", + "kind": "boolean", + "name": "Type", + "signature": "`dropMaxConnection` Type: {boolean}", + "label": "dropMaxConnection", + "apiSymbol": "dropMaxConnection", + "depth": 2, + "scope": "api", + "anchor": "class-netserver", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:992edf208e3d", + "chapter": "net", + "kind": "event", + "name": "close", + "signature": "Event: `'close'`", + "label": "'close'", + "apiSymbol": "'close'", + "depth": 2, + "scope": "api", + "anchor": "event-close", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:3bcc9da04a85", + "chapter": "net", + "kind": "event", + "name": "connection", + "signature": "Event: `'connection'`", + "label": "'connection'", + "apiSymbol": "'connection'", + "depth": 2, + "scope": "api", + "anchor": "event-connection", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:88491a799abc", + "chapter": "net", + "kind": "event", + "name": "error", + "signature": "Event: `'error'`", + "label": "'error'", + "apiSymbol": "'error'", + "depth": 2, + "scope": "api", + "anchor": "event-error", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:e0948c09f069", + "chapter": "net", + "kind": "event", + "name": "listening", + "signature": "Event: `'listening'`", + "label": "'listening'", + "apiSymbol": "'listening'", + "depth": 2, + "scope": "api", + "anchor": "event-listening", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:1b50e0231816", + "chapter": "net", + "kind": "event", + "name": "drop", + "signature": "Event: `'drop'`", + "label": "'drop'", + "apiSymbol": "'drop'", + "depth": 2, + "scope": "api", + "anchor": "event-drop", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:9296e277bdec", + "chapter": "net", + "kind": "class", + "name": "net.Socket", + "signature": "Class: `net.Socket`", + "label": "net.Socket", + "apiSymbol": "net.Socket", + "depth": 1, + "scope": "api", + "anchor": "class-netsocket", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "net:0acfadfa8cd9", + "chapter": "net", + "kind": "method", + "name": "address", + "signature": "`socket.address()`", + "label": "socket.address()", + "apiSymbol": "socket.address", + "depth": 2, + "scope": "api", + "anchor": "socketaddress", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:1a257d617710", + "chapter": "net", + "kind": "method", + "name": "connect", + "signature": "`socket.connect()`", + "label": "socket.connect()", + "apiSymbol": "socket.connect", + "depth": 2, + "scope": "api", + "anchor": "socketconnect", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:a2a9cd13141f", + "chapter": "net", + "kind": "method", + "name": "connect", + "signature": "`socket.connect(options[, connectListener])`", + "label": "socket.connect(options[, connectListener])", + "apiSymbol": "socket.connect", + "depth": 3, + "scope": "api", + "anchor": "socketconnectoptions-connectlistener", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:1e2bef4908f3", + "chapter": "net", + "kind": "method", + "name": "connect", + "signature": "`socket.connect(path[, connectListener])`", + "label": "socket.connect(path[, connectListener])", + "apiSymbol": "socket.connect", + "depth": 3, + "scope": "api", + "anchor": "socketconnectpath-connectlistener", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:f1b87f136bfb", + "chapter": "net", + "kind": "method", + "name": "connect", + "signature": "`socket.connect(port[, host][, connectListener])`", + "label": "socket.connect(port[, host][, connectListener])", + "apiSymbol": "socket.connect", + "depth": 3, + "scope": "api", + "anchor": "socketconnectport-host-connectlistener", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:e61cf2d7869b", + "chapter": "net", + "kind": "method", + "name": "destroy", + "signature": "`socket.destroy([error])`", + "label": "socket.destroy([error])", + "apiSymbol": "socket.destroy", + "depth": 2, + "scope": "api", + "anchor": "socketdestroyerror", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:cdaa141289fd", + "chapter": "net", + "kind": "method", + "name": "destroySoon", + "signature": "`socket.destroySoon()`", + "label": "socket.destroySoon()", + "apiSymbol": "socket.destroySoon", + "depth": 2, + "scope": "api", + "anchor": "socketdestroysoon", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:0522326138b8", + "chapter": "net", + "kind": "method", + "name": "end", + "signature": "`socket.end([data[, encoding]][, callback])`", + "label": "socket.end([data[, encoding]][, callback])", + "apiSymbol": "socket.end", + "depth": 2, + "scope": "api", + "anchor": "socketenddata-encoding-callback", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:75d839acf1ae", + "chapter": "net", + "kind": "method", + "name": "pause", + "signature": "`socket.pause()`", + "label": "socket.pause()", + "apiSymbol": "socket.pause", + "depth": 2, + "scope": "api", + "anchor": "socketpause", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:a7ef1c528048", + "chapter": "net", + "kind": "method", + "name": "ref", + "signature": "`socket.ref()`", + "label": "socket.ref()", + "apiSymbol": "socket.ref", + "depth": 2, + "scope": "api", + "anchor": "socketref", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:64f5c6c21ebb", + "chapter": "net", + "kind": "method", + "name": "resetAndDestroy", + "signature": "`socket.resetAndDestroy()`", + "label": "socket.resetAndDestroy()", + "apiSymbol": "socket.resetAndDestroy", + "depth": 2, + "scope": "api", + "anchor": "socketresetanddestroy", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:2ff2d2f7acc7", + "chapter": "net", + "kind": "method", + "name": "resume", + "signature": "`socket.resume()`", + "label": "socket.resume()", + "apiSymbol": "socket.resume", + "depth": 2, + "scope": "api", + "anchor": "socketresume", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:14a0fb92fa7b", + "chapter": "net", + "kind": "method", + "name": "setEncoding", + "signature": "`socket.setEncoding([encoding])`", + "label": "socket.setEncoding([encoding])", + "apiSymbol": "socket.setEncoding", + "depth": 2, + "scope": "api", + "anchor": "socketsetencodingencoding", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:7412f0f2828d", + "chapter": "net", + "kind": "method", + "name": "setKeepAlive", + "signature": "`socket.setKeepAlive([enable][, initialDelay])`", + "label": "socket.setKeepAlive([enable][, initialDelay])", + "apiSymbol": "socket.setKeepAlive", + "depth": 2, + "scope": "api", + "anchor": "socketsetkeepaliveenable-initialdelay", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:b6764f532190", + "chapter": "net", + "kind": "method", + "name": "setNoDelay", + "signature": "`socket.setNoDelay([noDelay])`", + "label": "socket.setNoDelay([noDelay])", + "apiSymbol": "socket.setNoDelay", + "depth": 2, + "scope": "api", + "anchor": "socketsetnodelaynodelay", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:84001187a222", + "chapter": "net", + "kind": "method", + "name": "setTimeout", + "signature": "`socket.setTimeout(timeout[, callback])`", + "label": "socket.setTimeout(timeout[, callback])", + "apiSymbol": "socket.setTimeout", + "depth": 2, + "scope": "api", + "anchor": "socketsettimeouttimeout-callback", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:7fc21d77580a", + "chapter": "net", + "kind": "method", + "name": "getTypeOfService", + "signature": "`socket.getTypeOfService()`", + "label": "socket.getTypeOfService()", + "apiSymbol": "socket.getTypeOfService", + "depth": 2, + "scope": "api", + "anchor": "socketgettypeofservice", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:2b2ff106a8d7", + "chapter": "net", + "kind": "method", + "name": "setTypeOfService", + "signature": "`socket.setTypeOfService(tos)`", + "label": "socket.setTypeOfService(tos)", + "apiSymbol": "socket.setTypeOfService", + "depth": 2, + "scope": "api", + "anchor": "socketsettypeofservicetos", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:6e2b583dea69", + "chapter": "net", + "kind": "method", + "name": "unref", + "signature": "`socket.unref()`", + "label": "socket.unref()", + "apiSymbol": "socket.unref", + "depth": 2, + "scope": "api", + "anchor": "socketunref", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:8c0698d22ee6", + "chapter": "net", + "kind": "method", + "name": "write", + "signature": "`socket.write(data[, encoding][, callback])`", + "label": "socket.write(data[, encoding][, callback])", + "apiSymbol": "socket.write", + "depth": 2, + "scope": "api", + "anchor": "socketwritedata-encoding-callback", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:d41cbd39c438", + "chapter": "net", + "kind": "string\\[]", + "name": "Type", + "signature": "`autoSelectFamilyAttemptedAddresses` Type: {string\\[]}", + "label": "autoSelectFamilyAttemptedAddresses", + "apiSymbol": "autoSelectFamilyAttemptedAddresses", + "depth": 2, + "scope": "api", + "anchor": "class-netsocket", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:52afe2bd1f88", + "chapter": "net", + "kind": "integer", + "name": "Type", + "signature": "`bufferSize` Type: {integer}", + "label": "bufferSize", + "apiSymbol": "bufferSize", + "depth": 2, + "scope": "api", + "anchor": "class-netsocket", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Use [`writable.writableLength`][] instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:e095ee43b02e", + "chapter": "net", + "kind": "integer", + "name": "Type", + "signature": "`bytesRead` Type: {integer}", + "label": "bytesRead", + "apiSymbol": "bytesRead", + "depth": 2, + "scope": "api", + "anchor": "class-netsocket", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:98bf772b3f15", + "chapter": "net", + "kind": "integer", + "name": "Type", + "signature": "`bytesWritten` Type: {integer}", + "label": "bytesWritten", + "apiSymbol": "bytesWritten", + "depth": 2, + "scope": "api", + "anchor": "class-netsocket", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:5c9c48be12d3", + "chapter": "net", + "kind": "boolean", + "name": "Type", + "signature": "`connecting` Type: {boolean}", + "label": "connecting", + "apiSymbol": "connecting", + "depth": 2, + "scope": "api", + "anchor": "class-netsocket", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:606071fbf392", + "chapter": "net", + "kind": "boolean", + "name": "Type", + "signature": "`destroyed` Type: {boolean} Indicates if the connection is destroyed or not. Once a connection is destroyed no further data can be transferred using it.", + "label": "destroyed", + "apiSymbol": "destroyed", + "depth": 2, + "scope": "api", + "anchor": "class-netsocket", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:c2ef3c0f5e17", + "chapter": "net", + "kind": "string", + "name": "Type", + "signature": "`localAddress` Type: {string}", + "label": "localAddress", + "apiSymbol": "localAddress", + "depth": 2, + "scope": "api", + "anchor": "class-netsocket", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:6da396af94a6", + "chapter": "net", + "kind": "integer", + "name": "Type", + "signature": "`localPort` Type: {integer}", + "label": "localPort", + "apiSymbol": "localPort", + "depth": 2, + "scope": "api", + "anchor": "class-netsocket", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:c792f6ed2d9c", + "chapter": "net", + "kind": "string", + "name": "Type", + "signature": "`localFamily` Type: {string}", + "label": "localFamily", + "apiSymbol": "localFamily", + "depth": 2, + "scope": "api", + "anchor": "class-netsocket", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:fb343fc72ba2", + "chapter": "net", + "kind": "boolean", + "name": "Type", + "signature": "`pending` Type: {boolean}", + "label": "pending", + "apiSymbol": "pending", + "depth": 2, + "scope": "api", + "anchor": "class-netsocket", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:cb5514a7fed1", + "chapter": "net", + "kind": "string", + "name": "Type", + "signature": "`remoteAddress` Type: {string}", + "label": "remoteAddress", + "apiSymbol": "remoteAddress", + "depth": 2, + "scope": "api", + "anchor": "class-netsocket", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:10f734f083d2", + "chapter": "net", + "kind": "string", + "name": "Type", + "signature": "`remoteFamily` Type: {string}", + "label": "remoteFamily", + "apiSymbol": "remoteFamily", + "depth": 2, + "scope": "api", + "anchor": "class-netsocket", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:9f91bb06165a", + "chapter": "net", + "kind": "integer", + "name": "Type", + "signature": "`remotePort` Type: {integer}", + "label": "remotePort", + "apiSymbol": "remotePort", + "depth": 2, + "scope": "api", + "anchor": "class-netsocket", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:f96568725a94", + "chapter": "net", + "kind": "number|undefined", + "name": "Type", + "signature": "`timeout` Type: {number|undefined}", + "label": "timeout", + "apiSymbol": "timeout", + "depth": 2, + "scope": "api", + "anchor": "class-netsocket", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:f73b745b326e", + "chapter": "net", + "kind": "string", + "name": "Type", + "signature": "`readyState` Type: {string}", + "label": "readyState", + "apiSymbol": "readyState", + "depth": 2, + "scope": "api", + "anchor": "class-netsocket", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:b2599fa8371a", + "chapter": "net", + "kind": "event", + "name": "close", + "signature": "Event: `'close'`", + "label": "'close'", + "apiSymbol": "'close'", + "depth": 2, + "scope": "api", + "anchor": "event-close_1", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:0a8cc1336b80", + "chapter": "net", + "kind": "event", + "name": "connect", + "signature": "Event: `'connect'`", + "label": "'connect'", + "apiSymbol": "'connect'", + "depth": 2, + "scope": "api", + "anchor": "event-connect", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:5d2419fc5afe", + "chapter": "net", + "kind": "event", + "name": "connectionAttempt", + "signature": "Event: `'connectionAttempt'`", + "label": "'connectionAttempt'", + "apiSymbol": "'connectionAttempt'", + "depth": 2, + "scope": "api", + "anchor": "event-connectionattempt", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:7909ab428071", + "chapter": "net", + "kind": "event", + "name": "connectionAttemptFailed", + "signature": "Event: `'connectionAttemptFailed'`", + "label": "'connectionAttemptFailed'", + "apiSymbol": "'connectionAttemptFailed'", + "depth": 2, + "scope": "api", + "anchor": "event-connectionattemptfailed", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:ae5ce3686340", + "chapter": "net", + "kind": "event", + "name": "connectionAttemptTimeout", + "signature": "Event: `'connectionAttemptTimeout'`", + "label": "'connectionAttemptTimeout'", + "apiSymbol": "'connectionAttemptTimeout'", + "depth": 2, + "scope": "api", + "anchor": "event-connectionattempttimeout", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:4478488608ba", + "chapter": "net", + "kind": "event", + "name": "data", + "signature": "Event: `'data'`", + "label": "'data'", + "apiSymbol": "'data'", + "depth": 2, + "scope": "api", + "anchor": "event-data", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:06034dedc39f", + "chapter": "net", + "kind": "event", + "name": "drain", + "signature": "Event: `'drain'`", + "label": "'drain'", + "apiSymbol": "'drain'", + "depth": 2, + "scope": "api", + "anchor": "event-drain", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:59e69be71236", + "chapter": "net", + "kind": "event", + "name": "end", + "signature": "Event: `'end'`", + "label": "'end'", + "apiSymbol": "'end'", + "depth": 2, + "scope": "api", + "anchor": "event-end", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:5c5069a07554", + "chapter": "net", + "kind": "event", + "name": "error", + "signature": "Event: `'error'`", + "label": "'error'", + "apiSymbol": "'error'", + "depth": 2, + "scope": "api", + "anchor": "event-error_1", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:03d3f8746cb8", + "chapter": "net", + "kind": "event", + "name": "lookup", + "signature": "Event: `'lookup'`", + "label": "'lookup'", + "apiSymbol": "'lookup'", + "depth": 2, + "scope": "api", + "anchor": "event-lookup", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:fafd8bcda5fe", + "chapter": "net", + "kind": "event", + "name": "ready", + "signature": "Event: `'ready'`", + "label": "'ready'", + "apiSymbol": "'ready'", + "depth": 2, + "scope": "api", + "anchor": "event-ready", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:bd336464f782", + "chapter": "net", + "kind": "event", + "name": "timeout", + "signature": "Event: `'timeout'`", + "label": "'timeout'", + "apiSymbol": "'timeout'", + "depth": 2, + "scope": "api", + "anchor": "event-timeout", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:2d7b6dbbbe2c", + "chapter": "net", + "kind": "method", + "name": "connect", + "signature": "`net.connect()`", + "label": "net.connect()", + "apiSymbol": "net.connect", + "depth": 1, + "scope": "api", + "anchor": "netconnect", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "net:12d18d57ece0", + "chapter": "net", + "kind": "method", + "name": "connect", + "signature": "`net.connect(options[, connectListener])`", + "label": "net.connect(options[, connectListener])", + "apiSymbol": "net.connect", + "depth": 2, + "scope": "api", + "anchor": "netconnectoptions-connectlistener", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "net:40a2d79beab9", + "chapter": "net", + "kind": "method", + "name": "connect", + "signature": "`net.connect(path[, connectListener])`", + "label": "net.connect(path[, connectListener])", + "apiSymbol": "net.connect", + "depth": 2, + "scope": "api", + "anchor": "netconnectpath-connectlistener", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "net:ef1c5fc36ae5", + "chapter": "net", + "kind": "method", + "name": "connect", + "signature": "`net.connect(port[, host][, connectListener])`", + "label": "net.connect(port[, host][, connectListener])", + "apiSymbol": "net.connect", + "depth": 2, + "scope": "api", + "anchor": "netconnectport-host-connectlistener", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "net:fd4e1cf3dd55", + "chapter": "net", + "kind": "method", + "name": "createConnection", + "signature": "`net.createConnection()`", + "label": "net.createConnection()", + "apiSymbol": "net.createConnection", + "depth": 1, + "scope": "api", + "anchor": "netcreateconnection", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "net:0a914b7857cd", + "chapter": "net", + "kind": "method", + "name": "createConnection", + "signature": "`net.createConnection(options[, connectListener])`", + "label": "net.createConnection(options[, connectListener])", + "apiSymbol": "net.createConnection", + "depth": 2, + "scope": "api", + "anchor": "netcreateconnectionoptions-connectlistener", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "net:694a4f54a581", + "chapter": "net", + "kind": "method", + "name": "createConnection", + "signature": "`net.createConnection(path[, connectListener])`", + "label": "net.createConnection(path[, connectListener])", + "apiSymbol": "net.createConnection", + "depth": 2, + "scope": "api", + "anchor": "netcreateconnectionpath-connectlistener", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "net:5f8c1e35d1dd", + "chapter": "net", + "kind": "method", + "name": "createConnection", + "signature": "`net.createConnection(port[, host][, connectListener])`", + "label": "net.createConnection(port[, host][, connectListener])", + "apiSymbol": "net.createConnection", + "depth": 2, + "scope": "api", + "anchor": "netcreateconnectionport-host-connectlistener", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "net:6ac098125b16", + "chapter": "net", + "kind": "method", + "name": "createServer", + "signature": "`net.createServer([options][, connectionListener])`", + "label": "net.createServer([options][, connectionListener])", + "apiSymbol": "net.createServer", + "depth": 1, + "scope": "api", + "anchor": "netcreateserveroptions-connectionlistener", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "net:5184a955728a", + "chapter": "net", + "kind": "method", + "name": "getDefaultAutoSelectFamily", + "signature": "`net.getDefaultAutoSelectFamily()`", + "label": "net.getDefaultAutoSelectFamily()", + "apiSymbol": "net.getDefaultAutoSelectFamily", + "depth": 1, + "scope": "api", + "anchor": "netgetdefaultautoselectfamily", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:9f966c770cb2", + "chapter": "net", + "kind": "method", + "name": "setDefaultAutoSelectFamily", + "signature": "`net.setDefaultAutoSelectFamily(value)`", + "label": "net.setDefaultAutoSelectFamily(value)", + "apiSymbol": "net.setDefaultAutoSelectFamily", + "depth": 1, + "scope": "api", + "anchor": "netsetdefaultautoselectfamilyvalue", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:87666547ae4b", + "chapter": "net", + "kind": "method", + "name": "getDefaultAutoSelectFamilyAttemptTimeout", + "signature": "`net.getDefaultAutoSelectFamilyAttemptTimeout()`", + "label": "net.getDefaultAutoSelectFamilyAttemptTimeout()", + "apiSymbol": "net.getDefaultAutoSelectFamilyAttemptTimeout", + "depth": 1, + "scope": "api", + "anchor": "netgetdefaultautoselectfamilyattempttimeout", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:fdd0fb27ee4b", + "chapter": "net", + "kind": "method", + "name": "setDefaultAutoSelectFamilyAttemptTimeout", + "signature": "`net.setDefaultAutoSelectFamilyAttemptTimeout(value)`", + "label": "net.setDefaultAutoSelectFamilyAttemptTimeout(value)", + "apiSymbol": "net.setDefaultAutoSelectFamilyAttemptTimeout", + "depth": 1, + "scope": "api", + "anchor": "netsetdefaultautoselectfamilyattempttimeoutvalue", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "net:3bbf8fc6cea0", + "chapter": "net", + "kind": "method", + "name": "isIP", + "signature": "`net.isIP(input)`", + "label": "net.isIP(input)", + "apiSymbol": "net.isIP", + "depth": 1, + "scope": "api", + "anchor": "netisipinput", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "net:4564b8a65ecf", + "chapter": "net", + "kind": "method", + "name": "isIPv4", + "signature": "`net.isIPv4(input)`", + "label": "net.isIPv4(input)", + "apiSymbol": "net.isIPv4", + "depth": 1, + "scope": "api", + "anchor": "netisipv4input", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "net:a2c600b17356", + "chapter": "net", + "kind": "method", + "name": "isIPv6", + "signature": "`net.isIPv6(input)`", + "label": "net.isIPv6(input)", + "apiSymbol": "net.isIPv6", + "depth": 1, + "scope": "api", + "anchor": "netisipv6input", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "os:2dd2b8971171", + "chapter": "os", + "kind": "module", + "name": "os", + "signature": "OS", + "label": "OS", + "apiSymbol": "os", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + }, + "dynamic": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + } + }, + { + "id": "os:a41e9446f2bf", + "chapter": "os", + "kind": "method", + "name": "availableParallelism", + "signature": "`os.availableParallelism()`", + "label": "os.availableParallelism()", + "apiSymbol": "os.availableParallelism", + "depth": 1, + "scope": "api", + "anchor": "osavailableparallelism", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "os:08f3f4e35b71", + "chapter": "os", + "kind": "method", + "name": "arch", + "signature": "`os.arch()`", + "label": "os.arch()", + "apiSymbol": "os.arch", + "depth": 1, + "scope": "api", + "anchor": "osarch", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "os:965cd78a7277", + "chapter": "os", + "kind": "method", + "name": "cpus", + "signature": "`os.cpus()`", + "label": "os.cpus()", + "apiSymbol": "os.cpus", + "depth": 1, + "scope": "api", + "anchor": "oscpus", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "os:90f0b126f9dc", + "chapter": "os", + "kind": "method", + "name": "endianness", + "signature": "`os.endianness()`", + "label": "os.endianness()", + "apiSymbol": "os.endianness", + "depth": 1, + "scope": "api", + "anchor": "osendianness", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "os:e5fbf9cf1d23", + "chapter": "os", + "kind": "method", + "name": "freemem", + "signature": "`os.freemem()`", + "label": "os.freemem()", + "apiSymbol": "os.freemem", + "depth": 1, + "scope": "api", + "anchor": "osfreemem", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "os:4d66ebd23497", + "chapter": "os", + "kind": "method", + "name": "getPriority", + "signature": "`os.getPriority([pid])`", + "label": "os.getPriority([pid])", + "apiSymbol": "os.getPriority", + "depth": 1, + "scope": "api", + "anchor": "osgetprioritypid", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "os:eebf91f2cc0f", + "chapter": "os", + "kind": "method", + "name": "homedir", + "signature": "`os.homedir()`", + "label": "os.homedir()", + "apiSymbol": "os.homedir", + "depth": 1, + "scope": "api", + "anchor": "oshomedir", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "os:7396ccfc37e3", + "chapter": "os", + "kind": "method", + "name": "hostname", + "signature": "`os.hostname()`", + "label": "os.hostname()", + "apiSymbol": "os.hostname", + "depth": 1, + "scope": "api", + "anchor": "oshostname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "os:651b563fd52e", + "chapter": "os", + "kind": "method", + "name": "loadavg", + "signature": "`os.loadavg()`", + "label": "os.loadavg()", + "apiSymbol": "os.loadavg", + "depth": 1, + "scope": "api", + "anchor": "osloadavg", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "os:78c2e69d1fdf", + "chapter": "os", + "kind": "method", + "name": "machine", + "signature": "`os.machine()`", + "label": "os.machine()", + "apiSymbol": "os.machine", + "depth": 1, + "scope": "api", + "anchor": "osmachine", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "os:ad838ab2f7e3", + "chapter": "os", + "kind": "method", + "name": "networkInterfaces", + "signature": "`os.networkInterfaces()`", + "label": "os.networkInterfaces()", + "apiSymbol": "os.networkInterfaces", + "depth": 1, + "scope": "api", + "anchor": "osnetworkinterfaces", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "os:435fc2fc08b1", + "chapter": "os", + "kind": "method", + "name": "platform", + "signature": "`os.platform()`", + "label": "os.platform()", + "apiSymbol": "os.platform", + "depth": 1, + "scope": "api", + "anchor": "osplatform", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "os:640dc7f343f4", + "chapter": "os", + "kind": "method", + "name": "release", + "signature": "`os.release()`", + "label": "os.release()", + "apiSymbol": "os.release", + "depth": 1, + "scope": "api", + "anchor": "osrelease", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "os:e20aab5c65c1", + "chapter": "os", + "kind": "method", + "name": "setPriority", + "signature": "`os.setPriority([pid, ]priority)`", + "label": "os.setPriority([pid, ]priority)", + "apiSymbol": "os.setPriority", + "depth": 1, + "scope": "api", + "anchor": "ossetprioritypid-priority", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "os:a185533216ba", + "chapter": "os", + "kind": "method", + "name": "tmpdir", + "signature": "`os.tmpdir()`", + "label": "os.tmpdir()", + "apiSymbol": "os.tmpdir", + "depth": 1, + "scope": "api", + "anchor": "ostmpdir", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "os:70f1fee74b86", + "chapter": "os", + "kind": "method", + "name": "totalmem", + "signature": "`os.totalmem()`", + "label": "os.totalmem()", + "apiSymbol": "os.totalmem", + "depth": 1, + "scope": "api", + "anchor": "ostotalmem", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "os:d6f6da48d880", + "chapter": "os", + "kind": "method", + "name": "type", + "signature": "`os.type()`", + "label": "os.type()", + "apiSymbol": "os.type", + "depth": 1, + "scope": "api", + "anchor": "ostype", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "os:b9c93a734e8d", + "chapter": "os", + "kind": "method", + "name": "uptime", + "signature": "`os.uptime()`", + "label": "os.uptime()", + "apiSymbol": "os.uptime", + "depth": 1, + "scope": "api", + "anchor": "osuptime", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "os:b4eedcce1580", + "chapter": "os", + "kind": "method", + "name": "userInfo", + "signature": "`os.userInfo([options])`", + "label": "os.userInfo([options])", + "apiSymbol": "os.userInfo", + "depth": 1, + "scope": "api", + "anchor": "osuserinfooptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "os:72f5b3f2ef64", + "chapter": "os", + "kind": "method", + "name": "version", + "signature": "`os.version()`", + "label": "os.version()", + "apiSymbol": "os.version", + "depth": 1, + "scope": "api", + "anchor": "osversion", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "os:adc23f556640", + "chapter": "os", + "kind": "string", + "name": "Type", + "signature": "`EOL` Type: {string}", + "label": "EOL", + "apiSymbol": "EOL", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "os:a5b9d352944f", + "chapter": "os", + "kind": "Object", + "name": "Type", + "signature": "`constants` Type: {Object}", + "label": "constants", + "apiSymbol": "constants", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "os:c5e8d4dcf1db", + "chapter": "os", + "kind": "string", + "name": "Type", + "signature": "`devNull` Type: {string}", + "label": "devNull", + "apiSymbol": "devNull", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "path:669986112fe1", + "chapter": "path", + "kind": "module", + "name": "path", + "signature": "Path", + "label": "Path", + "apiSymbol": "path", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + }, + "dynamic": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + } + }, + { + "id": "path:7250a15b94a7", + "chapter": "path", + "kind": "method", + "name": "basename", + "signature": "`path.basename(path[, suffix])`", + "label": "path.basename(path[, suffix])", + "apiSymbol": "path.basename", + "depth": 1, + "scope": "api", + "anchor": "pathbasenamepath-suffix", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "path:1dcc51cfa0c5", + "chapter": "path", + "kind": "method", + "name": "dirname", + "signature": "`path.dirname(path)`", + "label": "path.dirname(path)", + "apiSymbol": "path.dirname", + "depth": 1, + "scope": "api", + "anchor": "pathdirnamepath", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "path:cc28b9b161db", + "chapter": "path", + "kind": "method", + "name": "extname", + "signature": "`path.extname(path)`", + "label": "path.extname(path)", + "apiSymbol": "path.extname", + "depth": 1, + "scope": "api", + "anchor": "pathextnamepath", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "path:40e393d10f79", + "chapter": "path", + "kind": "method", + "name": "format", + "signature": "`path.format(pathObject)`", + "label": "path.format(pathObject)", + "apiSymbol": "path.format", + "depth": 1, + "scope": "api", + "anchor": "pathformatpathobject", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "path:625fe3d61e8d", + "chapter": "path", + "kind": "method", + "name": "matchesGlob", + "signature": "`path.matchesGlob(path, pattern)`", + "label": "path.matchesGlob(path, pattern)", + "apiSymbol": "path.matchesGlob", + "depth": 1, + "scope": "api", + "anchor": "pathmatchesglobpath-pattern", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "path:2a06aa5ac212", + "chapter": "path", + "kind": "method", + "name": "isAbsolute", + "signature": "`path.isAbsolute(path)`", + "label": "path.isAbsolute(path)", + "apiSymbol": "path.isAbsolute", + "depth": 1, + "scope": "api", + "anchor": "pathisabsolutepath", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "path:964527f1583c", + "chapter": "path", + "kind": "method", + "name": "join", + "signature": "`path.join([...paths])`", + "label": "path.join([...paths])", + "apiSymbol": "path.join", + "depth": 1, + "scope": "api", + "anchor": "pathjoinpaths", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "path:0eea52505737", + "chapter": "path", + "kind": "method", + "name": "normalize", + "signature": "`path.normalize(path)`", + "label": "path.normalize(path)", + "apiSymbol": "path.normalize", + "depth": 1, + "scope": "api", + "anchor": "pathnormalizepath", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "path:d07cbf8afc37", + "chapter": "path", + "kind": "method", + "name": "parse", + "signature": "`path.parse(path)`", + "label": "path.parse(path)", + "apiSymbol": "path.parse", + "depth": 1, + "scope": "api", + "anchor": "pathparsepath", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "path:20c9b0419eed", + "chapter": "path", + "kind": "method", + "name": "relative", + "signature": "`path.relative(from, to)`", + "label": "path.relative(from, to)", + "apiSymbol": "path.relative", + "depth": 1, + "scope": "api", + "anchor": "pathrelativefrom-to", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "path:99d3d3f8bb3b", + "chapter": "path", + "kind": "method", + "name": "resolve", + "signature": "`path.resolve([...paths])`", + "label": "path.resolve([...paths])", + "apiSymbol": "path.resolve", + "depth": 1, + "scope": "api", + "anchor": "pathresolvepaths", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "path:e0956b791e31", + "chapter": "path", + "kind": "method", + "name": "toNamespacedPath", + "signature": "`path.toNamespacedPath(path)`", + "label": "path.toNamespacedPath(path)", + "apiSymbol": "path.toNamespacedPath", + "depth": 1, + "scope": "api", + "anchor": "pathtonamespacedpathpath", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "path:5b4c30163bb7", + "chapter": "path", + "kind": "string", + "name": "Type", + "signature": "`delimiter` Type: {string}", + "label": "delimiter", + "apiSymbol": "delimiter", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "path:77c7f6b48cd0", + "chapter": "path", + "kind": "Object", + "name": "Type", + "signature": "`posix` Type: {Object}", + "label": "posix", + "apiSymbol": "posix", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "path:3c7f767f0a27", + "chapter": "path", + "kind": "string", + "name": "Type", + "signature": "`sep` Type: {string}", + "label": "sep", + "apiSymbol": "sep", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "path:a61594579213", + "chapter": "path", + "kind": "Object", + "name": "Type", + "signature": "`win32` Type: {Object}", + "label": "win32", + "apiSymbol": "win32", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "perf_hooks:72a4bd428803", + "chapter": "perf_hooks", + "kind": "module", + "name": "performance_measurement_apis", + "signature": "Performance measurement APIs", + "label": "Performance measurement APIs", + "apiSymbol": "performance_measurement_apis", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + }, + "dynamic": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + } + }, + { + "id": "perf_hooks:4191f3d1f637", + "chapter": "perf_hooks", + "kind": "class", + "name": "PerformanceEntry", + "signature": "Class: `PerformanceEntry`", + "label": "PerformanceEntry", + "apiSymbol": "PerformanceEntry", + "depth": 1, + "scope": "api", + "anchor": "class-performanceentry", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:1f9a6cb25ceb", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`duration` Type: {number}", + "label": "duration", + "apiSymbol": "duration", + "depth": 2, + "scope": "api", + "anchor": "class-performanceentry", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:e8061026c790", + "chapter": "perf_hooks", + "kind": "string", + "name": "Type", + "signature": "`entryType` Type: {string}", + "label": "entryType", + "apiSymbol": "entryType", + "depth": 2, + "scope": "api", + "anchor": "class-performanceentry", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:ae280bad5340", + "chapter": "perf_hooks", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string}", + "label": "name", + "apiSymbol": "name", + "depth": 2, + "scope": "api", + "anchor": "class-performanceentry", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:28d0ce9a33a8", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`startTime` Type: {number}", + "label": "startTime", + "apiSymbol": "startTime", + "depth": 2, + "scope": "api", + "anchor": "class-performanceentry", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:62dc8fa6e93a", + "chapter": "perf_hooks", + "kind": "class", + "name": "PerformanceMark", + "signature": "Class: `PerformanceMark`", + "label": "PerformanceMark", + "apiSymbol": "PerformanceMark", + "depth": 1, + "scope": "api", + "anchor": "class-performancemark", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:8f11d66797d1", + "chapter": "perf_hooks", + "kind": "any", + "name": "Type", + "signature": "`detail` Type: {any}", + "label": "detail", + "apiSymbol": "detail", + "depth": 2, + "scope": "api", + "anchor": "class-performancemark", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:7e01593bf814", + "chapter": "perf_hooks", + "kind": "class", + "name": "PerformanceMeasure", + "signature": "Class: `PerformanceMeasure`", + "label": "PerformanceMeasure", + "apiSymbol": "PerformanceMeasure", + "depth": 1, + "scope": "api", + "anchor": "class-performancemeasure", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:ee5e4e453e50", + "chapter": "perf_hooks", + "kind": "any", + "name": "Type", + "signature": "`detail` Type: {any}", + "label": "detail", + "apiSymbol": "detail", + "depth": 2, + "scope": "api", + "anchor": "class-performancemeasure", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:256ac7cefb1f", + "chapter": "perf_hooks", + "kind": "class", + "name": "PerformanceNodeEntry", + "signature": "Class: `PerformanceNodeEntry`", + "label": "PerformanceNodeEntry", + "apiSymbol": "PerformanceNodeEntry", + "depth": 1, + "scope": "api", + "anchor": "class-performancenodeentry", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:4933cefedc94", + "chapter": "perf_hooks", + "kind": "any", + "name": "Type", + "signature": "`detail` Type: {any}", + "label": "detail", + "apiSymbol": "detail", + "depth": 2, + "scope": "api", + "anchor": "class-performancenodeentry", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:bae3522825d6", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`flags` Type: {number}", + "label": "flags", + "apiSymbol": "flags", + "depth": 2, + "scope": "api", + "anchor": "class-performancenodeentry", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Use `performanceNodeEntry.detail` instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:d3e6477c485c", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`kind` Type: {number}", + "label": "kind", + "apiSymbol": "kind", + "depth": 2, + "scope": "api", + "anchor": "class-performancenodeentry", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Use `performanceNodeEntry.detail` instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:8ecb3ea14374", + "chapter": "perf_hooks", + "kind": "class", + "name": "PerformanceNodeTiming", + "signature": "Class: `PerformanceNodeTiming`", + "label": "PerformanceNodeTiming", + "apiSymbol": "PerformanceNodeTiming", + "depth": 1, + "scope": "api", + "anchor": "class-performancenodetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:bfb3b0423504", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`bootstrapComplete` Type: {number}", + "label": "bootstrapComplete", + "apiSymbol": "bootstrapComplete", + "depth": 2, + "scope": "api", + "anchor": "class-performancenodetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:16945a6825e2", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`environment` Type: {number}", + "label": "environment", + "apiSymbol": "environment", + "depth": 2, + "scope": "api", + "anchor": "class-performancenodetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:bfbbcd095905", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`idleTime` Type: {number}", + "label": "idleTime", + "apiSymbol": "idleTime", + "depth": 2, + "scope": "api", + "anchor": "class-performancenodetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:57152874e4b6", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`loopExit` Type: {number}", + "label": "loopExit", + "apiSymbol": "loopExit", + "depth": 2, + "scope": "api", + "anchor": "class-performancenodetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:b1b6fa495b7f", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`loopStart` Type: {number}", + "label": "loopStart", + "apiSymbol": "loopStart", + "depth": 2, + "scope": "api", + "anchor": "class-performancenodetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:dd3625440326", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`nodeStart` Type: {number}", + "label": "nodeStart", + "apiSymbol": "nodeStart", + "depth": 2, + "scope": "api", + "anchor": "class-performancenodetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:840d8edbb58f", + "chapter": "perf_hooks", + "kind": "Object", + "name": "return", + "signature": "`uvMetricsInfo` Returns: {Object}", + "label": "uvMetricsInfo", + "apiSymbol": "uvMetricsInfo", + "depth": 2, + "scope": "api", + "anchor": "class-performancenodetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:926aff9758da", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`v8Start` Type: {number}", + "label": "v8Start", + "apiSymbol": "v8Start", + "depth": 2, + "scope": "api", + "anchor": "class-performancenodetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:d50415882b98", + "chapter": "perf_hooks", + "kind": "class", + "name": "PerformanceResourceTiming", + "signature": "Class: `PerformanceResourceTiming`", + "label": "PerformanceResourceTiming", + "apiSymbol": "PerformanceResourceTiming", + "depth": 1, + "scope": "api", + "anchor": "class-performanceresourcetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:feadabc65ca1", + "chapter": "perf_hooks", + "kind": "method", + "name": "toJSON", + "signature": "`performanceResourceTiming.toJSON()`", + "label": "performanceResourceTiming.toJSON()", + "apiSymbol": "performanceResourceTiming.toJSON", + "depth": 2, + "scope": "api", + "anchor": "performanceresourcetimingtojson", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:4168e62b4adc", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`workerStart` Type: {number}", + "label": "workerStart", + "apiSymbol": "workerStart", + "depth": 2, + "scope": "api", + "anchor": "class-performanceresourcetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:3d9e8927f421", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`redirectStart` Type: {number}", + "label": "redirectStart", + "apiSymbol": "redirectStart", + "depth": 2, + "scope": "api", + "anchor": "class-performanceresourcetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:d8b317438a96", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`redirectEnd` Type: {number}", + "label": "redirectEnd", + "apiSymbol": "redirectEnd", + "depth": 2, + "scope": "api", + "anchor": "class-performanceresourcetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:4ee0cb7dda90", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`fetchStart` Type: {number}", + "label": "fetchStart", + "apiSymbol": "fetchStart", + "depth": 2, + "scope": "api", + "anchor": "class-performanceresourcetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:9f8fac595e48", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`domainLookupStart` Type: {number}", + "label": "domainLookupStart", + "apiSymbol": "domainLookupStart", + "depth": 2, + "scope": "api", + "anchor": "class-performanceresourcetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:bef659cad139", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`domainLookupEnd` Type: {number}", + "label": "domainLookupEnd", + "apiSymbol": "domainLookupEnd", + "depth": 2, + "scope": "api", + "anchor": "class-performanceresourcetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:6f0d699a309d", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`connectStart` Type: {number}", + "label": "connectStart", + "apiSymbol": "connectStart", + "depth": 2, + "scope": "api", + "anchor": "class-performanceresourcetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:34d282ce7bd9", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`connectEnd` Type: {number}", + "label": "connectEnd", + "apiSymbol": "connectEnd", + "depth": 2, + "scope": "api", + "anchor": "class-performanceresourcetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:75a534e90bcc", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`secureConnectionStart` Type: {number}", + "label": "secureConnectionStart", + "apiSymbol": "secureConnectionStart", + "depth": 2, + "scope": "api", + "anchor": "class-performanceresourcetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:565b8a46a863", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`requestStart` Type: {number}", + "label": "requestStart", + "apiSymbol": "requestStart", + "depth": 2, + "scope": "api", + "anchor": "class-performanceresourcetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:19c7eaa1d601", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`responseEnd` Type: {number}", + "label": "responseEnd", + "apiSymbol": "responseEnd", + "depth": 2, + "scope": "api", + "anchor": "class-performanceresourcetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:3213a0efd304", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`transferSize` Type: {number}", + "label": "transferSize", + "apiSymbol": "transferSize", + "depth": 2, + "scope": "api", + "anchor": "class-performanceresourcetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:335771789b02", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`encodedBodySize` Type: {number}", + "label": "encodedBodySize", + "apiSymbol": "encodedBodySize", + "depth": 2, + "scope": "api", + "anchor": "class-performanceresourcetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:8e4482fb7bc1", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`decodedBodySize` Type: {number}", + "label": "decodedBodySize", + "apiSymbol": "decodedBodySize", + "depth": 2, + "scope": "api", + "anchor": "class-performanceresourcetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:44c5636e6a4c", + "chapter": "perf_hooks", + "kind": "class", + "name": "PerformanceObserver", + "signature": "Class: `PerformanceObserver`", + "label": "PerformanceObserver", + "apiSymbol": "PerformanceObserver", + "depth": 1, + "scope": "api", + "anchor": "class-performanceobserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "perf_hooks:e5c8c6842247", + "chapter": "perf_hooks", + "kind": "method", + "name": "disconnect", + "signature": "`performanceObserver.disconnect()`", + "label": "performanceObserver.disconnect()", + "apiSymbol": "performanceObserver.disconnect", + "depth": 2, + "scope": "api", + "anchor": "performanceobserverdisconnect", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "perf_hooks:93192ffccbf3", + "chapter": "perf_hooks", + "kind": "method", + "name": "observe", + "signature": "`performanceObserver.observe(options)`", + "label": "performanceObserver.observe(options)", + "apiSymbol": "performanceObserver.observe", + "depth": 2, + "scope": "api", + "anchor": "performanceobserverobserveoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "perf_hooks:d8f9b6391e2a", + "chapter": "perf_hooks", + "kind": "method", + "name": "takeRecords", + "signature": "`performanceObserver.takeRecords()`", + "label": "performanceObserver.takeRecords()", + "apiSymbol": "performanceObserver.takeRecords", + "depth": 2, + "scope": "api", + "anchor": "performanceobservertakerecords", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "perf_hooks:2beb3bfd5ecc", + "chapter": "perf_hooks", + "kind": "string\\[]", + "name": "Type", + "signature": "`supportedEntryTypes` Type: {string\\[]}", + "label": "supportedEntryTypes", + "apiSymbol": "supportedEntryTypes", + "depth": 2, + "scope": "api", + "anchor": "class-performanceobserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:514d6e9cab8a", + "chapter": "perf_hooks", + "kind": "class", + "name": "PerformanceObserverEntryList", + "signature": "Class: `PerformanceObserverEntryList`", + "label": "PerformanceObserverEntryList", + "apiSymbol": "PerformanceObserverEntryList", + "depth": 1, + "scope": "api", + "anchor": "class-performanceobserverentrylist", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:167fa4fe3132", + "chapter": "perf_hooks", + "kind": "method", + "name": "getEntries", + "signature": "`performanceObserverEntryList.getEntries()`", + "label": "performanceObserverEntryList.getEntries()", + "apiSymbol": "performanceObserverEntryList.getEntries", + "depth": 2, + "scope": "api", + "anchor": "performanceobserverentrylistgetentries", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:ab6585b9639d", + "chapter": "perf_hooks", + "kind": "method", + "name": "getEntriesByName", + "signature": "`performanceObserverEntryList.getEntriesByName(name[, type])`", + "label": "performanceObserverEntryList.getEntriesByName(name[, type])", + "apiSymbol": "performanceObserverEntryList.getEntriesByName", + "depth": 2, + "scope": "api", + "anchor": "performanceobserverentrylistgetentriesbynamename-type", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:b1a056d5203a", + "chapter": "perf_hooks", + "kind": "method", + "name": "getEntriesByType", + "signature": "`performanceObserverEntryList.getEntriesByType(type)`", + "label": "performanceObserverEntryList.getEntriesByType(type)", + "apiSymbol": "performanceObserverEntryList.getEntriesByType", + "depth": 2, + "scope": "api", + "anchor": "performanceobserverentrylistgetentriesbytypetype", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:c89f0beb0e9f", + "chapter": "perf_hooks", + "kind": "class", + "name": "Histogram", + "signature": "Class: `Histogram`", + "label": "Histogram", + "apiSymbol": "Histogram", + "depth": 1, + "scope": "api", + "anchor": "class-histogram", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:831e531b3964", + "chapter": "perf_hooks", + "kind": "method", + "name": "percentile", + "signature": "`histogram.percentile(percentile)`", + "label": "histogram.percentile(percentile)", + "apiSymbol": "histogram.percentile", + "depth": 2, + "scope": "api", + "anchor": "histogrampercentilepercentile", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:04cfc34bfc96", + "chapter": "perf_hooks", + "kind": "method", + "name": "percentileBigInt", + "signature": "`histogram.percentileBigInt(percentile)`", + "label": "histogram.percentileBigInt(percentile)", + "apiSymbol": "histogram.percentileBigInt", + "depth": 2, + "scope": "api", + "anchor": "histogrampercentilebigintpercentile", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:0c8a168f2d58", + "chapter": "perf_hooks", + "kind": "method", + "name": "reset", + "signature": "`histogram.reset()`", + "label": "histogram.reset()", + "apiSymbol": "histogram.reset", + "depth": 2, + "scope": "api", + "anchor": "histogramreset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:c3ade18455b5", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`count` Type: {number}", + "label": "count", + "apiSymbol": "count", + "depth": 2, + "scope": "api", + "anchor": "class-histogram", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:6f617351e2f4", + "chapter": "perf_hooks", + "kind": "bigint", + "name": "Type", + "signature": "`countBigInt` Type: {bigint}", + "label": "countBigInt", + "apiSymbol": "countBigInt", + "depth": 2, + "scope": "api", + "anchor": "class-histogram", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:a8fd32a72955", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`exceeds` Type: {number}", + "label": "exceeds", + "apiSymbol": "exceeds", + "depth": 2, + "scope": "api", + "anchor": "class-histogram", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:d3d141a0aafa", + "chapter": "perf_hooks", + "kind": "bigint", + "name": "Type", + "signature": "`exceedsBigInt` Type: {bigint}", + "label": "exceedsBigInt", + "apiSymbol": "exceedsBigInt", + "depth": 2, + "scope": "api", + "anchor": "class-histogram", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:2a2f8716b952", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`max` Type: {number}", + "label": "max", + "apiSymbol": "max", + "depth": 2, + "scope": "api", + "anchor": "class-histogram", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:922693582449", + "chapter": "perf_hooks", + "kind": "bigint", + "name": "Type", + "signature": "`maxBigInt` Type: {bigint}", + "label": "maxBigInt", + "apiSymbol": "maxBigInt", + "depth": 2, + "scope": "api", + "anchor": "class-histogram", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:5470f308346b", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`mean` Type: {number}", + "label": "mean", + "apiSymbol": "mean", + "depth": 2, + "scope": "api", + "anchor": "class-histogram", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:9eb490e3b5a0", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`min` Type: {number}", + "label": "min", + "apiSymbol": "min", + "depth": 2, + "scope": "api", + "anchor": "class-histogram", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:b98c4f4cb2a3", + "chapter": "perf_hooks", + "kind": "bigint", + "name": "Type", + "signature": "`minBigInt` Type: {bigint}", + "label": "minBigInt", + "apiSymbol": "minBigInt", + "depth": 2, + "scope": "api", + "anchor": "class-histogram", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:049a2710663c", + "chapter": "perf_hooks", + "kind": "Map", + "name": "Type", + "signature": "`percentiles` Type: {Map}", + "label": "percentiles", + "apiSymbol": "percentiles", + "depth": 2, + "scope": "api", + "anchor": "class-histogram", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:977fe37cf714", + "chapter": "perf_hooks", + "kind": "Map", + "name": "Type", + "signature": "`percentilesBigInt` Type: {Map}", + "label": "percentilesBigInt", + "apiSymbol": "percentilesBigInt", + "depth": 2, + "scope": "api", + "anchor": "class-histogram", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:dcfa27e91fad", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`stddev` Type: {number}", + "label": "stddev", + "apiSymbol": "stddev", + "depth": 2, + "scope": "api", + "anchor": "class-histogram", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:d8033c297e16", + "chapter": "perf_hooks", + "kind": "class", + "name": "IntervalHistogram", + "signature": "Class: `IntervalHistogram extends Histogram`", + "label": "IntervalHistogram extends Histogram", + "apiSymbol": "IntervalHistogram extends Histogram", + "depth": 1, + "scope": "api", + "anchor": "class-intervalhistogram-extends-histogram", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:22e7f3f19476", + "chapter": "perf_hooks", + "kind": "module", + "name": "cloning_an_`intervalhistogram`", + "signature": "Cloning an `IntervalHistogram`", + "label": "Cloning an IntervalHistogram", + "apiSymbol": "IntervalHistogram", + "depth": 2, + "scope": "api", + "anchor": "cloning-an-intervalhistogram", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:b164c7ab2b1f", + "chapter": "perf_hooks", + "kind": "method", + "name": "disable", + "signature": "`histogram.disable()`", + "label": "histogram.disable()", + "apiSymbol": "histogram.disable", + "depth": 2, + "scope": "api", + "anchor": "histogramdisable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:651554deb586", + "chapter": "perf_hooks", + "kind": "method", + "name": "enable", + "signature": "`histogram.enable()`", + "label": "histogram.enable()", + "apiSymbol": "histogram.enable", + "depth": 2, + "scope": "api", + "anchor": "histogramenable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:e996f640b593", + "chapter": "perf_hooks", + "kind": "method", + "name": "[Symbol.dispose]", + "signature": "`histogram[Symbol.dispose]()`", + "label": "histogram[Symbol.dispose]()", + "apiSymbol": "histogram", + "depth": 2, + "scope": "api", + "anchor": "histogramsymboldispose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:4bc24e9a9db7", + "chapter": "perf_hooks", + "kind": "class", + "name": "RecordableHistogram", + "signature": "Class: `RecordableHistogram extends Histogram`", + "label": "RecordableHistogram extends Histogram", + "apiSymbol": "RecordableHistogram extends Histogram", + "depth": 1, + "scope": "api", + "anchor": "class-recordablehistogram-extends-histogram", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:07074b77fe50", + "chapter": "perf_hooks", + "kind": "module", + "name": "measuring_how_long_the_`net.connect`_(only_for_tcp)_takes_when_the_connection_is_successful", + "signature": "Measuring how long the `net.connect` (only for TCP) takes when the connection is successful", + "label": "Measuring how long the net.connect (only for TCP) takes when the connection is successful", + "apiSymbol": "net.connect", + "depth": 2, + "scope": "api", + "anchor": "measuring-how-long-the-netconnect-only-for-tcp-takes-when-the-connection-is-successful", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:30eb4343b866", + "chapter": "perf_hooks", + "kind": "method", + "name": "add", + "signature": "`histogram.add(other)`", + "label": "histogram.add(other)", + "apiSymbol": "histogram.add", + "depth": 2, + "scope": "api", + "anchor": "histogramaddother", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:267107123ca7", + "chapter": "perf_hooks", + "kind": "method", + "name": "record", + "signature": "`histogram.record(val)`", + "label": "histogram.record(val)", + "apiSymbol": "histogram.record", + "depth": 2, + "scope": "api", + "anchor": "histogramrecordval", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:f8d7c36f7da0", + "chapter": "perf_hooks", + "kind": "method", + "name": "recordDelta", + "signature": "`histogram.recordDelta()`", + "label": "histogram.recordDelta()", + "apiSymbol": "histogram.recordDelta", + "depth": 2, + "scope": "api", + "anchor": "histogramrecorddelta", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:5ac562207ef9", + "chapter": "perf_hooks", + "kind": "method", + "name": "createHistogram", + "signature": "`perf_hooks.createHistogram([options])`", + "label": "perf_hooks.createHistogram([options])", + "apiSymbol": "perf_hooks.createHistogram", + "depth": 1, + "scope": "api", + "anchor": "perf_hookscreatehistogramoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:0136161053c0", + "chapter": "perf_hooks", + "kind": "method", + "name": "eventLoopUtilization", + "signature": "`perf_hooks.eventLoopUtilization([utilization1[, utilization2]])`", + "label": "perf_hooks.eventLoopUtilization([utilization1[, utilization2]])", + "apiSymbol": "perf_hooks.eventLoopUtilization", + "depth": 1, + "scope": "api", + "anchor": "perf_hookseventlooputilizationutilization1-utilization2", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:27f1f7b9e14c", + "chapter": "perf_hooks", + "kind": "method", + "name": "monitorEventLoopDelay", + "signature": "`perf_hooks.monitorEventLoopDelay([options])`", + "label": "perf_hooks.monitorEventLoopDelay([options])", + "apiSymbol": "perf_hooks.monitorEventLoopDelay", + "depth": 1, + "scope": "api", + "anchor": "perf_hooksmonitoreventloopdelayoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "perf_hooks:4206c46535f1", + "chapter": "perf_hooks", + "kind": "method", + "name": "timerify", + "signature": "`perf_hooks.timerify(fn[, options])`", + "label": "perf_hooks.timerify(fn[, options])", + "apiSymbol": "perf_hooks.timerify", + "depth": 1, + "scope": "api", + "anchor": "perf_hookstimerifyfn-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:365d16e00243", + "chapter": "perf_hooks", + "kind": "section", + "name": "performance", + "signature": "`perf_hooks.performance`", + "label": "perf_hooks.performance", + "apiSymbol": "perf_hooks.performance", + "depth": 1, + "scope": "api", + "anchor": "perf_hooksperformance", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "perf_hooks:67ebe1e4ba9c", + "chapter": "perf_hooks", + "kind": "method", + "name": "clearMarks", + "signature": "`performance.clearMarks([name])`", + "label": "performance.clearMarks([name])", + "apiSymbol": "performance.clearMarks", + "depth": 2, + "scope": "api", + "anchor": "performanceclearmarksname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "perf_hooks:ca44c25d7a70", + "chapter": "perf_hooks", + "kind": "method", + "name": "clearMeasures", + "signature": "`performance.clearMeasures([name])`", + "label": "performance.clearMeasures([name])", + "apiSymbol": "performance.clearMeasures", + "depth": 2, + "scope": "api", + "anchor": "performanceclearmeasuresname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "perf_hooks:8f190a1347fe", + "chapter": "perf_hooks", + "kind": "method", + "name": "clearResourceTimings", + "signature": "`performance.clearResourceTimings([name])`", + "label": "performance.clearResourceTimings([name])", + "apiSymbol": "performance.clearResourceTimings", + "depth": 2, + "scope": "api", + "anchor": "performanceclearresourcetimingsname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:735d19d562d1", + "chapter": "perf_hooks", + "kind": "method", + "name": "eventLoopUtilization", + "signature": "`performance.eventLoopUtilization([utilization1[, utilization2]])`", + "label": "performance.eventLoopUtilization([utilization1[, utilization2]])", + "apiSymbol": "performance.eventLoopUtilization", + "depth": 2, + "scope": "api", + "anchor": "performanceeventlooputilizationutilization1-utilization2", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:834e850aa638", + "chapter": "perf_hooks", + "kind": "method", + "name": "getEntries", + "signature": "`performance.getEntries()`", + "label": "performance.getEntries()", + "apiSymbol": "performance.getEntries", + "depth": 2, + "scope": "api", + "anchor": "performancegetentries", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "perf_hooks:adba0675b69d", + "chapter": "perf_hooks", + "kind": "method", + "name": "getEntriesByName", + "signature": "`performance.getEntriesByName(name[, type])`", + "label": "performance.getEntriesByName(name[, type])", + "apiSymbol": "performance.getEntriesByName", + "depth": 2, + "scope": "api", + "anchor": "performancegetentriesbynamename-type", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "perf_hooks:ca511f7b8904", + "chapter": "perf_hooks", + "kind": "method", + "name": "getEntriesByType", + "signature": "`performance.getEntriesByType(type)`", + "label": "performance.getEntriesByType(type)", + "apiSymbol": "performance.getEntriesByType", + "depth": 2, + "scope": "api", + "anchor": "performancegetentriesbytypetype", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "perf_hooks:6d1b45a380e6", + "chapter": "perf_hooks", + "kind": "method", + "name": "mark", + "signature": "`performance.mark(name[, options])`", + "label": "performance.mark(name[, options])", + "apiSymbol": "performance.mark", + "depth": 2, + "scope": "api", + "anchor": "performancemarkname-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "perf_hooks:15fb662408d8", + "chapter": "perf_hooks", + "kind": "method", + "name": "markResourceTiming", + "signature": "`performance.markResourceTiming(timingInfo, requestedUrl, initiatorType, global, cacheMode, bodyInfo, responseStatus[, deliveryType])`", + "label": "performance.markResourceTiming(timingInfo, requestedUrl, initiatorType, global, cacheMode, bodyInfo, responseStatus[, deliveryType])", + "apiSymbol": "performance.markResourceTiming", + "depth": 2, + "scope": "api", + "anchor": "performancemarkresourcetimingtiminginfo-requestedurl-initiatortype-global-cachemode-bodyinfo-responsestatus-deliverytype", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:e9b9911539c4", + "chapter": "perf_hooks", + "kind": "method", + "name": "measure", + "signature": "`performance.measure(name[, startMarkOrOptions[, endMark]])`", + "label": "performance.measure(name[, startMarkOrOptions[, endMark]])", + "apiSymbol": "performance.measure", + "depth": 2, + "scope": "api", + "anchor": "performancemeasurename-startmarkoroptions-endmark", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "perf_hooks:7ba42a060d45", + "chapter": "perf_hooks", + "kind": "method", + "name": "now", + "signature": "`performance.now()`", + "label": "performance.now()", + "apiSymbol": "performance.now", + "depth": 2, + "scope": "api", + "anchor": "performancenow", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "perf_hooks:0357d07f7536", + "chapter": "perf_hooks", + "kind": "method", + "name": "setResourceTimingBufferSize", + "signature": "`performance.setResourceTimingBufferSize(maxSize)`", + "label": "performance.setResourceTimingBufferSize(maxSize)", + "apiSymbol": "performance.setResourceTimingBufferSize", + "depth": 2, + "scope": "api", + "anchor": "performancesetresourcetimingbuffersizemaxsize", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:0b0a81d5c467", + "chapter": "perf_hooks", + "kind": "method", + "name": "timerify", + "signature": "`performance.timerify(fn[, options])`", + "label": "performance.timerify(fn[, options])", + "apiSymbol": "performance.timerify", + "depth": 2, + "scope": "api", + "anchor": "performancetimerifyfn-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:d1920dadd6ca", + "chapter": "perf_hooks", + "kind": "method", + "name": "toJSON", + "signature": "`performance.toJSON()`", + "label": "performance.toJSON()", + "apiSymbol": "performance.toJSON", + "depth": 2, + "scope": "api", + "anchor": "performancetojson", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "perf_hooks:c71a0c677e9c", + "chapter": "perf_hooks", + "kind": "event", + "name": "resourcetimingbufferfull", + "signature": "Event: `'resourcetimingbufferfull'`", + "label": "'resourcetimingbufferfull'", + "apiSymbol": "'resourcetimingbufferfull'", + "depth": 3, + "scope": "api", + "anchor": "event-resourcetimingbufferfull", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:a959c69d3aa6", + "chapter": "perf_hooks", + "kind": "PerformanceNodeTiming", + "name": "Type", + "signature": "`nodeTiming` Type: {PerformanceNodeTiming}", + "label": "nodeTiming", + "apiSymbol": "nodeTiming", + "depth": 2, + "scope": "api", + "anchor": "perf_hooksperformance", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "perf_hooks:dd1c2a558f83", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`timeOrigin` Type: {number}", + "label": "timeOrigin", + "apiSymbol": "timeOrigin", + "depth": 2, + "scope": "api", + "anchor": "perf_hooksperformance", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "permissions:0650a46e1dd9", + "chapter": "permissions", + "kind": "module", + "name": "permissions", + "signature": "Permissions", + "label": "Permissions", + "apiSymbol": "permissions", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + } + }, + { + "id": "permissions:4dd8a89338eb", + "chapter": "permissions", + "kind": "method", + "name": "has", + "signature": "`permission.has(scope[, reference])`", + "label": "permission.has(scope[, reference])", + "apiSymbol": "permission.has", + "depth": 1, + "scope": "api", + "anchor": "permissionhasscope-reference", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "permissions:bd6544e08561", + "chapter": "permissions", + "kind": "module", + "name": "using_the_permission_model_with_`npx`", + "signature": "Using the Permission Model with `npx`", + "label": "Using the Permission Model with npx", + "apiSymbol": "npx", + "depth": 1, + "scope": "api", + "anchor": "using-the-permission-model-with-npx", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "process:77c102769649", + "chapter": "process", + "kind": "global", + "name": "Process", + "signature": "Process", + "label": "Process", + "apiSymbol": "Process", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + }, + "dynamic": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + } + }, + { + "id": "process:35e516c63f70", + "chapter": "process", + "kind": "event", + "name": "beforeExit", + "signature": "Event: `'beforeExit'`", + "label": "'beforeExit'", + "apiSymbol": "'beforeExit'", + "depth": 1, + "scope": "api", + "anchor": "event-beforeexit", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:b0f5287073cf", + "chapter": "process", + "kind": "event", + "name": "disconnect", + "signature": "Event: `'disconnect'`", + "label": "'disconnect'", + "apiSymbol": "'disconnect'", + "depth": 1, + "scope": "api", + "anchor": "event-disconnect", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:72cf959b8403", + "chapter": "process", + "kind": "event", + "name": "exit", + "signature": "Event: `'exit'`", + "label": "'exit'", + "apiSymbol": "'exit'", + "depth": 1, + "scope": "api", + "anchor": "event-exit", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:27fb6582a846", + "chapter": "process", + "kind": "event", + "name": "message", + "signature": "Event: `'message'`", + "label": "'message'", + "apiSymbol": "'message'", + "depth": 1, + "scope": "api", + "anchor": "event-message", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:3b70d5c09855", + "chapter": "process", + "kind": "event", + "name": "multipleResolves", + "signature": "Event: `'multipleResolves'`", + "label": "'multipleResolves'", + "apiSymbol": "'multipleResolves'", + "depth": 1, + "scope": "api", + "anchor": "event-multipleresolves", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:69641ca3039c", + "chapter": "process", + "kind": "event", + "name": "rejectionHandled", + "signature": "Event: `'rejectionHandled'`", + "label": "'rejectionHandled'", + "apiSymbol": "'rejectionHandled'", + "depth": 1, + "scope": "api", + "anchor": "event-rejectionhandled", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:62913d9ef0c3", + "chapter": "process", + "kind": "event", + "name": "workerMessage", + "signature": "Event: `'workerMessage'`", + "label": "'workerMessage'", + "apiSymbol": "'workerMessage'", + "depth": 1, + "scope": "api", + "anchor": "event-workermessage", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:fe4823c86d0f", + "chapter": "process", + "kind": "event", + "name": "uncaughtException", + "signature": "Event: `'uncaughtException'`", + "label": "'uncaughtException'", + "apiSymbol": "'uncaughtException'", + "depth": 1, + "scope": "api", + "anchor": "event-uncaughtexception", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:4192abfa1680", + "chapter": "process", + "kind": "module", + "name": "warning:_using_`'uncaughtexception'`_correctly", + "signature": "Warning: Using `'uncaughtException'` correctly", + "label": "Warning: Using 'uncaughtException' correctly", + "apiSymbol": "'uncaughtException'", + "depth": 2, + "scope": "api", + "anchor": "warning-using-uncaughtexception-correctly", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:24d8fbedbbf8", + "chapter": "process", + "kind": "event", + "name": "uncaughtExceptionMonitor", + "signature": "Event: `'uncaughtExceptionMonitor'`", + "label": "'uncaughtExceptionMonitor'", + "apiSymbol": "'uncaughtExceptionMonitor'", + "depth": 1, + "scope": "api", + "anchor": "event-uncaughtexceptionmonitor", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:452b05938836", + "chapter": "process", + "kind": "event", + "name": "unhandledRejection", + "signature": "Event: `'unhandledRejection'`", + "label": "'unhandledRejection'", + "apiSymbol": "'unhandledRejection'", + "depth": 1, + "scope": "api", + "anchor": "event-unhandledrejection", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:67c924429a6f", + "chapter": "process", + "kind": "event", + "name": "warning", + "signature": "Event: `'warning'`", + "label": "'warning'", + "apiSymbol": "'warning'", + "depth": 1, + "scope": "api", + "anchor": "event-warning", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:c506d49acae3", + "chapter": "process", + "kind": "event", + "name": "worker", + "signature": "Event: `'worker'`", + "label": "'worker'", + "apiSymbol": "'worker'", + "depth": 1, + "scope": "api", + "anchor": "event-worker", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:6fc19fe2dfff", + "chapter": "process", + "kind": "event", + "name": "SIGINT, SIGHUP, etc.", + "signature": "Signal events", + "label": "Signal events", + "apiSymbol": "SIGINT, SIGHUP, etc.", + "depth": 1, + "scope": "api", + "anchor": "signal-events", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:8d640b9ad0b7", + "chapter": "process", + "kind": "method", + "name": "abort", + "signature": "`process.abort()`", + "label": "process.abort()", + "apiSymbol": "process.abort", + "depth": 1, + "scope": "api", + "anchor": "processabort", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:7cba06bed67c", + "chapter": "process", + "kind": "method", + "name": "availableMemory", + "signature": "`process.availableMemory()`", + "label": "process.availableMemory()", + "apiSymbol": "process.availableMemory", + "depth": 1, + "scope": "api", + "anchor": "processavailablememory", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:eacade82f5f8", + "chapter": "process", + "kind": "method", + "name": "chdir", + "signature": "`process.chdir(directory)`", + "label": "process.chdir(directory)", + "apiSymbol": "process.chdir", + "depth": 1, + "scope": "api", + "anchor": "processchdirdirectory", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:0d24a9d09ee6", + "chapter": "process", + "kind": "method", + "name": "constrainedMemory", + "signature": "`process.constrainedMemory()`", + "label": "process.constrainedMemory()", + "apiSymbol": "process.constrainedMemory", + "depth": 1, + "scope": "api", + "anchor": "processconstrainedmemory", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:b1e81b4d41d4", + "chapter": "process", + "kind": "method", + "name": "cpuUsage", + "signature": "`process.cpuUsage([previousValue])`", + "label": "process.cpuUsage([previousValue])", + "apiSymbol": "process.cpuUsage", + "depth": 1, + "scope": "api", + "anchor": "processcpuusagepreviousvalue", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:836674d28ad5", + "chapter": "process", + "kind": "method", + "name": "cwd", + "signature": "`process.cwd()`", + "label": "process.cwd()", + "apiSymbol": "process.cwd", + "depth": 1, + "scope": "api", + "anchor": "processcwd", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "process:bf56eccae064", + "chapter": "process", + "kind": "method", + "name": "disconnect", + "signature": "`process.disconnect()`", + "label": "process.disconnect()", + "apiSymbol": "process.disconnect", + "depth": 1, + "scope": "api", + "anchor": "processdisconnect", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:806e8042338f", + "chapter": "process", + "kind": "method", + "name": "dlopen", + "signature": "`process.dlopen(module, filename[, flags])`", + "label": "process.dlopen(module, filename[, flags])", + "apiSymbol": "process.dlopen", + "depth": 1, + "scope": "api", + "anchor": "processdlopenmodule-filename-flags", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:1116fdf74cbe", + "chapter": "process", + "kind": "method", + "name": "emitWarning", + "signature": "`process.emitWarning(warning[, options])`", + "label": "process.emitWarning(warning[, options])", + "apiSymbol": "process.emitWarning", + "depth": 1, + "scope": "api", + "anchor": "processemitwarningwarning-options", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "process:bf6d1d5f3dd8", + "chapter": "process", + "kind": "method", + "name": "emitWarning", + "signature": "`process.emitWarning(warning[, type[, code]][, ctor])`", + "label": "process.emitWarning(warning[, type[, code]][, ctor])", + "apiSymbol": "process.emitWarning", + "depth": 1, + "scope": "api", + "anchor": "processemitwarningwarning-type-code-ctor", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "process:719a0ed0af87", + "chapter": "process", + "kind": "method", + "name": "execve", + "signature": "`process.execve(file[, args[, env]])`", + "label": "process.execve(file[, args[, env]])", + "apiSymbol": "process.execve", + "depth": 1, + "scope": "api", + "anchor": "processexecvefile-args-env", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:e8f9659de16e", + "chapter": "process", + "kind": "method", + "name": "exit", + "signature": "`process.exit([code])`", + "label": "process.exit([code])", + "apiSymbol": "process.exit", + "depth": 1, + "scope": "api", + "anchor": "processexitcode", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "process:a6f598a1c566", + "chapter": "process", + "kind": "method", + "name": "register", + "signature": "`process.finalization.register(ref, callback)`", + "label": "process.finalization.register(ref, callback)", + "apiSymbol": "process.finalization.register", + "depth": 1, + "scope": "api", + "anchor": "processfinalizationregisterref-callback", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active Development", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:4b498051c24f", + "chapter": "process", + "kind": "method", + "name": "registerBeforeExit", + "signature": "`process.finalization.registerBeforeExit(ref, callback)`", + "label": "process.finalization.registerBeforeExit(ref, callback)", + "apiSymbol": "process.finalization.registerBeforeExit", + "depth": 1, + "scope": "api", + "anchor": "processfinalizationregisterbeforeexitref-callback", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active Development", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:fc35596874de", + "chapter": "process", + "kind": "method", + "name": "unregister", + "signature": "`process.finalization.unregister(ref)`", + "label": "process.finalization.unregister(ref)", + "apiSymbol": "process.finalization.unregister", + "depth": 1, + "scope": "api", + "anchor": "processfinalizationunregisterref", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active Development", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:b00f553355c5", + "chapter": "process", + "kind": "method", + "name": "getActiveResourcesInfo", + "signature": "`process.getActiveResourcesInfo()`", + "label": "process.getActiveResourcesInfo()", + "apiSymbol": "process.getActiveResourcesInfo", + "depth": 1, + "scope": "api", + "anchor": "processgetactiveresourcesinfo", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:02183ce5cd8f", + "chapter": "process", + "kind": "method", + "name": "getBuiltinModule", + "signature": "`process.getBuiltinModule(id)`", + "label": "process.getBuiltinModule(id)", + "apiSymbol": "process.getBuiltinModule", + "depth": 1, + "scope": "api", + "anchor": "processgetbuiltinmoduleid", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:93f1bc4a95e7", + "chapter": "process", + "kind": "method", + "name": "getegid", + "signature": "`process.getegid()`", + "label": "process.getegid()", + "apiSymbol": "process.getegid", + "depth": 1, + "scope": "api", + "anchor": "processgetegid", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:ca846708fed7", + "chapter": "process", + "kind": "method", + "name": "geteuid", + "signature": "`process.geteuid()`", + "label": "process.geteuid()", + "apiSymbol": "process.geteuid", + "depth": 1, + "scope": "api", + "anchor": "processgeteuid", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:1b4287e4083a", + "chapter": "process", + "kind": "method", + "name": "getgid", + "signature": "`process.getgid()`", + "label": "process.getgid()", + "apiSymbol": "process.getgid", + "depth": 1, + "scope": "api", + "anchor": "processgetgid", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:d29ab25c5c2e", + "chapter": "process", + "kind": "method", + "name": "getgroups", + "signature": "`process.getgroups()`", + "label": "process.getgroups()", + "apiSymbol": "process.getgroups", + "depth": 1, + "scope": "api", + "anchor": "processgetgroups", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:6517dbbd362e", + "chapter": "process", + "kind": "method", + "name": "getuid", + "signature": "`process.getuid()`", + "label": "process.getuid()", + "apiSymbol": "process.getuid", + "depth": 1, + "scope": "api", + "anchor": "processgetuid", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:c223b1037286", + "chapter": "process", + "kind": "method", + "name": "hasUncaughtExceptionCaptureCallback", + "signature": "`process.hasUncaughtExceptionCaptureCallback()`", + "label": "process.hasUncaughtExceptionCaptureCallback()", + "apiSymbol": "process.hasUncaughtExceptionCaptureCallback", + "depth": 1, + "scope": "api", + "anchor": "processhasuncaughtexceptioncapturecallback", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:edfbcd0bc504", + "chapter": "process", + "kind": "method", + "name": "hrtime", + "signature": "`process.hrtime([time])`", + "label": "process.hrtime([time])", + "apiSymbol": "process.hrtime", + "depth": 1, + "scope": "api", + "anchor": "processhrtimetime", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy. Use [`process.hrtime.bigint()`][] instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "process:c80c699d0d2e", + "chapter": "process", + "kind": "method", + "name": "bigint", + "signature": "`process.hrtime.bigint()`", + "label": "process.hrtime.bigint()", + "apiSymbol": "process.hrtime.bigint", + "depth": 1, + "scope": "api", + "anchor": "processhrtimebigint", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:c00a10882035", + "chapter": "process", + "kind": "method", + "name": "initgroups", + "signature": "`process.initgroups(user, extraGroup)`", + "label": "process.initgroups(user, extraGroup)", + "apiSymbol": "process.initgroups", + "depth": 1, + "scope": "api", + "anchor": "processinitgroupsuser-extragroup", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:927e53713d32", + "chapter": "process", + "kind": "method", + "name": "kill", + "signature": "`process.kill(pid[, signal])`", + "label": "process.kill(pid[, signal])", + "apiSymbol": "process.kill", + "depth": 1, + "scope": "api", + "anchor": "processkillpid-signal", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:488ec362cb48", + "chapter": "process", + "kind": "method", + "name": "loadEnvFile", + "signature": "`process.loadEnvFile(path)`", + "label": "process.loadEnvFile(path)", + "apiSymbol": "process.loadEnvFile", + "depth": 1, + "scope": "api", + "anchor": "processloadenvfilepath", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:1628d0513814", + "chapter": "process", + "kind": "method", + "name": "memoryUsage", + "signature": "`process.memoryUsage()`", + "label": "process.memoryUsage()", + "apiSymbol": "process.memoryUsage", + "depth": 1, + "scope": "api", + "anchor": "processmemoryusage", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "process:75d02abb6b3f", + "chapter": "process", + "kind": "method", + "name": "rss", + "signature": "`process.memoryUsage.rss()`", + "label": "process.memoryUsage.rss()", + "apiSymbol": "process.memoryUsage.rss", + "depth": 1, + "scope": "api", + "anchor": "processmemoryusagerss", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:0339b6b70128", + "chapter": "process", + "kind": "method", + "name": "nextTick", + "signature": "`process.nextTick(callback[, ...args])`", + "label": "process.nextTick(callback[, ...args])", + "apiSymbol": "process.nextTick", + "depth": 1, + "scope": "api", + "anchor": "processnexttickcallback-args", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use [`queueMicrotask()`][] instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "process:af246c4881bd", + "chapter": "process", + "kind": "module", + "name": "when_to_use_`queuemicrotask()`_vs._`process.nexttick()`", + "signature": "When to use `queueMicrotask()` vs. `process.nextTick()`", + "label": "When to use queueMicrotask() vs. process.nextTick()", + "apiSymbol": "queueMicrotask", + "depth": 2, + "scope": "api", + "anchor": "when-to-use-queuemicrotask-vs-processnexttick", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use [`queueMicrotask()`][] instead.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:7156b34d562d", + "chapter": "process", + "kind": "method", + "name": "ref", + "signature": "`process.ref(maybeRefable)`", + "label": "process.ref(maybeRefable)", + "apiSymbol": "process.ref", + "depth": 1, + "scope": "api", + "anchor": "processrefmayberefable", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:b49c4a057d0f", + "chapter": "process", + "kind": "method", + "name": "resourceUsage", + "signature": "`process.resourceUsage()`", + "label": "process.resourceUsage()", + "apiSymbol": "process.resourceUsage", + "depth": 1, + "scope": "api", + "anchor": "processresourceusage", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:735851a82d2f", + "chapter": "process", + "kind": "method", + "name": "send", + "signature": "`process.send(message[, sendHandle[, options]][, callback])`", + "label": "process.send(message[, sendHandle[, options]][, callback])", + "apiSymbol": "process.send", + "depth": 1, + "scope": "api", + "anchor": "processsendmessage-sendhandle-options-callback", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:59962add91ed", + "chapter": "process", + "kind": "method", + "name": "setegid", + "signature": "`process.setegid(id)`", + "label": "process.setegid(id)", + "apiSymbol": "process.setegid", + "depth": 1, + "scope": "api", + "anchor": "processsetegidid", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:f90d2e42d287", + "chapter": "process", + "kind": "method", + "name": "seteuid", + "signature": "`process.seteuid(id)`", + "label": "process.seteuid(id)", + "apiSymbol": "process.seteuid", + "depth": 1, + "scope": "api", + "anchor": "processseteuidid", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:0cf3ff25fa53", + "chapter": "process", + "kind": "method", + "name": "setgid", + "signature": "`process.setgid(id)`", + "label": "process.setgid(id)", + "apiSymbol": "process.setgid", + "depth": 1, + "scope": "api", + "anchor": "processsetgidid", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:e648a86675b4", + "chapter": "process", + "kind": "method", + "name": "setgroups", + "signature": "`process.setgroups(groups)`", + "label": "process.setgroups(groups)", + "apiSymbol": "process.setgroups", + "depth": 1, + "scope": "api", + "anchor": "processsetgroupsgroups", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:907f567aa3c8", + "chapter": "process", + "kind": "method", + "name": "setuid", + "signature": "`process.setuid(id)`", + "label": "process.setuid(id)", + "apiSymbol": "process.setuid", + "depth": 1, + "scope": "api", + "anchor": "processsetuidid", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:4a17014e054c", + "chapter": "process", + "kind": "method", + "name": "setSourceMapsEnabled", + "signature": "`process.setSourceMapsEnabled(val)`", + "label": "process.setSourceMapsEnabled(val)", + "apiSymbol": "process.setSourceMapsEnabled", + "depth": 1, + "scope": "api", + "anchor": "processsetsourcemapsenabledval", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental: Use [`module.setSourceMapsSupport()`][] instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:7ef00d9dc202", + "chapter": "process", + "kind": "method", + "name": "setUncaughtExceptionCaptureCallback", + "signature": "`process.setUncaughtExceptionCaptureCallback(fn)`", + "label": "process.setUncaughtExceptionCaptureCallback(fn)", + "apiSymbol": "process.setUncaughtExceptionCaptureCallback", + "depth": 1, + "scope": "api", + "anchor": "processsetuncaughtexceptioncapturecallbackfn", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:3253f599da6b", + "chapter": "process", + "kind": "method", + "name": "threadCpuUsage", + "signature": "`process.threadCpuUsage([previousValue])`", + "label": "process.threadCpuUsage([previousValue])", + "apiSymbol": "process.threadCpuUsage", + "depth": 1, + "scope": "api", + "anchor": "processthreadcpuusagepreviousvalue", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:d8423d1fb7be", + "chapter": "process", + "kind": "method", + "name": "umask", + "signature": "`process.umask()`", + "label": "process.umask()", + "apiSymbol": "process.umask", + "depth": 1, + "scope": "api", + "anchor": "processumask", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. Calling `process.umask()` with no argument causes the process-wide umask to be written twice. This introduces a race condition between threads, and is a potential security vulnerability. There is no safe, cross-platform alternative API.", + "inherited": false + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "process:af23e255f9f6", + "chapter": "process", + "kind": "method", + "name": "umask", + "signature": "`process.umask(mask)`", + "label": "process.umask(mask)", + "apiSymbol": "process.umask", + "depth": 1, + "scope": "api", + "anchor": "processumaskmask", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "process:d3ae54961935", + "chapter": "process", + "kind": "method", + "name": "unref", + "signature": "`process.unref(maybeRefable)`", + "label": "process.unref(maybeRefable)", + "apiSymbol": "process.unref", + "depth": 1, + "scope": "api", + "anchor": "processunrefmayberefable", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:be357affe05a", + "chapter": "process", + "kind": "method", + "name": "uptime", + "signature": "`process.uptime()`", + "label": "process.uptime()", + "apiSymbol": "process.uptime", + "depth": 1, + "scope": "api", + "anchor": "processuptime", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "process:c6accb058068", + "chapter": "process", + "kind": "Set", + "name": "Type", + "signature": "`allowedNodeEnvironmentFlags` Type: {Set}", + "label": "allowedNodeEnvironmentFlags", + "apiSymbol": "allowedNodeEnvironmentFlags", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "process:2063d6c1662d", + "chapter": "process", + "kind": "string", + "name": "Type", + "signature": "`arch` Type: {string}", + "label": "arch", + "apiSymbol": "arch", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:f0366557e058", + "chapter": "process", + "kind": "string\\[]", + "name": "Type", + "signature": "`argv` Type: {string\\[]}", + "label": "argv", + "apiSymbol": "argv", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "process:acc7519bee11", + "chapter": "process", + "kind": "string", + "name": "Type", + "signature": "`argv0` Type: {string}", + "label": "argv0", + "apiSymbol": "argv0", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "process:4ddaea2b8513", + "chapter": "process", + "kind": "Object", + "name": "Type", + "signature": "`channel` Type: {Object}", + "label": "channel", + "apiSymbol": "channel", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:f4e71050f610", + "chapter": "process", + "kind": "method", + "name": "ref", + "signature": "`process.channel.ref()`", + "label": "process.channel.ref()", + "apiSymbol": "process.channel.ref", + "depth": 2, + "scope": "api", + "anchor": "processchannelref", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:55afa1254a1f", + "chapter": "process", + "kind": "method", + "name": "unref", + "signature": "`process.channel.unref()`", + "label": "process.channel.unref()", + "apiSymbol": "process.channel.unref", + "depth": 2, + "scope": "api", + "anchor": "processchannelunref", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:cfa31d3f878d", + "chapter": "process", + "kind": "Object", + "name": "Type", + "signature": "`config` Type: {Object}", + "label": "config", + "apiSymbol": "config", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "process:d1c564e89314", + "chapter": "process", + "kind": "boolean", + "name": "Type", + "signature": "`connected` Type: {boolean}", + "label": "connected", + "apiSymbol": "connected", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:e8feb5eba4d8", + "chapter": "process", + "kind": "number", + "name": "Type", + "signature": "`debugPort` Type: {number}", + "label": "debugPort", + "apiSymbol": "debugPort", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:8a44c7d74c80", + "chapter": "process", + "kind": "Object", + "name": "Type", + "signature": "`env` Type: {Object}", + "label": "env", + "apiSymbol": "env", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "process:c355c6919e2d", + "chapter": "process", + "kind": "string\\[]", + "name": "Type", + "signature": "`execArgv` Type: {string\\[]}", + "label": "execArgv", + "apiSymbol": "execArgv", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "process:da12c880f318", + "chapter": "process", + "kind": "string", + "name": "Type", + "signature": "`execPath` Type: {string}", + "label": "execPath", + "apiSymbol": "execPath", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "process:9b2ad777201c", + "chapter": "process", + "kind": "integer|string|null|undefined", + "name": "Type", + "signature": "`exitCode` Type: {integer|string|null|undefined} The exit code. For string type, only integer strings (e.g.,'1') are allowed. **Default:** `undefined`.", + "label": "exitCode", + "apiSymbol": "exitCode", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "process:b8e0da5ae951", + "chapter": "process", + "kind": "boolean", + "name": "Type", + "signature": "`cached_builtins` Type: {boolean}", + "label": "cached_builtins", + "apiSymbol": "cached_builtins", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:9d635f1c82b0", + "chapter": "process", + "kind": "boolean", + "name": "Type", + "signature": "`debug` Type: {boolean}", + "label": "debug", + "apiSymbol": "debug", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:4190cdc13f5c", + "chapter": "process", + "kind": "boolean", + "name": "Type", + "signature": "`inspector` Type: {boolean}", + "label": "inspector", + "apiSymbol": "inspector", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:809a2c908877", + "chapter": "process", + "kind": "boolean", + "name": "Type", + "signature": "`ipv6` Type: {boolean}", + "label": "ipv6", + "apiSymbol": "ipv6", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. This property is always true, and any checks based on it are redundant.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:7f4530bc2b2a", + "chapter": "process", + "kind": "boolean", + "name": "Type", + "signature": "`require_module` Type: {boolean}", + "label": "require_module", + "apiSymbol": "require_module", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:07dd979d3559", + "chapter": "process", + "kind": "boolean", + "name": "Type", + "signature": "`tls` Type: {boolean}", + "label": "tls", + "apiSymbol": "tls", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:6baf4965ec21", + "chapter": "process", + "kind": "boolean", + "name": "Type", + "signature": "`tls_alpn` Type: {boolean}", + "label": "tls_alpn", + "apiSymbol": "tls_alpn", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. Use `process.features.tls` instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:db664d25fae7", + "chapter": "process", + "kind": "boolean", + "name": "Type", + "signature": "`tls_ocsp` Type: {boolean}", + "label": "tls_ocsp", + "apiSymbol": "tls_ocsp", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. Use `process.features.tls` instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:b70cdad80190", + "chapter": "process", + "kind": "boolean", + "name": "Type", + "signature": "`tls_sni` Type: {boolean}", + "label": "tls_sni", + "apiSymbol": "tls_sni", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. Use `process.features.tls` instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:6ecacf575a3a", + "chapter": "process", + "kind": "boolean|string", + "name": "Type", + "signature": "`typescript` Type: {boolean|string}", + "label": "typescript", + "apiSymbol": "typescript", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:0a8e5d146af4", + "chapter": "process", + "kind": "boolean", + "name": "Type", + "signature": "`uv` Type: {boolean}", + "label": "uv", + "apiSymbol": "uv", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. This property is always true, and any checks based on it are redundant.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:6f0743ca803a", + "chapter": "process", + "kind": "Object", + "name": "Type", + "signature": "`mainModule` Type: {Object}", + "label": "mainModule", + "apiSymbol": "mainModule", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Use [`require.main`][] instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:3f5ccb4aceaf", + "chapter": "process", + "kind": "boolean", + "name": "Type", + "signature": "`noDeprecation` Type: {boolean}", + "label": "noDeprecation", + "apiSymbol": "noDeprecation", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:4ff8994c4fb3", + "chapter": "process", + "kind": "Object", + "name": "Type", + "signature": "`permission` Type: {Object}", + "label": "permission", + "apiSymbol": "permission", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:d7fdff6a41a9", + "chapter": "process", + "kind": "method", + "name": "has", + "signature": "`process.permission.has(scope[, reference])`", + "label": "process.permission.has(scope[, reference])", + "apiSymbol": "process.permission.has", + "depth": 2, + "scope": "api", + "anchor": "processpermissionhasscope-reference", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:0fbc1d44adb8", + "chapter": "process", + "kind": "integer", + "name": "Type", + "signature": "`pid` Type: {integer}", + "label": "pid", + "apiSymbol": "pid", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "process:cd0885b5dab6", + "chapter": "process", + "kind": "string", + "name": "Type", + "signature": "`platform` Type: {string}", + "label": "platform", + "apiSymbol": "platform", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "process:e999004ba6cc", + "chapter": "process", + "kind": "integer", + "name": "Type", + "signature": "`ppid` Type: {integer}", + "label": "ppid", + "apiSymbol": "ppid", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "process:a4ee516257d8", + "chapter": "process", + "kind": "Object", + "name": "Type", + "signature": "`release` Type: {Object}", + "label": "release", + "apiSymbol": "release", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "process:8f7cfb3c1938", + "chapter": "process", + "kind": "Object", + "name": "Type", + "signature": "`report` Type: {Object}", + "label": "report", + "apiSymbol": "report", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:cce279ccf61c", + "chapter": "process", + "kind": "method", + "name": "getReport", + "signature": "`process.report.getReport([err])`", + "label": "process.report.getReport([err])", + "apiSymbol": "process.report.getReport", + "depth": 2, + "scope": "api", + "anchor": "processreportgetreporterr", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:c8884173e64e", + "chapter": "process", + "kind": "method", + "name": "writeReport", + "signature": "`process.report.writeReport([filename][, err])`", + "label": "process.report.writeReport([filename][, err])", + "apiSymbol": "process.report.writeReport", + "depth": 2, + "scope": "api", + "anchor": "processreportwritereportfilename-err", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:e0a42a44eb43", + "chapter": "process", + "kind": "boolean", + "name": "Type", + "signature": "`compact` Type: {boolean}", + "label": "compact", + "apiSymbol": "compact", + "depth": 2, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:2b76e23bd757", + "chapter": "process", + "kind": "string", + "name": "Type", + "signature": "`directory` Type: {string}", + "label": "directory", + "apiSymbol": "directory", + "depth": 2, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:e0ddf27fa39a", + "chapter": "process", + "kind": "string", + "name": "Type", + "signature": "`filename` Type: {string}", + "label": "filename", + "apiSymbol": "filename", + "depth": 2, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:f69cb0495e8f", + "chapter": "process", + "kind": "boolean", + "name": "Type", + "signature": "`reportOnFatalError` Type: {boolean}", + "label": "reportOnFatalError", + "apiSymbol": "reportOnFatalError", + "depth": 2, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:63758395b3f9", + "chapter": "process", + "kind": "boolean", + "name": "Type", + "signature": "`reportOnSignal` Type: {boolean}", + "label": "reportOnSignal", + "apiSymbol": "reportOnSignal", + "depth": 2, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:7fb3e0980e63", + "chapter": "process", + "kind": "boolean", + "name": "Type", + "signature": "`reportOnUncaughtException` Type: {boolean}", + "label": "reportOnUncaughtException", + "apiSymbol": "reportOnUncaughtException", + "depth": 2, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:4c2ef77e5295", + "chapter": "process", + "kind": "boolean", + "name": "Type", + "signature": "`excludeEnv` Type: {boolean}", + "label": "excludeEnv", + "apiSymbol": "excludeEnv", + "depth": 2, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:46cef7d9a40b", + "chapter": "process", + "kind": "string", + "name": "Type", + "signature": "`signal` Type: {string}", + "label": "signal", + "apiSymbol": "signal", + "depth": 2, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:a53b97f6fe5a", + "chapter": "process", + "kind": "boolean", + "name": "Type", + "signature": "`sourceMapsEnabled` Type: {boolean}", + "label": "sourceMapsEnabled", + "apiSymbol": "sourceMapsEnabled", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental: Use [`module.getSourceMapsSupport()`][] instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:2974f8887c0b", + "chapter": "process", + "kind": "Stream", + "name": "Type", + "signature": "`stderr` Type: {Stream}", + "label": "stderr", + "apiSymbol": "stderr", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "process:5aa32000609d", + "chapter": "process", + "kind": "number", + "name": "Type", + "signature": "`fd` Type: {number}", + "label": "fd", + "apiSymbol": "fd", + "depth": 2, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:6309e297b84b", + "chapter": "process", + "kind": "Stream", + "name": "Type", + "signature": "`stdin` Type: {Stream}", + "label": "stdin", + "apiSymbol": "stdin", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "process:5aa32000609d:2", + "chapter": "process", + "kind": "number", + "name": "Type", + "signature": "`fd` Type: {number}", + "label": "fd", + "apiSymbol": "fd", + "depth": 2, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:6c129c448850", + "chapter": "process", + "kind": "Stream", + "name": "Type", + "signature": "`stdout` Type: {Stream}", + "label": "stdout", + "apiSymbol": "stdout", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "process:5aa32000609d:3", + "chapter": "process", + "kind": "number", + "name": "Type", + "signature": "`fd` Type: {number}", + "label": "fd", + "apiSymbol": "fd", + "depth": 2, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:bc98f8b642f1", + "chapter": "process", + "kind": "boolean", + "name": "Type", + "signature": "`throwDeprecation` Type: {boolean}", + "label": "throwDeprecation", + "apiSymbol": "throwDeprecation", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:7752db6a3c21", + "chapter": "process", + "kind": "string", + "name": "Type", + "signature": "`title` Type: {string}", + "label": "title", + "apiSymbol": "title", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "process:2536f074b319", + "chapter": "process", + "kind": "boolean", + "name": "Type", + "signature": "`traceDeprecation` Type: {boolean}", + "label": "traceDeprecation", + "apiSymbol": "traceDeprecation", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:e5725270a76a", + "chapter": "process", + "kind": "boolean", + "name": "traceProcessWarnings", + "signature": "`traceProcessWarnings` {boolean}", + "label": "traceProcessWarnings", + "apiSymbol": "traceProcessWarnings", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "process:06e71bed1fb2", + "chapter": "process", + "kind": "string", + "name": "Type", + "signature": "`version` Type: {string}", + "label": "version", + "apiSymbol": "version", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "process:902174dc5fb1", + "chapter": "process", + "kind": "Object", + "name": "Type", + "signature": "`versions` Type: {Object}", + "label": "versions", + "apiSymbol": "versions", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "punycode:821d37f5d323", + "chapter": "punycode", + "kind": "module", + "name": "punycode", + "signature": "Punycode", + "label": "Punycode", + "apiSymbol": "punycode", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + }, + "dynamic": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + } + }, + { + "id": "punycode:a799f8d15dd0", + "chapter": "punycode", + "kind": "method", + "name": "decode", + "signature": "`punycode.decode(string)`", + "label": "punycode.decode(string)", + "apiSymbol": "punycode.decode", + "depth": 1, + "scope": "api", + "anchor": "punycodedecodestring", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "punycode:c4117618b851", + "chapter": "punycode", + "kind": "method", + "name": "encode", + "signature": "`punycode.encode(string)`", + "label": "punycode.encode(string)", + "apiSymbol": "punycode.encode", + "depth": 1, + "scope": "api", + "anchor": "punycodeencodestring", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "punycode:6eb8ba2fa294", + "chapter": "punycode", + "kind": "method", + "name": "toASCII", + "signature": "`punycode.toASCII(domain)`", + "label": "punycode.toASCII(domain)", + "apiSymbol": "punycode.toASCII", + "depth": 1, + "scope": "api", + "anchor": "punycodetoasciidomain", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "punycode:8f0a9f610831", + "chapter": "punycode", + "kind": "method", + "name": "toUnicode", + "signature": "`punycode.toUnicode(domain)`", + "label": "punycode.toUnicode(domain)", + "apiSymbol": "punycode.toUnicode", + "depth": 1, + "scope": "api", + "anchor": "punycodetounicodedomain", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "punycode:219a4fe955e9", + "chapter": "punycode", + "kind": "section", + "name": "ucs2", + "signature": "`punycode.ucs2`", + "label": "punycode.ucs2", + "apiSymbol": "punycode.ucs2", + "depth": 1, + "scope": "api", + "anchor": "punycodeucs2", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "punycode:71bbda2cf0e3", + "chapter": "punycode", + "kind": "method", + "name": "decode", + "signature": "`punycode.ucs2.decode(string)`", + "label": "punycode.ucs2.decode(string)", + "apiSymbol": "punycode.ucs2.decode", + "depth": 2, + "scope": "api", + "anchor": "punycodeucs2decodestring", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "punycode:f0a37edfde9c", + "chapter": "punycode", + "kind": "method", + "name": "encode", + "signature": "`punycode.ucs2.encode(codePoints)`", + "label": "punycode.ucs2.encode(codePoints)", + "apiSymbol": "punycode.ucs2.encode", + "depth": 2, + "scope": "api", + "anchor": "punycodeucs2encodecodepoints", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "punycode:8401b3810d6a", + "chapter": "punycode", + "kind": "string", + "name": "Type", + "signature": "`version` Type: {string}", + "label": "version", + "apiSymbol": "version", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "querystring:6daca1e4b100", + "chapter": "querystring", + "kind": "module", + "name": "querystring", + "signature": "Query string", + "label": "Query string", + "apiSymbol": "querystring", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + }, + "dynamic": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + } + }, + { + "id": "querystring:49c85da5a3aa", + "chapter": "querystring", + "kind": "method", + "name": "decode", + "signature": "`querystring.decode()`", + "label": "querystring.decode()", + "apiSymbol": "querystring.decode", + "depth": 1, + "scope": "api", + "anchor": "querystringdecode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "querystring:5dae28cfd428", + "chapter": "querystring", + "kind": "method", + "name": "encode", + "signature": "`querystring.encode()`", + "label": "querystring.encode()", + "apiSymbol": "querystring.encode", + "depth": 1, + "scope": "api", + "anchor": "querystringencode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "querystring:8a91837627cc", + "chapter": "querystring", + "kind": "method", + "name": "escape", + "signature": "`querystring.escape(str)`", + "label": "querystring.escape(str)", + "apiSymbol": "querystring.escape", + "depth": 1, + "scope": "api", + "anchor": "querystringescapestr", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "querystring:9cbcedea5f3a", + "chapter": "querystring", + "kind": "method", + "name": "parse", + "signature": "`querystring.parse(str[, sep[, eq[, options]]])`", + "label": "querystring.parse(str[, sep[, eq[, options]]])", + "apiSymbol": "querystring.parse", + "depth": 1, + "scope": "api", + "anchor": "querystringparsestr-sep-eq-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "querystring:0f8ec65246ae", + "chapter": "querystring", + "kind": "method", + "name": "stringify", + "signature": "`querystring.stringify(obj[, sep[, eq[, options]]])`", + "label": "querystring.stringify(obj[, sep[, eq[, options]]])", + "apiSymbol": "querystring.stringify", + "depth": 1, + "scope": "api", + "anchor": "querystringstringifyobj-sep-eq-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "querystring:5315956e9400", + "chapter": "querystring", + "kind": "method", + "name": "unescape", + "signature": "`querystring.unescape(str)`", + "label": "querystring.unescape(str)", + "apiSymbol": "querystring.unescape", + "depth": 1, + "scope": "api", + "anchor": "querystringunescapestr", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "readline:623e7726eca0", + "chapter": "readline", + "kind": "module", + "name": "readline", + "signature": "Readline", + "label": "Readline", + "apiSymbol": "readline", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + }, + "dynamic": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + } + }, + { + "id": "readline:f6115aa98422", + "chapter": "readline", + "kind": "class", + "name": "readlinePromises.Interface", + "signature": "Class: `readlinePromises.Interface`", + "label": "readlinePromises.Interface", + "apiSymbol": "readlinePromises.Interface", + "depth": 1, + "scope": "api", + "anchor": "class-readlinepromisesinterface", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "readline:93e8bfa7183b", + "chapter": "readline", + "kind": "method", + "name": "question", + "signature": "`rl.question(query[, options])`", + "label": "rl.question(query[, options])", + "apiSymbol": "rl.question", + "depth": 2, + "scope": "api", + "anchor": "rlquestionquery-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "readline:b031461adce4", + "chapter": "readline", + "kind": "class", + "name": "readlinePromises.Readline", + "signature": "Class: `readlinePromises.Readline`", + "label": "readlinePromises.Readline", + "apiSymbol": "readlinePromises.Readline", + "depth": 1, + "scope": "api", + "anchor": "class-readlinepromisesreadline", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "readline:77225325910c", + "chapter": "readline", + "kind": "method", + "name": "clearLine", + "signature": "`rl.clearLine(dir)`", + "label": "rl.clearLine(dir)", + "apiSymbol": "rl.clearLine", + "depth": 2, + "scope": "api", + "anchor": "rlclearlinedir", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "readline:c807d041da09", + "chapter": "readline", + "kind": "method", + "name": "clearScreenDown", + "signature": "`rl.clearScreenDown()`", + "label": "rl.clearScreenDown()", + "apiSymbol": "rl.clearScreenDown", + "depth": 2, + "scope": "api", + "anchor": "rlclearscreendown", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "readline:1f63fe751514", + "chapter": "readline", + "kind": "method", + "name": "commit", + "signature": "`rl.commit()`", + "label": "rl.commit()", + "apiSymbol": "rl.commit", + "depth": 2, + "scope": "api", + "anchor": "rlcommit", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "readline:b972d74a14a6", + "chapter": "readline", + "kind": "method", + "name": "cursorTo", + "signature": "`rl.cursorTo(x[, y])`", + "label": "rl.cursorTo(x[, y])", + "apiSymbol": "rl.cursorTo", + "depth": 2, + "scope": "api", + "anchor": "rlcursortox-y", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "readline:0ad8def7aa46", + "chapter": "readline", + "kind": "method", + "name": "moveCursor", + "signature": "`rl.moveCursor(dx, dy)`", + "label": "rl.moveCursor(dx, dy)", + "apiSymbol": "rl.moveCursor", + "depth": 2, + "scope": "api", + "anchor": "rlmovecursordx-dy", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "readline:0e4972f76e11", + "chapter": "readline", + "kind": "method", + "name": "rollback", + "signature": "`rl.rollback()`", + "label": "rl.rollback()", + "apiSymbol": "rl.rollback", + "depth": 2, + "scope": "api", + "anchor": "rlrollback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "readline:c9f5e2431cf3", + "chapter": "readline", + "kind": "method", + "name": "createInterface", + "signature": "`readlinePromises.createInterface(options)`", + "label": "readlinePromises.createInterface(options)", + "apiSymbol": "readlinePromises.createInterface", + "depth": 1, + "scope": "api", + "anchor": "readlinepromisescreateinterfaceoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "readline:f99a9215d7e8", + "chapter": "readline", + "kind": "module", + "name": "use_of_the_`completer`_function", + "signature": "Use of the `completer` function", + "label": "Use of the completer function", + "apiSymbol": "completer", + "depth": 2, + "scope": "api", + "anchor": "use-of-the-completer-function", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "readline:119ae49a30d4", + "chapter": "readline", + "kind": "class", + "name": "readline.Interface", + "signature": "Class: `readline.Interface`", + "label": "readline.Interface", + "apiSymbol": "readline.Interface", + "depth": 1, + "scope": "api", + "anchor": "class-readlineinterface", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "readline:eddd243d9e88", + "chapter": "readline", + "kind": "method", + "name": "question", + "signature": "`rl.question(query[, options], callback)`", + "label": "rl.question(query[, options], callback)", + "apiSymbol": "rl.question", + "depth": 2, + "scope": "api", + "anchor": "rlquestionquery-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "readline:f904a5c5575e", + "chapter": "readline", + "kind": "method", + "name": "clearLine", + "signature": "`readline.clearLine(stream, dir[, callback])`", + "label": "readline.clearLine(stream, dir[, callback])", + "apiSymbol": "readline.clearLine", + "depth": 1, + "scope": "api", + "anchor": "readlineclearlinestream-dir-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "readline:1ec0ef0a672e", + "chapter": "readline", + "kind": "method", + "name": "clearScreenDown", + "signature": "`readline.clearScreenDown(stream[, callback])`", + "label": "readline.clearScreenDown(stream[, callback])", + "apiSymbol": "readline.clearScreenDown", + "depth": 1, + "scope": "api", + "anchor": "readlineclearscreendownstream-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "readline:e42fe9c65553", + "chapter": "readline", + "kind": "method", + "name": "createInterface", + "signature": "`readline.createInterface(options)`", + "label": "readline.createInterface(options)", + "apiSymbol": "readline.createInterface", + "depth": 1, + "scope": "api", + "anchor": "readlinecreateinterfaceoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "readline:7406acc1f122", + "chapter": "readline", + "kind": "module", + "name": "use_of_the_`completer`_function", + "signature": "Use of the `completer` function", + "label": "Use of the completer function", + "apiSymbol": "completer", + "depth": 2, + "scope": "api", + "anchor": "use-of-the-completer-function_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "readline:7c8b4b55c589", + "chapter": "readline", + "kind": "method", + "name": "cursorTo", + "signature": "`readline.cursorTo(stream, x[, y][, callback])`", + "label": "readline.cursorTo(stream, x[, y][, callback])", + "apiSymbol": "readline.cursorTo", + "depth": 1, + "scope": "api", + "anchor": "readlinecursortostream-x-y-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "readline:c41448e7f6f3", + "chapter": "readline", + "kind": "method", + "name": "moveCursor", + "signature": "`readline.moveCursor(stream, dx, dy[, callback])`", + "label": "readline.moveCursor(stream, dx, dy[, callback])", + "apiSymbol": "readline.moveCursor", + "depth": 1, + "scope": "api", + "anchor": "readlinemovecursorstream-dx-dy-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "readline:cdf3ee503158", + "chapter": "readline", + "kind": "class", + "name": "InterfaceConstructor", + "signature": "Class: `InterfaceConstructor`", + "label": "InterfaceConstructor", + "apiSymbol": "InterfaceConstructor", + "depth": 1, + "scope": "api", + "anchor": "class-interfaceconstructor", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "readline:7f16c47dd206", + "chapter": "readline", + "kind": "method", + "name": "close", + "signature": "`rl.close()`", + "label": "rl.close()", + "apiSymbol": "rl.close", + "depth": 2, + "scope": "api", + "anchor": "rlclose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "readline:df8bde84f5e8", + "chapter": "readline", + "kind": "method", + "name": "[Symbol.dispose]", + "signature": "`rl[Symbol.dispose]()`", + "label": "rl[Symbol.dispose]()", + "apiSymbol": "rl", + "depth": 2, + "scope": "api", + "anchor": "rlsymboldispose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "readline:b89bd225bf61", + "chapter": "readline", + "kind": "method", + "name": "pause", + "signature": "`rl.pause()`", + "label": "rl.pause()", + "apiSymbol": "rl.pause", + "depth": 2, + "scope": "api", + "anchor": "rlpause", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "readline:66d998cc034b", + "chapter": "readline", + "kind": "method", + "name": "prompt", + "signature": "`rl.prompt([preserveCursor])`", + "label": "rl.prompt([preserveCursor])", + "apiSymbol": "rl.prompt", + "depth": 2, + "scope": "api", + "anchor": "rlpromptpreservecursor", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "readline:601596706c1d", + "chapter": "readline", + "kind": "method", + "name": "resume", + "signature": "`rl.resume()`", + "label": "rl.resume()", + "apiSymbol": "rl.resume", + "depth": 2, + "scope": "api", + "anchor": "rlresume", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "readline:cb20a8dab59e", + "chapter": "readline", + "kind": "method", + "name": "setPrompt", + "signature": "`rl.setPrompt(prompt)`", + "label": "rl.setPrompt(prompt)", + "apiSymbol": "rl.setPrompt", + "depth": 2, + "scope": "api", + "anchor": "rlsetpromptprompt", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "readline:e905c7e5b602", + "chapter": "readline", + "kind": "method", + "name": "getPrompt", + "signature": "`rl.getPrompt()`", + "label": "rl.getPrompt()", + "apiSymbol": "rl.getPrompt", + "depth": 2, + "scope": "api", + "anchor": "rlgetprompt", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "readline:4784b2dfdd25", + "chapter": "readline", + "kind": "method", + "name": "write", + "signature": "`rl.write(data[, key])`", + "label": "rl.write(data[, key])", + "apiSymbol": "rl.write", + "depth": 2, + "scope": "api", + "anchor": "rlwritedata-key", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "readline:90b08a5cc645", + "chapter": "readline", + "kind": "method", + "name": "[Symbol.asyncIterator]", + "signature": "`rl[Symbol.asyncIterator]()`", + "label": "rl[Symbol.asyncIterator]()", + "apiSymbol": "rl", + "depth": 2, + "scope": "api", + "anchor": "rlsymbolasynciterator", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "readline:c3f5b7f0a365", + "chapter": "readline", + "kind": "method", + "name": "getCursorPos", + "signature": "`rl.getCursorPos()`", + "label": "rl.getCursorPos()", + "apiSymbol": "rl.getCursorPos", + "depth": 2, + "scope": "api", + "anchor": "rlgetcursorpos", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "readline:7e67bfc5bded", + "chapter": "readline", + "kind": "string", + "name": "Type", + "signature": "`line` Type: {string}", + "label": "line", + "apiSymbol": "line", + "depth": 2, + "scope": "api", + "anchor": "class-interfaceconstructor", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "readline:0ff5208c2947", + "chapter": "readline", + "kind": "number|undefined", + "name": "Type", + "signature": "`cursor` Type: {number|undefined}", + "label": "cursor", + "apiSymbol": "cursor", + "depth": 2, + "scope": "api", + "anchor": "class-interfaceconstructor", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "readline:75a8f0db89ad", + "chapter": "readline", + "kind": "event", + "name": "close", + "signature": "Event: `'close'`", + "label": "'close'", + "apiSymbol": "'close'", + "depth": 2, + "scope": "api", + "anchor": "event-close", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "readline:550124c72f08", + "chapter": "readline", + "kind": "event", + "name": "error", + "signature": "Event: `'error'`", + "label": "'error'", + "apiSymbol": "'error'", + "depth": 2, + "scope": "api", + "anchor": "event-error", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "readline:7ccc87c378ac", + "chapter": "readline", + "kind": "event", + "name": "line", + "signature": "Event: `'line'`", + "label": "'line'", + "apiSymbol": "'line'", + "depth": 2, + "scope": "api", + "anchor": "event-line", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "readline:0205bb428e81", + "chapter": "readline", + "kind": "event", + "name": "history", + "signature": "Event: `'history'`", + "label": "'history'", + "apiSymbol": "'history'", + "depth": 2, + "scope": "api", + "anchor": "event-history", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "readline:5196c2bcbcb0", + "chapter": "readline", + "kind": "event", + "name": "pause", + "signature": "Event: `'pause'`", + "label": "'pause'", + "apiSymbol": "'pause'", + "depth": 2, + "scope": "api", + "anchor": "event-pause", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "readline:3ec6bba9a753", + "chapter": "readline", + "kind": "event", + "name": "resume", + "signature": "Event: `'resume'`", + "label": "'resume'", + "apiSymbol": "'resume'", + "depth": 2, + "scope": "api", + "anchor": "event-resume", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "readline:7afa8a8c9096", + "chapter": "readline", + "kind": "event", + "name": "SIGCONT", + "signature": "Event: `'SIGCONT'`", + "label": "'SIGCONT'", + "apiSymbol": "'SIGCONT'", + "depth": 2, + "scope": "api", + "anchor": "event-sigcont", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "readline:1299d94c162b", + "chapter": "readline", + "kind": "event", + "name": "SIGINT", + "signature": "Event: `'SIGINT'`", + "label": "'SIGINT'", + "apiSymbol": "'SIGINT'", + "depth": 2, + "scope": "api", + "anchor": "event-sigint", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "readline:ccbf160aefe1", + "chapter": "readline", + "kind": "event", + "name": "SIGTSTP", + "signature": "Event: `'SIGTSTP'`", + "label": "'SIGTSTP'", + "apiSymbol": "'SIGTSTP'", + "depth": 2, + "scope": "api", + "anchor": "event-sigtstp", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "readline:e368b2b8f4bb", + "chapter": "readline", + "kind": "method", + "name": "emitKeypressEvents", + "signature": "`readline.emitKeypressEvents(stream[, interface])`", + "label": "readline.emitKeypressEvents(stream[, interface])", + "apiSymbol": "readline.emitKeypressEvents", + "depth": 1, + "scope": "api", + "anchor": "readlineemitkeypresseventsstream-interface", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "repl:e683d31f46d6", + "chapter": "repl", + "kind": "module", + "name": "repl", + "signature": "REPL", + "label": "REPL", + "apiSymbol": "repl", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + } + }, + { + "id": "repl:6324ed248bee", + "chapter": "repl", + "kind": "module", + "name": "assignment_of_the_`_`_(underscore)_variable", + "signature": "Assignment of the `_` (underscore) variable", + "label": "Assignment of the _ (underscore) variable", + "apiSymbol": "_", + "depth": 1, + "scope": "api", + "anchor": "assignment-of-the-_-underscore-variable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "repl:4246bc36ffa1", + "chapter": "repl", + "kind": "module", + "name": "`await`_keyword", + "signature": "`await` keyword", + "label": "await", + "apiSymbol": "await", + "depth": 1, + "scope": "api", + "anchor": "await-keyword", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "repl:83837e32e950", + "chapter": "repl", + "kind": "module", + "name": "full-featured_\"terminal\"_repl_over_`net.server`_and_`net.socket`", + "signature": "Full-featured \"terminal\" REPL over `net.Server` and `net.Socket`", + "label": "Full-featured \"terminal\" REPL over net.Server and net.Socket", + "apiSymbol": "net.Server", + "depth": 1, + "scope": "api", + "anchor": "full-featured-terminal-repl-over-netserver-and-netsocket", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "repl:b82b0348ce62", + "chapter": "repl", + "kind": "module", + "name": "repl_over_`curl`", + "signature": "REPL over `curl`", + "label": "REPL over curl", + "apiSymbol": "curl", + "depth": 1, + "scope": "api", + "anchor": "repl-over-curl", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "repl:20b36f4d9bea", + "chapter": "repl", + "kind": "class", + "name": "REPLServer", + "signature": "Class: `REPLServer`", + "label": "REPLServer", + "apiSymbol": "REPLServer", + "depth": 1, + "scope": "api", + "anchor": "class-replserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "repl:3cee2cd101bb", + "chapter": "repl", + "kind": "method", + "name": "defineCommand", + "signature": "`replServer.defineCommand(keyword, cmd)`", + "label": "replServer.defineCommand(keyword, cmd)", + "apiSymbol": "replServer.defineCommand", + "depth": 2, + "scope": "api", + "anchor": "replserverdefinecommandkeyword-cmd", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "repl:6fe531f347f2", + "chapter": "repl", + "kind": "method", + "name": "displayPrompt", + "signature": "`replServer.displayPrompt([preserveCursor])`", + "label": "replServer.displayPrompt([preserveCursor])", + "apiSymbol": "replServer.displayPrompt", + "depth": 2, + "scope": "api", + "anchor": "replserverdisplaypromptpreservecursor", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "repl:9289ede87520", + "chapter": "repl", + "kind": "method", + "name": "clearBufferedCommand", + "signature": "`replServer.clearBufferedCommand()`", + "label": "replServer.clearBufferedCommand()", + "apiSymbol": "replServer.clearBufferedCommand", + "depth": 2, + "scope": "api", + "anchor": "replserverclearbufferedcommand", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "repl:9368d832c17c", + "chapter": "repl", + "kind": "method", + "name": "setupHistory", + "signature": "`replServer.setupHistory(historyConfig, callback)`", + "label": "replServer.setupHistory(historyConfig, callback)", + "apiSymbol": "replServer.setupHistory", + "depth": 2, + "scope": "api", + "anchor": "replserversetuphistoryhistoryconfig-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "repl:5cb88b9773a5", + "chapter": "repl", + "kind": "event", + "name": "exit", + "signature": "Event: `'exit'`", + "label": "'exit'", + "apiSymbol": "'exit'", + "depth": 2, + "scope": "api", + "anchor": "event-exit", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "repl:ba5fc79eb080", + "chapter": "repl", + "kind": "event", + "name": "reset", + "signature": "Event: `'reset'`", + "label": "'reset'", + "apiSymbol": "'reset'", + "depth": 2, + "scope": "api", + "anchor": "event-reset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "repl:c87920abcd05", + "chapter": "repl", + "kind": "method", + "name": "start", + "signature": "`repl.start([options])`", + "label": "repl.start([options])", + "apiSymbol": "repl.start", + "depth": 1, + "scope": "api", + "anchor": "replstartoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "repl:d0a7039ec748", + "chapter": "repl", + "kind": "string\\[]", + "name": "Type", + "signature": "`builtinModules` Type: {string\\[]}", + "label": "builtinModules", + "apiSymbol": "builtinModules", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. Use [`module.builtinModules`][] instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "sqlite:faf299884f86", + "chapter": "sqlite", + "kind": "module", + "name": "sqlite", + "signature": "SQLite", + "label": "SQLite", + "apiSymbol": "sqlite", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + } + }, + { + "id": "sqlite:c3ba43816b9c", + "chapter": "sqlite", + "kind": "class", + "name": "DatabaseSync", + "signature": "Class: `DatabaseSync`", + "label": "DatabaseSync", + "apiSymbol": "DatabaseSync", + "depth": 1, + "scope": "api", + "anchor": "class-databasesync", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "sqlite:24851a2f2aa3", + "chapter": "sqlite", + "kind": "method", + "name": "aggregate", + "signature": "`database.aggregate(name, options)`", + "label": "database.aggregate(name, options)", + "apiSymbol": "database.aggregate", + "depth": 2, + "scope": "api", + "anchor": "databaseaggregatename-options", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "sqlite:f4bf2db3cff6", + "chapter": "sqlite", + "kind": "method", + "name": "close", + "signature": "`database.close()`", + "label": "database.close()", + "apiSymbol": "database.close", + "depth": 2, + "scope": "api", + "anchor": "databaseclose", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "sqlite:bea9dd7076f9", + "chapter": "sqlite", + "kind": "method", + "name": "loadExtension", + "signature": "`database.loadExtension(path)`", + "label": "database.loadExtension(path)", + "apiSymbol": "database.loadExtension", + "depth": 2, + "scope": "api", + "anchor": "databaseloadextensionpath", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "sqlite:22683e746fb2", + "chapter": "sqlite", + "kind": "method", + "name": "enableLoadExtension", + "signature": "`database.enableLoadExtension(allow)`", + "label": "database.enableLoadExtension(allow)", + "apiSymbol": "database.enableLoadExtension", + "depth": 2, + "scope": "api", + "anchor": "databaseenableloadextensionallow", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "sqlite:c1e30df24a81", + "chapter": "sqlite", + "kind": "method", + "name": "enableDefensive", + "signature": "`database.enableDefensive(active)`", + "label": "database.enableDefensive(active)", + "apiSymbol": "database.enableDefensive", + "depth": 2, + "scope": "api", + "anchor": "databaseenabledefensiveactive", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "sqlite:edc3b92630cc", + "chapter": "sqlite", + "kind": "method", + "name": "location", + "signature": "`database.location([dbName])`", + "label": "database.location([dbName])", + "apiSymbol": "database.location", + "depth": 2, + "scope": "api", + "anchor": "databaselocationdbname", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "sqlite:316a738f96af", + "chapter": "sqlite", + "kind": "method", + "name": "exec", + "signature": "`database.exec(sql)`", + "label": "database.exec(sql)", + "apiSymbol": "database.exec", + "depth": 2, + "scope": "api", + "anchor": "databaseexecsql", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "sqlite:65a8500327df", + "chapter": "sqlite", + "kind": "method", + "name": "function", + "signature": "`database.function(name[, options], fn)`", + "label": "database.function(name[, options], fn)", + "apiSymbol": "database.function", + "depth": 2, + "scope": "api", + "anchor": "databasefunctionname-options-fn", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "sqlite:5b55cb20bd3d", + "chapter": "sqlite", + "kind": "method", + "name": "setAuthorizer", + "signature": "`database.setAuthorizer(callback)`", + "label": "database.setAuthorizer(callback)", + "apiSymbol": "database.setAuthorizer", + "depth": 2, + "scope": "api", + "anchor": "databasesetauthorizercallback", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "sqlite:e53f27b171bc", + "chapter": "sqlite", + "kind": "method", + "name": "open", + "signature": "`database.open()`", + "label": "database.open()", + "apiSymbol": "database.open", + "depth": 2, + "scope": "api", + "anchor": "databaseopen", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "sqlite:29d553079aa0", + "chapter": "sqlite", + "kind": "method", + "name": "prepare", + "signature": "`database.prepare(sql[, options])`", + "label": "database.prepare(sql[, options])", + "apiSymbol": "database.prepare", + "depth": 2, + "scope": "api", + "anchor": "databasepreparesql-options", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "sqlite:8e700a40011c", + "chapter": "sqlite", + "kind": "method", + "name": "createTagStore", + "signature": "`database.createTagStore([maxSize])`", + "label": "database.createTagStore([maxSize])", + "apiSymbol": "database.createTagStore", + "depth": 2, + "scope": "api", + "anchor": "databasecreatetagstoremaxsize", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "sqlite:ea5d11eb89c3", + "chapter": "sqlite", + "kind": "method", + "name": "createSession", + "signature": "`database.createSession([options])`", + "label": "database.createSession([options])", + "apiSymbol": "database.createSession", + "depth": 2, + "scope": "api", + "anchor": "databasecreatesessionoptions", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "sqlite:1c1cf7b192cd", + "chapter": "sqlite", + "kind": "method", + "name": "applyChangeset", + "signature": "`database.applyChangeset(changeset[, options])`", + "label": "database.applyChangeset(changeset[, options])", + "apiSymbol": "database.applyChangeset", + "depth": 2, + "scope": "api", + "anchor": "databaseapplychangesetchangeset-options", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "sqlite:3dc2e4a8707b", + "chapter": "sqlite", + "kind": "method", + "name": "[Symbol.dispose]", + "signature": "`database[Symbol.dispose]()`", + "label": "database[Symbol.dispose]()", + "apiSymbol": "database", + "depth": 2, + "scope": "api", + "anchor": "databasesymboldispose", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "sqlite:6e154b54cdff", + "chapter": "sqlite", + "kind": "boolean", + "name": "Type", + "signature": "`isOpen` Type: {boolean} Whether the database is currently open or not.", + "label": "isOpen", + "apiSymbol": "isOpen", + "depth": 2, + "scope": "api", + "anchor": "class-databasesync", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "sqlite:406106866022", + "chapter": "sqlite", + "kind": "boolean", + "name": "Type", + "signature": "`isTransaction` Type: {boolean} Whether the database is currently within a transaction. This method is a wrapper around [`sqlite3_get_autocommit()`][].", + "label": "isTransaction", + "apiSymbol": "isTransaction", + "depth": 2, + "scope": "api", + "anchor": "class-databasesync", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "sqlite:c3dcacbf1225", + "chapter": "sqlite", + "kind": "Object", + "name": "Type", + "signature": "`limits` Type: {Object}", + "label": "limits", + "apiSymbol": "limits", + "depth": 2, + "scope": "api", + "anchor": "class-databasesync", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "sqlite:cbf075aaf14f", + "chapter": "sqlite", + "kind": "class", + "name": "Session", + "signature": "Class: `Session`", + "label": "Session", + "apiSymbol": "Session", + "depth": 1, + "scope": "api", + "anchor": "class-session", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "sqlite:b6a334b49c5c", + "chapter": "sqlite", + "kind": "method", + "name": "changeset", + "signature": "`session.changeset()`", + "label": "session.changeset()", + "apiSymbol": "session.changeset", + "depth": 2, + "scope": "api", + "anchor": "sessionchangeset", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "sqlite:ac237d410857", + "chapter": "sqlite", + "kind": "method", + "name": "patchset", + "signature": "`session.patchset()`", + "label": "session.patchset()", + "apiSymbol": "session.patchset", + "depth": 2, + "scope": "api", + "anchor": "sessionpatchset", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "sqlite:825ce8aaf712", + "chapter": "sqlite", + "kind": "method", + "name": "close", + "signature": "`session.close()`", + "label": "session.close()", + "apiSymbol": "session.close", + "depth": 2, + "scope": "api", + "anchor": "sessionclose", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "sqlite:1b845f6b83df", + "chapter": "sqlite", + "kind": "method", + "name": "[Symbol.dispose]", + "signature": "`session[Symbol.dispose]()`", + "label": "session[Symbol.dispose]()", + "apiSymbol": "session", + "depth": 2, + "scope": "api", + "anchor": "sessionsymboldispose", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "sqlite:23cd7cc41935", + "chapter": "sqlite", + "kind": "class", + "name": "StatementSync", + "signature": "Class: `StatementSync`", + "label": "StatementSync", + "apiSymbol": "StatementSync", + "depth": 1, + "scope": "api", + "anchor": "class-statementsync", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "sqlite:85b1aa8ba164", + "chapter": "sqlite", + "kind": "method", + "name": "all", + "signature": "`statement.all([namedParameters][, ...anonymousParameters])`", + "label": "statement.all([namedParameters][, ...anonymousParameters])", + "apiSymbol": "statement.all", + "depth": 2, + "scope": "api", + "anchor": "statementallnamedparameters-anonymousparameters", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "sqlite:8a2767b377e2", + "chapter": "sqlite", + "kind": "method", + "name": "columns", + "signature": "`statement.columns()`", + "label": "statement.columns()", + "apiSymbol": "statement.columns", + "depth": 2, + "scope": "api", + "anchor": "statementcolumns", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "sqlite:feed1a095cfd", + "chapter": "sqlite", + "kind": "method", + "name": "get", + "signature": "`statement.get([namedParameters][, ...anonymousParameters])`", + "label": "statement.get([namedParameters][, ...anonymousParameters])", + "apiSymbol": "statement.get", + "depth": 2, + "scope": "api", + "anchor": "statementgetnamedparameters-anonymousparameters", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "sqlite:29a308f7f9d8", + "chapter": "sqlite", + "kind": "method", + "name": "iterate", + "signature": "`statement.iterate([namedParameters][, ...anonymousParameters])`", + "label": "statement.iterate([namedParameters][, ...anonymousParameters])", + "apiSymbol": "statement.iterate", + "depth": 2, + "scope": "api", + "anchor": "statementiteratenamedparameters-anonymousparameters", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "sqlite:694171d51eca", + "chapter": "sqlite", + "kind": "method", + "name": "run", + "signature": "`statement.run([namedParameters][, ...anonymousParameters])`", + "label": "statement.run([namedParameters][, ...anonymousParameters])", + "apiSymbol": "statement.run", + "depth": 2, + "scope": "api", + "anchor": "statementrunnamedparameters-anonymousparameters", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "sqlite:b39fd3b26704", + "chapter": "sqlite", + "kind": "method", + "name": "setAllowBareNamedParameters", + "signature": "`statement.setAllowBareNamedParameters(enabled)`", + "label": "statement.setAllowBareNamedParameters(enabled)", + "apiSymbol": "statement.setAllowBareNamedParameters", + "depth": 2, + "scope": "api", + "anchor": "statementsetallowbarenamedparametersenabled", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "sqlite:4522a10b2421", + "chapter": "sqlite", + "kind": "method", + "name": "setAllowUnknownNamedParameters", + "signature": "`statement.setAllowUnknownNamedParameters(enabled)`", + "label": "statement.setAllowUnknownNamedParameters(enabled)", + "apiSymbol": "statement.setAllowUnknownNamedParameters", + "depth": 2, + "scope": "api", + "anchor": "statementsetallowunknownnamedparametersenabled", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "sqlite:88a382984fe9", + "chapter": "sqlite", + "kind": "method", + "name": "setReturnArrays", + "signature": "`statement.setReturnArrays(enabled)`", + "label": "statement.setReturnArrays(enabled)", + "apiSymbol": "statement.setReturnArrays", + "depth": 2, + "scope": "api", + "anchor": "statementsetreturnarraysenabled", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "sqlite:4b6ece90e750", + "chapter": "sqlite", + "kind": "method", + "name": "setReadBigInts", + "signature": "`statement.setReadBigInts(enabled)`", + "label": "statement.setReadBigInts(enabled)", + "apiSymbol": "statement.setReadBigInts", + "depth": 2, + "scope": "api", + "anchor": "statementsetreadbigintsenabled", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "sqlite:9f7687fa081c", + "chapter": "sqlite", + "kind": "string", + "name": "Type", + "signature": "`expandedSQL` Type: {string} The source SQL expanded to include parameter values.", + "label": "expandedSQL", + "apiSymbol": "expandedSQL", + "depth": 2, + "scope": "api", + "anchor": "class-statementsync", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "sqlite:006645605649", + "chapter": "sqlite", + "kind": "string", + "name": "Type", + "signature": "`sourceSQL` Type: {string} The source SQL used to create this prepared statement.", + "label": "sourceSQL", + "apiSymbol": "sourceSQL", + "depth": 2, + "scope": "api", + "anchor": "class-statementsync", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "sqlite:c0b62c6551d4", + "chapter": "sqlite", + "kind": "class", + "name": "SQLTagStore", + "signature": "Class: `SQLTagStore`", + "label": "SQLTagStore", + "apiSymbol": "SQLTagStore", + "depth": 1, + "scope": "api", + "anchor": "class-sqltagstore", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "sqlite:89f460f74648", + "chapter": "sqlite", + "kind": "method", + "name": "all", + "signature": "`sqlTagStore.all(stringElements[, ...boundParameters])`", + "label": "sqlTagStore.all(stringElements[, ...boundParameters])", + "apiSymbol": "sqlTagStore.all", + "depth": 2, + "scope": "api", + "anchor": "sqltagstoreallstringelements-boundparameters", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "sqlite:14343192c373", + "chapter": "sqlite", + "kind": "method", + "name": "get", + "signature": "`sqlTagStore.get(stringElements[, ...boundParameters])`", + "label": "sqlTagStore.get(stringElements[, ...boundParameters])", + "apiSymbol": "sqlTagStore.get", + "depth": 2, + "scope": "api", + "anchor": "sqltagstoregetstringelements-boundparameters", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "sqlite:5f5771cf3fc9", + "chapter": "sqlite", + "kind": "method", + "name": "iterate", + "signature": "`sqlTagStore.iterate(stringElements[, ...boundParameters])`", + "label": "sqlTagStore.iterate(stringElements[, ...boundParameters])", + "apiSymbol": "sqlTagStore.iterate", + "depth": 2, + "scope": "api", + "anchor": "sqltagstoreiteratestringelements-boundparameters", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "sqlite:c6379eda1fb7", + "chapter": "sqlite", + "kind": "method", + "name": "run", + "signature": "`sqlTagStore.run(stringElements[, ...boundParameters])`", + "label": "sqlTagStore.run(stringElements[, ...boundParameters])", + "apiSymbol": "sqlTagStore.run", + "depth": 2, + "scope": "api", + "anchor": "sqltagstorerunstringelements-boundparameters", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "sqlite:7b0abbbb3e37", + "chapter": "sqlite", + "kind": "method", + "name": "clear", + "signature": "`sqlTagStore.clear()`", + "label": "sqlTagStore.clear()", + "apiSymbol": "sqlTagStore.clear", + "depth": 2, + "scope": "api", + "anchor": "sqltagstoreclear", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "sqlite:f121de953827", + "chapter": "sqlite", + "kind": "integer", + "name": "Type", + "signature": "`size` Type: {integer}", + "label": "size", + "apiSymbol": "size", + "depth": 2, + "scope": "api", + "anchor": "class-sqltagstore", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "sqlite:52f97b02d838", + "chapter": "sqlite", + "kind": "integer", + "name": "Type", + "signature": "`capacity` Type: {integer}", + "label": "capacity", + "apiSymbol": "capacity", + "depth": 2, + "scope": "api", + "anchor": "class-sqltagstore", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "sqlite:f553db38de9e", + "chapter": "sqlite", + "kind": "DatabaseSync", + "name": "Type", + "signature": "`db` Type: {DatabaseSync}", + "label": "db", + "apiSymbol": "db", + "depth": 2, + "scope": "api", + "anchor": "class-sqltagstore", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "sqlite:ca14dd3b8a2a", + "chapter": "sqlite", + "kind": "method", + "name": "backup", + "signature": "`sqlite.backup(sourceDb, path[, options])`", + "label": "sqlite.backup(sourceDb, path[, options])", + "apiSymbol": "sqlite.backup", + "depth": 1, + "scope": "api", + "anchor": "sqlitebackupsourcedb-path-options", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "sqlite:1debc4ff3e3f", + "chapter": "sqlite", + "kind": "Object", + "name": "Type", + "signature": "`constants` Type: {Object}", + "label": "constants", + "apiSymbol": "constants", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "stream:45e1bdf3e31b", + "chapter": "stream", + "kind": "module", + "name": "stream", + "signature": "Stream", + "label": "Stream", + "apiSymbol": "stream", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + }, + "dynamic": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + } + }, + { + "id": "stream:407afe1fe8e6", + "chapter": "stream", + "kind": "method", + "name": "pipeline", + "signature": "`stream.pipeline(streams[, options])`", + "label": "stream.pipeline(streams[, options])", + "apiSymbol": "stream.pipeline", + "depth": 1, + "scope": "api", + "anchor": "streampipelinestreams-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "stream:21d7b6531c4a", + "chapter": "stream", + "kind": "method", + "name": "pipeline", + "signature": "`stream.pipeline(source[, ...transforms], destination[, options])`", + "label": "stream.pipeline(source[, ...transforms], destination[, options])", + "apiSymbol": "stream.pipeline", + "depth": 1, + "scope": "api", + "anchor": "streampipelinesource-transforms-destination-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "stream:f1bd2073f7db", + "chapter": "stream", + "kind": "method", + "name": "finished", + "signature": "`stream.finished(stream[, options])`", + "label": "stream.finished(stream[, options])", + "apiSymbol": "stream.finished", + "depth": 1, + "scope": "api", + "anchor": "streamfinishedstream-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "stream:485a6b506ddf", + "chapter": "stream", + "kind": "method", + "name": "finished", + "signature": "`stream.finished(stream[, options], callback)`", + "label": "stream.finished(stream[, options], callback)", + "apiSymbol": "stream.finished", + "depth": 1, + "scope": "api", + "anchor": "streamfinishedstream-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "stream:9b14f1783aac", + "chapter": "stream", + "kind": "method", + "name": "pipeline", + "signature": "`stream.pipeline(source[, ...transforms], destination, callback)`", + "label": "stream.pipeline(source[, ...transforms], destination, callback)", + "apiSymbol": "stream.pipeline", + "depth": 1, + "scope": "api", + "anchor": "streampipelinesource-transforms-destination-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "stream:0f4f73c0781c", + "chapter": "stream", + "kind": "method", + "name": "pipeline", + "signature": "`stream.pipeline(streams, callback)`", + "label": "stream.pipeline(streams, callback)", + "apiSymbol": "stream.pipeline", + "depth": 1, + "scope": "api", + "anchor": "streampipelinestreams-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "stream:2d17ae5de501", + "chapter": "stream", + "kind": "method", + "name": "compose", + "signature": "`stream.compose(...streams)`", + "label": "stream.compose(...streams)", + "apiSymbol": "stream.compose", + "depth": 1, + "scope": "api", + "anchor": "streamcomposestreams", + "nodeStability": { + "index": "1", + "level": 1, + "text": "`stream.compose` is experimental.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:022f59526ac3", + "chapter": "stream", + "kind": "method", + "name": "isErrored", + "signature": "`stream.isErrored(stream)`", + "label": "stream.isErrored(stream)", + "apiSymbol": "stream.isErrored", + "depth": 1, + "scope": "api", + "anchor": "streamiserroredstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "stream:0fcf6da4d1d3", + "chapter": "stream", + "kind": "method", + "name": "isReadable", + "signature": "`stream.isReadable(stream)`", + "label": "stream.isReadable(stream)", + "apiSymbol": "stream.isReadable", + "depth": 1, + "scope": "api", + "anchor": "streamisreadablestream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "stream:8a16f61859cf", + "chapter": "stream", + "kind": "method", + "name": "isWritable", + "signature": "`stream.isWritable(stream)`", + "label": "stream.isWritable(stream)", + "apiSymbol": "stream.isWritable", + "depth": 1, + "scope": "api", + "anchor": "streamiswritablestream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "stream:c19bc2f232cc", + "chapter": "stream", + "kind": "method", + "name": "from", + "signature": "`stream.Readable.from(iterable[, options])`", + "label": "stream.Readable.from(iterable[, options])", + "apiSymbol": "stream.Readable.from", + "depth": 1, + "scope": "api", + "anchor": "streamreadablefromiterable-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "stream:2a1e2d54e06f", + "chapter": "stream", + "kind": "method", + "name": "fromWeb", + "signature": "`stream.Readable.fromWeb(readableStream[, options])`", + "label": "stream.Readable.fromWeb(readableStream[, options])", + "apiSymbol": "stream.Readable.fromWeb", + "depth": 1, + "scope": "api", + "anchor": "streamreadablefromwebreadablestream-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:c732a647de90", + "chapter": "stream", + "kind": "method", + "name": "isDisturbed", + "signature": "`stream.Readable.isDisturbed(stream)`", + "label": "stream.Readable.isDisturbed(stream)", + "apiSymbol": "stream.Readable.isDisturbed", + "depth": 1, + "scope": "api", + "anchor": "streamreadableisdisturbedstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:23584927da54", + "chapter": "stream", + "kind": "method", + "name": "toWeb", + "signature": "`stream.Readable.toWeb(streamReadable[, options])`", + "label": "stream.Readable.toWeb(streamReadable[, options])", + "apiSymbol": "stream.Readable.toWeb", + "depth": 1, + "scope": "api", + "anchor": "streamreadabletowebstreamreadable-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:22ddfdf92010", + "chapter": "stream", + "kind": "method", + "name": "fromWeb", + "signature": "`stream.Writable.fromWeb(writableStream[, options])`", + "label": "stream.Writable.fromWeb(writableStream[, options])", + "apiSymbol": "stream.Writable.fromWeb", + "depth": 1, + "scope": "api", + "anchor": "streamwritablefromwebwritablestream-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:fc5b70971d13", + "chapter": "stream", + "kind": "method", + "name": "toWeb", + "signature": "`stream.Writable.toWeb(streamWritable)`", + "label": "stream.Writable.toWeb(streamWritable)", + "apiSymbol": "stream.Writable.toWeb", + "depth": 1, + "scope": "api", + "anchor": "streamwritabletowebstreamwritable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:98dd6283d3da", + "chapter": "stream", + "kind": "method", + "name": "from", + "signature": "`stream.Duplex.from(src)`", + "label": "stream.Duplex.from(src)", + "apiSymbol": "stream.Duplex.from", + "depth": 1, + "scope": "api", + "anchor": "streamduplexfromsrc", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:0aa7318990ec", + "chapter": "stream", + "kind": "method", + "name": "fromWeb", + "signature": "`stream.Duplex.fromWeb(pair[, options])`", + "label": "stream.Duplex.fromWeb(pair[, options])", + "apiSymbol": "stream.Duplex.fromWeb", + "depth": 1, + "scope": "api", + "anchor": "streamduplexfromwebpair-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:bf762361c16f", + "chapter": "stream", + "kind": "method", + "name": "toWeb", + "signature": "`stream.Duplex.toWeb(streamDuplex[, options])`", + "label": "stream.Duplex.toWeb(streamDuplex[, options])", + "apiSymbol": "stream.Duplex.toWeb", + "depth": 1, + "scope": "api", + "anchor": "streamduplextowebstreamduplex-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:0912f0a45e59", + "chapter": "stream", + "kind": "method", + "name": "addAbortSignal", + "signature": "`stream.addAbortSignal(signal, stream)`", + "label": "stream.addAbortSignal(signal, stream)", + "apiSymbol": "stream.addAbortSignal", + "depth": 1, + "scope": "api", + "anchor": "streamaddabortsignalsignal-stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "stream:35260256bedd", + "chapter": "stream", + "kind": "method", + "name": "getDefaultHighWaterMark", + "signature": "`stream.getDefaultHighWaterMark(objectMode)`", + "label": "stream.getDefaultHighWaterMark(objectMode)", + "apiSymbol": "stream.getDefaultHighWaterMark", + "depth": 1, + "scope": "api", + "anchor": "streamgetdefaulthighwatermarkobjectmode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:c9100a8baecd", + "chapter": "stream", + "kind": "method", + "name": "setDefaultHighWaterMark", + "signature": "`stream.setDefaultHighWaterMark(objectMode, value)`", + "label": "stream.setDefaultHighWaterMark(objectMode, value)", + "apiSymbol": "stream.setDefaultHighWaterMark", + "depth": 1, + "scope": "api", + "anchor": "streamsetdefaulthighwatermarkobjectmode-value", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:0ac302dc974f", + "chapter": "stream", + "kind": "method", + "name": "read", + "signature": "`readable.read(0)`", + "label": "readable.read(0)", + "apiSymbol": "readable.read", + "depth": 1, + "scope": "api", + "anchor": "readableread0", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "stream:2abe83491f17", + "chapter": "stream", + "kind": "method", + "name": "push", + "signature": "`readable.push('')`", + "label": "readable.push('')", + "apiSymbol": "readable.push", + "depth": 1, + "scope": "api", + "anchor": "readablepush", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "stream:26c888901d4d", + "chapter": "stream", + "kind": "method", + "name": "finished", + "signature": "`stream.finished(stream[, options], callback)`", + "label": "stream.finished(stream[, options], callback)", + "apiSymbol": "stream.finished", + "depth": 1, + "scope": "api", + "anchor": "api-for-stream-consumers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "stream:84ff72680b34", + "chapter": "stream", + "kind": "method", + "name": "pipeline", + "signature": "`stream.pipeline(source[, ...transforms], destination, callback)`", + "label": "stream.pipeline(source[, ...transforms], destination, callback)", + "apiSymbol": "stream.pipeline", + "depth": 1, + "scope": "api", + "anchor": "api-for-stream-consumers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "stream:d3255026d4d3", + "chapter": "stream", + "kind": "method", + "name": "pipeline", + "signature": "`stream.pipeline(streams, callback)`", + "label": "stream.pipeline(streams, callback)", + "apiSymbol": "stream.pipeline", + "depth": 1, + "scope": "api", + "anchor": "api-for-stream-consumers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "stream:2c72c273fc9a", + "chapter": "stream", + "kind": "method", + "name": "compose", + "signature": "`stream.compose(...streams)`", + "label": "stream.compose(...streams)", + "apiSymbol": "stream.compose", + "depth": 1, + "scope": "api", + "anchor": "api-for-stream-consumers", + "nodeStability": { + "index": "1", + "level": 1, + "text": "`stream.compose` is experimental.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:c3b8a10f23ec", + "chapter": "stream", + "kind": "method", + "name": "isErrored", + "signature": "`stream.isErrored(stream)`", + "label": "stream.isErrored(stream)", + "apiSymbol": "stream.isErrored", + "depth": 1, + "scope": "api", + "anchor": "api-for-stream-consumers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "stream:f9d462228935", + "chapter": "stream", + "kind": "method", + "name": "isReadable", + "signature": "`stream.isReadable(stream)`", + "label": "stream.isReadable(stream)", + "apiSymbol": "stream.isReadable", + "depth": 1, + "scope": "api", + "anchor": "api-for-stream-consumers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "stream:9d74f7ae093e", + "chapter": "stream", + "kind": "method", + "name": "isWritable", + "signature": "`stream.isWritable(stream)`", + "label": "stream.isWritable(stream)", + "apiSymbol": "stream.isWritable", + "depth": 1, + "scope": "api", + "anchor": "api-for-stream-consumers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "stream:00e24c72fe1c", + "chapter": "stream", + "kind": "method", + "name": "from", + "signature": "`stream.Readable.from(iterable[, options])`", + "label": "stream.Readable.from(iterable[, options])", + "apiSymbol": "stream.Readable.from", + "depth": 1, + "scope": "api", + "anchor": "api-for-stream-consumers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "stream:3c020795e7aa", + "chapter": "stream", + "kind": "method", + "name": "fromWeb", + "signature": "`stream.Readable.fromWeb(readableStream[, options])`", + "label": "stream.Readable.fromWeb(readableStream[, options])", + "apiSymbol": "stream.Readable.fromWeb", + "depth": 1, + "scope": "api", + "anchor": "api-for-stream-consumers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:0155ca859bba", + "chapter": "stream", + "kind": "method", + "name": "isDisturbed", + "signature": "`stream.Readable.isDisturbed(stream)`", + "label": "stream.Readable.isDisturbed(stream)", + "apiSymbol": "stream.Readable.isDisturbed", + "depth": 1, + "scope": "api", + "anchor": "api-for-stream-consumers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:c869f74e7937", + "chapter": "stream", + "kind": "method", + "name": "toWeb", + "signature": "`stream.Readable.toWeb(streamReadable[, options])`", + "label": "stream.Readable.toWeb(streamReadable[, options])", + "apiSymbol": "stream.Readable.toWeb", + "depth": 1, + "scope": "api", + "anchor": "api-for-stream-consumers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:ba1bd728f940", + "chapter": "stream", + "kind": "method", + "name": "fromWeb", + "signature": "`stream.Writable.fromWeb(writableStream[, options])`", + "label": "stream.Writable.fromWeb(writableStream[, options])", + "apiSymbol": "stream.Writable.fromWeb", + "depth": 1, + "scope": "api", + "anchor": "api-for-stream-consumers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:932946d3f1ea", + "chapter": "stream", + "kind": "method", + "name": "toWeb", + "signature": "`stream.Writable.toWeb(streamWritable)`", + "label": "stream.Writable.toWeb(streamWritable)", + "apiSymbol": "stream.Writable.toWeb", + "depth": 1, + "scope": "api", + "anchor": "api-for-stream-consumers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:142509c44b7f", + "chapter": "stream", + "kind": "method", + "name": "from", + "signature": "`stream.Duplex.from(src)`", + "label": "stream.Duplex.from(src)", + "apiSymbol": "stream.Duplex.from", + "depth": 1, + "scope": "api", + "anchor": "api-for-stream-consumers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:4b92ba10d286", + "chapter": "stream", + "kind": "method", + "name": "fromWeb", + "signature": "`stream.Duplex.fromWeb(pair[, options])`", + "label": "stream.Duplex.fromWeb(pair[, options])", + "apiSymbol": "stream.Duplex.fromWeb", + "depth": 1, + "scope": "api", + "anchor": "api-for-stream-consumers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:94b26135dbcf", + "chapter": "stream", + "kind": "method", + "name": "toWeb", + "signature": "`stream.Duplex.toWeb(streamDuplex[, options])`", + "label": "stream.Duplex.toWeb(streamDuplex[, options])", + "apiSymbol": "stream.Duplex.toWeb", + "depth": 1, + "scope": "api", + "anchor": "api-for-stream-consumers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:6368088aee30", + "chapter": "stream", + "kind": "method", + "name": "addAbortSignal", + "signature": "`stream.addAbortSignal(signal, stream)`", + "label": "stream.addAbortSignal(signal, stream)", + "apiSymbol": "stream.addAbortSignal", + "depth": 1, + "scope": "api", + "anchor": "api-for-stream-consumers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "stream:0981a1dc3664", + "chapter": "stream", + "kind": "method", + "name": "getDefaultHighWaterMark", + "signature": "`stream.getDefaultHighWaterMark(objectMode)`", + "label": "stream.getDefaultHighWaterMark(objectMode)", + "apiSymbol": "stream.getDefaultHighWaterMark", + "depth": 1, + "scope": "api", + "anchor": "api-for-stream-consumers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:631757278f80", + "chapter": "stream", + "kind": "method", + "name": "setDefaultHighWaterMark", + "signature": "`stream.setDefaultHighWaterMark(objectMode, value)`", + "label": "stream.setDefaultHighWaterMark(objectMode, value)", + "apiSymbol": "stream.setDefaultHighWaterMark", + "depth": 1, + "scope": "api", + "anchor": "api-for-stream-consumers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:fb4f2232c3ed", + "chapter": "stream", + "kind": "class", + "name": "stream.Writable", + "signature": "Class: `stream.Writable`", + "label": "stream.Writable", + "apiSymbol": "stream.Writable", + "depth": 1, + "scope": "api", + "anchor": "class-streamwritable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "stream:c8fc702ba690", + "chapter": "stream", + "kind": "method", + "name": "cork", + "signature": "`writable.cork()`", + "label": "writable.cork()", + "apiSymbol": "writable.cork", + "depth": 2, + "scope": "api", + "anchor": "writablecork", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "stream:a7056020b081", + "chapter": "stream", + "kind": "method", + "name": "destroy", + "signature": "`writable.destroy([error])`", + "label": "writable.destroy([error])", + "apiSymbol": "writable.destroy", + "depth": 2, + "scope": "api", + "anchor": "writabledestroyerror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "stream:4788f330f734", + "chapter": "stream", + "kind": "method", + "name": "end", + "signature": "`writable.end([chunk[, encoding]][, callback])`", + "label": "writable.end([chunk[, encoding]][, callback])", + "apiSymbol": "writable.end", + "depth": 2, + "scope": "api", + "anchor": "writableendchunk-encoding-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "stream:5aa4fbf448aa", + "chapter": "stream", + "kind": "method", + "name": "setDefaultEncoding", + "signature": "`writable.setDefaultEncoding(encoding)`", + "label": "writable.setDefaultEncoding(encoding)", + "apiSymbol": "writable.setDefaultEncoding", + "depth": 2, + "scope": "api", + "anchor": "writablesetdefaultencodingencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "stream:0adb3fbabc38", + "chapter": "stream", + "kind": "method", + "name": "uncork", + "signature": "`writable.uncork()`", + "label": "writable.uncork()", + "apiSymbol": "writable.uncork", + "depth": 2, + "scope": "api", + "anchor": "writableuncork", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "stream:65c4a59c0dc0", + "chapter": "stream", + "kind": "method", + "name": "[Symbol.asyncDispose]", + "signature": "`writable[Symbol.asyncDispose]()`", + "label": "writable[Symbol.asyncDispose]()", + "apiSymbol": "writable", + "depth": 2, + "scope": "api", + "anchor": "writablesymbolasyncdispose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:c6e22d9965fa", + "chapter": "stream", + "kind": "method", + "name": "write", + "signature": "`writable.write(chunk[, encoding][, callback])`", + "label": "writable.write(chunk[, encoding][, callback])", + "apiSymbol": "writable.write", + "depth": 2, + "scope": "api", + "anchor": "writablewritechunk-encoding-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "stream:5b218d298213", + "chapter": "stream", + "kind": "boolean", + "name": "Type", + "signature": "`closed` Type: {boolean}", + "label": "closed", + "apiSymbol": "closed", + "depth": 2, + "scope": "api", + "anchor": "class-streamwritable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:6b6d82823460", + "chapter": "stream", + "kind": "boolean", + "name": "Type", + "signature": "`destroyed` Type: {boolean}", + "label": "destroyed", + "apiSymbol": "destroyed", + "depth": 2, + "scope": "api", + "anchor": "class-streamwritable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:79955b0367bd", + "chapter": "stream", + "kind": "boolean", + "name": "Type", + "signature": "`writable` Type: {boolean}", + "label": "writable", + "apiSymbol": "writable", + "depth": 2, + "scope": "api", + "anchor": "class-streamwritable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:c2932a811dbd", + "chapter": "stream", + "kind": "boolean", + "name": "Type", + "signature": "`writableAborted` Type: {boolean}", + "label": "writableAborted", + "apiSymbol": "writableAborted", + "depth": 2, + "scope": "api", + "anchor": "class-streamwritable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:773a067756c8", + "chapter": "stream", + "kind": "boolean", + "name": "Type", + "signature": "`writableEnded` Type: {boolean}", + "label": "writableEnded", + "apiSymbol": "writableEnded", + "depth": 2, + "scope": "api", + "anchor": "class-streamwritable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:c498bc3c61ca", + "chapter": "stream", + "kind": "integer", + "name": "Type", + "signature": "`writableCorked` Type: {integer}", + "label": "writableCorked", + "apiSymbol": "writableCorked", + "depth": 2, + "scope": "api", + "anchor": "class-streamwritable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:21a878d50ea8", + "chapter": "stream", + "kind": "Error", + "name": "Type", + "signature": "`errored` Type: {Error}", + "label": "errored", + "apiSymbol": "errored", + "depth": 2, + "scope": "api", + "anchor": "class-streamwritable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:64b02fced7a9", + "chapter": "stream", + "kind": "boolean", + "name": "Type", + "signature": "`writableFinished` Type: {boolean}", + "label": "writableFinished", + "apiSymbol": "writableFinished", + "depth": 2, + "scope": "api", + "anchor": "class-streamwritable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:44450c81e2bc", + "chapter": "stream", + "kind": "number", + "name": "Type", + "signature": "`writableHighWaterMark` Type: {number}", + "label": "writableHighWaterMark", + "apiSymbol": "writableHighWaterMark", + "depth": 2, + "scope": "api", + "anchor": "class-streamwritable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:7ee590368a01", + "chapter": "stream", + "kind": "number", + "name": "Type", + "signature": "`writableLength` Type: {number}", + "label": "writableLength", + "apiSymbol": "writableLength", + "depth": 2, + "scope": "api", + "anchor": "class-streamwritable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:ede1d6ed13bc", + "chapter": "stream", + "kind": "boolean", + "name": "Type", + "signature": "`writableNeedDrain` Type: {boolean}", + "label": "writableNeedDrain", + "apiSymbol": "writableNeedDrain", + "depth": 2, + "scope": "api", + "anchor": "class-streamwritable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:c38fcac34905", + "chapter": "stream", + "kind": "boolean", + "name": "Type", + "signature": "`writableObjectMode` Type: {boolean}", + "label": "writableObjectMode", + "apiSymbol": "writableObjectMode", + "depth": 2, + "scope": "api", + "anchor": "class-streamwritable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:af7d709dc927", + "chapter": "stream", + "kind": "event", + "name": "close", + "signature": "Event: `'close'`", + "label": "'close'", + "apiSymbol": "'close'", + "depth": 2, + "scope": "api", + "anchor": "event-close", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:b7738a5e313c", + "chapter": "stream", + "kind": "event", + "name": "drain", + "signature": "Event: `'drain'`", + "label": "'drain'", + "apiSymbol": "'drain'", + "depth": 2, + "scope": "api", + "anchor": "event-drain", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:f8e0b55069a1", + "chapter": "stream", + "kind": "event", + "name": "error", + "signature": "Event: `'error'`", + "label": "'error'", + "apiSymbol": "'error'", + "depth": 2, + "scope": "api", + "anchor": "event-error", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:e980a8ede358", + "chapter": "stream", + "kind": "event", + "name": "finish", + "signature": "Event: `'finish'`", + "label": "'finish'", + "apiSymbol": "'finish'", + "depth": 2, + "scope": "api", + "anchor": "event-finish", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:5647dc84973a", + "chapter": "stream", + "kind": "event", + "name": "pipe", + "signature": "Event: `'pipe'`", + "label": "'pipe'", + "apiSymbol": "'pipe'", + "depth": 2, + "scope": "api", + "anchor": "event-pipe", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:20ac861c350e", + "chapter": "stream", + "kind": "event", + "name": "unpipe", + "signature": "Event: `'unpipe'`", + "label": "'unpipe'", + "apiSymbol": "'unpipe'", + "depth": 2, + "scope": "api", + "anchor": "event-unpipe", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:beca88f04114", + "chapter": "stream", + "kind": "class", + "name": "stream.Readable", + "signature": "Class: `stream.Readable`", + "label": "stream.Readable", + "apiSymbol": "stream.Readable", + "depth": 1, + "scope": "api", + "anchor": "class-streamreadable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "stream:fffb9a73545d", + "chapter": "stream", + "kind": "method", + "name": "destroy", + "signature": "`readable.destroy([error])`", + "label": "readable.destroy([error])", + "apiSymbol": "readable.destroy", + "depth": 2, + "scope": "api", + "anchor": "readabledestroyerror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "stream:8c13941c2da9", + "chapter": "stream", + "kind": "method", + "name": "isPaused", + "signature": "`readable.isPaused()`", + "label": "readable.isPaused()", + "apiSymbol": "readable.isPaused", + "depth": 2, + "scope": "api", + "anchor": "readableispaused", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "stream:528bca09998f", + "chapter": "stream", + "kind": "method", + "name": "pause", + "signature": "`readable.pause()`", + "label": "readable.pause()", + "apiSymbol": "readable.pause", + "depth": 2, + "scope": "api", + "anchor": "readablepause", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "stream:302494fc4444", + "chapter": "stream", + "kind": "method", + "name": "pipe", + "signature": "`readable.pipe(destination[, options])`", + "label": "readable.pipe(destination[, options])", + "apiSymbol": "readable.pipe", + "depth": 2, + "scope": "api", + "anchor": "readablepipedestination-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "stream:8e9041e06d32", + "chapter": "stream", + "kind": "method", + "name": "read", + "signature": "`readable.read([size])`", + "label": "readable.read([size])", + "apiSymbol": "readable.read", + "depth": 2, + "scope": "api", + "anchor": "readablereadsize", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "stream:5eb9333ba580", + "chapter": "stream", + "kind": "method", + "name": "resume", + "signature": "`readable.resume()`", + "label": "readable.resume()", + "apiSymbol": "readable.resume", + "depth": 2, + "scope": "api", + "anchor": "readableresume", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "stream:ac1fa8557b23", + "chapter": "stream", + "kind": "method", + "name": "setEncoding", + "signature": "`readable.setEncoding(encoding)`", + "label": "readable.setEncoding(encoding)", + "apiSymbol": "readable.setEncoding", + "depth": 2, + "scope": "api", + "anchor": "readablesetencodingencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "stream:014a313733a9", + "chapter": "stream", + "kind": "method", + "name": "unpipe", + "signature": "`readable.unpipe([destination])`", + "label": "readable.unpipe([destination])", + "apiSymbol": "readable.unpipe", + "depth": 2, + "scope": "api", + "anchor": "readableunpipedestination", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "stream:f50018135868", + "chapter": "stream", + "kind": "method", + "name": "unshift", + "signature": "`readable.unshift(chunk[, encoding])`", + "label": "readable.unshift(chunk[, encoding])", + "apiSymbol": "readable.unshift", + "depth": 2, + "scope": "api", + "anchor": "readableunshiftchunk-encoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "stream:8480a5e636f9", + "chapter": "stream", + "kind": "method", + "name": "wrap", + "signature": "`readable.wrap(stream)`", + "label": "readable.wrap(stream)", + "apiSymbol": "readable.wrap", + "depth": 2, + "scope": "api", + "anchor": "readablewrapstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "stream:321a9203032e", + "chapter": "stream", + "kind": "method", + "name": "[Symbol.asyncIterator]", + "signature": "`readable[Symbol.asyncIterator]()`", + "label": "readable[Symbol.asyncIterator]()", + "apiSymbol": "readable", + "depth": 2, + "scope": "api", + "anchor": "readablesymbolasynciterator", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:5650970efd7a", + "chapter": "stream", + "kind": "method", + "name": "[Symbol.asyncDispose]", + "signature": "`readable[Symbol.asyncDispose]()`", + "label": "readable[Symbol.asyncDispose]()", + "apiSymbol": "readable", + "depth": 2, + "scope": "api", + "anchor": "readablesymbolasyncdispose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:9abbc5fab905", + "chapter": "stream", + "kind": "method", + "name": "compose", + "signature": "`readable.compose(stream[, options])`", + "label": "readable.compose(stream[, options])", + "apiSymbol": "readable.compose", + "depth": 2, + "scope": "api", + "anchor": "readablecomposestream-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:4a45af435614", + "chapter": "stream", + "kind": "method", + "name": "iterator", + "signature": "`readable.iterator([options])`", + "label": "readable.iterator([options])", + "apiSymbol": "readable.iterator", + "depth": 2, + "scope": "api", + "anchor": "readableiteratoroptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:c5b21e53295d", + "chapter": "stream", + "kind": "method", + "name": "map", + "signature": "`readable.map(fn[, options])`", + "label": "readable.map(fn[, options])", + "apiSymbol": "readable.map", + "depth": 2, + "scope": "api", + "anchor": "readablemapfn-options", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:d44f80528da5", + "chapter": "stream", + "kind": "method", + "name": "filter", + "signature": "`readable.filter(fn[, options])`", + "label": "readable.filter(fn[, options])", + "apiSymbol": "readable.filter", + "depth": 2, + "scope": "api", + "anchor": "readablefilterfn-options", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:be4de765fe92", + "chapter": "stream", + "kind": "method", + "name": "forEach", + "signature": "`readable.forEach(fn[, options])`", + "label": "readable.forEach(fn[, options])", + "apiSymbol": "readable.forEach", + "depth": 2, + "scope": "api", + "anchor": "readableforeachfn-options", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:28ca8aa1188c", + "chapter": "stream", + "kind": "method", + "name": "toArray", + "signature": "`readable.toArray([options])`", + "label": "readable.toArray([options])", + "apiSymbol": "readable.toArray", + "depth": 2, + "scope": "api", + "anchor": "readabletoarrayoptions", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:8bebdb59be85", + "chapter": "stream", + "kind": "method", + "name": "some", + "signature": "`readable.some(fn[, options])`", + "label": "readable.some(fn[, options])", + "apiSymbol": "readable.some", + "depth": 2, + "scope": "api", + "anchor": "readablesomefn-options", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:79869ae71209", + "chapter": "stream", + "kind": "method", + "name": "find", + "signature": "`readable.find(fn[, options])`", + "label": "readable.find(fn[, options])", + "apiSymbol": "readable.find", + "depth": 2, + "scope": "api", + "anchor": "readablefindfn-options", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:5f74d2a4a9e7", + "chapter": "stream", + "kind": "method", + "name": "every", + "signature": "`readable.every(fn[, options])`", + "label": "readable.every(fn[, options])", + "apiSymbol": "readable.every", + "depth": 2, + "scope": "api", + "anchor": "readableeveryfn-options", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:a90a03cf6ffa", + "chapter": "stream", + "kind": "method", + "name": "flatMap", + "signature": "`readable.flatMap(fn[, options])`", + "label": "readable.flatMap(fn[, options])", + "apiSymbol": "readable.flatMap", + "depth": 2, + "scope": "api", + "anchor": "readableflatmapfn-options", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:1f3ab741d73e", + "chapter": "stream", + "kind": "method", + "name": "drop", + "signature": "`readable.drop(limit[, options])`", + "label": "readable.drop(limit[, options])", + "apiSymbol": "readable.drop", + "depth": 2, + "scope": "api", + "anchor": "readabledroplimit-options", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:be4f4ef0a53d", + "chapter": "stream", + "kind": "method", + "name": "take", + "signature": "`readable.take(limit[, options])`", + "label": "readable.take(limit[, options])", + "apiSymbol": "readable.take", + "depth": 2, + "scope": "api", + "anchor": "readabletakelimit-options", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:18e96494c6b3", + "chapter": "stream", + "kind": "method", + "name": "reduce", + "signature": "`readable.reduce(fn[, initial[, options]])`", + "label": "readable.reduce(fn[, initial[, options]])", + "apiSymbol": "readable.reduce", + "depth": 2, + "scope": "api", + "anchor": "readablereducefn-initial-options", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:1899a7e2e522", + "chapter": "stream", + "kind": "boolean", + "name": "Type", + "signature": "`closed` Type: {boolean}", + "label": "closed", + "apiSymbol": "closed", + "depth": 2, + "scope": "api", + "anchor": "class-streamreadable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:04f8199c7c02", + "chapter": "stream", + "kind": "boolean", + "name": "Type", + "signature": "`destroyed` Type: {boolean}", + "label": "destroyed", + "apiSymbol": "destroyed", + "depth": 2, + "scope": "api", + "anchor": "class-streamreadable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:385982db6046", + "chapter": "stream", + "kind": "boolean", + "name": "Type", + "signature": "`readable` Type: {boolean}", + "label": "readable", + "apiSymbol": "readable", + "depth": 2, + "scope": "api", + "anchor": "class-streamreadable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:7fe9d7886609", + "chapter": "stream", + "kind": "boolean", + "name": "Type", + "signature": "`readableAborted` Type: {boolean}", + "label": "readableAborted", + "apiSymbol": "readableAborted", + "depth": 2, + "scope": "api", + "anchor": "class-streamreadable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:39f9b09274a2", + "chapter": "stream", + "kind": "boolean", + "name": "Type", + "signature": "`readableDidRead` Type: {boolean}", + "label": "readableDidRead", + "apiSymbol": "readableDidRead", + "depth": 2, + "scope": "api", + "anchor": "class-streamreadable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:14d4913fa288", + "chapter": "stream", + "kind": "null|string", + "name": "Type", + "signature": "`readableEncoding` Type: {null|string}", + "label": "readableEncoding", + "apiSymbol": "readableEncoding", + "depth": 2, + "scope": "api", + "anchor": "class-streamreadable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:8e34f3528220", + "chapter": "stream", + "kind": "boolean", + "name": "Type", + "signature": "`readableEnded` Type: {boolean}", + "label": "readableEnded", + "apiSymbol": "readableEnded", + "depth": 2, + "scope": "api", + "anchor": "class-streamreadable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:316ccdd37fe8", + "chapter": "stream", + "kind": "Error", + "name": "Type", + "signature": "`errored` Type: {Error}", + "label": "errored", + "apiSymbol": "errored", + "depth": 2, + "scope": "api", + "anchor": "class-streamreadable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:b8428bc85f2b", + "chapter": "stream", + "kind": "boolean", + "name": "Type", + "signature": "`readableFlowing` Type: {boolean}", + "label": "readableFlowing", + "apiSymbol": "readableFlowing", + "depth": 2, + "scope": "api", + "anchor": "class-streamreadable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:eafae535e183", + "chapter": "stream", + "kind": "number", + "name": "Type", + "signature": "`readableHighWaterMark` Type: {number}", + "label": "readableHighWaterMark", + "apiSymbol": "readableHighWaterMark", + "depth": 2, + "scope": "api", + "anchor": "class-streamreadable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:3c22489177f3", + "chapter": "stream", + "kind": "number", + "name": "Type", + "signature": "`readableLength` Type: {number}", + "label": "readableLength", + "apiSymbol": "readableLength", + "depth": 2, + "scope": "api", + "anchor": "class-streamreadable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:01452c5419b7", + "chapter": "stream", + "kind": "boolean", + "name": "Type", + "signature": "`readableObjectMode` Type: {boolean}", + "label": "readableObjectMode", + "apiSymbol": "readableObjectMode", + "depth": 2, + "scope": "api", + "anchor": "class-streamreadable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:ff46f186efa9", + "chapter": "stream", + "kind": "event", + "name": "close", + "signature": "Event: `'close'`", + "label": "'close'", + "apiSymbol": "'close'", + "depth": 2, + "scope": "api", + "anchor": "event-close_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:75031efb6530", + "chapter": "stream", + "kind": "event", + "name": "data", + "signature": "Event: `'data'`", + "label": "'data'", + "apiSymbol": "'data'", + "depth": 2, + "scope": "api", + "anchor": "event-data", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:bbd2247b82a3", + "chapter": "stream", + "kind": "event", + "name": "end", + "signature": "Event: `'end'`", + "label": "'end'", + "apiSymbol": "'end'", + "depth": 2, + "scope": "api", + "anchor": "event-end", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:3bb88fd2c3c6", + "chapter": "stream", + "kind": "event", + "name": "error", + "signature": "Event: `'error'`", + "label": "'error'", + "apiSymbol": "'error'", + "depth": 2, + "scope": "api", + "anchor": "event-error_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:63f94bff74eb", + "chapter": "stream", + "kind": "event", + "name": "pause", + "signature": "Event: `'pause'`", + "label": "'pause'", + "apiSymbol": "'pause'", + "depth": 2, + "scope": "api", + "anchor": "event-pause", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:96378dde4b52", + "chapter": "stream", + "kind": "event", + "name": "readable", + "signature": "Event: `'readable'`", + "label": "'readable'", + "apiSymbol": "'readable'", + "depth": 2, + "scope": "api", + "anchor": "event-readable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:ba3332c7128e", + "chapter": "stream", + "kind": "event", + "name": "resume", + "signature": "Event: `'resume'`", + "label": "'resume'", + "apiSymbol": "'resume'", + "depth": 2, + "scope": "api", + "anchor": "event-resume", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:79b8910871b9", + "chapter": "stream", + "kind": "class", + "name": "stream.Duplex", + "signature": "Class: `stream.Duplex`", + "label": "stream.Duplex", + "apiSymbol": "stream.Duplex", + "depth": 1, + "scope": "api", + "anchor": "class-streamduplex", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "stream:0ec8e5bc8019", + "chapter": "stream", + "kind": "boolean", + "name": "Type", + "signature": "`allowHalfOpen` Type: {boolean}", + "label": "allowHalfOpen", + "apiSymbol": "allowHalfOpen", + "depth": 2, + "scope": "api", + "anchor": "class-streamduplex", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:88c6d1114916", + "chapter": "stream", + "kind": "class", + "name": "stream.Transform", + "signature": "Class: `stream.Transform`", + "label": "stream.Transform", + "apiSymbol": "stream.Transform", + "depth": 1, + "scope": "api", + "anchor": "class-streamtransform", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "stream:cab213b5c4cb", + "chapter": "stream", + "kind": "method", + "name": "destroy", + "signature": "`transform.destroy([error])`", + "label": "transform.destroy([error])", + "apiSymbol": "transform.destroy", + "depth": 2, + "scope": "api", + "anchor": "transformdestroyerror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "stream:199ea6fc2f44", + "chapter": "stream", + "kind": "method", + "name": "duplexPair", + "signature": "`stream.duplexPair([options])`", + "label": "stream.duplexPair([options])", + "apiSymbol": "stream.duplexPair", + "depth": 1, + "scope": "api", + "anchor": "streamduplexpairoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:2b994ae607f5", + "chapter": "stream", + "kind": "method", + "name": "_construct", + "signature": "`writable._construct(callback)`", + "label": "writable._construct(callback)", + "apiSymbol": "writable._construct", + "depth": 1, + "scope": "api", + "anchor": "writable_constructcallback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:a1ba8a2b3c37", + "chapter": "stream", + "kind": "method", + "name": "_write", + "signature": "`writable._write(chunk, encoding, callback)`", + "label": "writable._write(chunk, encoding, callback)", + "apiSymbol": "writable._write", + "depth": 1, + "scope": "api", + "anchor": "writable_writechunk-encoding-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:8016e282a969", + "chapter": "stream", + "kind": "method", + "name": "_writev", + "signature": "`writable._writev(chunks, callback)`", + "label": "writable._writev(chunks, callback)", + "apiSymbol": "writable._writev", + "depth": 1, + "scope": "api", + "anchor": "writable_writevchunks-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:4be779cdc8a1", + "chapter": "stream", + "kind": "method", + "name": "_destroy", + "signature": "`writable._destroy(err, callback)`", + "label": "writable._destroy(err, callback)", + "apiSymbol": "writable._destroy", + "depth": 1, + "scope": "api", + "anchor": "writable_destroyerr-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:503ff0fcafc3", + "chapter": "stream", + "kind": "method", + "name": "_final", + "signature": "`writable._final(callback)`", + "label": "writable._final(callback)", + "apiSymbol": "writable._final", + "depth": 1, + "scope": "api", + "anchor": "writable_finalcallback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:8cbf9b4cc0ef", + "chapter": "stream", + "kind": "method", + "name": "_construct", + "signature": "`readable._construct(callback)`", + "label": "readable._construct(callback)", + "apiSymbol": "readable._construct", + "depth": 1, + "scope": "api", + "anchor": "readable_constructcallback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:a623d9ed30ba", + "chapter": "stream", + "kind": "method", + "name": "_read", + "signature": "`readable._read(size)`", + "label": "readable._read(size)", + "apiSymbol": "readable._read", + "depth": 1, + "scope": "api", + "anchor": "readable_readsize", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:ef6c8b306b9a", + "chapter": "stream", + "kind": "method", + "name": "_destroy", + "signature": "`readable._destroy(err, callback)`", + "label": "readable._destroy(err, callback)", + "apiSymbol": "readable._destroy", + "depth": 1, + "scope": "api", + "anchor": "readable_destroyerr-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:e2e872c42b34", + "chapter": "stream", + "kind": "method", + "name": "push", + "signature": "`readable.push(chunk[, encoding])`", + "label": "readable.push(chunk[, encoding])", + "apiSymbol": "readable.push", + "depth": 1, + "scope": "api", + "anchor": "readablepushchunk-encoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "stream:f2270e4116a0", + "chapter": "stream", + "kind": "class", + "name": "stream.PassThrough", + "signature": "Class: `stream.PassThrough`", + "label": "stream.PassThrough", + "apiSymbol": "stream.PassThrough", + "depth": 1, + "scope": "api", + "anchor": "class-streampassthrough", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "stream:4a0f92970489", + "chapter": "stream", + "kind": "method", + "name": "_flush", + "signature": "`transform._flush(callback)`", + "label": "transform._flush(callback)", + "apiSymbol": "transform._flush", + "depth": 1, + "scope": "api", + "anchor": "transform_flushcallback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:a204fde2de28", + "chapter": "stream", + "kind": "method", + "name": "_transform", + "signature": "`transform._transform(chunk, encoding, callback)`", + "label": "transform._transform(chunk, encoding, callback)", + "apiSymbol": "transform._transform", + "depth": 1, + "scope": "api", + "anchor": "transform_transformchunk-encoding-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:20ab959c0a56", + "chapter": "stream", + "kind": "event", + "name": "end", + "signature": "Event: `'end'`", + "label": "'end'", + "apiSymbol": "'end'", + "depth": 1, + "scope": "api", + "anchor": "event-end_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:5974c8e891c9", + "chapter": "stream", + "kind": "event", + "name": "finish", + "signature": "Event: `'finish'`", + "label": "'finish'", + "apiSymbol": "'finish'", + "depth": 1, + "scope": "api", + "anchor": "event-finish_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "stream:c13777fdc3f6", + "chapter": "stream", + "kind": "method", + "name": "read", + "signature": "`readable.read(0)`", + "label": "readable.read(0)", + "apiSymbol": "readable.read", + "depth": 1, + "scope": "api", + "anchor": "additional-notes", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "stream:9b57efcb2564", + "chapter": "stream", + "kind": "method", + "name": "push", + "signature": "`readable.push('')`", + "label": "readable.push('')", + "apiSymbol": "readable.push", + "depth": 1, + "scope": "api", + "anchor": "additional-notes", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "stream:e5af5479aa86", + "chapter": "stream", + "kind": "misc", + "name": "`highwatermark`_discrepancy_after_calling_`readable.setencoding()`", + "signature": "`highWaterMark` discrepancy after calling `readable.setEncoding()`", + "label": "highWaterMark", + "apiSymbol": "highWaterMark", + "depth": 1, + "scope": "api", + "anchor": "highwatermark-discrepancy-after-calling-readablesetencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "string_decoder:579b24e23a19", + "chapter": "string_decoder", + "kind": "module", + "name": "string_decoder", + "signature": "String decoder", + "label": "String decoder", + "apiSymbol": "string_decoder", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + }, + "dynamic": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + } + }, + { + "id": "string_decoder:7f2068cb94ad", + "chapter": "string_decoder", + "kind": "class", + "name": "StringDecoder", + "signature": "Class: `StringDecoder`", + "label": "StringDecoder", + "apiSymbol": "StringDecoder", + "depth": 1, + "scope": "api", + "anchor": "class-stringdecoder", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "string_decoder:c48a2ccea9d8", + "chapter": "string_decoder", + "kind": "method", + "name": "end", + "signature": "`stringDecoder.end([buffer])`", + "label": "stringDecoder.end([buffer])", + "apiSymbol": "stringDecoder.end", + "depth": 2, + "scope": "api", + "anchor": "stringdecoderendbuffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "string_decoder:ec83045b9e62", + "chapter": "string_decoder", + "kind": "method", + "name": "write", + "signature": "`stringDecoder.write(buffer)`", + "label": "stringDecoder.write(buffer)", + "apiSymbol": "stringDecoder.write", + "depth": 2, + "scope": "api", + "anchor": "stringdecoderwritebuffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "test:d7913f8880b2", + "chapter": "test", + "kind": "module", + "name": "test_runner", + "signature": "Test runner", + "label": "Test runner", + "apiSymbol": "test_runner", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + } + }, + { + "id": "test:982cdbbf1258", + "chapter": "test", + "kind": "module", + "name": "`describe()`_and_`it()`_aliases", + "signature": "`describe()` and `it()` aliases", + "label": "describe()", + "apiSymbol": "describe", + "depth": 1, + "scope": "api", + "anchor": "describe-and-it-aliases", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:f0e6173874e0", + "chapter": "test", + "kind": "module", + "name": "`only`_tests", + "signature": "`only` tests", + "label": "only", + "apiSymbol": "only", + "depth": 1, + "scope": "api", + "anchor": "only-tests", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:159a5c611fab", + "chapter": "test", + "kind": "module", + "name": "`assert`", + "signature": "`assert`", + "label": "assert", + "apiSymbol": "assert", + "depth": 1, + "scope": "api", + "anchor": "assert", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:0f565f514f2f", + "chapter": "test", + "kind": "method", + "name": "register", + "signature": "`assert.register(name, fn)`", + "label": "assert.register(name, fn)", + "apiSymbol": "assert.register", + "depth": 2, + "scope": "api", + "anchor": "assertregistername-fn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:f363f92639e6", + "chapter": "test", + "kind": "module", + "name": "`snapshot`", + "signature": "`snapshot`", + "label": "snapshot", + "apiSymbol": "snapshot", + "depth": 1, + "scope": "api", + "anchor": "snapshot", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:bda5805bc4d1", + "chapter": "test", + "kind": "method", + "name": "setDefaultSnapshotSerializers", + "signature": "`snapshot.setDefaultSnapshotSerializers(serializers)`", + "label": "snapshot.setDefaultSnapshotSerializers(serializers)", + "apiSymbol": "snapshot.setDefaultSnapshotSerializers", + "depth": 2, + "scope": "api", + "anchor": "snapshotsetdefaultsnapshotserializersserializers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:d2cec00af616", + "chapter": "test", + "kind": "method", + "name": "setResolveSnapshotPath", + "signature": "`snapshot.setResolveSnapshotPath(fn)`", + "label": "snapshot.setResolveSnapshotPath(fn)", + "apiSymbol": "snapshot.setResolveSnapshotPath", + "depth": 2, + "scope": "api", + "anchor": "snapshotsetresolvesnapshotpathfn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:94ee1fc64cba", + "chapter": "test", + "kind": "class", + "name": "MockFunctionContext", + "signature": "Class: `MockFunctionContext`", + "label": "MockFunctionContext", + "apiSymbol": "MockFunctionContext", + "depth": 1, + "scope": "api", + "anchor": "class-mockfunctioncontext", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:181607c23322", + "chapter": "test", + "kind": "method", + "name": "callCount", + "signature": "`ctx.callCount()`", + "label": "ctx.callCount()", + "apiSymbol": "ctx.callCount", + "depth": 2, + "scope": "api", + "anchor": "ctxcallcount", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:64febffd87d5", + "chapter": "test", + "kind": "method", + "name": "mockImplementation", + "signature": "`ctx.mockImplementation(implementation)`", + "label": "ctx.mockImplementation(implementation)", + "apiSymbol": "ctx.mockImplementation", + "depth": 2, + "scope": "api", + "anchor": "ctxmockimplementationimplementation", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:eff12c00a103", + "chapter": "test", + "kind": "method", + "name": "mockImplementationOnce", + "signature": "`ctx.mockImplementationOnce(implementation[, onCall])`", + "label": "ctx.mockImplementationOnce(implementation[, onCall])", + "apiSymbol": "ctx.mockImplementationOnce", + "depth": 2, + "scope": "api", + "anchor": "ctxmockimplementationonceimplementation-oncall", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:8ba72609af97", + "chapter": "test", + "kind": "method", + "name": "resetCalls", + "signature": "`ctx.resetCalls()`", + "label": "ctx.resetCalls()", + "apiSymbol": "ctx.resetCalls", + "depth": 2, + "scope": "api", + "anchor": "ctxresetcalls", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:615a33a245f7", + "chapter": "test", + "kind": "method", + "name": "restore", + "signature": "`ctx.restore()`", + "label": "ctx.restore()", + "apiSymbol": "ctx.restore", + "depth": 2, + "scope": "api", + "anchor": "ctxrestore", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:89ade21dafcc", + "chapter": "test", + "kind": "Array", + "name": "Type", + "signature": "`calls` Type: {Array}", + "label": "calls", + "apiSymbol": "calls", + "depth": 2, + "scope": "api", + "anchor": "class-mockfunctioncontext", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:43159c6cd577", + "chapter": "test", + "kind": "class", + "name": "MockModuleContext", + "signature": "Class: `MockModuleContext`", + "label": "MockModuleContext", + "apiSymbol": "MockModuleContext", + "depth": 1, + "scope": "api", + "anchor": "class-mockmodulecontext", + "nodeStability": { + "index": "1.0", + "level": 1, + "text": "Early development", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:7dc72aff3cc3", + "chapter": "test", + "kind": "method", + "name": "restore", + "signature": "`ctx.restore()`", + "label": "ctx.restore()", + "apiSymbol": "ctx.restore", + "depth": 2, + "scope": "api", + "anchor": "ctxrestore_1", + "nodeStability": { + "index": "1.0", + "level": 1, + "text": "Early development", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:5a3d49f5484d", + "chapter": "test", + "kind": "class", + "name": "MockPropertyContext", + "signature": "Class: `MockPropertyContext`", + "label": "MockPropertyContext", + "apiSymbol": "MockPropertyContext", + "depth": 1, + "scope": "api", + "anchor": "class-mockpropertycontext", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:98c17a1fbab3", + "chapter": "test", + "kind": "method", + "name": "accessCount", + "signature": "`ctx.accessCount()`", + "label": "ctx.accessCount()", + "apiSymbol": "ctx.accessCount", + "depth": 2, + "scope": "api", + "anchor": "ctxaccesscount", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:c6cfe6b536b5", + "chapter": "test", + "kind": "method", + "name": "mockImplementation", + "signature": "`ctx.mockImplementation(value)`", + "label": "ctx.mockImplementation(value)", + "apiSymbol": "ctx.mockImplementation", + "depth": 2, + "scope": "api", + "anchor": "ctxmockimplementationvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:7056f5f1d17b", + "chapter": "test", + "kind": "method", + "name": "mockImplementationOnce", + "signature": "`ctx.mockImplementationOnce(value[, onAccess])`", + "label": "ctx.mockImplementationOnce(value[, onAccess])", + "apiSymbol": "ctx.mockImplementationOnce", + "depth": 2, + "scope": "api", + "anchor": "ctxmockimplementationoncevalue-onaccess", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:5a09f8bce0a7", + "chapter": "test", + "kind": "method", + "name": "resetAccesses", + "signature": "`ctx.resetAccesses()`", + "label": "ctx.resetAccesses()", + "apiSymbol": "ctx.resetAccesses", + "depth": 2, + "scope": "api", + "anchor": "ctxresetaccesses", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:82d2c411cacd", + "chapter": "test", + "kind": "method", + "name": "restore", + "signature": "`ctx.restore()`", + "label": "ctx.restore()", + "apiSymbol": "ctx.restore", + "depth": 2, + "scope": "api", + "anchor": "ctxrestore_2", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:94d901aa7e10", + "chapter": "test", + "kind": "Array", + "name": "Type", + "signature": "`accesses` Type: {Array}", + "label": "accesses", + "apiSymbol": "accesses", + "depth": 2, + "scope": "api", + "anchor": "class-mockpropertycontext", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:cedc4c325c7d", + "chapter": "test", + "kind": "class", + "name": "MockTracker", + "signature": "Class: `MockTracker`", + "label": "MockTracker", + "apiSymbol": "MockTracker", + "depth": 1, + "scope": "api", + "anchor": "class-mocktracker", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:684b230abefc", + "chapter": "test", + "kind": "method", + "name": "fn", + "signature": "`mock.fn([original[, implementation]][, options])`", + "label": "mock.fn([original[, implementation]][, options])", + "apiSymbol": "mock.fn", + "depth": 2, + "scope": "api", + "anchor": "mockfnoriginal-implementation-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:2841bc6cfc9e", + "chapter": "test", + "kind": "method", + "name": "getter", + "signature": "`mock.getter(object, methodName[, implementation][, options])`", + "label": "mock.getter(object, methodName[, implementation][, options])", + "apiSymbol": "mock.getter", + "depth": 2, + "scope": "api", + "anchor": "mockgetterobject-methodname-implementation-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:8a1abe947206", + "chapter": "test", + "kind": "method", + "name": "method", + "signature": "`mock.method(object, methodName[, implementation][, options])`", + "label": "mock.method(object, methodName[, implementation][, options])", + "apiSymbol": "mock.method", + "depth": 2, + "scope": "api", + "anchor": "mockmethodobject-methodname-implementation-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:3c1c52a8a35e", + "chapter": "test", + "kind": "method", + "name": "module", + "signature": "`mock.module(specifier[, options])`", + "label": "mock.module(specifier[, options])", + "apiSymbol": "mock.module", + "depth": 2, + "scope": "api", + "anchor": "mockmodulespecifier-options", + "nodeStability": { + "index": "1.0", + "level": 1, + "text": "Early development", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:000e3a3beb3e", + "chapter": "test", + "kind": "method", + "name": "property", + "signature": "`mock.property(object, propertyName[, value])`", + "label": "mock.property(object, propertyName[, value])", + "apiSymbol": "mock.property", + "depth": 2, + "scope": "api", + "anchor": "mockpropertyobject-propertyname-value", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:791840fbba8d", + "chapter": "test", + "kind": "method", + "name": "reset", + "signature": "`mock.reset()`", + "label": "mock.reset()", + "apiSymbol": "mock.reset", + "depth": 2, + "scope": "api", + "anchor": "mockreset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:02e0e2c04046", + "chapter": "test", + "kind": "method", + "name": "restoreAll", + "signature": "`mock.restoreAll()`", + "label": "mock.restoreAll()", + "apiSymbol": "mock.restoreAll", + "depth": 2, + "scope": "api", + "anchor": "mockrestoreall", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:d21c825216a8", + "chapter": "test", + "kind": "method", + "name": "setter", + "signature": "`mock.setter(object, methodName[, implementation][, options])`", + "label": "mock.setter(object, methodName[, implementation][, options])", + "apiSymbol": "mock.setter", + "depth": 2, + "scope": "api", + "anchor": "mocksetterobject-methodname-implementation-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:a06caa5dac08", + "chapter": "test", + "kind": "class", + "name": "MockTimers", + "signature": "Class: `MockTimers`", + "label": "MockTimers", + "apiSymbol": "MockTimers", + "depth": 1, + "scope": "api", + "anchor": "class-mocktimers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:1b1a0633a102", + "chapter": "test", + "kind": "method", + "name": "enable", + "signature": "`timers.enable([enableOptions])`", + "label": "timers.enable([enableOptions])", + "apiSymbol": "timers.enable", + "depth": 2, + "scope": "api", + "anchor": "timersenableenableoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:6c7039135154", + "chapter": "test", + "kind": "method", + "name": "reset", + "signature": "`timers.reset()`", + "label": "timers.reset()", + "apiSymbol": "timers.reset", + "depth": 2, + "scope": "api", + "anchor": "timersreset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:9af4b9009e10", + "chapter": "test", + "kind": "method", + "name": "[Symbol.dispose]", + "signature": "`timers[Symbol.dispose]()`", + "label": "timers[Symbol.dispose]()", + "apiSymbol": "timers", + "depth": 2, + "scope": "api", + "anchor": "timerssymboldispose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:5a88274dece9", + "chapter": "test", + "kind": "method", + "name": "tick", + "signature": "`timers.tick([milliseconds])`", + "label": "timers.tick([milliseconds])", + "apiSymbol": "timers.tick", + "depth": 2, + "scope": "api", + "anchor": "timerstickmilliseconds", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:1562cbcface8", + "chapter": "test", + "kind": "method", + "name": "runAll", + "signature": "`timers.runAll()`", + "label": "timers.runAll()", + "apiSymbol": "timers.runAll", + "depth": 2, + "scope": "api", + "anchor": "timersrunall", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:6dd81e3b1c78", + "chapter": "test", + "kind": "method", + "name": "setTime", + "signature": "`timers.setTime(milliseconds)`", + "label": "timers.setTime(milliseconds)", + "apiSymbol": "timers.setTime", + "depth": 2, + "scope": "api", + "anchor": "timerssettimemilliseconds", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:21b4e331fe5f", + "chapter": "test", + "kind": "class", + "name": "TestsStream", + "signature": "Class: `TestsStream`", + "label": "TestsStream", + "apiSymbol": "TestsStream", + "depth": 1, + "scope": "api", + "anchor": "class-testsstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:5bc36a9d37e8", + "chapter": "test", + "kind": "event", + "name": "test:coverage", + "signature": "Event: `'test:coverage'`", + "label": "'test:coverage'", + "apiSymbol": "'test:coverage'", + "depth": 2, + "scope": "api", + "anchor": "event-testcoverage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:d1acf252c407", + "chapter": "test", + "kind": "event", + "name": "test:complete", + "signature": "Event: `'test:complete'`", + "label": "'test:complete'", + "apiSymbol": "'test:complete'", + "depth": 2, + "scope": "api", + "anchor": "event-testcomplete", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:9c85c9dade77", + "chapter": "test", + "kind": "event", + "name": "test:dequeue", + "signature": "Event: `'test:dequeue'`", + "label": "'test:dequeue'", + "apiSymbol": "'test:dequeue'", + "depth": 2, + "scope": "api", + "anchor": "event-testdequeue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:2c0a6babfd5c", + "chapter": "test", + "kind": "event", + "name": "test:diagnostic", + "signature": "Event: `'test:diagnostic'`", + "label": "'test:diagnostic'", + "apiSymbol": "'test:diagnostic'", + "depth": 2, + "scope": "api", + "anchor": "event-testdiagnostic", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:7f6171b2d32b", + "chapter": "test", + "kind": "event", + "name": "test:enqueue", + "signature": "Event: `'test:enqueue'`", + "label": "'test:enqueue'", + "apiSymbol": "'test:enqueue'", + "depth": 2, + "scope": "api", + "anchor": "event-testenqueue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:3b156e8ef0e7", + "chapter": "test", + "kind": "event", + "name": "test:fail", + "signature": "Event: `'test:fail'`", + "label": "'test:fail'", + "apiSymbol": "'test:fail'", + "depth": 2, + "scope": "api", + "anchor": "event-testfail", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:cafe39abfce1", + "chapter": "test", + "kind": "event", + "name": "test:interrupted", + "signature": "Event: `'test:interrupted'`", + "label": "'test:interrupted'", + "apiSymbol": "'test:interrupted'", + "depth": 2, + "scope": "api", + "anchor": "event-testinterrupted", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:89f1682d338d", + "chapter": "test", + "kind": "event", + "name": "test:pass", + "signature": "Event: `'test:pass'`", + "label": "'test:pass'", + "apiSymbol": "'test:pass'", + "depth": 2, + "scope": "api", + "anchor": "event-testpass", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:9fe44fa083bc", + "chapter": "test", + "kind": "event", + "name": "test:plan", + "signature": "Event: `'test:plan'`", + "label": "'test:plan'", + "apiSymbol": "'test:plan'", + "depth": 2, + "scope": "api", + "anchor": "event-testplan", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:04db2df552f4", + "chapter": "test", + "kind": "event", + "name": "test:start", + "signature": "Event: `'test:start'`", + "label": "'test:start'", + "apiSymbol": "'test:start'", + "depth": 2, + "scope": "api", + "anchor": "event-teststart", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:958697449aba", + "chapter": "test", + "kind": "event", + "name": "test:stderr", + "signature": "Event: `'test:stderr'`", + "label": "'test:stderr'", + "apiSymbol": "'test:stderr'", + "depth": 2, + "scope": "api", + "anchor": "event-teststderr", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:133b6fd08299", + "chapter": "test", + "kind": "event", + "name": "test:stdout", + "signature": "Event: `'test:stdout'`", + "label": "'test:stdout'", + "apiSymbol": "'test:stdout'", + "depth": 2, + "scope": "api", + "anchor": "event-teststdout", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:118ce16daf32", + "chapter": "test", + "kind": "event", + "name": "test:summary", + "signature": "Event: `'test:summary'`", + "label": "'test:summary'", + "apiSymbol": "'test:summary'", + "depth": 2, + "scope": "api", + "anchor": "event-testsummary", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:677627e9bbb0", + "chapter": "test", + "kind": "event", + "name": "test:watch:drained", + "signature": "Event: `'test:watch:drained'`", + "label": "'test:watch:drained'", + "apiSymbol": "'test:watch:drained'", + "depth": 2, + "scope": "api", + "anchor": "event-testwatchdrained", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:7cbbfee1c662", + "chapter": "test", + "kind": "event", + "name": "test:watch:restarted", + "signature": "Event: `'test:watch:restarted'`", + "label": "'test:watch:restarted'", + "apiSymbol": "'test:watch:restarted'", + "depth": 2, + "scope": "api", + "anchor": "event-testwatchrestarted", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:3a0d7a42c672", + "chapter": "test", + "kind": "class", + "name": "TestContext", + "signature": "Class: `TestContext`", + "label": "TestContext", + "apiSymbol": "TestContext", + "depth": 1, + "scope": "api", + "anchor": "class-testcontext", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:fa53d1938ffa", + "chapter": "test", + "kind": "method", + "name": "before", + "signature": "`context.before([fn][, options])`", + "label": "context.before([fn][, options])", + "apiSymbol": "context.before", + "depth": 2, + "scope": "api", + "anchor": "contextbeforefn-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:230394a0ff00", + "chapter": "test", + "kind": "method", + "name": "beforeEach", + "signature": "`context.beforeEach([fn][, options])`", + "label": "context.beforeEach([fn][, options])", + "apiSymbol": "context.beforeEach", + "depth": 2, + "scope": "api", + "anchor": "contextbeforeeachfn-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:3831e48b4408", + "chapter": "test", + "kind": "method", + "name": "after", + "signature": "`context.after([fn][, options])`", + "label": "context.after([fn][, options])", + "apiSymbol": "context.after", + "depth": 2, + "scope": "api", + "anchor": "contextafterfn-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:9fab423e49b7", + "chapter": "test", + "kind": "method", + "name": "afterEach", + "signature": "`context.afterEach([fn][, options])`", + "label": "context.afterEach([fn][, options])", + "apiSymbol": "context.afterEach", + "depth": 2, + "scope": "api", + "anchor": "contextaftereachfn-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:ceea5ddd85fa", + "chapter": "test", + "kind": "method", + "name": "diagnostic", + "signature": "`context.diagnostic(message)`", + "label": "context.diagnostic(message)", + "apiSymbol": "context.diagnostic", + "depth": 2, + "scope": "api", + "anchor": "contextdiagnosticmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:d5d9833c77e2", + "chapter": "test", + "kind": "method", + "name": "plan", + "signature": "`context.plan(count[,options])`", + "label": "context.plan(count[,options])", + "apiSymbol": "context.plan", + "depth": 2, + "scope": "api", + "anchor": "contextplancountoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:ca6ef304c0f1", + "chapter": "test", + "kind": "method", + "name": "runOnly", + "signature": "`context.runOnly(shouldRunOnlyTests)`", + "label": "context.runOnly(shouldRunOnlyTests)", + "apiSymbol": "context.runOnly", + "depth": 2, + "scope": "api", + "anchor": "contextrunonlyshouldrunonlytests", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:28a82e710a72", + "chapter": "test", + "kind": "method", + "name": "skip", + "signature": "`context.skip([message])`", + "label": "context.skip([message])", + "apiSymbol": "context.skip", + "depth": 2, + "scope": "api", + "anchor": "contextskipmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:4737d855077f", + "chapter": "test", + "kind": "method", + "name": "todo", + "signature": "`context.todo([message])`", + "label": "context.todo([message])", + "apiSymbol": "context.todo", + "depth": 2, + "scope": "api", + "anchor": "contexttodomessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:cda6aaebb404", + "chapter": "test", + "kind": "method", + "name": "test", + "signature": "`context.test([name][, options][, fn])`", + "label": "context.test([name][, options][, fn])", + "apiSymbol": "context.test", + "depth": 2, + "scope": "api", + "anchor": "contexttestname-options-fn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:3fb8ad029bca", + "chapter": "test", + "kind": "method", + "name": "waitFor", + "signature": "`context.waitFor(condition[, options])`", + "label": "context.waitFor(condition[, options])", + "apiSymbol": "context.waitFor", + "depth": 2, + "scope": "api", + "anchor": "contextwaitforcondition-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:c4cb9037d628", + "chapter": "test", + "kind": "section", + "name": "assert", + "signature": "`context.assert`", + "label": "context.assert", + "apiSymbol": "context.assert", + "depth": 2, + "scope": "api", + "anchor": "contextassert", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:5ea15f14844c", + "chapter": "test", + "kind": "method", + "name": "fileSnapshot", + "signature": "`context.assert.fileSnapshot(value, path[, options])`", + "label": "context.assert.fileSnapshot(value, path[, options])", + "apiSymbol": "context.assert.fileSnapshot", + "depth": 3, + "scope": "api", + "anchor": "contextassertfilesnapshotvalue-path-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:e0afaf3905f9", + "chapter": "test", + "kind": "method", + "name": "snapshot", + "signature": "`context.assert.snapshot(value[, options])`", + "label": "context.assert.snapshot(value[, options])", + "apiSymbol": "context.assert.snapshot", + "depth": 3, + "scope": "api", + "anchor": "contextassertsnapshotvalue-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:986cd116a489", + "chapter": "test", + "kind": "section", + "name": "filePath", + "signature": "`context.filePath`", + "label": "context.filePath", + "apiSymbol": "context.filePath", + "depth": 2, + "scope": "api", + "anchor": "contextfilepath", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:d5f87bc13615", + "chapter": "test", + "kind": "section", + "name": "fullName", + "signature": "`context.fullName`", + "label": "context.fullName", + "apiSymbol": "context.fullName", + "depth": 2, + "scope": "api", + "anchor": "contextfullname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:0ef85420340f", + "chapter": "test", + "kind": "section", + "name": "name", + "signature": "`context.name`", + "label": "context.name", + "apiSymbol": "context.name", + "depth": 2, + "scope": "api", + "anchor": "contextname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:5f62603f5613", + "chapter": "test", + "kind": "boolean", + "name": "Type", + "signature": "`passed` Type: {boolean} `false` before the test is executed, e.g. in a `beforeEach` hook.", + "label": "passed", + "apiSymbol": "passed", + "depth": 2, + "scope": "api", + "anchor": "class-testcontext", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:857221698402", + "chapter": "test", + "kind": "Error|null", + "name": "Type", + "signature": "`error` Type: {Error|null}", + "label": "error", + "apiSymbol": "error", + "depth": 2, + "scope": "api", + "anchor": "class-testcontext", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:b7c520753d30", + "chapter": "test", + "kind": "number", + "name": "Type", + "signature": "`attempt` Type: {number}", + "label": "attempt", + "apiSymbol": "attempt", + "depth": 2, + "scope": "api", + "anchor": "class-testcontext", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:0ee703f51144", + "chapter": "test", + "kind": "number|undefined", + "name": "Type", + "signature": "`workerId` Type: {number|undefined}", + "label": "workerId", + "apiSymbol": "workerId", + "depth": 2, + "scope": "api", + "anchor": "class-testcontext", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:8abbcbc1cbf0", + "chapter": "test", + "kind": "AbortSignal", + "name": "Type", + "signature": "`signal` Type: {AbortSignal}", + "label": "signal", + "apiSymbol": "signal", + "depth": 2, + "scope": "api", + "anchor": "class-testcontext", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:a4bd7bdd2120", + "chapter": "test", + "kind": "class", + "name": "SuiteContext", + "signature": "Class: `SuiteContext`", + "label": "SuiteContext", + "apiSymbol": "SuiteContext", + "depth": 1, + "scope": "api", + "anchor": "class-suitecontext", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:4b1cfc88fc4d", + "chapter": "test", + "kind": "section", + "name": "filePath", + "signature": "`context.filePath`", + "label": "context.filePath", + "apiSymbol": "context.filePath", + "depth": 2, + "scope": "api", + "anchor": "contextfilepath_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:eedf9a99efc9", + "chapter": "test", + "kind": "section", + "name": "fullName", + "signature": "`context.fullName`", + "label": "context.fullName", + "apiSymbol": "context.fullName", + "depth": 2, + "scope": "api", + "anchor": "contextfullname_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:9779c6dad7e6", + "chapter": "test", + "kind": "section", + "name": "name", + "signature": "`context.name`", + "label": "context.name", + "apiSymbol": "context.name", + "depth": 2, + "scope": "api", + "anchor": "contextname_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:f39e576b3cc5", + "chapter": "test", + "kind": "AbortSignal", + "name": "Type", + "signature": "`signal` Type: {AbortSignal}", + "label": "signal", + "apiSymbol": "signal", + "depth": 2, + "scope": "api", + "anchor": "class-suitecontext", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:674c7aed221a", + "chapter": "test", + "kind": "method", + "name": "run", + "signature": "`run([options])`", + "label": "run([options])", + "apiSymbol": "run", + "depth": 1, + "scope": "api", + "anchor": "runoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:63d64364235a", + "chapter": "test", + "kind": "method", + "name": "suite", + "signature": "`suite([name][, options][, fn])`", + "label": "suite([name][, options][, fn])", + "apiSymbol": "suite", + "depth": 1, + "scope": "api", + "anchor": "suitename-options-fn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:a504d6462625", + "chapter": "test", + "kind": "method", + "name": "skip", + "signature": "`suite.skip([name][, options][, fn])`", + "label": "suite.skip([name][, options][, fn])", + "apiSymbol": "suite.skip", + "depth": 1, + "scope": "api", + "anchor": "suiteskipname-options-fn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:a2d9fc109be5", + "chapter": "test", + "kind": "method", + "name": "todo", + "signature": "`suite.todo([name][, options][, fn])`", + "label": "suite.todo([name][, options][, fn])", + "apiSymbol": "suite.todo", + "depth": 1, + "scope": "api", + "anchor": "suitetodoname-options-fn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:3f0438fd628d", + "chapter": "test", + "kind": "method", + "name": "only", + "signature": "`suite.only([name][, options][, fn])`", + "label": "suite.only([name][, options][, fn])", + "apiSymbol": "suite.only", + "depth": 1, + "scope": "api", + "anchor": "suiteonlyname-options-fn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:9ec633ff3400", + "chapter": "test", + "kind": "method", + "name": "test", + "signature": "`test([name][, options][, fn])`", + "label": "test([name][, options][, fn])", + "apiSymbol": "test", + "depth": 1, + "scope": "api", + "anchor": "testname-options-fn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:bb1f13c26648", + "chapter": "test", + "kind": "method", + "name": "skip", + "signature": "`test.skip([name][, options][, fn])`", + "label": "test.skip([name][, options][, fn])", + "apiSymbol": "test.skip", + "depth": 1, + "scope": "api", + "anchor": "testskipname-options-fn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:fea941a28d36", + "chapter": "test", + "kind": "method", + "name": "todo", + "signature": "`test.todo([name][, options][, fn])`", + "label": "test.todo([name][, options][, fn])", + "apiSymbol": "test.todo", + "depth": 1, + "scope": "api", + "anchor": "testtodoname-options-fn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:ac4905846ade", + "chapter": "test", + "kind": "method", + "name": "only", + "signature": "`test.only([name][, options][, fn])`", + "label": "test.only([name][, options][, fn])", + "apiSymbol": "test.only", + "depth": 1, + "scope": "api", + "anchor": "testonlyname-options-fn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:e8c5038607e1", + "chapter": "test", + "kind": "method", + "name": "describe", + "signature": "`describe([name][, options][, fn])`", + "label": "describe([name][, options][, fn])", + "apiSymbol": "describe", + "depth": 1, + "scope": "api", + "anchor": "describename-options-fn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:9a97d70161a9", + "chapter": "test", + "kind": "method", + "name": "skip", + "signature": "`describe.skip([name][, options][, fn])`", + "label": "describe.skip([name][, options][, fn])", + "apiSymbol": "describe.skip", + "depth": 1, + "scope": "api", + "anchor": "describeskipname-options-fn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:62271d741db7", + "chapter": "test", + "kind": "method", + "name": "todo", + "signature": "`describe.todo([name][, options][, fn])`", + "label": "describe.todo([name][, options][, fn])", + "apiSymbol": "describe.todo", + "depth": 1, + "scope": "api", + "anchor": "describetodoname-options-fn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:e6e3412e8eed", + "chapter": "test", + "kind": "method", + "name": "only", + "signature": "`describe.only([name][, options][, fn])`", + "label": "describe.only([name][, options][, fn])", + "apiSymbol": "describe.only", + "depth": 1, + "scope": "api", + "anchor": "describeonlyname-options-fn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:d5d42f34cd3c", + "chapter": "test", + "kind": "method", + "name": "it", + "signature": "`it([name][, options][, fn])`", + "label": "it([name][, options][, fn])", + "apiSymbol": "it", + "depth": 1, + "scope": "api", + "anchor": "itname-options-fn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:8b36ce453d35", + "chapter": "test", + "kind": "method", + "name": "skip", + "signature": "`it.skip([name][, options][, fn])`", + "label": "it.skip([name][, options][, fn])", + "apiSymbol": "it.skip", + "depth": 1, + "scope": "api", + "anchor": "itskipname-options-fn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:38b089c13502", + "chapter": "test", + "kind": "method", + "name": "todo", + "signature": "`it.todo([name][, options][, fn])`", + "label": "it.todo([name][, options][, fn])", + "apiSymbol": "it.todo", + "depth": 1, + "scope": "api", + "anchor": "ittodoname-options-fn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:36b9fc2957bd", + "chapter": "test", + "kind": "method", + "name": "only", + "signature": "`it.only([name][, options][, fn])`", + "label": "it.only([name][, options][, fn])", + "apiSymbol": "it.only", + "depth": 1, + "scope": "api", + "anchor": "itonlyname-options-fn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:1dbc4649bded", + "chapter": "test", + "kind": "method", + "name": "before", + "signature": "`before([fn][, options])`", + "label": "before([fn][, options])", + "apiSymbol": "before", + "depth": 1, + "scope": "api", + "anchor": "beforefn-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:1b76cee472d6", + "chapter": "test", + "kind": "method", + "name": "after", + "signature": "`after([fn][, options])`", + "label": "after([fn][, options])", + "apiSymbol": "after", + "depth": 1, + "scope": "api", + "anchor": "afterfn-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:f32681c476db", + "chapter": "test", + "kind": "method", + "name": "beforeEach", + "signature": "`beforeEach([fn][, options])`", + "label": "beforeEach([fn][, options])", + "apiSymbol": "beforeEach", + "depth": 1, + "scope": "api", + "anchor": "beforeeachfn-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "test:79ed705d34bd", + "chapter": "test", + "kind": "method", + "name": "afterEach", + "signature": "`afterEach([fn][, options])`", + "label": "afterEach([fn][, options])", + "apiSymbol": "afterEach", + "depth": 1, + "scope": "api", + "anchor": "aftereachfn-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "timers:958d8284adff", + "chapter": "timers", + "kind": "module", + "name": "timers", + "signature": "Timers", + "label": "Timers", + "apiSymbol": "timers", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + }, + "dynamic": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + } + }, + { + "id": "timers:c166edf2e065", + "chapter": "timers", + "kind": "method", + "name": "setImmediate", + "signature": "`setImmediate(callback[, ...args])`", + "label": "setImmediate(callback[, ...args])", + "apiSymbol": "setImmediate", + "depth": 1, + "scope": "api", + "anchor": "setimmediatecallback-args", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "timers:4b97533ba368", + "chapter": "timers", + "kind": "method", + "name": "setInterval", + "signature": "`setInterval(callback[, delay[, ...args]])`", + "label": "setInterval(callback[, delay[, ...args]])", + "apiSymbol": "setInterval", + "depth": 1, + "scope": "api", + "anchor": "setintervalcallback-delay-args", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "timers:7ebcebd69b5c", + "chapter": "timers", + "kind": "method", + "name": "setTimeout", + "signature": "`setTimeout(callback[, delay[, ...args]])`", + "label": "setTimeout(callback[, delay[, ...args]])", + "apiSymbol": "setTimeout", + "depth": 1, + "scope": "api", + "anchor": "settimeoutcallback-delay-args", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "timers:972e511b08d3", + "chapter": "timers", + "kind": "method", + "name": "clearImmediate", + "signature": "`clearImmediate(immediate)`", + "label": "clearImmediate(immediate)", + "apiSymbol": "clearImmediate", + "depth": 1, + "scope": "api", + "anchor": "clearimmediateimmediate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "timers:ca99ee06891f", + "chapter": "timers", + "kind": "method", + "name": "clearInterval", + "signature": "`clearInterval(timeout)`", + "label": "clearInterval(timeout)", + "apiSymbol": "clearInterval", + "depth": 1, + "scope": "api", + "anchor": "clearintervaltimeout", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "timers:4bb011c5c994", + "chapter": "timers", + "kind": "method", + "name": "clearTimeout", + "signature": "`clearTimeout(timeout)`", + "label": "clearTimeout(timeout)", + "apiSymbol": "clearTimeout", + "depth": 1, + "scope": "api", + "anchor": "cleartimeouttimeout", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "timers:e458b8e84b54", + "chapter": "timers", + "kind": "method", + "name": "setTimeout", + "signature": "`timersPromises.setTimeout([delay[, value[, options]]])`", + "label": "timersPromises.setTimeout([delay[, value[, options]]])", + "apiSymbol": "timersPromises.setTimeout", + "depth": 1, + "scope": "api", + "anchor": "timerspromisessettimeoutdelay-value-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "timers:32d97ec9dda0", + "chapter": "timers", + "kind": "method", + "name": "setImmediate", + "signature": "`timersPromises.setImmediate([value[, options]])`", + "label": "timersPromises.setImmediate([value[, options]])", + "apiSymbol": "timersPromises.setImmediate", + "depth": 1, + "scope": "api", + "anchor": "timerspromisessetimmediatevalue-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "timers:4328bf41043d", + "chapter": "timers", + "kind": "method", + "name": "setInterval", + "signature": "`timersPromises.setInterval([delay[, value[, options]]])`", + "label": "timersPromises.setInterval([delay[, value[, options]]])", + "apiSymbol": "timersPromises.setInterval", + "depth": 1, + "scope": "api", + "anchor": "timerspromisessetintervaldelay-value-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "timers:ef573dbd7247", + "chapter": "timers", + "kind": "method", + "name": "wait", + "signature": "`timersPromises.scheduler.wait(delay[, options])`", + "label": "timersPromises.scheduler.wait(delay[, options])", + "apiSymbol": "timersPromises.scheduler.wait", + "depth": 1, + "scope": "api", + "anchor": "timerspromisesschedulerwaitdelay-options", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "timers:966714749eee", + "chapter": "timers", + "kind": "method", + "name": "yield", + "signature": "`timersPromises.scheduler.yield()`", + "label": "timersPromises.scheduler.yield()", + "apiSymbol": "timersPromises.scheduler.yield", + "depth": 1, + "scope": "api", + "anchor": "timerspromisesscheduleryield", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "timers:e262cd32400a", + "chapter": "timers", + "kind": "class", + "name": "Immediate", + "signature": "Class: `Immediate`", + "label": "Immediate", + "apiSymbol": "Immediate", + "depth": 1, + "scope": "api", + "anchor": "class-immediate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "timers:b96de8b1fa63", + "chapter": "timers", + "kind": "method", + "name": "hasRef", + "signature": "`immediate.hasRef()`", + "label": "immediate.hasRef()", + "apiSymbol": "immediate.hasRef", + "depth": 2, + "scope": "api", + "anchor": "immediatehasref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "timers:11a0cd92e422", + "chapter": "timers", + "kind": "method", + "name": "ref", + "signature": "`immediate.ref()`", + "label": "immediate.ref()", + "apiSymbol": "immediate.ref", + "depth": 2, + "scope": "api", + "anchor": "immediateref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "timers:7889f6e043df", + "chapter": "timers", + "kind": "method", + "name": "unref", + "signature": "`immediate.unref()`", + "label": "immediate.unref()", + "apiSymbol": "immediate.unref", + "depth": 2, + "scope": "api", + "anchor": "immediateunref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "timers:98026b89a6ec", + "chapter": "timers", + "kind": "method", + "name": "[Symbol.dispose]", + "signature": "`immediate[Symbol.dispose]()`", + "label": "immediate[Symbol.dispose]()", + "apiSymbol": "immediate", + "depth": 2, + "scope": "api", + "anchor": "immediatesymboldispose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "timers:8d90d2aa2fa0", + "chapter": "timers", + "kind": "class", + "name": "Timeout", + "signature": "Class: `Timeout`", + "label": "Timeout", + "apiSymbol": "Timeout", + "depth": 1, + "scope": "api", + "anchor": "class-timeout", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "timers:851aab2abdf5", + "chapter": "timers", + "kind": "method", + "name": "close", + "signature": "`timeout.close()`", + "label": "timeout.close()", + "apiSymbol": "timeout.close", + "depth": 2, + "scope": "api", + "anchor": "timeoutclose", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use [`clearTimeout()`][] instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "timers:c95897e1f55e", + "chapter": "timers", + "kind": "method", + "name": "hasRef", + "signature": "`timeout.hasRef()`", + "label": "timeout.hasRef()", + "apiSymbol": "timeout.hasRef", + "depth": 2, + "scope": "api", + "anchor": "timeouthasref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "timers:cd89c647dd00", + "chapter": "timers", + "kind": "method", + "name": "ref", + "signature": "`timeout.ref()`", + "label": "timeout.ref()", + "apiSymbol": "timeout.ref", + "depth": 2, + "scope": "api", + "anchor": "timeoutref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "timers:a8aedc320629", + "chapter": "timers", + "kind": "method", + "name": "refresh", + "signature": "`timeout.refresh()`", + "label": "timeout.refresh()", + "apiSymbol": "timeout.refresh", + "depth": 2, + "scope": "api", + "anchor": "timeoutrefresh", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "timers:4c972c043b3a", + "chapter": "timers", + "kind": "method", + "name": "unref", + "signature": "`timeout.unref()`", + "label": "timeout.unref()", + "apiSymbol": "timeout.unref", + "depth": 2, + "scope": "api", + "anchor": "timeoutunref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "timers:dd4d1bd2f480", + "chapter": "timers", + "kind": "method", + "name": "[Symbol.toPrimitive]", + "signature": "`timeout[Symbol.toPrimitive]()`", + "label": "timeout[Symbol.toPrimitive]()", + "apiSymbol": "timeout", + "depth": 2, + "scope": "api", + "anchor": "timeoutsymboltoprimitive", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "timers:a964218d2ba9", + "chapter": "timers", + "kind": "method", + "name": "[Symbol.dispose]", + "signature": "`timeout[Symbol.dispose]()`", + "label": "timeout[Symbol.dispose]()", + "apiSymbol": "timeout", + "depth": 2, + "scope": "api", + "anchor": "timeoutsymboldispose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tls:4210301a0478", + "chapter": "tls", + "kind": "module", + "name": "tls_(ssl)", + "signature": "TLS (SSL)", + "label": "TLS (SSL)", + "apiSymbol": "tls_", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + }, + "dynamic": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + } + }, + { + "id": "tls:c3ad0419b399", + "chapter": "tls", + "kind": "class", + "name": "tls.Server", + "signature": "Class: `tls.Server`", + "label": "tls.Server", + "apiSymbol": "tls.Server", + "depth": 1, + "scope": "api", + "anchor": "class-tlsserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tls:98045aabf6b9", + "chapter": "tls", + "kind": "method", + "name": "addContext", + "signature": "`server.addContext(hostname, context)`", + "label": "server.addContext(hostname, context)", + "apiSymbol": "server.addContext", + "depth": 2, + "scope": "api", + "anchor": "serveraddcontexthostname-context", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tls:d06318d25de5", + "chapter": "tls", + "kind": "method", + "name": "address", + "signature": "`server.address()`", + "label": "server.address()", + "apiSymbol": "server.address", + "depth": 2, + "scope": "api", + "anchor": "serveraddress", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tls:6a375b08e1d0", + "chapter": "tls", + "kind": "method", + "name": "close", + "signature": "`server.close([callback])`", + "label": "server.close([callback])", + "apiSymbol": "server.close", + "depth": 2, + "scope": "api", + "anchor": "serverclosecallback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tls:eaada573edd5", + "chapter": "tls", + "kind": "method", + "name": "getTicketKeys", + "signature": "`server.getTicketKeys()`", + "label": "server.getTicketKeys()", + "apiSymbol": "server.getTicketKeys", + "depth": 2, + "scope": "api", + "anchor": "servergetticketkeys", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tls:8de42e69fb0c", + "chapter": "tls", + "kind": "method", + "name": "listen", + "signature": "`server.listen()`", + "label": "server.listen()", + "apiSymbol": "server.listen", + "depth": 2, + "scope": "api", + "anchor": "serverlisten", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tls:b1402867ab7e", + "chapter": "tls", + "kind": "method", + "name": "setSecureContext", + "signature": "`server.setSecureContext(options)`", + "label": "server.setSecureContext(options)", + "apiSymbol": "server.setSecureContext", + "depth": 2, + "scope": "api", + "anchor": "serversetsecurecontextoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tls:aa2998d8b7fd", + "chapter": "tls", + "kind": "method", + "name": "setTicketKeys", + "signature": "`server.setTicketKeys(keys)`", + "label": "server.setTicketKeys(keys)", + "apiSymbol": "server.setTicketKeys", + "depth": 2, + "scope": "api", + "anchor": "serversetticketkeyskeys", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tls:16895bc02291", + "chapter": "tls", + "kind": "event", + "name": "connection", + "signature": "Event: `'connection'`", + "label": "'connection'", + "apiSymbol": "'connection'", + "depth": 2, + "scope": "api", + "anchor": "event-connection", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tls:d561de69d475", + "chapter": "tls", + "kind": "event", + "name": "keylog", + "signature": "Event: `'keylog'`", + "label": "'keylog'", + "apiSymbol": "'keylog'", + "depth": 2, + "scope": "api", + "anchor": "event-keylog", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tls:ab52864eff41", + "chapter": "tls", + "kind": "event", + "name": "newSession", + "signature": "Event: `'newSession'`", + "label": "'newSession'", + "apiSymbol": "'newSession'", + "depth": 2, + "scope": "api", + "anchor": "event-newsession", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tls:b2eb1b1d994c", + "chapter": "tls", + "kind": "event", + "name": "OCSPRequest", + "signature": "Event: `'OCSPRequest'`", + "label": "'OCSPRequest'", + "apiSymbol": "'OCSPRequest'", + "depth": 2, + "scope": "api", + "anchor": "event-ocsprequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tls:020344a5d9c8", + "chapter": "tls", + "kind": "event", + "name": "resumeSession", + "signature": "Event: `'resumeSession'`", + "label": "'resumeSession'", + "apiSymbol": "'resumeSession'", + "depth": 2, + "scope": "api", + "anchor": "event-resumesession", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tls:dcb1e0fd7134", + "chapter": "tls", + "kind": "event", + "name": "secureConnection", + "signature": "Event: `'secureConnection'`", + "label": "'secureConnection'", + "apiSymbol": "'secureConnection'", + "depth": 2, + "scope": "api", + "anchor": "event-secureconnection", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tls:6ced90286e05", + "chapter": "tls", + "kind": "event", + "name": "tlsClientError", + "signature": "Event: `'tlsClientError'`", + "label": "'tlsClientError'", + "apiSymbol": "'tlsClientError'", + "depth": 2, + "scope": "api", + "anchor": "event-tlsclienterror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tls:a7f3e47a8238", + "chapter": "tls", + "kind": "class", + "name": "tls.TLSSocket", + "signature": "Class: `tls.TLSSocket`", + "label": "tls.TLSSocket", + "apiSymbol": "tls.TLSSocket", + "depth": 1, + "scope": "api", + "anchor": "class-tlstlssocket", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "tls:85e3ff2688c8", + "chapter": "tls", + "kind": "method", + "name": "address", + "signature": "`tlsSocket.address()`", + "label": "tlsSocket.address()", + "apiSymbol": "tlsSocket.address", + "depth": 2, + "scope": "api", + "anchor": "tlssocketaddress", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tls:0b5306646668", + "chapter": "tls", + "kind": "method", + "name": "disableRenegotiation", + "signature": "`tlsSocket.disableRenegotiation()`", + "label": "tlsSocket.disableRenegotiation()", + "apiSymbol": "tlsSocket.disableRenegotiation", + "depth": 2, + "scope": "api", + "anchor": "tlssocketdisablerenegotiation", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tls:e2e80f42b8af", + "chapter": "tls", + "kind": "method", + "name": "enableTrace", + "signature": "`tlsSocket.enableTrace()`", + "label": "tlsSocket.enableTrace()", + "apiSymbol": "tlsSocket.enableTrace", + "depth": 2, + "scope": "api", + "anchor": "tlssocketenabletrace", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tls:99c0aa73bd31", + "chapter": "tls", + "kind": "method", + "name": "exportKeyingMaterial", + "signature": "`tlsSocket.exportKeyingMaterial(length, label[, context])`", + "label": "tlsSocket.exportKeyingMaterial(length, label[, context])", + "apiSymbol": "tlsSocket.exportKeyingMaterial", + "depth": 2, + "scope": "api", + "anchor": "tlssocketexportkeyingmateriallength-label-context", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tls:7a6f0877f28f", + "chapter": "tls", + "kind": "method", + "name": "getCertificate", + "signature": "`tlsSocket.getCertificate()`", + "label": "tlsSocket.getCertificate()", + "apiSymbol": "tlsSocket.getCertificate", + "depth": 2, + "scope": "api", + "anchor": "tlssocketgetcertificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tls:eae1cb4d445c", + "chapter": "tls", + "kind": "method", + "name": "getCipher", + "signature": "`tlsSocket.getCipher()`", + "label": "tlsSocket.getCipher()", + "apiSymbol": "tlsSocket.getCipher", + "depth": 2, + "scope": "api", + "anchor": "tlssocketgetcipher", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tls:72bc7859b7aa", + "chapter": "tls", + "kind": "method", + "name": "getEphemeralKeyInfo", + "signature": "`tlsSocket.getEphemeralKeyInfo()`", + "label": "tlsSocket.getEphemeralKeyInfo()", + "apiSymbol": "tlsSocket.getEphemeralKeyInfo", + "depth": 2, + "scope": "api", + "anchor": "tlssocketgetephemeralkeyinfo", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tls:117f47e191c2", + "chapter": "tls", + "kind": "method", + "name": "getFinished", + "signature": "`tlsSocket.getFinished()`", + "label": "tlsSocket.getFinished()", + "apiSymbol": "tlsSocket.getFinished", + "depth": 2, + "scope": "api", + "anchor": "tlssocketgetfinished", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tls:eed448ff16bd", + "chapter": "tls", + "kind": "method", + "name": "getPeerCertificate", + "signature": "`tlsSocket.getPeerCertificate([detailed])`", + "label": "tlsSocket.getPeerCertificate([detailed])", + "apiSymbol": "tlsSocket.getPeerCertificate", + "depth": 2, + "scope": "api", + "anchor": "tlssocketgetpeercertificatedetailed", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tls:d9f63506b1fb", + "chapter": "tls", + "kind": "method", + "name": "getPeerFinished", + "signature": "`tlsSocket.getPeerFinished()`", + "label": "tlsSocket.getPeerFinished()", + "apiSymbol": "tlsSocket.getPeerFinished", + "depth": 2, + "scope": "api", + "anchor": "tlssocketgetpeerfinished", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tls:d91f92458f65", + "chapter": "tls", + "kind": "method", + "name": "getPeerX509Certificate", + "signature": "`tlsSocket.getPeerX509Certificate()`", + "label": "tlsSocket.getPeerX509Certificate()", + "apiSymbol": "tlsSocket.getPeerX509Certificate", + "depth": 2, + "scope": "api", + "anchor": "tlssocketgetpeerx509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tls:26a4baaa1dd4", + "chapter": "tls", + "kind": "method", + "name": "getProtocol", + "signature": "`tlsSocket.getProtocol()`", + "label": "tlsSocket.getProtocol()", + "apiSymbol": "tlsSocket.getProtocol", + "depth": 2, + "scope": "api", + "anchor": "tlssocketgetprotocol", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tls:2d68e799fd57", + "chapter": "tls", + "kind": "method", + "name": "getSession", + "signature": "`tlsSocket.getSession()`", + "label": "tlsSocket.getSession()", + "apiSymbol": "tlsSocket.getSession", + "depth": 2, + "scope": "api", + "anchor": "tlssocketgetsession", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tls:37b4ae5bd331", + "chapter": "tls", + "kind": "method", + "name": "getSharedSigalgs", + "signature": "`tlsSocket.getSharedSigalgs()`", + "label": "tlsSocket.getSharedSigalgs()", + "apiSymbol": "tlsSocket.getSharedSigalgs", + "depth": 2, + "scope": "api", + "anchor": "tlssocketgetsharedsigalgs", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tls:ce1db7bb3d08", + "chapter": "tls", + "kind": "method", + "name": "getTLSTicket", + "signature": "`tlsSocket.getTLSTicket()`", + "label": "tlsSocket.getTLSTicket()", + "apiSymbol": "tlsSocket.getTLSTicket", + "depth": 2, + "scope": "api", + "anchor": "tlssocketgettlsticket", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tls:fbeede8315de", + "chapter": "tls", + "kind": "method", + "name": "getX509Certificate", + "signature": "`tlsSocket.getX509Certificate()`", + "label": "tlsSocket.getX509Certificate()", + "apiSymbol": "tlsSocket.getX509Certificate", + "depth": 2, + "scope": "api", + "anchor": "tlssocketgetx509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tls:e2bfee0b6367", + "chapter": "tls", + "kind": "method", + "name": "isSessionReused", + "signature": "`tlsSocket.isSessionReused()`", + "label": "tlsSocket.isSessionReused()", + "apiSymbol": "tlsSocket.isSessionReused", + "depth": 2, + "scope": "api", + "anchor": "tlssocketissessionreused", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tls:302bbec29984", + "chapter": "tls", + "kind": "method", + "name": "renegotiate", + "signature": "`tlsSocket.renegotiate(options, callback)`", + "label": "tlsSocket.renegotiate(options, callback)", + "apiSymbol": "tlsSocket.renegotiate", + "depth": 2, + "scope": "api", + "anchor": "tlssocketrenegotiateoptions-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tls:f6a9c9dece84", + "chapter": "tls", + "kind": "method", + "name": "setKeyCert", + "signature": "`tlsSocket.setKeyCert(context)`", + "label": "tlsSocket.setKeyCert(context)", + "apiSymbol": "tlsSocket.setKeyCert", + "depth": 2, + "scope": "api", + "anchor": "tlssocketsetkeycertcontext", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tls:50b330710f9b", + "chapter": "tls", + "kind": "method", + "name": "setMaxSendFragment", + "signature": "`tlsSocket.setMaxSendFragment(size)`", + "label": "tlsSocket.setMaxSendFragment(size)", + "apiSymbol": "tlsSocket.setMaxSendFragment", + "depth": 2, + "scope": "api", + "anchor": "tlssocketsetmaxsendfragmentsize", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tls:f2e0cdec5975", + "chapter": "tls", + "kind": "section", + "name": "authorizationError", + "signature": "`tlsSocket.authorizationError`", + "label": "tlsSocket.authorizationError", + "apiSymbol": "tlsSocket.authorizationError", + "depth": 2, + "scope": "api", + "anchor": "tlssocketauthorizationerror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tls:c52e5a0dfbcf", + "chapter": "tls", + "kind": "boolean", + "name": "Type", + "signature": "`authorized` Type: {boolean}", + "label": "authorized", + "apiSymbol": "authorized", + "depth": 2, + "scope": "api", + "anchor": "class-tlstlssocket", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tls:a45e792111f0", + "chapter": "tls", + "kind": "section", + "name": "encrypted", + "signature": "`tlsSocket.encrypted`", + "label": "tlsSocket.encrypted", + "apiSymbol": "tlsSocket.encrypted", + "depth": 2, + "scope": "api", + "anchor": "tlssocketencrypted", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tls:60dcc1886fa1", + "chapter": "tls", + "kind": "string", + "name": "Type", + "signature": "`localAddress` Type: {string}", + "label": "localAddress", + "apiSymbol": "localAddress", + "depth": 2, + "scope": "api", + "anchor": "class-tlstlssocket", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tls:787e156cfa3b", + "chapter": "tls", + "kind": "integer", + "name": "Type", + "signature": "`localPort` Type: {integer}", + "label": "localPort", + "apiSymbol": "localPort", + "depth": 2, + "scope": "api", + "anchor": "class-tlstlssocket", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tls:66e443aeac7c", + "chapter": "tls", + "kind": "string", + "name": "Type", + "signature": "`remoteAddress` Type: {string}", + "label": "remoteAddress", + "apiSymbol": "remoteAddress", + "depth": 2, + "scope": "api", + "anchor": "class-tlstlssocket", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tls:1f90bb780303", + "chapter": "tls", + "kind": "string", + "name": "Type", + "signature": "`remoteFamily` Type: {string}", + "label": "remoteFamily", + "apiSymbol": "remoteFamily", + "depth": 2, + "scope": "api", + "anchor": "class-tlstlssocket", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tls:a3755ad291a6", + "chapter": "tls", + "kind": "integer", + "name": "Type", + "signature": "`remotePort` Type: {integer}", + "label": "remotePort", + "apiSymbol": "remotePort", + "depth": 2, + "scope": "api", + "anchor": "class-tlstlssocket", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tls:c5970763c4f8", + "chapter": "tls", + "kind": "event", + "name": "keylog", + "signature": "Event: `'keylog'`", + "label": "'keylog'", + "apiSymbol": "'keylog'", + "depth": 2, + "scope": "api", + "anchor": "event-keylog_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tls:a8befc33127e", + "chapter": "tls", + "kind": "event", + "name": "OCSPResponse", + "signature": "Event: `'OCSPResponse'`", + "label": "'OCSPResponse'", + "apiSymbol": "'OCSPResponse'", + "depth": 2, + "scope": "api", + "anchor": "event-ocspresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tls:446a052576c2", + "chapter": "tls", + "kind": "event", + "name": "secure", + "signature": "Event: `'secure'`", + "label": "'secure'", + "apiSymbol": "'secure'", + "depth": 2, + "scope": "api", + "anchor": "event-secure", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tls:3efd8f841639", + "chapter": "tls", + "kind": "event", + "name": "secureConnect", + "signature": "Event: `'secureConnect'`", + "label": "'secureConnect'", + "apiSymbol": "'secureConnect'", + "depth": 2, + "scope": "api", + "anchor": "event-secureconnect", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tls:1954a7112a82", + "chapter": "tls", + "kind": "event", + "name": "session", + "signature": "Event: `'session'`", + "label": "'session'", + "apiSymbol": "'session'", + "depth": 2, + "scope": "api", + "anchor": "event-session", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tls:d2efd8bfb28c", + "chapter": "tls", + "kind": "method", + "name": "checkServerIdentity", + "signature": "`tls.checkServerIdentity(hostname, cert)`", + "label": "tls.checkServerIdentity(hostname, cert)", + "apiSymbol": "tls.checkServerIdentity", + "depth": 1, + "scope": "api", + "anchor": "tlscheckserveridentityhostname-cert", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tls:702d2d8bf862", + "chapter": "tls", + "kind": "method", + "name": "connect", + "signature": "`tls.connect(options[, callback])`", + "label": "tls.connect(options[, callback])", + "apiSymbol": "tls.connect", + "depth": 1, + "scope": "api", + "anchor": "tlsconnectoptions-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "tls:34b3563433b2", + "chapter": "tls", + "kind": "method", + "name": "connect", + "signature": "`tls.connect(path[, options][, callback])`", + "label": "tls.connect(path[, options][, callback])", + "apiSymbol": "tls.connect", + "depth": 1, + "scope": "api", + "anchor": "tlsconnectpath-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "tls:afd15ddeeaeb", + "chapter": "tls", + "kind": "method", + "name": "connect", + "signature": "`tls.connect(port[, host][, options][, callback])`", + "label": "tls.connect(port[, host][, options][, callback])", + "apiSymbol": "tls.connect", + "depth": 1, + "scope": "api", + "anchor": "tlsconnectport-host-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "tls:26fef81aa33d", + "chapter": "tls", + "kind": "method", + "name": "createSecureContext", + "signature": "`tls.createSecureContext([options])`", + "label": "tls.createSecureContext([options])", + "apiSymbol": "tls.createSecureContext", + "depth": 1, + "scope": "api", + "anchor": "tlscreatesecurecontextoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "tls:c675d0350d38", + "chapter": "tls", + "kind": "method", + "name": "createServer", + "signature": "`tls.createServer([options][, secureConnectionListener])`", + "label": "tls.createServer([options][, secureConnectionListener])", + "apiSymbol": "tls.createServer", + "depth": 1, + "scope": "api", + "anchor": "tlscreateserveroptions-secureconnectionlistener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "tls:8bd344e3d670", + "chapter": "tls", + "kind": "method", + "name": "setDefaultCACertificates", + "signature": "`tls.setDefaultCACertificates(certs)`", + "label": "tls.setDefaultCACertificates(certs)", + "apiSymbol": "tls.setDefaultCACertificates", + "depth": 1, + "scope": "api", + "anchor": "tlssetdefaultcacertificatescerts", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tls:b4b36e5c5dc5", + "chapter": "tls", + "kind": "method", + "name": "getCACertificates", + "signature": "`tls.getCACertificates([type])`", + "label": "tls.getCACertificates([type])", + "apiSymbol": "tls.getCACertificates", + "depth": 1, + "scope": "api", + "anchor": "tlsgetcacertificatestype", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tls:4939f0b62ade", + "chapter": "tls", + "kind": "method", + "name": "getCiphers", + "signature": "`tls.getCiphers()`", + "label": "tls.getCiphers()", + "apiSymbol": "tls.getCiphers", + "depth": 1, + "scope": "api", + "anchor": "tlsgetciphers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tls:df163bf0e931", + "chapter": "tls", + "kind": "string\\[]", + "name": "Type", + "signature": "`rootCertificates` Type: {string\\[]}", + "label": "rootCertificates", + "apiSymbol": "rootCertificates", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "tls:c13858461177", + "chapter": "tls", + "kind": "section", + "name": "DEFAULT_ECDH_CURVE", + "signature": "`tls.DEFAULT_ECDH_CURVE`", + "label": "tls.DEFAULT_ECDH_CURVE", + "apiSymbol": "tls.DEFAULT_ECDH_CURVE", + "depth": 1, + "scope": "api", + "anchor": "tlsdefault_ecdh_curve", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tls:413eb502cb29", + "chapter": "tls", + "kind": "string", + "name": "Type", + "signature": "`DEFAULT_MAX_VERSION` Type: {string} The default value of the `maxVersion` option of [`tls.createSecureContext()`][]. It can be assigned any of the supported TLS protocol versions, `'TLSv1.3'`, `'TLSv1.2'`, `'TLSv1.1'`, or `'TLSv1'`. **Default:** `'TLSv1.3'`, unless changed using CLI options. Using `--tls-max-v1.2` sets the default to `'TLSv1.2'`. Using `--tls-max-v1.3` sets the default to `'TLSv1.3'`. If multiple of the options are provided, the highest maximum is used.", + "label": "DEFAULT_MAX_VERSION", + "apiSymbol": "DEFAULT_MAX_VERSION", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tls:0bbe9d7cd1b2", + "chapter": "tls", + "kind": "string", + "name": "Type", + "signature": "`DEFAULT_MIN_VERSION` Type: {string} The default value of the `minVersion` option of [`tls.createSecureContext()`][]. It can be assigned any of the supported TLS protocol versions, `'TLSv1.3'`, `'TLSv1.2'`, `'TLSv1.1'`, or `'TLSv1'`. Versions before TLSv1.2 may require downgrading the [OpenSSL Security Level][]. **Default:** `'TLSv1.2'`, unless changed using CLI options. Using `--tls-min-v1.0` sets the default to `'TLSv1'`. Using `--tls-min-v1.1` sets the default to `'TLSv1.1'`. Using `--tls-min-v1.3` sets the default to `'TLSv1.3'`. If multiple of the options are provided, the lowest minimum is used.", + "label": "DEFAULT_MIN_VERSION", + "apiSymbol": "DEFAULT_MIN_VERSION", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tls:e8919206b881", + "chapter": "tls", + "kind": "string", + "name": "Type", + "signature": "`DEFAULT_CIPHERS` Type: {string} The default value of the `ciphers` option of [`tls.createSecureContext()`][]. It can be assigned any of the supported OpenSSL ciphers. Defaults to the content of `crypto.constants.defaultCoreCipherList`, unless changed using CLI options using `--tls-default-ciphers`.", + "label": "DEFAULT_CIPHERS", + "apiSymbol": "DEFAULT_CIPHERS", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tracing:c9a14eca038f", + "chapter": "tracing", + "kind": "module", + "name": "trace_events", + "signature": "Trace events", + "label": "Trace events", + "apiSymbol": "trace_events", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + } + }, + { + "id": "tracing:577c8490aded", + "chapter": "tracing", + "kind": "module", + "name": "the_`node:trace_events`_module", + "signature": "The `node:trace_events` module", + "label": "The node:trace_events module", + "apiSymbol": "node:trace_events", + "depth": 1, + "scope": "api", + "anchor": "the-nodetrace_events-module", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "tracing:abd75c9e5853", + "chapter": "tracing", + "kind": "module", + "name": "`tracing`_object", + "signature": "`Tracing` object", + "label": "Tracing", + "apiSymbol": "Tracing", + "depth": 2, + "scope": "api", + "anchor": "tracing-object", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "tracing:760510fab0f4", + "chapter": "tracing", + "kind": "method", + "name": "disable", + "signature": "`tracing.disable()`", + "label": "tracing.disable()", + "apiSymbol": "tracing.disable", + "depth": 3, + "scope": "api", + "anchor": "tracingdisable", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "tracing:edc2bccabfc5", + "chapter": "tracing", + "kind": "method", + "name": "enable", + "signature": "`tracing.enable()`", + "label": "tracing.enable()", + "apiSymbol": "tracing.enable", + "depth": 3, + "scope": "api", + "anchor": "tracingenable", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "tracing:3d7738623691", + "chapter": "tracing", + "kind": "string", + "name": "Type", + "signature": "`categories` Type: {string}", + "label": "categories", + "apiSymbol": "categories", + "depth": 3, + "scope": "api", + "anchor": "tracing-object", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "tracing:8345f6c9bd8b", + "chapter": "tracing", + "kind": "boolean", + "name": "Type", + "signature": "`enabled` Type: {boolean} `true` only if the `Tracing` object has been enabled.", + "label": "enabled", + "apiSymbol": "enabled", + "depth": 3, + "scope": "api", + "anchor": "tracing-object", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "tracing:bb6574cf59bf", + "chapter": "tracing", + "kind": "method", + "name": "createTracing", + "signature": "`trace_events.createTracing(options)`", + "label": "trace_events.createTracing(options)", + "apiSymbol": "trace_events.createTracing", + "depth": 2, + "scope": "api", + "anchor": "trace_eventscreatetracingoptions", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "tracing:656f852d60b7", + "chapter": "tracing", + "kind": "method", + "name": "getEnabledCategories", + "signature": "`trace_events.getEnabledCategories()`", + "label": "trace_events.getEnabledCategories()", + "apiSymbol": "trace_events.getEnabledCategories", + "depth": 2, + "scope": "api", + "anchor": "trace_eventsgetenabledcategories", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static implementation exists for this Node API family yet.", + "verification": "declared-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island implementation exists for this Node API family yet.", + "verification": "declared-gap" + } + }, + { + "id": "tty:b0fff389dccc", + "chapter": "tty", + "kind": "module", + "name": "tty", + "signature": "TTY", + "label": "TTY", + "apiSymbol": "tty", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + }, + "dynamic": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + } + }, + { + "id": "tty:369dcb137397", + "chapter": "tty", + "kind": "class", + "name": "tty.ReadStream", + "signature": "Class: `tty.ReadStream`", + "label": "tty.ReadStream", + "apiSymbol": "tty.ReadStream", + "depth": 1, + "scope": "api", + "anchor": "class-ttyreadstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "tty:6cabcad8e8f5", + "chapter": "tty", + "kind": "method", + "name": "setRawMode", + "signature": "`readStream.setRawMode(mode)`", + "label": "readStream.setRawMode(mode)", + "apiSymbol": "readStream.setRawMode", + "depth": 2, + "scope": "api", + "anchor": "readstreamsetrawmodemode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tty:a6a0c03c5c7b", + "chapter": "tty", + "kind": "section", + "name": "isRaw", + "signature": "`readStream.isRaw`", + "label": "readStream.isRaw", + "apiSymbol": "readStream.isRaw", + "depth": 2, + "scope": "api", + "anchor": "readstreamisraw", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tty:3bd71118068a", + "chapter": "tty", + "kind": "section", + "name": "isTTY", + "signature": "`readStream.isTTY`", + "label": "readStream.isTTY", + "apiSymbol": "readStream.isTTY", + "depth": 2, + "scope": "api", + "anchor": "readstreamistty", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tty:cdef680b84c7", + "chapter": "tty", + "kind": "class", + "name": "tty.WriteStream", + "signature": "Class: `tty.WriteStream`", + "label": "tty.WriteStream", + "apiSymbol": "tty.WriteStream", + "depth": 1, + "scope": "api", + "anchor": "class-ttywritestream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "tty:2c9353067e16", + "chapter": "tty", + "kind": "method", + "name": "clearLine", + "signature": "`writeStream.clearLine(dir[, callback])`", + "label": "writeStream.clearLine(dir[, callback])", + "apiSymbol": "writeStream.clearLine", + "depth": 2, + "scope": "api", + "anchor": "writestreamclearlinedir-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tty:6ac9fe254030", + "chapter": "tty", + "kind": "method", + "name": "clearScreenDown", + "signature": "`writeStream.clearScreenDown([callback])`", + "label": "writeStream.clearScreenDown([callback])", + "apiSymbol": "writeStream.clearScreenDown", + "depth": 2, + "scope": "api", + "anchor": "writestreamclearscreendowncallback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tty:6d3569552d47", + "chapter": "tty", + "kind": "method", + "name": "cursorTo", + "signature": "`writeStream.cursorTo(x[, y][, callback])`", + "label": "writeStream.cursorTo(x[, y][, callback])", + "apiSymbol": "writeStream.cursorTo", + "depth": 2, + "scope": "api", + "anchor": "writestreamcursortox-y-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tty:6b26448ebbb8", + "chapter": "tty", + "kind": "method", + "name": "getColorDepth", + "signature": "`writeStream.getColorDepth([env])`", + "label": "writeStream.getColorDepth([env])", + "apiSymbol": "writeStream.getColorDepth", + "depth": 2, + "scope": "api", + "anchor": "writestreamgetcolordepthenv", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tty:8de54b7228ad", + "chapter": "tty", + "kind": "method", + "name": "getWindowSize", + "signature": "`writeStream.getWindowSize()`", + "label": "writeStream.getWindowSize()", + "apiSymbol": "writeStream.getWindowSize", + "depth": 2, + "scope": "api", + "anchor": "writestreamgetwindowsize", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tty:ef91fa4cf2c5", + "chapter": "tty", + "kind": "method", + "name": "hasColors", + "signature": "`writeStream.hasColors([count][, env])`", + "label": "writeStream.hasColors([count][, env])", + "apiSymbol": "writeStream.hasColors", + "depth": 2, + "scope": "api", + "anchor": "writestreamhascolorscount-env", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tty:4b6a018abd03", + "chapter": "tty", + "kind": "method", + "name": "moveCursor", + "signature": "`writeStream.moveCursor(dx, dy[, callback])`", + "label": "writeStream.moveCursor(dx, dy[, callback])", + "apiSymbol": "writeStream.moveCursor", + "depth": 2, + "scope": "api", + "anchor": "writestreammovecursordx-dy-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tty:fa657719d5b5", + "chapter": "tty", + "kind": "section", + "name": "columns", + "signature": "`writeStream.columns`", + "label": "writeStream.columns", + "apiSymbol": "writeStream.columns", + "depth": 2, + "scope": "api", + "anchor": "writestreamcolumns", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tty:85304573dac3", + "chapter": "tty", + "kind": "section", + "name": "isTTY", + "signature": "`writeStream.isTTY`", + "label": "writeStream.isTTY", + "apiSymbol": "writeStream.isTTY", + "depth": 2, + "scope": "api", + "anchor": "writestreamistty", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tty:7695a1178c0c", + "chapter": "tty", + "kind": "section", + "name": "rows", + "signature": "`writeStream.rows`", + "label": "writeStream.rows", + "apiSymbol": "writeStream.rows", + "depth": 2, + "scope": "api", + "anchor": "writestreamrows", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tty:de21e113bf2c", + "chapter": "tty", + "kind": "event", + "name": "resize", + "signature": "Event: `'resize'`", + "label": "'resize'", + "apiSymbol": "'resize'", + "depth": 2, + "scope": "api", + "anchor": "event-resize", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "tty:bf52fdd65f09", + "chapter": "tty", + "kind": "method", + "name": "isatty", + "signature": "`tty.isatty(fd)`", + "label": "tty.isatty(fd)", + "apiSymbol": "tty.isatty", + "depth": 1, + "scope": "api", + "anchor": "ttyisattyfd", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "dgram:b2849f7caa1f", + "chapter": "dgram", + "kind": "module", + "name": "dgram", + "signature": "UDP/datagram sockets", + "label": "UDP/datagram sockets", + "apiSymbol": "dgram", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + }, + "dynamic": { + "status": "not-implemented", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + } + }, + { + "id": "dgram:83a4eb5a1cfe", + "chapter": "dgram", + "kind": "module", + "name": "`node:dgram`_module_functions", + "signature": "`node:dgram` module functions", + "label": "node:dgram", + "apiSymbol": "node:dgram", + "depth": 1, + "scope": "api", + "anchor": "nodedgram-module-functions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "dgram:e29b48fbffa6", + "chapter": "dgram", + "kind": "method", + "name": "createSocket", + "signature": "`dgram.createSocket(options[, callback])`", + "label": "dgram.createSocket(options[, callback])", + "apiSymbol": "dgram.createSocket", + "depth": 2, + "scope": "api", + "anchor": "dgramcreatesocketoptions-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "dgram:ac076b212635", + "chapter": "dgram", + "kind": "method", + "name": "createSocket", + "signature": "`dgram.createSocket(type[, callback])`", + "label": "dgram.createSocket(type[, callback])", + "apiSymbol": "dgram.createSocket", + "depth": 2, + "scope": "api", + "anchor": "dgramcreatesockettype-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "dgram:fb3031867b1a", + "chapter": "dgram", + "kind": "class", + "name": "dgram.Socket", + "signature": "Class: `dgram.Socket`", + "label": "dgram.Socket", + "apiSymbol": "dgram.Socket", + "depth": 1, + "scope": "api", + "anchor": "class-dgramsocket", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "dgram:2d302ec49e6c", + "chapter": "dgram", + "kind": "method", + "name": "addMembership", + "signature": "`socket.addMembership(multicastAddress[, multicastInterface])`", + "label": "socket.addMembership(multicastAddress[, multicastInterface])", + "apiSymbol": "socket.addMembership", + "depth": 2, + "scope": "api", + "anchor": "socketaddmembershipmulticastaddress-multicastinterface", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "dgram:fcc95297bd53", + "chapter": "dgram", + "kind": "method", + "name": "addSourceSpecificMembership", + "signature": "`socket.addSourceSpecificMembership(sourceAddress, groupAddress[, multicastInterface])`", + "label": "socket.addSourceSpecificMembership(sourceAddress, groupAddress[, multicastInterface])", + "apiSymbol": "socket.addSourceSpecificMembership", + "depth": 2, + "scope": "api", + "anchor": "socketaddsourcespecificmembershipsourceaddress-groupaddress-multicastinterface", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "dgram:4e4ba5962821", + "chapter": "dgram", + "kind": "method", + "name": "address", + "signature": "`socket.address()`", + "label": "socket.address()", + "apiSymbol": "socket.address", + "depth": 2, + "scope": "api", + "anchor": "socketaddress", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "dgram:bd89cc2357f5", + "chapter": "dgram", + "kind": "method", + "name": "bind", + "signature": "`socket.bind([port][, address][, callback])`", + "label": "socket.bind([port][, address][, callback])", + "apiSymbol": "socket.bind", + "depth": 2, + "scope": "api", + "anchor": "socketbindport-address-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "dgram:d0d49a16d0e3", + "chapter": "dgram", + "kind": "method", + "name": "bind", + "signature": "`socket.bind(options[, callback])`", + "label": "socket.bind(options[, callback])", + "apiSymbol": "socket.bind", + "depth": 2, + "scope": "api", + "anchor": "socketbindoptions-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "dgram:40eeb2e82c2b", + "chapter": "dgram", + "kind": "method", + "name": "close", + "signature": "`socket.close([callback])`", + "label": "socket.close([callback])", + "apiSymbol": "socket.close", + "depth": 2, + "scope": "api", + "anchor": "socketclosecallback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "dgram:02c12ecd62b7", + "chapter": "dgram", + "kind": "method", + "name": "[Symbol.asyncDispose]", + "signature": "`socket[Symbol.asyncDispose]()`", + "label": "socket[Symbol.asyncDispose]()", + "apiSymbol": "socket", + "depth": 2, + "scope": "api", + "anchor": "socketsymbolasyncdispose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "dgram:50ff3e61d94f", + "chapter": "dgram", + "kind": "method", + "name": "connect", + "signature": "`socket.connect(port[, address][, callback])`", + "label": "socket.connect(port[, address][, callback])", + "apiSymbol": "socket.connect", + "depth": 2, + "scope": "api", + "anchor": "socketconnectport-address-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "dgram:c2008af7f485", + "chapter": "dgram", + "kind": "method", + "name": "disconnect", + "signature": "`socket.disconnect()`", + "label": "socket.disconnect()", + "apiSymbol": "socket.disconnect", + "depth": 2, + "scope": "api", + "anchor": "socketdisconnect", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "dgram:340ffacd9326", + "chapter": "dgram", + "kind": "method", + "name": "dropMembership", + "signature": "`socket.dropMembership(multicastAddress[, multicastInterface])`", + "label": "socket.dropMembership(multicastAddress[, multicastInterface])", + "apiSymbol": "socket.dropMembership", + "depth": 2, + "scope": "api", + "anchor": "socketdropmembershipmulticastaddress-multicastinterface", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "dgram:fccc4a98c831", + "chapter": "dgram", + "kind": "method", + "name": "dropSourceSpecificMembership", + "signature": "`socket.dropSourceSpecificMembership(sourceAddress, groupAddress[, multicastInterface])`", + "label": "socket.dropSourceSpecificMembership(sourceAddress, groupAddress[, multicastInterface])", + "apiSymbol": "socket.dropSourceSpecificMembership", + "depth": 2, + "scope": "api", + "anchor": "socketdropsourcespecificmembershipsourceaddress-groupaddress-multicastinterface", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "dgram:d48431cf741a", + "chapter": "dgram", + "kind": "method", + "name": "getRecvBufferSize", + "signature": "`socket.getRecvBufferSize()`", + "label": "socket.getRecvBufferSize()", + "apiSymbol": "socket.getRecvBufferSize", + "depth": 2, + "scope": "api", + "anchor": "socketgetrecvbuffersize", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "dgram:aed3f4131054", + "chapter": "dgram", + "kind": "method", + "name": "getSendBufferSize", + "signature": "`socket.getSendBufferSize()`", + "label": "socket.getSendBufferSize()", + "apiSymbol": "socket.getSendBufferSize", + "depth": 2, + "scope": "api", + "anchor": "socketgetsendbuffersize", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "dgram:36bc109f71f0", + "chapter": "dgram", + "kind": "method", + "name": "getSendQueueSize", + "signature": "`socket.getSendQueueSize()`", + "label": "socket.getSendQueueSize()", + "apiSymbol": "socket.getSendQueueSize", + "depth": 2, + "scope": "api", + "anchor": "socketgetsendqueuesize", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "dgram:a6ed57af26d0", + "chapter": "dgram", + "kind": "method", + "name": "getSendQueueCount", + "signature": "`socket.getSendQueueCount()`", + "label": "socket.getSendQueueCount()", + "apiSymbol": "socket.getSendQueueCount", + "depth": 2, + "scope": "api", + "anchor": "socketgetsendqueuecount", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "dgram:d6a4eab82d31", + "chapter": "dgram", + "kind": "method", + "name": "ref", + "signature": "`socket.ref()`", + "label": "socket.ref()", + "apiSymbol": "socket.ref", + "depth": 2, + "scope": "api", + "anchor": "socketref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "dgram:9bc55c5339d7", + "chapter": "dgram", + "kind": "method", + "name": "remoteAddress", + "signature": "`socket.remoteAddress()`", + "label": "socket.remoteAddress()", + "apiSymbol": "socket.remoteAddress", + "depth": 2, + "scope": "api", + "anchor": "socketremoteaddress", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "dgram:f2a8535a19a1", + "chapter": "dgram", + "kind": "method", + "name": "send", + "signature": "`socket.send(msg[, offset, length][, port][, address][, callback])`", + "label": "socket.send(msg[, offset, length][, port][, address][, callback])", + "apiSymbol": "socket.send", + "depth": 2, + "scope": "api", + "anchor": "socketsendmsg-offset-length-port-address-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "dgram:bf7a641c2707", + "chapter": "dgram", + "kind": "method", + "name": "setBroadcast", + "signature": "`socket.setBroadcast(flag)`", + "label": "socket.setBroadcast(flag)", + "apiSymbol": "socket.setBroadcast", + "depth": 2, + "scope": "api", + "anchor": "socketsetbroadcastflag", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "dgram:2272f998d2c8", + "chapter": "dgram", + "kind": "method", + "name": "setMulticastInterface", + "signature": "`socket.setMulticastInterface(multicastInterface)`", + "label": "socket.setMulticastInterface(multicastInterface)", + "apiSymbol": "socket.setMulticastInterface", + "depth": 2, + "scope": "api", + "anchor": "socketsetmulticastinterfacemulticastinterface", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "dgram:c5c314a5ad19", + "chapter": "dgram", + "kind": "method", + "name": "setMulticastLoopback", + "signature": "`socket.setMulticastLoopback(flag)`", + "label": "socket.setMulticastLoopback(flag)", + "apiSymbol": "socket.setMulticastLoopback", + "depth": 2, + "scope": "api", + "anchor": "socketsetmulticastloopbackflag", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "dgram:ca26f65c8caa", + "chapter": "dgram", + "kind": "method", + "name": "setMulticastTTL", + "signature": "`socket.setMulticastTTL(ttl)`", + "label": "socket.setMulticastTTL(ttl)", + "apiSymbol": "socket.setMulticastTTL", + "depth": 2, + "scope": "api", + "anchor": "socketsetmulticastttlttl", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "dgram:913912dcb4f5", + "chapter": "dgram", + "kind": "method", + "name": "setRecvBufferSize", + "signature": "`socket.setRecvBufferSize(size)`", + "label": "socket.setRecvBufferSize(size)", + "apiSymbol": "socket.setRecvBufferSize", + "depth": 2, + "scope": "api", + "anchor": "socketsetrecvbuffersizesize", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "dgram:a38ce73e1906", + "chapter": "dgram", + "kind": "method", + "name": "setSendBufferSize", + "signature": "`socket.setSendBufferSize(size)`", + "label": "socket.setSendBufferSize(size)", + "apiSymbol": "socket.setSendBufferSize", + "depth": 2, + "scope": "api", + "anchor": "socketsetsendbuffersizesize", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "dgram:b7d9a76bd446", + "chapter": "dgram", + "kind": "method", + "name": "setTTL", + "signature": "`socket.setTTL(ttl)`", + "label": "socket.setTTL(ttl)", + "apiSymbol": "socket.setTTL", + "depth": 2, + "scope": "api", + "anchor": "socketsetttlttl", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "dgram:cb951bc742ac", + "chapter": "dgram", + "kind": "method", + "name": "unref", + "signature": "`socket.unref()`", + "label": "socket.unref()", + "apiSymbol": "socket.unref", + "depth": 2, + "scope": "api", + "anchor": "socketunref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "dgram:3d3e1f62991e", + "chapter": "dgram", + "kind": "event", + "name": "close", + "signature": "Event: `'close'`", + "label": "'close'", + "apiSymbol": "'close'", + "depth": 2, + "scope": "api", + "anchor": "event-close", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "dgram:ea3af6bd7da8", + "chapter": "dgram", + "kind": "event", + "name": "connect", + "signature": "Event: `'connect'`", + "label": "'connect'", + "apiSymbol": "'connect'", + "depth": 2, + "scope": "api", + "anchor": "event-connect", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "dgram:3c2833e21411", + "chapter": "dgram", + "kind": "event", + "name": "error", + "signature": "Event: `'error'`", + "label": "'error'", + "apiSymbol": "'error'", + "depth": 2, + "scope": "api", + "anchor": "event-error", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "dgram:78f6d82f4589", + "chapter": "dgram", + "kind": "event", + "name": "listening", + "signature": "Event: `'listening'`", + "label": "'listening'", + "apiSymbol": "'listening'", + "depth": 2, + "scope": "api", + "anchor": "event-listening", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "dgram:ceeddc966ef8", + "chapter": "dgram", + "kind": "event", + "name": "message", + "signature": "Event: `'message'`", + "label": "'message'", + "apiSymbol": "'message'", + "depth": 2, + "scope": "api", + "anchor": "event-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "No dynamic-island shim exists for this Node module yet.", + "verification": "registry-gap" + } + }, + { + "id": "url:cf74284aae70", + "chapter": "url", + "kind": "module", + "name": "url", + "signature": "URL", + "label": "URL", + "apiSymbol": "url", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + }, + "dynamic": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + } + }, + { + "id": "url:8f4bdbc993a2", + "chapter": "url", + "kind": "class", + "name": "URL", + "signature": "Class: `URL`", + "label": "URL", + "apiSymbol": "URL", + "depth": 1, + "scope": "api", + "anchor": "class-url", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "url:ca852cc7fae2", + "chapter": "url", + "kind": "method", + "name": "toString", + "signature": "`url.toString()`", + "label": "url.toString()", + "apiSymbol": "url.toString", + "depth": 2, + "scope": "api", + "anchor": "urltostring", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "url:ce3826342140", + "chapter": "url", + "kind": "method", + "name": "toJSON", + "signature": "`url.toJSON()`", + "label": "url.toJSON()", + "apiSymbol": "url.toJSON", + "depth": 2, + "scope": "api", + "anchor": "urltojson", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "url:3d825e17dd4d", + "chapter": "url", + "kind": "method", + "name": "createObjectURL", + "signature": "`URL.createObjectURL(blob)`", + "label": "URL.createObjectURL(blob)", + "apiSymbol": "URL.createObjectURL", + "depth": 2, + "scope": "api", + "anchor": "urlcreateobjecturlblob", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "url:7fb3f247c6d7", + "chapter": "url", + "kind": "method", + "name": "revokeObjectURL", + "signature": "`URL.revokeObjectURL(id)`", + "label": "URL.revokeObjectURL(id)", + "apiSymbol": "URL.revokeObjectURL", + "depth": 2, + "scope": "api", + "anchor": "urlrevokeobjecturlid", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "url:504e9a4a0cfd", + "chapter": "url", + "kind": "method", + "name": "canParse", + "signature": "`URL.canParse(input[, base])`", + "label": "URL.canParse(input[, base])", + "apiSymbol": "URL.canParse", + "depth": 2, + "scope": "api", + "anchor": "urlcanparseinput-base", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "url:59d273bab3f3", + "chapter": "url", + "kind": "method", + "name": "parse", + "signature": "`URL.parse(input[, base])`", + "label": "URL.parse(input[, base])", + "apiSymbol": "URL.parse", + "depth": 2, + "scope": "api", + "anchor": "urlparseinput-base", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "url:c1e3b748497e", + "chapter": "url", + "kind": "string", + "name": "Type", + "signature": "`hash` Type: {string}", + "label": "hash", + "apiSymbol": "hash", + "depth": 2, + "scope": "api", + "anchor": "class-url", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "url:ac7491f15347", + "chapter": "url", + "kind": "string", + "name": "Type", + "signature": "`host` Type: {string}", + "label": "host", + "apiSymbol": "host", + "depth": 2, + "scope": "api", + "anchor": "class-url", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "url:3040963053f6", + "chapter": "url", + "kind": "string", + "name": "Type", + "signature": "`hostname` Type: {string}", + "label": "hostname", + "apiSymbol": "hostname", + "depth": 2, + "scope": "api", + "anchor": "class-url", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "url:86bdbbbdb2e1", + "chapter": "url", + "kind": "string", + "name": "Type", + "signature": "`href` Type: {string}", + "label": "href", + "apiSymbol": "href", + "depth": 2, + "scope": "api", + "anchor": "class-url", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "url:66a259bce471", + "chapter": "url", + "kind": "string", + "name": "Type", + "signature": "`origin` Type: {string}", + "label": "origin", + "apiSymbol": "origin", + "depth": 2, + "scope": "api", + "anchor": "class-url", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "url:a510df3fea7c", + "chapter": "url", + "kind": "string", + "name": "Type", + "signature": "`password` Type: {string}", + "label": "password", + "apiSymbol": "password", + "depth": 2, + "scope": "api", + "anchor": "class-url", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "url:0f9a38d10877", + "chapter": "url", + "kind": "string", + "name": "Type", + "signature": "`pathname` Type: {string}", + "label": "pathname", + "apiSymbol": "pathname", + "depth": 2, + "scope": "api", + "anchor": "class-url", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "url:02f621e64a44", + "chapter": "url", + "kind": "string", + "name": "Type", + "signature": "`port` Type: {string}", + "label": "port", + "apiSymbol": "port", + "depth": 2, + "scope": "api", + "anchor": "class-url", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "url:c006c906a5f7", + "chapter": "url", + "kind": "string", + "name": "Type", + "signature": "`protocol` Type: {string}", + "label": "protocol", + "apiSymbol": "protocol", + "depth": 2, + "scope": "api", + "anchor": "class-url", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "url:5d3d05e8fa46", + "chapter": "url", + "kind": "string", + "name": "Type", + "signature": "`search` Type: {string}", + "label": "search", + "apiSymbol": "search", + "depth": 2, + "scope": "api", + "anchor": "class-url", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "url:d6711847f88e", + "chapter": "url", + "kind": "URLSearchParams", + "name": "Type", + "signature": "`searchParams` Type: {URLSearchParams}", + "label": "searchParams", + "apiSymbol": "searchParams", + "depth": 2, + "scope": "api", + "anchor": "class-url", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "url:b90cacdc7467", + "chapter": "url", + "kind": "string", + "name": "Type", + "signature": "`username` Type: {string}", + "label": "username", + "apiSymbol": "username", + "depth": 2, + "scope": "api", + "anchor": "class-url", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "url:379a4af5877c", + "chapter": "url", + "kind": "class", + "name": "URLPattern", + "signature": "Class: `URLPattern`", + "label": "URLPattern", + "apiSymbol": "URLPattern", + "depth": 1, + "scope": "api", + "anchor": "class-urlpattern", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "url:7caf609cfbc2", + "chapter": "url", + "kind": "method", + "name": "exec", + "signature": "`urlPattern.exec(input[, baseURL])`", + "label": "urlPattern.exec(input[, baseURL])", + "apiSymbol": "urlPattern.exec", + "depth": 2, + "scope": "api", + "anchor": "urlpatternexecinput-baseurl", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "url:c6150bc59262", + "chapter": "url", + "kind": "method", + "name": "test", + "signature": "`urlPattern.test(input[, baseURL])`", + "label": "urlPattern.test(input[, baseURL])", + "apiSymbol": "urlPattern.test", + "depth": 2, + "scope": "api", + "anchor": "urlpatterntestinput-baseurl", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "url:efe9b56ddf72", + "chapter": "url", + "kind": "class", + "name": "URLSearchParams", + "signature": "Class: `URLSearchParams`", + "label": "URLSearchParams", + "apiSymbol": "URLSearchParams", + "depth": 1, + "scope": "api", + "anchor": "class-urlsearchparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "url:6599a7e81cd6", + "chapter": "url", + "kind": "method", + "name": "append", + "signature": "`urlSearchParams.append(name, value)`", + "label": "urlSearchParams.append(name, value)", + "apiSymbol": "urlSearchParams.append", + "depth": 2, + "scope": "api", + "anchor": "urlsearchparamsappendname-value", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "url:238d65c61584", + "chapter": "url", + "kind": "method", + "name": "delete", + "signature": "`urlSearchParams.delete(name[, value])`", + "label": "urlSearchParams.delete(name[, value])", + "apiSymbol": "urlSearchParams.delete", + "depth": 2, + "scope": "api", + "anchor": "urlsearchparamsdeletename-value", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "url:1540e330c724", + "chapter": "url", + "kind": "method", + "name": "entries", + "signature": "`urlSearchParams.entries()`", + "label": "urlSearchParams.entries()", + "apiSymbol": "urlSearchParams.entries", + "depth": 2, + "scope": "api", + "anchor": "urlsearchparamsentries", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "url:5ff6c1417db8", + "chapter": "url", + "kind": "method", + "name": "forEach", + "signature": "`urlSearchParams.forEach(fn[, thisArg])`", + "label": "urlSearchParams.forEach(fn[, thisArg])", + "apiSymbol": "urlSearchParams.forEach", + "depth": 2, + "scope": "api", + "anchor": "urlsearchparamsforeachfn-thisarg", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "url:47fc2ebdac43", + "chapter": "url", + "kind": "method", + "name": "get", + "signature": "`urlSearchParams.get(name)`", + "label": "urlSearchParams.get(name)", + "apiSymbol": "urlSearchParams.get", + "depth": 2, + "scope": "api", + "anchor": "urlsearchparamsgetname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "url:1886d3fe6bc4", + "chapter": "url", + "kind": "method", + "name": "getAll", + "signature": "`urlSearchParams.getAll(name)`", + "label": "urlSearchParams.getAll(name)", + "apiSymbol": "urlSearchParams.getAll", + "depth": 2, + "scope": "api", + "anchor": "urlsearchparamsgetallname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "url:ba36aa1f6d16", + "chapter": "url", + "kind": "method", + "name": "has", + "signature": "`urlSearchParams.has(name[, value])`", + "label": "urlSearchParams.has(name[, value])", + "apiSymbol": "urlSearchParams.has", + "depth": 2, + "scope": "api", + "anchor": "urlsearchparamshasname-value", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "url:eaf2d8555575", + "chapter": "url", + "kind": "method", + "name": "keys", + "signature": "`urlSearchParams.keys()`", + "label": "urlSearchParams.keys()", + "apiSymbol": "urlSearchParams.keys", + "depth": 2, + "scope": "api", + "anchor": "urlsearchparamskeys", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "url:38e92e7464fb", + "chapter": "url", + "kind": "method", + "name": "set", + "signature": "`urlSearchParams.set(name, value)`", + "label": "urlSearchParams.set(name, value)", + "apiSymbol": "urlSearchParams.set", + "depth": 2, + "scope": "api", + "anchor": "urlsearchparamssetname-value", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "url:0eb44ad10012", + "chapter": "url", + "kind": "method", + "name": "sort", + "signature": "`urlSearchParams.sort()`", + "label": "urlSearchParams.sort()", + "apiSymbol": "urlSearchParams.sort", + "depth": 2, + "scope": "api", + "anchor": "urlsearchparamssort", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "url:4cbeace8bd8b", + "chapter": "url", + "kind": "method", + "name": "toString", + "signature": "`urlSearchParams.toString()`", + "label": "urlSearchParams.toString()", + "apiSymbol": "urlSearchParams.toString", + "depth": 2, + "scope": "api", + "anchor": "urlsearchparamstostring", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "url:05b8820a87cf", + "chapter": "url", + "kind": "method", + "name": "values", + "signature": "`urlSearchParams.values()`", + "label": "urlSearchParams.values()", + "apiSymbol": "urlSearchParams.values", + "depth": 2, + "scope": "api", + "anchor": "urlsearchparamsvalues", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "url:bef59544966e", + "chapter": "url", + "kind": "method", + "name": "[Symbol.iterator]", + "signature": "`urlSearchParams[Symbol.iterator]()`", + "label": "urlSearchParams[Symbol.iterator]()", + "apiSymbol": "urlSearchParams", + "depth": 2, + "scope": "api", + "anchor": "urlsearchparamssymboliterator", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "url:250a28b843c4", + "chapter": "url", + "kind": "section", + "name": "size", + "signature": "`urlSearchParams.size`", + "label": "urlSearchParams.size", + "apiSymbol": "urlSearchParams.size", + "depth": 2, + "scope": "api", + "anchor": "urlsearchparamssize", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "url:61654533497c", + "chapter": "url", + "kind": "method", + "name": "domainToASCII", + "signature": "`url.domainToASCII(domain)`", + "label": "url.domainToASCII(domain)", + "apiSymbol": "url.domainToASCII", + "depth": 1, + "scope": "api", + "anchor": "urldomaintoasciidomain", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "url:2fe3d9bf8826", + "chapter": "url", + "kind": "method", + "name": "domainToUnicode", + "signature": "`url.domainToUnicode(domain)`", + "label": "url.domainToUnicode(domain)", + "apiSymbol": "url.domainToUnicode", + "depth": 1, + "scope": "api", + "anchor": "urldomaintounicodedomain", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "url:8358aff572c7", + "chapter": "url", + "kind": "method", + "name": "fileURLToPath", + "signature": "`url.fileURLToPath(url[, options])`", + "label": "url.fileURLToPath(url[, options])", + "apiSymbol": "url.fileURLToPath", + "depth": 1, + "scope": "api", + "anchor": "urlfileurltopathurl-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "url:d6ca7d761e7b", + "chapter": "url", + "kind": "method", + "name": "fileURLToPathBuffer", + "signature": "`url.fileURLToPathBuffer(url[, options])`", + "label": "url.fileURLToPathBuffer(url[, options])", + "apiSymbol": "url.fileURLToPathBuffer", + "depth": 1, + "scope": "api", + "anchor": "urlfileurltopathbufferurl-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "url:202b01d4a9f5", + "chapter": "url", + "kind": "method", + "name": "format", + "signature": "`url.format(URL[, options])`", + "label": "url.format(URL[, options])", + "apiSymbol": "url.format", + "depth": 1, + "scope": "api", + "anchor": "urlformaturl-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "url:50f0ecfb7986", + "chapter": "url", + "kind": "method", + "name": "pathToFileURL", + "signature": "`url.pathToFileURL(path[, options])`", + "label": "url.pathToFileURL(path[, options])", + "apiSymbol": "url.pathToFileURL", + "depth": 1, + "scope": "api", + "anchor": "urlpathtofileurlpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "url:2454a9d74f45", + "chapter": "url", + "kind": "method", + "name": "urlToHttpOptions", + "signature": "`url.urlToHttpOptions(url)`", + "label": "url.urlToHttpOptions(url)", + "apiSymbol": "url.urlToHttpOptions", + "depth": 1, + "scope": "api", + "anchor": "urlurltohttpoptionsurl", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "url:26174deb7132", + "chapter": "url", + "kind": "module", + "name": "legacy_`urlobject`", + "signature": "Legacy `urlObject`", + "label": "Legacy urlObject", + "apiSymbol": "urlObject", + "depth": 1, + "scope": "api", + "anchor": "legacy-urlobject", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use the WHATWG URL API instead.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "url:0795bb0b86f8", + "chapter": "url", + "kind": "section", + "name": "auth", + "signature": "`urlObject.auth`", + "label": "urlObject.auth", + "apiSymbol": "urlObject.auth", + "depth": 2, + "scope": "api", + "anchor": "urlobjectauth", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use the WHATWG URL API instead.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "url:42947b964de1", + "chapter": "url", + "kind": "section", + "name": "hash", + "signature": "`urlObject.hash`", + "label": "urlObject.hash", + "apiSymbol": "urlObject.hash", + "depth": 2, + "scope": "api", + "anchor": "urlobjecthash", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use the WHATWG URL API instead.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "url:ba55dcb7989a", + "chapter": "url", + "kind": "section", + "name": "host", + "signature": "`urlObject.host`", + "label": "urlObject.host", + "apiSymbol": "urlObject.host", + "depth": 2, + "scope": "api", + "anchor": "urlobjecthost", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use the WHATWG URL API instead.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "url:682b8c062cac", + "chapter": "url", + "kind": "section", + "name": "hostname", + "signature": "`urlObject.hostname`", + "label": "urlObject.hostname", + "apiSymbol": "urlObject.hostname", + "depth": 2, + "scope": "api", + "anchor": "urlobjecthostname", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use the WHATWG URL API instead.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "url:71c4ee356a60", + "chapter": "url", + "kind": "section", + "name": "href", + "signature": "`urlObject.href`", + "label": "urlObject.href", + "apiSymbol": "urlObject.href", + "depth": 2, + "scope": "api", + "anchor": "urlobjecthref", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use the WHATWG URL API instead.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "url:bfd3114b68a4", + "chapter": "url", + "kind": "section", + "name": "path", + "signature": "`urlObject.path`", + "label": "urlObject.path", + "apiSymbol": "urlObject.path", + "depth": 2, + "scope": "api", + "anchor": "urlobjectpath", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use the WHATWG URL API instead.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "url:c16e787bfc1f", + "chapter": "url", + "kind": "section", + "name": "pathname", + "signature": "`urlObject.pathname`", + "label": "urlObject.pathname", + "apiSymbol": "urlObject.pathname", + "depth": 2, + "scope": "api", + "anchor": "urlobjectpathname", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use the WHATWG URL API instead.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "url:6917c5d9a33c", + "chapter": "url", + "kind": "section", + "name": "port", + "signature": "`urlObject.port`", + "label": "urlObject.port", + "apiSymbol": "urlObject.port", + "depth": 2, + "scope": "api", + "anchor": "urlobjectport", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use the WHATWG URL API instead.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "url:d6797ec5d5d6", + "chapter": "url", + "kind": "section", + "name": "protocol", + "signature": "`urlObject.protocol`", + "label": "urlObject.protocol", + "apiSymbol": "urlObject.protocol", + "depth": 2, + "scope": "api", + "anchor": "urlobjectprotocol", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use the WHATWG URL API instead.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "url:c768b0333159", + "chapter": "url", + "kind": "section", + "name": "query", + "signature": "`urlObject.query`", + "label": "urlObject.query", + "apiSymbol": "urlObject.query", + "depth": 2, + "scope": "api", + "anchor": "urlobjectquery", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use the WHATWG URL API instead.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "url:cbe598404ed4", + "chapter": "url", + "kind": "section", + "name": "search", + "signature": "`urlObject.search`", + "label": "urlObject.search", + "apiSymbol": "urlObject.search", + "depth": 2, + "scope": "api", + "anchor": "urlobjectsearch", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use the WHATWG URL API instead.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "url:cc812c2fdb4e", + "chapter": "url", + "kind": "section", + "name": "slashes", + "signature": "`urlObject.slashes`", + "label": "urlObject.slashes", + "apiSymbol": "urlObject.slashes", + "depth": 2, + "scope": "api", + "anchor": "urlobjectslashes", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use the WHATWG URL API instead.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "url:36d80c164de3", + "chapter": "url", + "kind": "method", + "name": "format", + "signature": "`url.format(urlObject)`", + "label": "url.format(urlObject)", + "apiSymbol": "url.format", + "depth": 1, + "scope": "api", + "anchor": "urlformaturlobject", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use the WHATWG URL API instead.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "url:94fd551f27a0", + "chapter": "url", + "kind": "method", + "name": "format", + "signature": "`url.format(urlString)`", + "label": "url.format(urlString)", + "apiSymbol": "url.format", + "depth": 1, + "scope": "api", + "anchor": "urlformaturlstring", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Use the WHATWG URL API instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "url:1fa787da66df", + "chapter": "url", + "kind": "method", + "name": "parse", + "signature": "`url.parse(urlString[, parseQueryString[, slashesDenoteHost]])`", + "label": "url.parse(urlString[, parseQueryString[, slashesDenoteHost]])", + "apiSymbol": "url.parse", + "depth": 1, + "scope": "api", + "anchor": "urlparseurlstring-parsequerystring-slashesdenotehost", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Use the WHATWG URL API instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "url:b1daf529bd41", + "chapter": "url", + "kind": "method", + "name": "resolve", + "signature": "`url.resolve(from, to)`", + "label": "url.resolve(from, to)", + "apiSymbol": "url.resolve", + "depth": 1, + "scope": "api", + "anchor": "urlresolvefrom-to", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Use the WHATWG URL API instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:777bfbadfbc0", + "chapter": "util", + "kind": "module", + "name": "util", + "signature": "Util", + "label": "Util", + "apiSymbol": "util", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + }, + "dynamic": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + } + }, + { + "id": "util:3fb9af4b0066", + "chapter": "util", + "kind": "method", + "name": "_extend", + "signature": "`util._extend(target, source)`", + "label": "util._extend(target, source)", + "apiSymbol": "util._extend", + "depth": 1, + "scope": "api", + "anchor": "util_extendtarget-source", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Use [`Object.assign()`][] instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:6bc435eec9d3", + "chapter": "util", + "kind": "method", + "name": "isArray", + "signature": "`util.isArray(object)`", + "label": "util.isArray(object)", + "apiSymbol": "util.isArray", + "depth": 1, + "scope": "api", + "anchor": "utilisarrayobject", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Use [`Array.isArray()`][] instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:afeb5c5bb1b0", + "chapter": "util", + "kind": "class", + "name": "util.MIMEType", + "signature": "Class: `util.MIMEType`", + "label": "util.MIMEType", + "apiSymbol": "util.MIMEType", + "depth": 1, + "scope": "api", + "anchor": "class-utilmimetype", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "util:812c70be1945", + "chapter": "util", + "kind": "method", + "name": "toString", + "signature": "`mime.toString()`", + "label": "mime.toString()", + "apiSymbol": "mime.toString", + "depth": 2, + "scope": "api", + "anchor": "mimetostring", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "util:585fc9c89e11", + "chapter": "util", + "kind": "method", + "name": "toJSON", + "signature": "`mime.toJSON()`", + "label": "mime.toJSON()", + "apiSymbol": "mime.toJSON", + "depth": 2, + "scope": "api", + "anchor": "mimetojson", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "util:f1c74a06ab01", + "chapter": "util", + "kind": "string", + "name": "Type", + "signature": "`type` Type: {string}", + "label": "type", + "apiSymbol": "type", + "depth": 2, + "scope": "api", + "anchor": "class-utilmimetype", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "util:1f22f2be8b32", + "chapter": "util", + "kind": "string", + "name": "Type", + "signature": "`subtype` Type: {string}", + "label": "subtype", + "apiSymbol": "subtype", + "depth": 2, + "scope": "api", + "anchor": "class-utilmimetype", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "util:9f467ff2dfaf", + "chapter": "util", + "kind": "string", + "name": "Type", + "signature": "`essence` Type: {string}", + "label": "essence", + "apiSymbol": "essence", + "depth": 2, + "scope": "api", + "anchor": "class-utilmimetype", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "util:ed51b78d20e6", + "chapter": "util", + "kind": "MIMEParams", + "name": "Type", + "signature": "`params` Type: {MIMEParams}", + "label": "params", + "apiSymbol": "params", + "depth": 2, + "scope": "api", + "anchor": "class-utilmimetype", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "util:44c967ce036a", + "chapter": "util", + "kind": "class", + "name": "util.MIMEParams", + "signature": "Class: `util.MIMEParams`", + "label": "util.MIMEParams", + "apiSymbol": "util.MIMEParams", + "depth": 1, + "scope": "api", + "anchor": "class-utilmimeparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "util:a442658ea079", + "chapter": "util", + "kind": "method", + "name": "delete", + "signature": "`mimeParams.delete(name)`", + "label": "mimeParams.delete(name)", + "apiSymbol": "mimeParams.delete", + "depth": 2, + "scope": "api", + "anchor": "mimeparamsdeletename", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "util:5d7e725b4a8b", + "chapter": "util", + "kind": "method", + "name": "entries", + "signature": "`mimeParams.entries()`", + "label": "mimeParams.entries()", + "apiSymbol": "mimeParams.entries", + "depth": 2, + "scope": "api", + "anchor": "mimeparamsentries", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "util:a14428f20886", + "chapter": "util", + "kind": "method", + "name": "get", + "signature": "`mimeParams.get(name)`", + "label": "mimeParams.get(name)", + "apiSymbol": "mimeParams.get", + "depth": 2, + "scope": "api", + "anchor": "mimeparamsgetname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "util:24824e980158", + "chapter": "util", + "kind": "method", + "name": "has", + "signature": "`mimeParams.has(name)`", + "label": "mimeParams.has(name)", + "apiSymbol": "mimeParams.has", + "depth": 2, + "scope": "api", + "anchor": "mimeparamshasname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "util:1fa1ab473220", + "chapter": "util", + "kind": "method", + "name": "keys", + "signature": "`mimeParams.keys()`", + "label": "mimeParams.keys()", + "apiSymbol": "mimeParams.keys", + "depth": 2, + "scope": "api", + "anchor": "mimeparamskeys", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "util:14facfdcac1e", + "chapter": "util", + "kind": "method", + "name": "set", + "signature": "`mimeParams.set(name, value)`", + "label": "mimeParams.set(name, value)", + "apiSymbol": "mimeParams.set", + "depth": 2, + "scope": "api", + "anchor": "mimeparamssetname-value", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "util:8e5d5d0e1779", + "chapter": "util", + "kind": "method", + "name": "values", + "signature": "`mimeParams.values()`", + "label": "mimeParams.values()", + "apiSymbol": "mimeParams.values", + "depth": 2, + "scope": "api", + "anchor": "mimeparamsvalues", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "util:27be831bd43e", + "chapter": "util", + "kind": "method", + "name": "[Symbol.iterator]", + "signature": "`mimeParams[Symbol.iterator]()`", + "label": "mimeParams[Symbol.iterator]()", + "apiSymbol": "mimeParams", + "depth": 2, + "scope": "api", + "anchor": "mimeparamssymboliterator", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "util:8797e76ba09e", + "chapter": "util", + "kind": "class", + "name": "util.TextDecoder", + "signature": "Class: `util.TextDecoder`", + "label": "util.TextDecoder", + "apiSymbol": "util.TextDecoder", + "depth": 1, + "scope": "api", + "anchor": "class-utiltextdecoder", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:e5a1f0a694aa", + "chapter": "util", + "kind": "module", + "name": "encodings_supported_when_node.js_is_built_with_the_`small-icu`_option", + "signature": "Encodings supported when Node.js is built with the `small-icu` option", + "label": "Encodings supported when Node.js is built with the small-icu option", + "apiSymbol": "small-icu", + "depth": 2, + "scope": "api", + "anchor": "encodings-supported-when-nodejs-is-built-with-the-small-icu-option", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "util:fb2316caa0b2", + "chapter": "util", + "kind": "method", + "name": "decode", + "signature": "`textDecoder.decode([input[, options]])`", + "label": "textDecoder.decode([input[, options]])", + "apiSymbol": "textDecoder.decode", + "depth": 2, + "scope": "api", + "anchor": "textdecoderdecodeinput-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "util:02928ef627a6", + "chapter": "util", + "kind": "string", + "name": "Type", + "signature": "`encoding` Type: {string}", + "label": "encoding", + "apiSymbol": "encoding", + "depth": 2, + "scope": "api", + "anchor": "class-utiltextdecoder", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "util:13625dfa7779", + "chapter": "util", + "kind": "boolean", + "name": "Type", + "signature": "`fatal` Type: {boolean}", + "label": "fatal", + "apiSymbol": "fatal", + "depth": 2, + "scope": "api", + "anchor": "class-utiltextdecoder", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "util:620a54a0ca69", + "chapter": "util", + "kind": "boolean", + "name": "Type", + "signature": "`ignoreBOM` Type: {boolean}", + "label": "ignoreBOM", + "apiSymbol": "ignoreBOM", + "depth": 2, + "scope": "api", + "anchor": "class-utiltextdecoder", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "util:12242840838d", + "chapter": "util", + "kind": "class", + "name": "util.TextEncoder", + "signature": "Class: `util.TextEncoder`", + "label": "util.TextEncoder", + "apiSymbol": "util.TextEncoder", + "depth": 1, + "scope": "api", + "anchor": "class-utiltextencoder", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:f4fe667b1026", + "chapter": "util", + "kind": "method", + "name": "encode", + "signature": "`textEncoder.encode([input])`", + "label": "textEncoder.encode([input])", + "apiSymbol": "textEncoder.encode", + "depth": 2, + "scope": "api", + "anchor": "textencoderencodeinput", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "util:bb06cf39f1f9", + "chapter": "util", + "kind": "method", + "name": "encodeInto", + "signature": "`textEncoder.encodeInto(src, dest)`", + "label": "textEncoder.encodeInto(src, dest)", + "apiSymbol": "textEncoder.encodeInto", + "depth": 2, + "scope": "api", + "anchor": "textencoderencodeintosrc-dest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "util:081af354f8ab", + "chapter": "util", + "kind": "string", + "name": "Type", + "signature": "`encoding` Type: {string}", + "label": "encoding", + "apiSymbol": "encoding", + "depth": 2, + "scope": "api", + "anchor": "class-utiltextencoder", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "util:3a3381b30603", + "chapter": "util", + "kind": "method", + "name": "callbackify", + "signature": "`util.callbackify(original)`", + "label": "util.callbackify(original)", + "apiSymbol": "util.callbackify", + "depth": 1, + "scope": "api", + "anchor": "utilcallbackifyoriginal", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:89bb8cea7ec9", + "chapter": "util", + "kind": "method", + "name": "convertProcessSignalToExitCode", + "signature": "`util.convertProcessSignalToExitCode(signal)`", + "label": "util.convertProcessSignalToExitCode(signal)", + "apiSymbol": "util.convertProcessSignalToExitCode", + "depth": 1, + "scope": "api", + "anchor": "utilconvertprocesssignaltoexitcodesignal", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "util:ceef34105431", + "chapter": "util", + "kind": "method", + "name": "debuglog", + "signature": "`util.debuglog(section[, callback])`", + "label": "util.debuglog(section[, callback])", + "apiSymbol": "util.debuglog", + "depth": 1, + "scope": "api", + "anchor": "utildebuglogsection-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:e0845fa96e9e", + "chapter": "util", + "kind": "module", + "name": "`debuglog().enabled`", + "signature": "`debuglog().enabled`", + "label": "debuglog().enabled", + "apiSymbol": "debuglog", + "depth": 2, + "scope": "api", + "anchor": "debuglogenabled", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:f7c6a70dfb85", + "chapter": "util", + "kind": "method", + "name": "debug", + "signature": "`util.debug(section)`", + "label": "util.debug(section)", + "apiSymbol": "util.debug", + "depth": 1, + "scope": "api", + "anchor": "utildebugsection", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:d35deb7f6f00", + "chapter": "util", + "kind": "method", + "name": "deprecate", + "signature": "`util.deprecate(fn, msg[, code[, options]])`", + "label": "util.deprecate(fn, msg[, code[, options]])", + "apiSymbol": "util.deprecate", + "depth": 1, + "scope": "api", + "anchor": "utildeprecatefn-msg-code-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:dd79eb4f9e99", + "chapter": "util", + "kind": "method", + "name": "diff", + "signature": "`util.diff(actual, expected)`", + "label": "util.diff(actual, expected)", + "apiSymbol": "util.diff", + "depth": 1, + "scope": "api", + "anchor": "utildiffactual-expected", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "util:13d12ae0e1eb", + "chapter": "util", + "kind": "method", + "name": "format", + "signature": "`util.format(format[, ...args])`", + "label": "util.format(format[, ...args])", + "apiSymbol": "util.format", + "depth": 1, + "scope": "api", + "anchor": "utilformatformat-args", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:b6c6427e394d", + "chapter": "util", + "kind": "method", + "name": "formatWithOptions", + "signature": "`util.formatWithOptions(inspectOptions, format[, ...args])`", + "label": "util.formatWithOptions(inspectOptions, format[, ...args])", + "apiSymbol": "util.formatWithOptions", + "depth": 1, + "scope": "api", + "anchor": "utilformatwithoptionsinspectoptions-format-args", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:ea80c1d9c78b", + "chapter": "util", + "kind": "method", + "name": "getCallSites", + "signature": "`util.getCallSites([frameCount][, options])`", + "label": "util.getCallSites([frameCount][, options])", + "apiSymbol": "util.getCallSites", + "depth": 1, + "scope": "api", + "anchor": "utilgetcallsitesframecount-options", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "util:4a91f0566121", + "chapter": "util", + "kind": "method", + "name": "getSystemErrorName", + "signature": "`util.getSystemErrorName(err)`", + "label": "util.getSystemErrorName(err)", + "apiSymbol": "util.getSystemErrorName", + "depth": 1, + "scope": "api", + "anchor": "utilgetsystemerrornameerr", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "util:deaa994f859c", + "chapter": "util", + "kind": "method", + "name": "getSystemErrorMap", + "signature": "`util.getSystemErrorMap()`", + "label": "util.getSystemErrorMap()", + "apiSymbol": "util.getSystemErrorMap", + "depth": 1, + "scope": "api", + "anchor": "utilgetsystemerrormap", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "util:7d1c9f5fa091", + "chapter": "util", + "kind": "method", + "name": "getSystemErrorMessage", + "signature": "`util.getSystemErrorMessage(err)`", + "label": "util.getSystemErrorMessage(err)", + "apiSymbol": "util.getSystemErrorMessage", + "depth": 1, + "scope": "api", + "anchor": "utilgetsystemerrormessageerr", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "util:9ff176c649da", + "chapter": "util", + "kind": "method", + "name": "setTraceSigInt", + "signature": "`util.setTraceSigInt(enable)`", + "label": "util.setTraceSigInt(enable)", + "apiSymbol": "util.setTraceSigInt", + "depth": 1, + "scope": "api", + "anchor": "utilsettracesigintenable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "util:62ed396c647b", + "chapter": "util", + "kind": "method", + "name": "inherits", + "signature": "`util.inherits(constructor, superConstructor)`", + "label": "util.inherits(constructor, superConstructor)", + "apiSymbol": "util.inherits", + "depth": 1, + "scope": "api", + "anchor": "utilinheritsconstructor-superconstructor", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use ES2015 class syntax and `extends` keyword instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:95fabe29a9eb", + "chapter": "util", + "kind": "method", + "name": "inspect", + "signature": "`util.inspect(object[, options])`", + "label": "util.inspect(object[, options])", + "apiSymbol": "util.inspect", + "depth": 1, + "scope": "api", + "anchor": "utilinspectobject-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:fbf91870e747", + "chapter": "util", + "kind": "method", + "name": "inspect", + "signature": "`util.inspect(object[, showHidden[, depth[, colors]]])`", + "label": "util.inspect(object[, showHidden[, depth[, colors]]])", + "apiSymbol": "util.inspect", + "depth": 1, + "scope": "api", + "anchor": "utilinspectobject-showhidden-depth-colors", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:50611f54c063", + "chapter": "util", + "kind": "symbol", + "name": "Type", + "signature": "`custom` Type: {symbol} that can be used to declare custom inspect functions.", + "label": "custom", + "apiSymbol": "custom", + "depth": 2, + "scope": "api", + "anchor": "utilinspectobject-showhidden-depth-colors", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "util:6e953992adfc", + "chapter": "util", + "kind": "section", + "name": "defaultOptions", + "signature": "`util.inspect.defaultOptions`", + "label": "util.inspect.defaultOptions", + "apiSymbol": "util.inspect.defaultOptions", + "depth": 2, + "scope": "api", + "anchor": "utilinspectdefaultoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "util:e76877581907", + "chapter": "util", + "kind": "misc", + "name": "Customizing `util.inspect` colors", + "signature": "Customizing `util.inspect` colors", + "label": "Customizing util.inspect colors", + "apiSymbol": "util.inspect", + "depth": 2, + "scope": "api", + "anchor": "customizing-utilinspect-colors", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:253ef05b7f13", + "chapter": "util", + "kind": "method", + "name": "isDeepStrictEqual", + "signature": "`util.isDeepStrictEqual(val1, val2[, options])`", + "label": "util.isDeepStrictEqual(val1, val2[, options])", + "apiSymbol": "util.isDeepStrictEqual", + "depth": 1, + "scope": "api", + "anchor": "utilisdeepstrictequalval1-val2-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:96bd98b2e0c0", + "chapter": "util", + "kind": "method", + "name": "parseArgs", + "signature": "`util.parseArgs([config])`", + "label": "util.parseArgs([config])", + "apiSymbol": "util.parseArgs", + "depth": 1, + "scope": "api", + "anchor": "utilparseargsconfig", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:9378934c3f20", + "chapter": "util", + "kind": "module", + "name": "`parseargs`_`tokens`", + "signature": "`parseArgs` `tokens`", + "label": "parseArgs", + "apiSymbol": "parseArgs", + "depth": 2, + "scope": "api", + "anchor": "parseargs-tokens", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:fa1168ae93da", + "chapter": "util", + "kind": "method", + "name": "parseEnv", + "signature": "`util.parseEnv(content)`", + "label": "util.parseEnv(content)", + "apiSymbol": "util.parseEnv", + "depth": 1, + "scope": "api", + "anchor": "utilparseenvcontent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "util:20336c706a45", + "chapter": "util", + "kind": "method", + "name": "promisify", + "signature": "`util.promisify(original)`", + "label": "util.promisify(original)", + "apiSymbol": "util.promisify", + "depth": 1, + "scope": "api", + "anchor": "utilpromisifyoriginal", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:ba31ff012ecb", + "chapter": "util", + "kind": "symbol", + "name": "Type", + "signature": "`custom` Type: {symbol} that can be used to declare custom promisified variants of functions, see [Custom promisified functions][].", + "label": "custom", + "apiSymbol": "custom", + "depth": 2, + "scope": "api", + "anchor": "utilpromisifyoriginal", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "util:68de05f1ea3f", + "chapter": "util", + "kind": "method", + "name": "stripVTControlCharacters", + "signature": "`util.stripVTControlCharacters(str)`", + "label": "util.stripVTControlCharacters(str)", + "apiSymbol": "util.stripVTControlCharacters", + "depth": 1, + "scope": "api", + "anchor": "utilstripvtcontrolcharactersstr", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:f40c6577c367", + "chapter": "util", + "kind": "method", + "name": "styleText", + "signature": "`util.styleText(format, text[, options])`", + "label": "util.styleText(format, text[, options])", + "apiSymbol": "util.styleText", + "depth": 1, + "scope": "api", + "anchor": "utilstyletextformat-text-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:44d86ef713d0", + "chapter": "util", + "kind": "method", + "name": "toUSVString", + "signature": "`util.toUSVString(string)`", + "label": "util.toUSVString(string)", + "apiSymbol": "util.toUSVString", + "depth": 1, + "scope": "api", + "anchor": "utiltousvstringstring", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:2658297d94ef", + "chapter": "util", + "kind": "method", + "name": "transferableAbortController", + "signature": "`util.transferableAbortController()`", + "label": "util.transferableAbortController()", + "apiSymbol": "util.transferableAbortController", + "depth": 1, + "scope": "api", + "anchor": "utiltransferableabortcontroller", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "util:971b69b7898f", + "chapter": "util", + "kind": "method", + "name": "transferableAbortSignal", + "signature": "`util.transferableAbortSignal(signal)`", + "label": "util.transferableAbortSignal(signal)", + "apiSymbol": "util.transferableAbortSignal", + "depth": 1, + "scope": "api", + "anchor": "utiltransferableabortsignalsignal", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "util:99a0b30c19e8", + "chapter": "util", + "kind": "method", + "name": "aborted", + "signature": "`util.aborted(signal, resource)`", + "label": "util.aborted(signal, resource)", + "apiSymbol": "util.aborted", + "depth": 1, + "scope": "api", + "anchor": "utilabortedsignal-resource", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "util:b8c5646d62e9", + "chapter": "util", + "kind": "section", + "name": "types", + "signature": "`util.types`", + "label": "util.types", + "apiSymbol": "util.types", + "depth": 1, + "scope": "api", + "anchor": "utiltypes", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:5f818919cfd2", + "chapter": "util", + "kind": "method", + "name": "isAnyArrayBuffer", + "signature": "`util.types.isAnyArrayBuffer(value)`", + "label": "util.types.isAnyArrayBuffer(value)", + "apiSymbol": "util.types.isAnyArrayBuffer", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisanyarraybuffervalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:f7462d53b5cf", + "chapter": "util", + "kind": "method", + "name": "isArrayBufferView", + "signature": "`util.types.isArrayBufferView(value)`", + "label": "util.types.isArrayBufferView(value)", + "apiSymbol": "util.types.isArrayBufferView", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisarraybufferviewvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:b7e4cca84f2c", + "chapter": "util", + "kind": "method", + "name": "isArgumentsObject", + "signature": "`util.types.isArgumentsObject(value)`", + "label": "util.types.isArgumentsObject(value)", + "apiSymbol": "util.types.isArgumentsObject", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisargumentsobjectvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:80257baacc13", + "chapter": "util", + "kind": "method", + "name": "isArrayBuffer", + "signature": "`util.types.isArrayBuffer(value)`", + "label": "util.types.isArrayBuffer(value)", + "apiSymbol": "util.types.isArrayBuffer", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisarraybuffervalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:4588a99a750b", + "chapter": "util", + "kind": "method", + "name": "isAsyncFunction", + "signature": "`util.types.isAsyncFunction(value)`", + "label": "util.types.isAsyncFunction(value)", + "apiSymbol": "util.types.isAsyncFunction", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisasyncfunctionvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:1a1391f825a8", + "chapter": "util", + "kind": "method", + "name": "isBigInt64Array", + "signature": "`util.types.isBigInt64Array(value)`", + "label": "util.types.isBigInt64Array(value)", + "apiSymbol": "util.types.isBigInt64Array", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisbigint64arrayvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:2215dddfe3e9", + "chapter": "util", + "kind": "method", + "name": "isBigIntObject", + "signature": "`util.types.isBigIntObject(value)`", + "label": "util.types.isBigIntObject(value)", + "apiSymbol": "util.types.isBigIntObject", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisbigintobjectvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:58ef9630da34", + "chapter": "util", + "kind": "method", + "name": "isBigUint64Array", + "signature": "`util.types.isBigUint64Array(value)`", + "label": "util.types.isBigUint64Array(value)", + "apiSymbol": "util.types.isBigUint64Array", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisbiguint64arrayvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:944072530679", + "chapter": "util", + "kind": "method", + "name": "isBooleanObject", + "signature": "`util.types.isBooleanObject(value)`", + "label": "util.types.isBooleanObject(value)", + "apiSymbol": "util.types.isBooleanObject", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisbooleanobjectvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:97162ce3f89d", + "chapter": "util", + "kind": "method", + "name": "isBoxedPrimitive", + "signature": "`util.types.isBoxedPrimitive(value)`", + "label": "util.types.isBoxedPrimitive(value)", + "apiSymbol": "util.types.isBoxedPrimitive", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisboxedprimitivevalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:0ddaab7593c6", + "chapter": "util", + "kind": "method", + "name": "isCryptoKey", + "signature": "`util.types.isCryptoKey(value)`", + "label": "util.types.isCryptoKey(value)", + "apiSymbol": "util.types.isCryptoKey", + "depth": 2, + "scope": "api", + "anchor": "utiltypesiscryptokeyvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:f826e5149272", + "chapter": "util", + "kind": "method", + "name": "isDataView", + "signature": "`util.types.isDataView(value)`", + "label": "util.types.isDataView(value)", + "apiSymbol": "util.types.isDataView", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisdataviewvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:e0f4ce425093", + "chapter": "util", + "kind": "method", + "name": "isDate", + "signature": "`util.types.isDate(value)`", + "label": "util.types.isDate(value)", + "apiSymbol": "util.types.isDate", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisdatevalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:059278fd9e52", + "chapter": "util", + "kind": "method", + "name": "isExternal", + "signature": "`util.types.isExternal(value)`", + "label": "util.types.isExternal(value)", + "apiSymbol": "util.types.isExternal", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisexternalvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:4c74e45417c9", + "chapter": "util", + "kind": "method", + "name": "isFloat16Array", + "signature": "`util.types.isFloat16Array(value)`", + "label": "util.types.isFloat16Array(value)", + "apiSymbol": "util.types.isFloat16Array", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisfloat16arrayvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:7b68e7e5edee", + "chapter": "util", + "kind": "method", + "name": "isFloat32Array", + "signature": "`util.types.isFloat32Array(value)`", + "label": "util.types.isFloat32Array(value)", + "apiSymbol": "util.types.isFloat32Array", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisfloat32arrayvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:67a564791906", + "chapter": "util", + "kind": "method", + "name": "isFloat64Array", + "signature": "`util.types.isFloat64Array(value)`", + "label": "util.types.isFloat64Array(value)", + "apiSymbol": "util.types.isFloat64Array", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisfloat64arrayvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:2c261e88374c", + "chapter": "util", + "kind": "method", + "name": "isGeneratorFunction", + "signature": "`util.types.isGeneratorFunction(value)`", + "label": "util.types.isGeneratorFunction(value)", + "apiSymbol": "util.types.isGeneratorFunction", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisgeneratorfunctionvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:42cee0435307", + "chapter": "util", + "kind": "method", + "name": "isGeneratorObject", + "signature": "`util.types.isGeneratorObject(value)`", + "label": "util.types.isGeneratorObject(value)", + "apiSymbol": "util.types.isGeneratorObject", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisgeneratorobjectvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:bd9ee0c3eff8", + "chapter": "util", + "kind": "method", + "name": "isInt8Array", + "signature": "`util.types.isInt8Array(value)`", + "label": "util.types.isInt8Array(value)", + "apiSymbol": "util.types.isInt8Array", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisint8arrayvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:f04083052a6a", + "chapter": "util", + "kind": "method", + "name": "isInt16Array", + "signature": "`util.types.isInt16Array(value)`", + "label": "util.types.isInt16Array(value)", + "apiSymbol": "util.types.isInt16Array", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisint16arrayvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:a17cf34f6269", + "chapter": "util", + "kind": "method", + "name": "isInt32Array", + "signature": "`util.types.isInt32Array(value)`", + "label": "util.types.isInt32Array(value)", + "apiSymbol": "util.types.isInt32Array", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisint32arrayvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:53776684739c", + "chapter": "util", + "kind": "method", + "name": "isKeyObject", + "signature": "`util.types.isKeyObject(value)`", + "label": "util.types.isKeyObject(value)", + "apiSymbol": "util.types.isKeyObject", + "depth": 2, + "scope": "api", + "anchor": "utiltypesiskeyobjectvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:ffaaa4222589", + "chapter": "util", + "kind": "method", + "name": "isMap", + "signature": "`util.types.isMap(value)`", + "label": "util.types.isMap(value)", + "apiSymbol": "util.types.isMap", + "depth": 2, + "scope": "api", + "anchor": "utiltypesismapvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:2b28df049cb8", + "chapter": "util", + "kind": "method", + "name": "isMapIterator", + "signature": "`util.types.isMapIterator(value)`", + "label": "util.types.isMapIterator(value)", + "apiSymbol": "util.types.isMapIterator", + "depth": 2, + "scope": "api", + "anchor": "utiltypesismapiteratorvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:1a05c59a2acc", + "chapter": "util", + "kind": "method", + "name": "isModuleNamespaceObject", + "signature": "`util.types.isModuleNamespaceObject(value)`", + "label": "util.types.isModuleNamespaceObject(value)", + "apiSymbol": "util.types.isModuleNamespaceObject", + "depth": 2, + "scope": "api", + "anchor": "utiltypesismodulenamespaceobjectvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:dc4424e98782", + "chapter": "util", + "kind": "method", + "name": "isNativeError", + "signature": "`util.types.isNativeError(value)`", + "label": "util.types.isNativeError(value)", + "apiSymbol": "util.types.isNativeError", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisnativeerrorvalue", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Use [`Error.isError`][] instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:c68f98fdc84d", + "chapter": "util", + "kind": "method", + "name": "isNumberObject", + "signature": "`util.types.isNumberObject(value)`", + "label": "util.types.isNumberObject(value)", + "apiSymbol": "util.types.isNumberObject", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisnumberobjectvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:5c801a05c712", + "chapter": "util", + "kind": "method", + "name": "isPromise", + "signature": "`util.types.isPromise(value)`", + "label": "util.types.isPromise(value)", + "apiSymbol": "util.types.isPromise", + "depth": 2, + "scope": "api", + "anchor": "utiltypesispromisevalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:9206eadc2af9", + "chapter": "util", + "kind": "method", + "name": "isProxy", + "signature": "`util.types.isProxy(value)`", + "label": "util.types.isProxy(value)", + "apiSymbol": "util.types.isProxy", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisproxyvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:b5bab42e0f57", + "chapter": "util", + "kind": "method", + "name": "isRegExp", + "signature": "`util.types.isRegExp(value)`", + "label": "util.types.isRegExp(value)", + "apiSymbol": "util.types.isRegExp", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisregexpvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:5a9d79d8e96a", + "chapter": "util", + "kind": "method", + "name": "isSet", + "signature": "`util.types.isSet(value)`", + "label": "util.types.isSet(value)", + "apiSymbol": "util.types.isSet", + "depth": 2, + "scope": "api", + "anchor": "utiltypesissetvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:8d7968ea553d", + "chapter": "util", + "kind": "method", + "name": "isSetIterator", + "signature": "`util.types.isSetIterator(value)`", + "label": "util.types.isSetIterator(value)", + "apiSymbol": "util.types.isSetIterator", + "depth": 2, + "scope": "api", + "anchor": "utiltypesissetiteratorvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:621f115c4d8c", + "chapter": "util", + "kind": "method", + "name": "isSharedArrayBuffer", + "signature": "`util.types.isSharedArrayBuffer(value)`", + "label": "util.types.isSharedArrayBuffer(value)", + "apiSymbol": "util.types.isSharedArrayBuffer", + "depth": 2, + "scope": "api", + "anchor": "utiltypesissharedarraybuffervalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:af2bae35355e", + "chapter": "util", + "kind": "method", + "name": "isStringObject", + "signature": "`util.types.isStringObject(value)`", + "label": "util.types.isStringObject(value)", + "apiSymbol": "util.types.isStringObject", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisstringobjectvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:bd1401ec94ca", + "chapter": "util", + "kind": "method", + "name": "isSymbolObject", + "signature": "`util.types.isSymbolObject(value)`", + "label": "util.types.isSymbolObject(value)", + "apiSymbol": "util.types.isSymbolObject", + "depth": 2, + "scope": "api", + "anchor": "utiltypesissymbolobjectvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:2fbd77d0441e", + "chapter": "util", + "kind": "method", + "name": "isTypedArray", + "signature": "`util.types.isTypedArray(value)`", + "label": "util.types.isTypedArray(value)", + "apiSymbol": "util.types.isTypedArray", + "depth": 2, + "scope": "api", + "anchor": "utiltypesistypedarrayvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:d5064fec568b", + "chapter": "util", + "kind": "method", + "name": "isUint8Array", + "signature": "`util.types.isUint8Array(value)`", + "label": "util.types.isUint8Array(value)", + "apiSymbol": "util.types.isUint8Array", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisuint8arrayvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:da34ad808940", + "chapter": "util", + "kind": "method", + "name": "isUint8ClampedArray", + "signature": "`util.types.isUint8ClampedArray(value)`", + "label": "util.types.isUint8ClampedArray(value)", + "apiSymbol": "util.types.isUint8ClampedArray", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisuint8clampedarrayvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:6365536b8e03", + "chapter": "util", + "kind": "method", + "name": "isUint16Array", + "signature": "`util.types.isUint16Array(value)`", + "label": "util.types.isUint16Array(value)", + "apiSymbol": "util.types.isUint16Array", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisuint16arrayvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:e204c2cc61e7", + "chapter": "util", + "kind": "method", + "name": "isUint32Array", + "signature": "`util.types.isUint32Array(value)`", + "label": "util.types.isUint32Array(value)", + "apiSymbol": "util.types.isUint32Array", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisuint32arrayvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:a3da7a9547e8", + "chapter": "util", + "kind": "method", + "name": "isWeakMap", + "signature": "`util.types.isWeakMap(value)`", + "label": "util.types.isWeakMap(value)", + "apiSymbol": "util.types.isWeakMap", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisweakmapvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "util:7882c2e6f505", + "chapter": "util", + "kind": "method", + "name": "isWeakSet", + "signature": "`util.types.isWeakSet(value)`", + "label": "util.types.isWeakSet(value)", + "apiSymbol": "util.types.isWeakSet", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisweaksetvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "v8:3694690d8f37", + "chapter": "v8", + "kind": "module", + "name": "v8", + "signature": "V8", + "label": "V8", + "apiSymbol": "v8", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + }, + "dynamic": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + } + }, + { + "id": "v8:08165517e173", + "chapter": "v8", + "kind": "class", + "name": "v8.Serializer", + "signature": "Class: `v8.Serializer`", + "label": "v8.Serializer", + "apiSymbol": "v8.Serializer", + "depth": 1, + "scope": "api", + "anchor": "class-v8serializer", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "v8:be3c50e16904", + "chapter": "v8", + "kind": "method", + "name": "writeHeader", + "signature": "`serializer.writeHeader()`", + "label": "serializer.writeHeader()", + "apiSymbol": "serializer.writeHeader", + "depth": 2, + "scope": "api", + "anchor": "serializerwriteheader", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "v8:e83e447b3793", + "chapter": "v8", + "kind": "method", + "name": "writeValue", + "signature": "`serializer.writeValue(value)`", + "label": "serializer.writeValue(value)", + "apiSymbol": "serializer.writeValue", + "depth": 2, + "scope": "api", + "anchor": "serializerwritevaluevalue", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "v8:9b7b89a006eb", + "chapter": "v8", + "kind": "method", + "name": "releaseBuffer", + "signature": "`serializer.releaseBuffer()`", + "label": "serializer.releaseBuffer()", + "apiSymbol": "serializer.releaseBuffer", + "depth": 2, + "scope": "api", + "anchor": "serializerreleasebuffer", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "v8:1aa4a4cf4830", + "chapter": "v8", + "kind": "method", + "name": "transferArrayBuffer", + "signature": "`serializer.transferArrayBuffer(id, arrayBuffer)`", + "label": "serializer.transferArrayBuffer(id, arrayBuffer)", + "apiSymbol": "serializer.transferArrayBuffer", + "depth": 2, + "scope": "api", + "anchor": "serializertransferarraybufferid-arraybuffer", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "v8:8d8d18401d8c", + "chapter": "v8", + "kind": "method", + "name": "writeUint32", + "signature": "`serializer.writeUint32(value)`", + "label": "serializer.writeUint32(value)", + "apiSymbol": "serializer.writeUint32", + "depth": 2, + "scope": "api", + "anchor": "serializerwriteuint32value", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "v8:777dc44901f3", + "chapter": "v8", + "kind": "method", + "name": "writeUint64", + "signature": "`serializer.writeUint64(hi, lo)`", + "label": "serializer.writeUint64(hi, lo)", + "apiSymbol": "serializer.writeUint64", + "depth": 2, + "scope": "api", + "anchor": "serializerwriteuint64hi-lo", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "v8:257b111bd961", + "chapter": "v8", + "kind": "method", + "name": "writeDouble", + "signature": "`serializer.writeDouble(value)`", + "label": "serializer.writeDouble(value)", + "apiSymbol": "serializer.writeDouble", + "depth": 2, + "scope": "api", + "anchor": "serializerwritedoublevalue", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "v8:233b3d4fa84b", + "chapter": "v8", + "kind": "method", + "name": "writeRawBytes", + "signature": "`serializer.writeRawBytes(buffer)`", + "label": "serializer.writeRawBytes(buffer)", + "apiSymbol": "serializer.writeRawBytes", + "depth": 2, + "scope": "api", + "anchor": "serializerwriterawbytesbuffer", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "v8:fa0025599d00", + "chapter": "v8", + "kind": "method", + "name": "_writeHostObject", + "signature": "`serializer._writeHostObject(object)`", + "label": "serializer._writeHostObject(object)", + "apiSymbol": "serializer._writeHostObject", + "depth": 2, + "scope": "api", + "anchor": "serializer_writehostobjectobject", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "v8:72e4ab697f8e", + "chapter": "v8", + "kind": "method", + "name": "_getDataCloneError", + "signature": "`serializer._getDataCloneError(message)`", + "label": "serializer._getDataCloneError(message)", + "apiSymbol": "serializer._getDataCloneError", + "depth": 2, + "scope": "api", + "anchor": "serializer_getdatacloneerrormessage", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "v8:440c5e4f9662", + "chapter": "v8", + "kind": "method", + "name": "_getSharedArrayBufferId", + "signature": "`serializer._getSharedArrayBufferId(sharedArrayBuffer)`", + "label": "serializer._getSharedArrayBufferId(sharedArrayBuffer)", + "apiSymbol": "serializer._getSharedArrayBufferId", + "depth": 2, + "scope": "api", + "anchor": "serializer_getsharedarraybufferidsharedarraybuffer", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "v8:22924147a44d", + "chapter": "v8", + "kind": "method", + "name": "_setTreatArrayBufferViewsAsHostObjects", + "signature": "`serializer._setTreatArrayBufferViewsAsHostObjects(flag)`", + "label": "serializer._setTreatArrayBufferViewsAsHostObjects(flag)", + "apiSymbol": "serializer._setTreatArrayBufferViewsAsHostObjects", + "depth": 2, + "scope": "api", + "anchor": "serializer_settreatarraybufferviewsashostobjectsflag", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "v8:c27acaea5ad5", + "chapter": "v8", + "kind": "class", + "name": "v8.Deserializer", + "signature": "Class: `v8.Deserializer`", + "label": "v8.Deserializer", + "apiSymbol": "v8.Deserializer", + "depth": 1, + "scope": "api", + "anchor": "class-v8deserializer", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "v8:327881d87485", + "chapter": "v8", + "kind": "method", + "name": "readHeader", + "signature": "`deserializer.readHeader()`", + "label": "deserializer.readHeader()", + "apiSymbol": "deserializer.readHeader", + "depth": 2, + "scope": "api", + "anchor": "deserializerreadheader", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "v8:46cc71c5745f", + "chapter": "v8", + "kind": "method", + "name": "readValue", + "signature": "`deserializer.readValue()`", + "label": "deserializer.readValue()", + "apiSymbol": "deserializer.readValue", + "depth": 2, + "scope": "api", + "anchor": "deserializerreadvalue", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "v8:6146c1a43932", + "chapter": "v8", + "kind": "method", + "name": "transferArrayBuffer", + "signature": "`deserializer.transferArrayBuffer(id, arrayBuffer)`", + "label": "deserializer.transferArrayBuffer(id, arrayBuffer)", + "apiSymbol": "deserializer.transferArrayBuffer", + "depth": 2, + "scope": "api", + "anchor": "deserializertransferarraybufferid-arraybuffer", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "v8:a0904e28ffb3", + "chapter": "v8", + "kind": "method", + "name": "getWireFormatVersion", + "signature": "`deserializer.getWireFormatVersion()`", + "label": "deserializer.getWireFormatVersion()", + "apiSymbol": "deserializer.getWireFormatVersion", + "depth": 2, + "scope": "api", + "anchor": "deserializergetwireformatversion", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "v8:70dda0b073d0", + "chapter": "v8", + "kind": "method", + "name": "readUint32", + "signature": "`deserializer.readUint32()`", + "label": "deserializer.readUint32()", + "apiSymbol": "deserializer.readUint32", + "depth": 2, + "scope": "api", + "anchor": "deserializerreaduint32", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "v8:a12c0c06fca5", + "chapter": "v8", + "kind": "method", + "name": "readUint64", + "signature": "`deserializer.readUint64()`", + "label": "deserializer.readUint64()", + "apiSymbol": "deserializer.readUint64", + "depth": 2, + "scope": "api", + "anchor": "deserializerreaduint64", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "v8:9d73521d5703", + "chapter": "v8", + "kind": "method", + "name": "readDouble", + "signature": "`deserializer.readDouble()`", + "label": "deserializer.readDouble()", + "apiSymbol": "deserializer.readDouble", + "depth": 2, + "scope": "api", + "anchor": "deserializerreaddouble", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "v8:e96dcb87cc28", + "chapter": "v8", + "kind": "method", + "name": "readRawBytes", + "signature": "`deserializer.readRawBytes(length)`", + "label": "deserializer.readRawBytes(length)", + "apiSymbol": "deserializer.readRawBytes", + "depth": 2, + "scope": "api", + "anchor": "deserializerreadrawbyteslength", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "v8:4d9a79662cd3", + "chapter": "v8", + "kind": "method", + "name": "_readHostObject", + "signature": "`deserializer._readHostObject()`", + "label": "deserializer._readHostObject()", + "apiSymbol": "deserializer._readHostObject", + "depth": 2, + "scope": "api", + "anchor": "deserializer_readhostobject", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "v8:4de0cb167b88", + "chapter": "v8", + "kind": "class", + "name": "v8.DefaultSerializer", + "signature": "Class: `v8.DefaultSerializer`", + "label": "v8.DefaultSerializer", + "apiSymbol": "v8.DefaultSerializer", + "depth": 1, + "scope": "api", + "anchor": "class-v8defaultserializer", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "v8:dabaa0ff5816", + "chapter": "v8", + "kind": "class", + "name": "v8.DefaultDeserializer", + "signature": "Class: `v8.DefaultDeserializer`", + "label": "v8.DefaultDeserializer", + "apiSymbol": "v8.DefaultDeserializer", + "depth": 1, + "scope": "api", + "anchor": "class-v8defaultdeserializer", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "v8:874a94dcddd3", + "chapter": "v8", + "kind": "method", + "name": "serialize", + "signature": "`v8.serialize(value)`", + "label": "v8.serialize(value)", + "apiSymbol": "v8.serialize", + "depth": 1, + "scope": "api", + "anchor": "v8serializevalue", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "v8:9a2b32a9ff44", + "chapter": "v8", + "kind": "method", + "name": "deserialize", + "signature": "`v8.deserialize(buffer)`", + "label": "v8.deserialize(buffer)", + "apiSymbol": "v8.deserialize", + "depth": 1, + "scope": "api", + "anchor": "v8deserializebuffer", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "v8:7db5baf46842", + "chapter": "v8", + "kind": "method", + "name": "init", + "signature": "`init(promise, parent)`", + "label": "init(promise, parent)", + "apiSymbol": "init", + "depth": 1, + "scope": "api", + "anchor": "initpromise-parent", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "v8:0934b2fc357d", + "chapter": "v8", + "kind": "method", + "name": "before", + "signature": "`before(promise)`", + "label": "before(promise)", + "apiSymbol": "before", + "depth": 1, + "scope": "api", + "anchor": "beforepromise", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "v8:4af986a35174", + "chapter": "v8", + "kind": "method", + "name": "after", + "signature": "`after(promise)`", + "label": "after(promise)", + "apiSymbol": "after", + "depth": 1, + "scope": "api", + "anchor": "afterpromise", + "nodeStability": null, + "static": { + "status": "partial", + "detail": "Implemented by a dedicated static compiler/runtime path.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "v8:f2ada5cff228", + "chapter": "v8", + "kind": "method", + "name": "settled", + "signature": "`settled(promise)`", + "label": "settled(promise)", + "apiSymbol": "settled", + "depth": 1, + "scope": "api", + "anchor": "settledpromise", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "v8:a171bf064efc", + "chapter": "v8", + "kind": "method", + "name": "onInit", + "signature": "`promiseHooks.onInit(init)`", + "label": "promiseHooks.onInit(init)", + "apiSymbol": "promiseHooks.onInit", + "depth": 1, + "scope": "api", + "anchor": "promisehooksoninitinit", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "v8:6a3e3598e903", + "chapter": "v8", + "kind": "method", + "name": "onSettled", + "signature": "`promiseHooks.onSettled(settled)`", + "label": "promiseHooks.onSettled(settled)", + "apiSymbol": "promiseHooks.onSettled", + "depth": 1, + "scope": "api", + "anchor": "promisehooksonsettledsettled", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "v8:808ed425935d", + "chapter": "v8", + "kind": "method", + "name": "onBefore", + "signature": "`promiseHooks.onBefore(before)`", + "label": "promiseHooks.onBefore(before)", + "apiSymbol": "promiseHooks.onBefore", + "depth": 1, + "scope": "api", + "anchor": "promisehooksonbeforebefore", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "v8:67105b6f273d", + "chapter": "v8", + "kind": "method", + "name": "onAfter", + "signature": "`promiseHooks.onAfter(after)`", + "label": "promiseHooks.onAfter(after)", + "apiSymbol": "promiseHooks.onAfter", + "depth": 1, + "scope": "api", + "anchor": "promisehooksonafterafter", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "v8:edc4a34c3f4a", + "chapter": "v8", + "kind": "method", + "name": "createHook", + "signature": "`promiseHooks.createHook(callbacks)`", + "label": "promiseHooks.createHook(callbacks)", + "apiSymbol": "promiseHooks.createHook", + "depth": 1, + "scope": "api", + "anchor": "promisehookscreatehookcallbacks", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "v8:c63bdf0a4f00", + "chapter": "v8", + "kind": "method", + "name": "addSerializeCallback", + "signature": "`v8.startupSnapshot.addSerializeCallback(callback[, data])`", + "label": "v8.startupSnapshot.addSerializeCallback(callback[, data])", + "apiSymbol": "v8.startupSnapshot.addSerializeCallback", + "depth": 1, + "scope": "api", + "anchor": "v8startupsnapshotaddserializecallbackcallback-data", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "v8:f98660318efb", + "chapter": "v8", + "kind": "method", + "name": "addDeserializeCallback", + "signature": "`v8.startupSnapshot.addDeserializeCallback(callback[, data])`", + "label": "v8.startupSnapshot.addDeserializeCallback(callback[, data])", + "apiSymbol": "v8.startupSnapshot.addDeserializeCallback", + "depth": 1, + "scope": "api", + "anchor": "v8startupsnapshotadddeserializecallbackcallback-data", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "v8:f77fb1c01d1c", + "chapter": "v8", + "kind": "method", + "name": "setDeserializeMainFunction", + "signature": "`v8.startupSnapshot.setDeserializeMainFunction(callback[, data])`", + "label": "v8.startupSnapshot.setDeserializeMainFunction(callback[, data])", + "apiSymbol": "v8.startupSnapshot.setDeserializeMainFunction", + "depth": 1, + "scope": "api", + "anchor": "v8startupsnapshotsetdeserializemainfunctioncallback-data", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "v8:40e4e62a4579", + "chapter": "v8", + "kind": "method", + "name": "isBuildingSnapshot", + "signature": "`v8.startupSnapshot.isBuildingSnapshot()`", + "label": "v8.startupSnapshot.isBuildingSnapshot()", + "apiSymbol": "v8.startupSnapshot.isBuildingSnapshot", + "depth": 1, + "scope": "api", + "anchor": "v8startupsnapshotisbuildingsnapshot", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "v8:8e779fd7ced3", + "chapter": "v8", + "kind": "class", + "name": "v8.GCProfiler", + "signature": "Class: `v8.GCProfiler`", + "label": "v8.GCProfiler", + "apiSymbol": "v8.GCProfiler", + "depth": 1, + "scope": "api", + "anchor": "class-v8gcprofiler", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "v8:f3a5ad68d220", + "chapter": "v8", + "kind": "method", + "name": "start", + "signature": "`profiler.start()`", + "label": "profiler.start()", + "apiSymbol": "profiler.start", + "depth": 2, + "scope": "api", + "anchor": "profilerstart", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "v8:ada5ab4b0279", + "chapter": "v8", + "kind": "method", + "name": "stop", + "signature": "`profiler.stop()`", + "label": "profiler.stop()", + "apiSymbol": "profiler.stop", + "depth": 2, + "scope": "api", + "anchor": "profilerstop", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "v8:502f365c722d", + "chapter": "v8", + "kind": "method", + "name": "[Symbol.dispose]", + "signature": "`profiler[Symbol.dispose]()`", + "label": "profiler[Symbol.dispose]()", + "apiSymbol": "profiler", + "depth": 2, + "scope": "api", + "anchor": "profilersymboldispose", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "v8:546aaef1cfca", + "chapter": "v8", + "kind": "class", + "name": "SyncCPUProfileHandle", + "signature": "Class: `SyncCPUProfileHandle`", + "label": "SyncCPUProfileHandle", + "apiSymbol": "SyncCPUProfileHandle", + "depth": 1, + "scope": "api", + "anchor": "class-synccpuprofilehandle", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "v8:09427b420c94", + "chapter": "v8", + "kind": "method", + "name": "stop", + "signature": "`syncCpuProfileHandle.stop()`", + "label": "syncCpuProfileHandle.stop()", + "apiSymbol": "syncCpuProfileHandle.stop", + "depth": 2, + "scope": "api", + "anchor": "synccpuprofilehandlestop", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "v8:27e7bdd56e06", + "chapter": "v8", + "kind": "method", + "name": "[Symbol.dispose]", + "signature": "`syncCpuProfileHandle[Symbol.dispose]()`", + "label": "syncCpuProfileHandle[Symbol.dispose]()", + "apiSymbol": "syncCpuProfileHandle", + "depth": 2, + "scope": "api", + "anchor": "synccpuprofilehandlesymboldispose", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "v8:2bc72f743fb7", + "chapter": "v8", + "kind": "class", + "name": "CPUProfileHandle", + "signature": "Class: `CPUProfileHandle`", + "label": "CPUProfileHandle", + "apiSymbol": "CPUProfileHandle", + "depth": 1, + "scope": "api", + "anchor": "class-cpuprofilehandle", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "v8:209dae35fe48", + "chapter": "v8", + "kind": "method", + "name": "stop", + "signature": "`cpuProfileHandle.stop()`", + "label": "cpuProfileHandle.stop()", + "apiSymbol": "cpuProfileHandle.stop", + "depth": 2, + "scope": "api", + "anchor": "cpuprofilehandlestop", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "v8:82d5d47161c2", + "chapter": "v8", + "kind": "method", + "name": "[Symbol.asyncDispose]", + "signature": "`cpuProfileHandle[Symbol.asyncDispose]()`", + "label": "cpuProfileHandle[Symbol.asyncDispose]()", + "apiSymbol": "cpuProfileHandle", + "depth": 2, + "scope": "api", + "anchor": "cpuprofilehandlesymbolasyncdispose", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "v8:27a59816a32b", + "chapter": "v8", + "kind": "class", + "name": "HeapProfileHandle", + "signature": "Class: `HeapProfileHandle`", + "label": "HeapProfileHandle", + "apiSymbol": "HeapProfileHandle", + "depth": 1, + "scope": "api", + "anchor": "class-heapprofilehandle", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "v8:1cb2fac526b6", + "chapter": "v8", + "kind": "method", + "name": "stop", + "signature": "`heapProfileHandle.stop()`", + "label": "heapProfileHandle.stop()", + "apiSymbol": "heapProfileHandle.stop", + "depth": 2, + "scope": "api", + "anchor": "heapprofilehandlestop", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "v8:5ec7010fd6f4", + "chapter": "v8", + "kind": "method", + "name": "[Symbol.asyncDispose]", + "signature": "`heapProfileHandle[Symbol.asyncDispose]()`", + "label": "heapProfileHandle[Symbol.asyncDispose]()", + "apiSymbol": "heapProfileHandle", + "depth": 2, + "scope": "api", + "anchor": "heapprofilehandlesymbolasyncdispose", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "v8:d94fda515345", + "chapter": "v8", + "kind": "method", + "name": "cachedDataVersionTag", + "signature": "`v8.cachedDataVersionTag()`", + "label": "v8.cachedDataVersionTag()", + "apiSymbol": "v8.cachedDataVersionTag", + "depth": 1, + "scope": "api", + "anchor": "v8cacheddataversiontag", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "v8:8fe0f6defa40", + "chapter": "v8", + "kind": "method", + "name": "getHeapCodeStatistics", + "signature": "`v8.getHeapCodeStatistics()`", + "label": "v8.getHeapCodeStatistics()", + "apiSymbol": "v8.getHeapCodeStatistics", + "depth": 1, + "scope": "api", + "anchor": "v8getheapcodestatistics", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "v8:fb1c9af2dace", + "chapter": "v8", + "kind": "method", + "name": "getHeapSnapshot", + "signature": "`v8.getHeapSnapshot([options])`", + "label": "v8.getHeapSnapshot([options])", + "apiSymbol": "v8.getHeapSnapshot", + "depth": 1, + "scope": "api", + "anchor": "v8getheapsnapshotoptions", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "v8:6b8bee67a167", + "chapter": "v8", + "kind": "method", + "name": "getHeapSpaceStatistics", + "signature": "`v8.getHeapSpaceStatistics()`", + "label": "v8.getHeapSpaceStatistics()", + "apiSymbol": "v8.getHeapSpaceStatistics", + "depth": 1, + "scope": "api", + "anchor": "v8getheapspacestatistics", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "v8:cefde4a8297c", + "chapter": "v8", + "kind": "method", + "name": "getHeapStatistics", + "signature": "`v8.getHeapStatistics()`", + "label": "v8.getHeapStatistics()", + "apiSymbol": "v8.getHeapStatistics", + "depth": 1, + "scope": "api", + "anchor": "v8getheapstatistics", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "v8:1c4ee81cc630", + "chapter": "v8", + "kind": "method", + "name": "getCppHeapStatistics", + "signature": "`v8.getCppHeapStatistics([detailLevel])`", + "label": "v8.getCppHeapStatistics([detailLevel])", + "apiSymbol": "v8.getCppHeapStatistics", + "depth": 1, + "scope": "api", + "anchor": "v8getcppheapstatisticsdetaillevel", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "v8:3bc7c8e3907e", + "chapter": "v8", + "kind": "method", + "name": "queryObjects", + "signature": "`v8.queryObjects(ctor[, options])`", + "label": "v8.queryObjects(ctor[, options])", + "apiSymbol": "v8.queryObjects", + "depth": 1, + "scope": "api", + "anchor": "v8queryobjectsctor-options", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "v8:bf333a0a413f", + "chapter": "v8", + "kind": "method", + "name": "setFlagsFromString", + "signature": "`v8.setFlagsFromString(flags)`", + "label": "v8.setFlagsFromString(flags)", + "apiSymbol": "v8.setFlagsFromString", + "depth": 1, + "scope": "api", + "anchor": "v8setflagsfromstringflags", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "v8:25869b6020c1", + "chapter": "v8", + "kind": "method", + "name": "stopCoverage", + "signature": "`v8.stopCoverage()`", + "label": "v8.stopCoverage()", + "apiSymbol": "v8.stopCoverage", + "depth": 1, + "scope": "api", + "anchor": "v8stopcoverage", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "v8:938d404a4307", + "chapter": "v8", + "kind": "method", + "name": "takeCoverage", + "signature": "`v8.takeCoverage()`", + "label": "v8.takeCoverage()", + "apiSymbol": "v8.takeCoverage", + "depth": 1, + "scope": "api", + "anchor": "v8takecoverage", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "v8:8ea497243f60", + "chapter": "v8", + "kind": "method", + "name": "writeHeapSnapshot", + "signature": "`v8.writeHeapSnapshot([filename[,options]])`", + "label": "v8.writeHeapSnapshot([filename[,options]])", + "apiSymbol": "v8.writeHeapSnapshot", + "depth": 1, + "scope": "api", + "anchor": "v8writeheapsnapshotfilenameoptions", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "v8:a53c96b58d52", + "chapter": "v8", + "kind": "method", + "name": "setHeapSnapshotNearHeapLimit", + "signature": "`v8.setHeapSnapshotNearHeapLimit(limit)`", + "label": "v8.setHeapSnapshotNearHeapLimit(limit)", + "apiSymbol": "v8.setHeapSnapshotNearHeapLimit", + "depth": 1, + "scope": "api", + "anchor": "v8setheapsnapshotnearheaplimitlimit", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "v8:4696ce9fd4f6", + "chapter": "v8", + "kind": "method", + "name": "isStringOneByteRepresentation", + "signature": "`v8.isStringOneByteRepresentation(content)`", + "label": "v8.isStringOneByteRepresentation(content)", + "apiSymbol": "v8.isStringOneByteRepresentation", + "depth": 1, + "scope": "api", + "anchor": "v8isstringonebyterepresentationcontent", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "v8:d6acc1d6c6bf", + "chapter": "v8", + "kind": "method", + "name": "startCpuProfile", + "signature": "`v8.startCpuProfile()`", + "label": "v8.startCpuProfile()", + "apiSymbol": "v8.startCpuProfile", + "depth": 1, + "scope": "api", + "anchor": "v8startcpuprofile", + "nodeStability": null, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "vm:21030825d13d", + "chapter": "vm", + "kind": "module", + "name": "vm", + "signature": "VM (executing JavaScript)", + "label": "VM (executing JavaScript)", + "apiSymbol": "vm", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "by-design", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + }, + "dynamic": { + "status": "by-design", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + } + }, + { + "id": "vm:1862470c5f93", + "chapter": "vm", + "kind": "module", + "name": "type:_`modulerequest`", + "signature": "Type: `ModuleRequest`", + "label": "Type: ModuleRequest", + "apiSymbol": "ModuleRequest", + "depth": 1, + "scope": "api", + "anchor": "type-modulerequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "vm:038111beaa8d", + "chapter": "vm", + "kind": "section", + "name": "DONT_CONTEXTIFY", + "signature": "`vm.constants.DONT_CONTEXTIFY`", + "label": "vm.constants.DONT_CONTEXTIFY", + "apiSymbol": "vm.constants.DONT_CONTEXTIFY", + "depth": 1, + "scope": "api", + "anchor": "vmconstantsdont_contextify", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "vm:e6c6f0125533", + "chapter": "vm", + "kind": "module", + "name": "when_`microtaskmode`_is_`'afterevaluate'`,_beware_sharing_promises_between_contexts", + "signature": "When `microtaskMode` is `'afterEvaluate'`, beware sharing Promises between Contexts", + "label": "When microtaskMode is 'afterEvaluate', beware sharing Promises between Contexts", + "apiSymbol": "microtaskMode", + "depth": 1, + "scope": "api", + "anchor": "when-microtaskmode-is-afterevaluate-beware-sharing-promises-between-contexts", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "vm:4fa119560369", + "chapter": "vm", + "kind": "module", + "name": "support_of_dynamic_`import()`_in_compilation_apis", + "signature": "Support of dynamic `import()` in compilation APIs", + "label": "Support of dynamic import() in compilation APIs", + "apiSymbol": "import", + "depth": 1, + "scope": "api", + "anchor": "support-of-dynamic-import-in-compilation-apis", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "vm:7a607b1b99b7", + "chapter": "vm", + "kind": "module", + "name": "when_the_`importmoduledynamically`_option_is_not_specified_or_undefined", + "signature": "When the `importModuleDynamically` option is not specified or undefined", + "label": "When the importModuleDynamically option is not specified or undefined", + "apiSymbol": "importModuleDynamically", + "depth": 2, + "scope": "api", + "anchor": "when-the-importmoduledynamically-option-is-not-specified-or-undefined", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "vm:13b25b062c69", + "chapter": "vm", + "kind": "module", + "name": "when_`importmoduledynamically`_is_`vm.constants.use_main_context_default_loader`", + "signature": "When `importModuleDynamically` is `vm.constants.USE_MAIN_CONTEXT_DEFAULT_LOADER`", + "label": "When importModuleDynamically is vm.constants.USE_MAIN_CONTEXT_DEFAULT_LOADER", + "apiSymbol": "importModuleDynamically", + "depth": 2, + "scope": "api", + "anchor": "when-importmoduledynamically-is-vmconstantsuse_main_context_default_loader", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "vm:1c76cb3e2d91", + "chapter": "vm", + "kind": "module", + "name": "when_`importmoduledynamically`_is_a_function", + "signature": "When `importModuleDynamically` is a function", + "label": "When importModuleDynamically is a function", + "apiSymbol": "importModuleDynamically", + "depth": 2, + "scope": "api", + "anchor": "when-importmoduledynamically-is-a-function", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "vm:f5537f89ca5d", + "chapter": "vm", + "kind": "class", + "name": "vm.Script", + "signature": "Class: `vm.Script`", + "label": "vm.Script", + "apiSymbol": "vm.Script", + "depth": 1, + "scope": "api", + "anchor": "class-vmscript", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "vm:57fea7657344", + "chapter": "vm", + "kind": "method", + "name": "createCachedData", + "signature": "`script.createCachedData()`", + "label": "script.createCachedData()", + "apiSymbol": "script.createCachedData", + "depth": 2, + "scope": "api", + "anchor": "scriptcreatecacheddata", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "vm:1be031568bf5", + "chapter": "vm", + "kind": "method", + "name": "runInContext", + "signature": "`script.runInContext(contextifiedObject[, options])`", + "label": "script.runInContext(contextifiedObject[, options])", + "apiSymbol": "script.runInContext", + "depth": 2, + "scope": "api", + "anchor": "scriptrunincontextcontextifiedobject-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "vm:2211d570e4e9", + "chapter": "vm", + "kind": "method", + "name": "runInNewContext", + "signature": "`script.runInNewContext([contextObject[, options]])`", + "label": "script.runInNewContext([contextObject[, options]])", + "apiSymbol": "script.runInNewContext", + "depth": 2, + "scope": "api", + "anchor": "scriptruninnewcontextcontextobject-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "vm:8c2bd9e2b4e1", + "chapter": "vm", + "kind": "method", + "name": "runInThisContext", + "signature": "`script.runInThisContext([options])`", + "label": "script.runInThisContext([options])", + "apiSymbol": "script.runInThisContext", + "depth": 2, + "scope": "api", + "anchor": "scriptruninthiscontextoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "vm:c873d77247ad", + "chapter": "vm", + "kind": "boolean|undefined", + "name": "Type", + "signature": "`cachedDataRejected` Type: {boolean|undefined}", + "label": "cachedDataRejected", + "apiSymbol": "cachedDataRejected", + "depth": 2, + "scope": "api", + "anchor": "class-vmscript", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "vm:a8d128653baa", + "chapter": "vm", + "kind": "string|undefined", + "name": "Type", + "signature": "`sourceMapURL` Type: {string|undefined}", + "label": "sourceMapURL", + "apiSymbol": "sourceMapURL", + "depth": 2, + "scope": "api", + "anchor": "class-vmscript", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "vm:aa49d2ca62b1", + "chapter": "vm", + "kind": "class", + "name": "vm.Module", + "signature": "Class: `vm.Module`", + "label": "vm.Module", + "apiSymbol": "vm.Module", + "depth": 1, + "scope": "api", + "anchor": "class-vmmodule", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "vm:a181bf63cb8c", + "chapter": "vm", + "kind": "method", + "name": "evaluate", + "signature": "`module.evaluate([options])`", + "label": "module.evaluate([options])", + "apiSymbol": "module.evaluate", + "depth": 2, + "scope": "api", + "anchor": "moduleevaluateoptions", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "vm:4becbb2c35c8", + "chapter": "vm", + "kind": "method", + "name": "link", + "signature": "`module.link(linker)`", + "label": "module.link(linker)", + "apiSymbol": "module.link", + "depth": 2, + "scope": "api", + "anchor": "modulelinklinker", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "vm:823e00cb8f08", + "chapter": "vm", + "kind": "any", + "name": "Type", + "signature": "`error` Type: {any}", + "label": "error", + "apiSymbol": "error", + "depth": 2, + "scope": "api", + "anchor": "class-vmmodule", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "vm:6ba38534e97e", + "chapter": "vm", + "kind": "string", + "name": "Type", + "signature": "`identifier` Type: {string}", + "label": "identifier", + "apiSymbol": "identifier", + "depth": 2, + "scope": "api", + "anchor": "class-vmmodule", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "vm:af416a8de67f", + "chapter": "vm", + "kind": "Object", + "name": "Type", + "signature": "`namespace` Type: {Object}", + "label": "namespace", + "apiSymbol": "namespace", + "depth": 2, + "scope": "api", + "anchor": "class-vmmodule", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "vm:a510ce849c1f", + "chapter": "vm", + "kind": "string", + "name": "Type", + "signature": "`status` Type: {string}", + "label": "status", + "apiSymbol": "status", + "depth": 2, + "scope": "api", + "anchor": "class-vmmodule", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "vm:bce3e5f959b3", + "chapter": "vm", + "kind": "class", + "name": "vm.SourceTextModule", + "signature": "Class: `vm.SourceTextModule`", + "label": "vm.SourceTextModule", + "apiSymbol": "vm.SourceTextModule", + "depth": 1, + "scope": "api", + "anchor": "class-vmsourcetextmodule", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "vm:76cef81f974b", + "chapter": "vm", + "kind": "method", + "name": "createCachedData", + "signature": "`sourceTextModule.createCachedData()`", + "label": "sourceTextModule.createCachedData()", + "apiSymbol": "sourceTextModule.createCachedData", + "depth": 2, + "scope": "api", + "anchor": "sourcetextmodulecreatecacheddata", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "vm:b5e8d1840438", + "chapter": "vm", + "kind": "method", + "name": "hasAsyncGraph", + "signature": "`sourceTextModule.hasAsyncGraph()`", + "label": "sourceTextModule.hasAsyncGraph()", + "apiSymbol": "sourceTextModule.hasAsyncGraph", + "depth": 2, + "scope": "api", + "anchor": "sourcetextmodulehasasyncgraph", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "vm:e347b65d18e9", + "chapter": "vm", + "kind": "method", + "name": "hasTopLevelAwait", + "signature": "`sourceTextModule.hasTopLevelAwait()`", + "label": "sourceTextModule.hasTopLevelAwait()", + "apiSymbol": "sourceTextModule.hasTopLevelAwait", + "depth": 2, + "scope": "api", + "anchor": "sourcetextmodulehastoplevelawait", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "vm:84a90e04720a", + "chapter": "vm", + "kind": "method", + "name": "instantiate", + "signature": "`sourceTextModule.instantiate()`", + "label": "sourceTextModule.instantiate()", + "apiSymbol": "sourceTextModule.instantiate", + "depth": 2, + "scope": "api", + "anchor": "sourcetextmoduleinstantiate", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "vm:4f3aeb9f86d6", + "chapter": "vm", + "kind": "method", + "name": "linkRequests", + "signature": "`sourceTextModule.linkRequests(modules)`", + "label": "sourceTextModule.linkRequests(modules)", + "apiSymbol": "sourceTextModule.linkRequests", + "depth": 2, + "scope": "api", + "anchor": "sourcetextmodulelinkrequestsmodules", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "vm:af3fc23f4359", + "chapter": "vm", + "kind": "string\\[]", + "name": "Type", + "signature": "`dependencySpecifiers` Type: {string\\[]}", + "label": "dependencySpecifiers", + "apiSymbol": "dependencySpecifiers", + "depth": 2, + "scope": "api", + "anchor": "class-vmsourcetextmodule", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Use [`sourceTextModule.moduleRequests`][] instead.", + "inherited": false + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "vm:f2c881bced07", + "chapter": "vm", + "kind": "ModuleRequest\\[]", + "name": "Type", + "signature": "`moduleRequests` Type: {ModuleRequest\\[]} Dependencies of this module.", + "label": "moduleRequests", + "apiSymbol": "moduleRequests", + "depth": 2, + "scope": "api", + "anchor": "class-vmsourcetextmodule", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "vm:8a246e82560c", + "chapter": "vm", + "kind": "class", + "name": "vm.SyntheticModule", + "signature": "Class: `vm.SyntheticModule`", + "label": "vm.SyntheticModule", + "apiSymbol": "vm.SyntheticModule", + "depth": 1, + "scope": "api", + "anchor": "class-vmsyntheticmodule", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "vm:b3702af8962e", + "chapter": "vm", + "kind": "method", + "name": "setExport", + "signature": "`syntheticModule.setExport(name, value)`", + "label": "syntheticModule.setExport(name, value)", + "apiSymbol": "syntheticModule.setExport", + "depth": 2, + "scope": "api", + "anchor": "syntheticmodulesetexportname-value", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "vm:d7ba81057fcb", + "chapter": "vm", + "kind": "method", + "name": "compileFunction", + "signature": "`vm.compileFunction(code[, params[, options]])`", + "label": "vm.compileFunction(code[, params[, options]])", + "apiSymbol": "vm.compileFunction", + "depth": 1, + "scope": "api", + "anchor": "vmcompilefunctioncode-params-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "vm:f968871196ae", + "chapter": "vm", + "kind": "method", + "name": "createContext", + "signature": "`vm.createContext([contextObject[, options]])`", + "label": "vm.createContext([contextObject[, options]])", + "apiSymbol": "vm.createContext", + "depth": 1, + "scope": "api", + "anchor": "vmcreatecontextcontextobject-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "vm:73db661d7d57", + "chapter": "vm", + "kind": "method", + "name": "isContext", + "signature": "`vm.isContext(object)`", + "label": "vm.isContext(object)", + "apiSymbol": "vm.isContext", + "depth": 1, + "scope": "api", + "anchor": "vmiscontextobject", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "vm:cccd834c008c", + "chapter": "vm", + "kind": "method", + "name": "measureMemory", + "signature": "`vm.measureMemory([options])`", + "label": "vm.measureMemory([options])", + "apiSymbol": "vm.measureMemory", + "depth": 1, + "scope": "api", + "anchor": "vmmeasurememoryoptions", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "vm:e45455011f5c", + "chapter": "vm", + "kind": "method", + "name": "runInContext", + "signature": "`vm.runInContext(code, contextifiedObject[, options])`", + "label": "vm.runInContext(code, contextifiedObject[, options])", + "apiSymbol": "vm.runInContext", + "depth": 1, + "scope": "api", + "anchor": "vmrunincontextcode-contextifiedobject-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "vm:011df9e1b07d", + "chapter": "vm", + "kind": "method", + "name": "runInNewContext", + "signature": "`vm.runInNewContext(code[, contextObject[, options]])`", + "label": "vm.runInNewContext(code[, contextObject[, options]])", + "apiSymbol": "vm.runInNewContext", + "depth": 1, + "scope": "api", + "anchor": "vmruninnewcontextcode-contextobject-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "vm:e4341b528e9c", + "chapter": "vm", + "kind": "method", + "name": "runInThisContext", + "signature": "`vm.runInThisContext(code[, options])`", + "label": "vm.runInThisContext(code[, options])", + "apiSymbol": "vm.runInThisContext", + "depth": 1, + "scope": "api", + "anchor": "vmruninthiscontextcode-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "vm:794530770de9", + "chapter": "vm", + "kind": "Object", + "name": "Type", + "signature": "`constants` Type: {Object}", + "label": "constants", + "apiSymbol": "constants", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "vm:3ecdd146683d", + "chapter": "vm", + "kind": "section", + "name": "USE_MAIN_CONTEXT_DEFAULT_LOADER", + "signature": "`vm.constants.USE_MAIN_CONTEXT_DEFAULT_LOADER`", + "label": "vm.constants.USE_MAIN_CONTEXT_DEFAULT_LOADER", + "apiSymbol": "vm.constants.USE_MAIN_CONTEXT_DEFAULT_LOADER", + "depth": 2, + "scope": "api", + "anchor": "vmconstantsuse_main_context_default_loader", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": false + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "wasi:bc75ebd36bdb", + "chapter": "wasi", + "kind": "module", + "name": "webassembly_system_interface_(wasi)", + "signature": "WebAssembly System Interface (WASI)", + "label": "WebAssembly System Interface (WASI)", + "apiSymbol": "webassembly_system_interface_", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "by-design", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + }, + "dynamic": { + "status": "by-design", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + } + }, + { + "id": "wasi:89dc8350ee57", + "chapter": "wasi", + "kind": "class", + "name": "WASI", + "signature": "Class: `WASI`", + "label": "WASI", + "apiSymbol": "WASI", + "depth": 1, + "scope": "api", + "anchor": "class-wasi", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "wasi:8481e3035155", + "chapter": "wasi", + "kind": "method", + "name": "getImportObject", + "signature": "`wasi.getImportObject()`", + "label": "wasi.getImportObject()", + "apiSymbol": "wasi.getImportObject", + "depth": 2, + "scope": "api", + "anchor": "wasigetimportobject", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "wasi:323fb04ba27f", + "chapter": "wasi", + "kind": "method", + "name": "start", + "signature": "`wasi.start(instance)`", + "label": "wasi.start(instance)", + "apiSymbol": "wasi.start", + "depth": 2, + "scope": "api", + "anchor": "wasistartinstance", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "wasi:bf58c0a5b4f4", + "chapter": "wasi", + "kind": "method", + "name": "initialize", + "signature": "`wasi.initialize(instance)`", + "label": "wasi.initialize(instance)", + "apiSymbol": "wasi.initialize", + "depth": 2, + "scope": "api", + "anchor": "wasiinitializeinstance", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "wasi:f7ad94458be8", + "chapter": "wasi", + "kind": "method", + "name": "finalizeBindings", + "signature": "`wasi.finalizeBindings(instance[, options])`", + "label": "wasi.finalizeBindings(instance[, options])", + "apiSymbol": "wasi.finalizeBindings", + "depth": 2, + "scope": "api", + "anchor": "wasifinalizebindingsinstance-options", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "wasi:e7cb3e5f51fc", + "chapter": "wasi", + "kind": "Object", + "name": "Type", + "signature": "`wasiImport` Type: {Object}", + "label": "wasiImport", + "apiSymbol": "wasiImport", + "depth": 2, + "scope": "api", + "anchor": "class-wasi", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "by-design", + "detail": "Intentionally outside the static native execution model.", + "verification": "architectural-policy" + }, + "dynamic": { + "status": "by-design", + "detail": "Intentionally outside the dynamic-island execution model.", + "verification": "architectural-policy" + } + }, + { + "id": "webcrypto:751ea25f3132", + "chapter": "webcrypto", + "kind": "module", + "name": "web_crypto_api", + "signature": "Web Crypto API", + "label": "Web Crypto API", + "apiSymbol": "web_crypto_api", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + }, + "dynamic": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + } + }, + { + "id": "webcrypto:22408f834c48", + "chapter": "webcrypto", + "kind": "class", + "name": "Algorithm", + "signature": "Class: `Algorithm`", + "label": "Algorithm", + "apiSymbol": "Algorithm", + "depth": 1, + "scope": "api", + "anchor": "class-algorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:7eadae89e743", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string}", + "label": "name", + "apiSymbol": "name", + "depth": 2, + "scope": "api", + "anchor": "class-algorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:0838047675cb", + "chapter": "webcrypto", + "kind": "class", + "name": "AeadParams", + "signature": "Class: `AeadParams`", + "label": "AeadParams", + "apiSymbol": "AeadParams", + "depth": 1, + "scope": "api", + "anchor": "class-aeadparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:50702da22ffd", + "chapter": "webcrypto", + "kind": "ArrayBuffer|TypedArray|DataView|Buffer|undefined", + "name": "Type", + "signature": "`additionalData` Type: {ArrayBuffer|TypedArray|DataView|Buffer|undefined}", + "label": "additionalData", + "apiSymbol": "additionalData", + "depth": 2, + "scope": "api", + "anchor": "class-aeadparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:e75aab58d6c8", + "chapter": "webcrypto", + "kind": "ArrayBuffer|TypedArray|DataView|Buffer", + "name": "Type", + "signature": "`iv` Type: {ArrayBuffer|TypedArray|DataView|Buffer}", + "label": "iv", + "apiSymbol": "iv", + "depth": 2, + "scope": "api", + "anchor": "class-aeadparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:0333a8dda5d1", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string} Must be `'AES-GCM'`, `'AES-OCB'`, or `'ChaCha20-Poly1305'`.", + "label": "name", + "apiSymbol": "name", + "depth": 2, + "scope": "api", + "anchor": "class-aeadparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:b3e75c3019ba", + "chapter": "webcrypto", + "kind": "number", + "name": "Type", + "signature": "`tagLength` Type: {number} The size in bits of the generated authentication tag.", + "label": "tagLength", + "apiSymbol": "tagLength", + "depth": 2, + "scope": "api", + "anchor": "class-aeadparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:48811cf17cfa", + "chapter": "webcrypto", + "kind": "class", + "name": "AesDerivedKeyParams", + "signature": "Class: `AesDerivedKeyParams`", + "label": "AesDerivedKeyParams", + "apiSymbol": "AesDerivedKeyParams", + "depth": 1, + "scope": "api", + "anchor": "class-aesderivedkeyparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:b193e8d32c23", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string} Must be one of `'AES-CBC'`, `'AES-CTR'`, `'AES-GCM'`, `'AES-OCB'`, or `'AES-KW'`", + "label": "name", + "apiSymbol": "name", + "depth": 2, + "scope": "api", + "anchor": "class-aesderivedkeyparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:69e1a5a7db43", + "chapter": "webcrypto", + "kind": "number", + "name": "Type", + "signature": "`length` Type: {number}", + "label": "length", + "apiSymbol": "length", + "depth": 2, + "scope": "api", + "anchor": "class-aesderivedkeyparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:eaef86826519", + "chapter": "webcrypto", + "kind": "class", + "name": "AesCbcParams", + "signature": "Class: `AesCbcParams`", + "label": "AesCbcParams", + "apiSymbol": "AesCbcParams", + "depth": 1, + "scope": "api", + "anchor": "class-aescbcparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:138cbab42828", + "chapter": "webcrypto", + "kind": "ArrayBuffer|TypedArray|DataView|Buffer", + "name": "Type", + "signature": "`iv` Type: {ArrayBuffer|TypedArray|DataView|Buffer}", + "label": "iv", + "apiSymbol": "iv", + "depth": 2, + "scope": "api", + "anchor": "class-aescbcparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:c69773570396", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string} Must be `'AES-CBC'`.", + "label": "name", + "apiSymbol": "name", + "depth": 2, + "scope": "api", + "anchor": "class-aescbcparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:e7027d8028f4", + "chapter": "webcrypto", + "kind": "class", + "name": "AesCtrParams", + "signature": "Class: `AesCtrParams`", + "label": "AesCtrParams", + "apiSymbol": "AesCtrParams", + "depth": 1, + "scope": "api", + "anchor": "class-aesctrparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:8bebfb11721e", + "chapter": "webcrypto", + "kind": "ArrayBuffer|TypedArray|DataView|Buffer", + "name": "Type", + "signature": "`counter` Type: {ArrayBuffer|TypedArray|DataView|Buffer}", + "label": "counter", + "apiSymbol": "counter", + "depth": 2, + "scope": "api", + "anchor": "class-aesctrparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:77f064717864", + "chapter": "webcrypto", + "kind": "number", + "name": "Type", + "signature": "`length` Type: {number} The number of bits in the `aesCtrParams.counter` that are to be used as the counter.", + "label": "length", + "apiSymbol": "length", + "depth": 2, + "scope": "api", + "anchor": "class-aesctrparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:e6832733595a", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string} Must be `'AES-CTR'`.", + "label": "name", + "apiSymbol": "name", + "depth": 2, + "scope": "api", + "anchor": "class-aesctrparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:45b2ac15b614", + "chapter": "webcrypto", + "kind": "class", + "name": "AesKeyAlgorithm", + "signature": "Class: `AesKeyAlgorithm`", + "label": "AesKeyAlgorithm", + "apiSymbol": "AesKeyAlgorithm", + "depth": 1, + "scope": "api", + "anchor": "class-aeskeyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:63fff0b82f63", + "chapter": "webcrypto", + "kind": "number", + "name": "Type", + "signature": "`length` Type: {number}", + "label": "length", + "apiSymbol": "length", + "depth": 2, + "scope": "api", + "anchor": "class-aeskeyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:348d95ce69f6", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string}", + "label": "name", + "apiSymbol": "name", + "depth": 2, + "scope": "api", + "anchor": "class-aeskeyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:807d27037729", + "chapter": "webcrypto", + "kind": "class", + "name": "AesKeyGenParams", + "signature": "Class: `AesKeyGenParams`", + "label": "AesKeyGenParams", + "apiSymbol": "AesKeyGenParams", + "depth": 1, + "scope": "api", + "anchor": "class-aeskeygenparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:b202617b42b7", + "chapter": "webcrypto", + "kind": "number", + "name": "Type", + "signature": "`length` Type: {number}", + "label": "length", + "apiSymbol": "length", + "depth": 2, + "scope": "api", + "anchor": "class-aeskeygenparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:39c15478d272", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string} Must be one of `'AES-CBC'`, `'AES-CTR'`, `'AES-GCM'`, or `'AES-KW'`", + "label": "name", + "apiSymbol": "name", + "depth": 2, + "scope": "api", + "anchor": "class-aeskeygenparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:f773f19f63d3", + "chapter": "webcrypto", + "kind": "class", + "name": "Argon2Params", + "signature": "Class: `Argon2Params`", + "label": "Argon2Params", + "apiSymbol": "Argon2Params", + "depth": 1, + "scope": "api", + "anchor": "class-argon2params", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:61a8dbee60c6", + "chapter": "webcrypto", + "kind": "ArrayBuffer|TypedArray|DataView|Buffer", + "name": "Type", + "signature": "`associatedData` Type: {ArrayBuffer|TypedArray|DataView|Buffer}", + "label": "associatedData", + "apiSymbol": "associatedData", + "depth": 2, + "scope": "api", + "anchor": "class-argon2params", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:335fe3f84ab1", + "chapter": "webcrypto", + "kind": "number", + "name": "Type", + "signature": "`memory` Type: {number}", + "label": "memory", + "apiSymbol": "memory", + "depth": 2, + "scope": "api", + "anchor": "class-argon2params", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:99bfa63e81fa", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string} Must be one of `'Argon2d'`, `'Argon2i'`, or `'Argon2id'`.", + "label": "name", + "apiSymbol": "name", + "depth": 2, + "scope": "api", + "anchor": "class-argon2params", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:3cbc73658fc9", + "chapter": "webcrypto", + "kind": "ArrayBuffer|TypedArray|DataView|Buffer", + "name": "Type", + "signature": "`nonce` Type: {ArrayBuffer|TypedArray|DataView|Buffer}", + "label": "nonce", + "apiSymbol": "nonce", + "depth": 2, + "scope": "api", + "anchor": "class-argon2params", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:3ac95db0f61d", + "chapter": "webcrypto", + "kind": "number", + "name": "Type", + "signature": "`parallelism` Type: {number}", + "label": "parallelism", + "apiSymbol": "parallelism", + "depth": 2, + "scope": "api", + "anchor": "class-argon2params", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:b44e7befb0d2", + "chapter": "webcrypto", + "kind": "number", + "name": "Type", + "signature": "`passes` Type: {number}", + "label": "passes", + "apiSymbol": "passes", + "depth": 2, + "scope": "api", + "anchor": "class-argon2params", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:df18d96404e2", + "chapter": "webcrypto", + "kind": "ArrayBuffer|TypedArray|DataView|Buffer", + "name": "Type", + "signature": "`secretValue` Type: {ArrayBuffer|TypedArray|DataView|Buffer}", + "label": "secretValue", + "apiSymbol": "secretValue", + "depth": 2, + "scope": "api", + "anchor": "class-argon2params", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:c51c271a37d1", + "chapter": "webcrypto", + "kind": "number", + "name": "Type", + "signature": "`version` Type: {number}", + "label": "version", + "apiSymbol": "version", + "depth": 2, + "scope": "api", + "anchor": "class-argon2params", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:5ae61ae36acb", + "chapter": "webcrypto", + "kind": "class", + "name": "ContextParams", + "signature": "Class: `ContextParams`", + "label": "ContextParams", + "apiSymbol": "ContextParams", + "depth": 1, + "scope": "api", + "anchor": "class-contextparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:348599f69c92", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string} Must be `Ed448`[^secure-curves], `'ML-DSA-44'`[^modern-algos], `'ML-DSA-65'`[^modern-algos], or `'ML-DSA-87'`[^modern-algos].", + "label": "name", + "apiSymbol": "name", + "depth": 2, + "scope": "api", + "anchor": "class-contextparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:523c55e40c6c", + "chapter": "webcrypto", + "kind": "ArrayBuffer|TypedArray|DataView|Buffer|undefined", + "name": "Type", + "signature": "`context` Type: {ArrayBuffer|TypedArray|DataView|Buffer|undefined}", + "label": "context", + "apiSymbol": "context", + "depth": 2, + "scope": "api", + "anchor": "class-contextparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:5bd580037f8a", + "chapter": "webcrypto", + "kind": "class", + "name": "CShakeParams", + "signature": "Class: `CShakeParams`", + "label": "CShakeParams", + "apiSymbol": "CShakeParams", + "depth": 1, + "scope": "api", + "anchor": "class-cshakeparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:e97ed4559769", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string} Must be `'cSHAKE128'`[^modern-algos] or `'cSHAKE256'`[^modern-algos]", + "label": "name", + "apiSymbol": "name", + "depth": 2, + "scope": "api", + "anchor": "class-cshakeparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:9eeb331c7228", + "chapter": "webcrypto", + "kind": "number", + "name": "Type", + "signature": "`outputLength` Type: {number} represents the requested output length in bits.", + "label": "outputLength", + "apiSymbol": "outputLength", + "depth": 2, + "scope": "api", + "anchor": "class-cshakeparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:a1e675d9f4ab", + "chapter": "webcrypto", + "kind": "ArrayBuffer|TypedArray|DataView|Buffer|undefined", + "name": "Type", + "signature": "`functionName` Type: {ArrayBuffer|TypedArray|DataView|Buffer|undefined}", + "label": "functionName", + "apiSymbol": "functionName", + "depth": 2, + "scope": "api", + "anchor": "class-cshakeparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:8f366eb6399d", + "chapter": "webcrypto", + "kind": "ArrayBuffer|TypedArray|DataView|Buffer|undefined", + "name": "Type", + "signature": "`customization` Type: {ArrayBuffer|TypedArray|DataView|Buffer|undefined}", + "label": "customization", + "apiSymbol": "customization", + "depth": 2, + "scope": "api", + "anchor": "class-cshakeparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:50a50402140c", + "chapter": "webcrypto", + "kind": "class", + "name": "EcdhKeyDeriveParams", + "signature": "Class: `EcdhKeyDeriveParams`", + "label": "EcdhKeyDeriveParams", + "apiSymbol": "EcdhKeyDeriveParams", + "depth": 1, + "scope": "api", + "anchor": "class-ecdhkeyderiveparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:2db66a4350e1", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string} Must be `'ECDH'`, `'X25519'`, or `'X448'`[^secure-curves].", + "label": "name", + "apiSymbol": "name", + "depth": 2, + "scope": "api", + "anchor": "class-ecdhkeyderiveparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:edc888ed5611", + "chapter": "webcrypto", + "kind": "CryptoKey", + "name": "Type", + "signature": "`public` Type: {CryptoKey}", + "label": "public", + "apiSymbol": "public", + "depth": 2, + "scope": "api", + "anchor": "class-ecdhkeyderiveparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:e4d4304bdc1a", + "chapter": "webcrypto", + "kind": "class", + "name": "EcdsaParams", + "signature": "Class: `EcdsaParams`", + "label": "EcdsaParams", + "apiSymbol": "EcdsaParams", + "depth": 1, + "scope": "api", + "anchor": "class-ecdsaparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:df2d5f40d092", + "chapter": "webcrypto", + "kind": "string|Algorithm", + "name": "Type", + "signature": "`hash` Type: {string|Algorithm}", + "label": "hash", + "apiSymbol": "hash", + "depth": 2, + "scope": "api", + "anchor": "class-ecdsaparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "webcrypto:4944a160092e", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string} Must be `'ECDSA'`.", + "label": "name", + "apiSymbol": "name", + "depth": 2, + "scope": "api", + "anchor": "class-ecdsaparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:c1b95c7fa392", + "chapter": "webcrypto", + "kind": "class", + "name": "EcKeyAlgorithm", + "signature": "Class: `EcKeyAlgorithm`", + "label": "EcKeyAlgorithm", + "apiSymbol": "EcKeyAlgorithm", + "depth": 1, + "scope": "api", + "anchor": "class-eckeyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:fff4023e69d0", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string}", + "label": "name", + "apiSymbol": "name", + "depth": 2, + "scope": "api", + "anchor": "class-eckeyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:b9a97598a9e6", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`namedCurve` Type: {string}", + "label": "namedCurve", + "apiSymbol": "namedCurve", + "depth": 2, + "scope": "api", + "anchor": "class-eckeyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:7febcc526494", + "chapter": "webcrypto", + "kind": "class", + "name": "EcKeyGenParams", + "signature": "Class: `EcKeyGenParams`", + "label": "EcKeyGenParams", + "apiSymbol": "EcKeyGenParams", + "depth": 1, + "scope": "api", + "anchor": "class-eckeygenparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:d97f7cfb4905", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string} Must be one of `'ECDSA'` or `'ECDH'`.", + "label": "name", + "apiSymbol": "name", + "depth": 2, + "scope": "api", + "anchor": "class-eckeygenparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:ff601e861741", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`namedCurve` Type: {string} Must be one of `'P-256'`, `'P-384'`, `'P-521'`.", + "label": "namedCurve", + "apiSymbol": "namedCurve", + "depth": 2, + "scope": "api", + "anchor": "class-eckeygenparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:b652472193a8", + "chapter": "webcrypto", + "kind": "class", + "name": "EcKeyImportParams", + "signature": "Class: `EcKeyImportParams`", + "label": "EcKeyImportParams", + "apiSymbol": "EcKeyImportParams", + "depth": 1, + "scope": "api", + "anchor": "class-eckeyimportparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:ff27302b6c60", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string} Must be one of `'ECDSA'` or `'ECDH'`.", + "label": "name", + "apiSymbol": "name", + "depth": 2, + "scope": "api", + "anchor": "class-eckeyimportparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:ae8f851e9778", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`namedCurve` Type: {string} Must be one of `'P-256'`, `'P-384'`, `'P-521'`.", + "label": "namedCurve", + "apiSymbol": "namedCurve", + "depth": 2, + "scope": "api", + "anchor": "class-eckeyimportparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:2d22a4d22d97", + "chapter": "webcrypto", + "kind": "class", + "name": "EncapsulatedBits", + "signature": "Class: `EncapsulatedBits`", + "label": "EncapsulatedBits", + "apiSymbol": "EncapsulatedBits", + "depth": 1, + "scope": "api", + "anchor": "class-encapsulatedbits", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:73e49fc03082", + "chapter": "webcrypto", + "kind": "ArrayBuffer", + "name": "Type", + "signature": "`ciphertext` Type: {ArrayBuffer}", + "label": "ciphertext", + "apiSymbol": "ciphertext", + "depth": 2, + "scope": "api", + "anchor": "class-encapsulatedbits", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:0f48c646ae11", + "chapter": "webcrypto", + "kind": "ArrayBuffer", + "name": "Type", + "signature": "`sharedKey` Type: {ArrayBuffer}", + "label": "sharedKey", + "apiSymbol": "sharedKey", + "depth": 2, + "scope": "api", + "anchor": "class-encapsulatedbits", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:8d1384ed7e4e", + "chapter": "webcrypto", + "kind": "class", + "name": "EncapsulatedKey", + "signature": "Class: `EncapsulatedKey`", + "label": "EncapsulatedKey", + "apiSymbol": "EncapsulatedKey", + "depth": 1, + "scope": "api", + "anchor": "class-encapsulatedkey", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:1e3b9c935c99", + "chapter": "webcrypto", + "kind": "ArrayBuffer", + "name": "Type", + "signature": "`ciphertext` Type: {ArrayBuffer}", + "label": "ciphertext", + "apiSymbol": "ciphertext", + "depth": 2, + "scope": "api", + "anchor": "class-encapsulatedkey", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:61dd816cbafb", + "chapter": "webcrypto", + "kind": "CryptoKey", + "name": "Type", + "signature": "`sharedKey` Type: {CryptoKey}", + "label": "sharedKey", + "apiSymbol": "sharedKey", + "depth": 2, + "scope": "api", + "anchor": "class-encapsulatedkey", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:1954c2f5855a", + "chapter": "webcrypto", + "kind": "class", + "name": "HkdfParams", + "signature": "Class: `HkdfParams`", + "label": "HkdfParams", + "apiSymbol": "HkdfParams", + "depth": 1, + "scope": "api", + "anchor": "class-hkdfparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:4e5f36081fb9", + "chapter": "webcrypto", + "kind": "string|Algorithm", + "name": "Type", + "signature": "`hash` Type: {string|Algorithm}", + "label": "hash", + "apiSymbol": "hash", + "depth": 2, + "scope": "api", + "anchor": "class-hkdfparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "webcrypto:a8e569964fa0", + "chapter": "webcrypto", + "kind": "ArrayBuffer|TypedArray|DataView|Buffer", + "name": "Type", + "signature": "`info` Type: {ArrayBuffer|TypedArray|DataView|Buffer}", + "label": "info", + "apiSymbol": "info", + "depth": 2, + "scope": "api", + "anchor": "class-hkdfparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:3d78b0f2f97b", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string} Must be `'HKDF'`.", + "label": "name", + "apiSymbol": "name", + "depth": 2, + "scope": "api", + "anchor": "class-hkdfparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:3d2054aec77f", + "chapter": "webcrypto", + "kind": "ArrayBuffer|TypedArray|DataView|Buffer", + "name": "Type", + "signature": "`salt` Type: {ArrayBuffer|TypedArray|DataView|Buffer}", + "label": "salt", + "apiSymbol": "salt", + "depth": 2, + "scope": "api", + "anchor": "class-hkdfparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:9587f4a3e035", + "chapter": "webcrypto", + "kind": "class", + "name": "HmacImportParams", + "signature": "Class: `HmacImportParams`", + "label": "HmacImportParams", + "apiSymbol": "HmacImportParams", + "depth": 1, + "scope": "api", + "anchor": "class-hmacimportparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:23dcd527bbf6", + "chapter": "webcrypto", + "kind": "string|Algorithm", + "name": "Type", + "signature": "`hash` Type: {string|Algorithm}", + "label": "hash", + "apiSymbol": "hash", + "depth": 2, + "scope": "api", + "anchor": "class-hmacimportparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "webcrypto:46b3be570f6c", + "chapter": "webcrypto", + "kind": "number", + "name": "Type", + "signature": "`length` Type: {number}", + "label": "length", + "apiSymbol": "length", + "depth": 2, + "scope": "api", + "anchor": "class-hmacimportparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:952a60eed01e", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string} Must be `'HMAC'`.", + "label": "name", + "apiSymbol": "name", + "depth": 2, + "scope": "api", + "anchor": "class-hmacimportparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:cd65fdc1893e", + "chapter": "webcrypto", + "kind": "class", + "name": "HmacKeyAlgorithm", + "signature": "Class: `HmacKeyAlgorithm`", + "label": "HmacKeyAlgorithm", + "apiSymbol": "HmacKeyAlgorithm", + "depth": 1, + "scope": "api", + "anchor": "class-hmackeyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:a2986253c75b", + "chapter": "webcrypto", + "kind": "Algorithm", + "name": "Type", + "signature": "`hash` Type: {Algorithm}", + "label": "hash", + "apiSymbol": "hash", + "depth": 2, + "scope": "api", + "anchor": "class-hmackeyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "webcrypto:1e5b1ef67279", + "chapter": "webcrypto", + "kind": "number", + "name": "Type", + "signature": "`length` Type: {number}", + "label": "length", + "apiSymbol": "length", + "depth": 2, + "scope": "api", + "anchor": "class-hmackeyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:a352d153f456", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string}", + "label": "name", + "apiSymbol": "name", + "depth": 2, + "scope": "api", + "anchor": "class-hmackeyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:8818bd91bd7e", + "chapter": "webcrypto", + "kind": "class", + "name": "HmacKeyGenParams", + "signature": "Class: `HmacKeyGenParams`", + "label": "HmacKeyGenParams", + "apiSymbol": "HmacKeyGenParams", + "depth": 1, + "scope": "api", + "anchor": "class-hmackeygenparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:72e61962dfef", + "chapter": "webcrypto", + "kind": "string|Algorithm", + "name": "Type", + "signature": "`hash` Type: {string|Algorithm}", + "label": "hash", + "apiSymbol": "hash", + "depth": 2, + "scope": "api", + "anchor": "class-hmackeygenparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "webcrypto:894c2ecdb640", + "chapter": "webcrypto", + "kind": "number", + "name": "Type", + "signature": "`length` Type: {number}", + "label": "length", + "apiSymbol": "length", + "depth": 2, + "scope": "api", + "anchor": "class-hmackeygenparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:1bd415494954", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string} Must be `'HMAC'`.", + "label": "name", + "apiSymbol": "name", + "depth": 2, + "scope": "api", + "anchor": "class-hmackeygenparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:149380635f5c", + "chapter": "webcrypto", + "kind": "class", + "name": "KeyAlgorithm", + "signature": "Class: `KeyAlgorithm`", + "label": "KeyAlgorithm", + "apiSymbol": "KeyAlgorithm", + "depth": 1, + "scope": "api", + "anchor": "class-keyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:539d4f40a15a", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string}", + "label": "name", + "apiSymbol": "name", + "depth": 2, + "scope": "api", + "anchor": "class-keyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:fd89bc275372", + "chapter": "webcrypto", + "kind": "class", + "name": "KmacImportParams", + "signature": "Class: `KmacImportParams`", + "label": "KmacImportParams", + "apiSymbol": "KmacImportParams", + "depth": 1, + "scope": "api", + "anchor": "class-kmacimportparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:a12c9591e138", + "chapter": "webcrypto", + "kind": "number", + "name": "Type", + "signature": "`length` Type: {number}", + "label": "length", + "apiSymbol": "length", + "depth": 2, + "scope": "api", + "anchor": "class-kmacimportparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:d1c3cc414709", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string} Must be `'KMAC128'` or `'KMAC256'`.", + "label": "name", + "apiSymbol": "name", + "depth": 2, + "scope": "api", + "anchor": "class-kmacimportparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:d2590bef46f5", + "chapter": "webcrypto", + "kind": "class", + "name": "KmacKeyAlgorithm", + "signature": "Class: `KmacKeyAlgorithm`", + "label": "KmacKeyAlgorithm", + "apiSymbol": "KmacKeyAlgorithm", + "depth": 1, + "scope": "api", + "anchor": "class-kmackeyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:71b7195a2253", + "chapter": "webcrypto", + "kind": "number", + "name": "Type", + "signature": "`length` Type: {number}", + "label": "length", + "apiSymbol": "length", + "depth": 2, + "scope": "api", + "anchor": "class-kmackeyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:a1519f0084eb", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string}", + "label": "name", + "apiSymbol": "name", + "depth": 2, + "scope": "api", + "anchor": "class-kmackeyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:bb8a4e1d72f0", + "chapter": "webcrypto", + "kind": "class", + "name": "KmacKeyGenParams", + "signature": "Class: `KmacKeyGenParams`", + "label": "KmacKeyGenParams", + "apiSymbol": "KmacKeyGenParams", + "depth": 1, + "scope": "api", + "anchor": "class-kmackeygenparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:865129de3ee7", + "chapter": "webcrypto", + "kind": "number", + "name": "Type", + "signature": "`length` Type: {number}", + "label": "length", + "apiSymbol": "length", + "depth": 2, + "scope": "api", + "anchor": "class-kmackeygenparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:11431de8b7ea", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string} Must be `'KMAC128'` or `'KMAC256'`.", + "label": "name", + "apiSymbol": "name", + "depth": 2, + "scope": "api", + "anchor": "class-kmackeygenparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:6c7119d44e0a", + "chapter": "webcrypto", + "kind": "class", + "name": "KmacParams", + "signature": "Class: `KmacParams`", + "label": "KmacParams", + "apiSymbol": "KmacParams", + "depth": 1, + "scope": "api", + "anchor": "class-kmacparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:f65755eba1a1", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`algorithm` Type: {string} Must be `'KMAC128'` or `'KMAC256'`.", + "label": "algorithm", + "apiSymbol": "algorithm", + "depth": 2, + "scope": "api", + "anchor": "class-kmacparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:82fe1baefa90", + "chapter": "webcrypto", + "kind": "number", + "name": "Type", + "signature": "`outputLength` Type: {number}", + "label": "outputLength", + "apiSymbol": "outputLength", + "depth": 2, + "scope": "api", + "anchor": "class-kmacparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:2f5fdc6ab0c1", + "chapter": "webcrypto", + "kind": "ArrayBuffer|TypedArray|DataView|Buffer|undefined", + "name": "Type", + "signature": "`customization` Type: {ArrayBuffer|TypedArray|DataView|Buffer|undefined}", + "label": "customization", + "apiSymbol": "customization", + "depth": 2, + "scope": "api", + "anchor": "class-kmacparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:1954a05b0dcd", + "chapter": "webcrypto", + "kind": "class", + "name": "Pbkdf2Params", + "signature": "Class: `Pbkdf2Params`", + "label": "Pbkdf2Params", + "apiSymbol": "Pbkdf2Params", + "depth": 1, + "scope": "api", + "anchor": "class-pbkdf2params", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:90172990b40c", + "chapter": "webcrypto", + "kind": "string|Algorithm", + "name": "Type", + "signature": "`hash` Type: {string|Algorithm}", + "label": "hash", + "apiSymbol": "hash", + "depth": 2, + "scope": "api", + "anchor": "class-pbkdf2params", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "webcrypto:89d55eb491e6", + "chapter": "webcrypto", + "kind": "number", + "name": "Type", + "signature": "`iterations` Type: {number}", + "label": "iterations", + "apiSymbol": "iterations", + "depth": 2, + "scope": "api", + "anchor": "class-pbkdf2params", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:b784b5670237", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string} Must be `'PBKDF2'`.", + "label": "name", + "apiSymbol": "name", + "depth": 2, + "scope": "api", + "anchor": "class-pbkdf2params", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:c106ffde1c27", + "chapter": "webcrypto", + "kind": "ArrayBuffer|TypedArray|DataView|Buffer", + "name": "Type", + "signature": "`salt` Type: {ArrayBuffer|TypedArray|DataView|Buffer}", + "label": "salt", + "apiSymbol": "salt", + "depth": 2, + "scope": "api", + "anchor": "class-pbkdf2params", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:51a363016360", + "chapter": "webcrypto", + "kind": "class", + "name": "RsaHashedImportParams", + "signature": "Class: `RsaHashedImportParams`", + "label": "RsaHashedImportParams", + "apiSymbol": "RsaHashedImportParams", + "depth": 1, + "scope": "api", + "anchor": "class-rsahashedimportparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:f2ea19036c87", + "chapter": "webcrypto", + "kind": "string|Algorithm", + "name": "Type", + "signature": "`hash` Type: {string|Algorithm}", + "label": "hash", + "apiSymbol": "hash", + "depth": 2, + "scope": "api", + "anchor": "class-rsahashedimportparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "webcrypto:7f0f6c402d57", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string} Must be one of `'RSASSA-PKCS1-v1_5'`, `'RSA-PSS'`, or `'RSA-OAEP'`.", + "label": "name", + "apiSymbol": "name", + "depth": 2, + "scope": "api", + "anchor": "class-rsahashedimportparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:d32ae0ad2cfc", + "chapter": "webcrypto", + "kind": "class", + "name": "RsaHashedKeyAlgorithm", + "signature": "Class: `RsaHashedKeyAlgorithm`", + "label": "RsaHashedKeyAlgorithm", + "apiSymbol": "RsaHashedKeyAlgorithm", + "depth": 1, + "scope": "api", + "anchor": "class-rsahashedkeyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:285e4defde05", + "chapter": "webcrypto", + "kind": "Algorithm", + "name": "Type", + "signature": "`hash` Type: {Algorithm}", + "label": "hash", + "apiSymbol": "hash", + "depth": 2, + "scope": "api", + "anchor": "class-rsahashedkeyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "webcrypto:199f935161c9", + "chapter": "webcrypto", + "kind": "number", + "name": "Type", + "signature": "`modulusLength` Type: {number}", + "label": "modulusLength", + "apiSymbol": "modulusLength", + "depth": 2, + "scope": "api", + "anchor": "class-rsahashedkeyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:2afff59b5ec9", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string}", + "label": "name", + "apiSymbol": "name", + "depth": 2, + "scope": "api", + "anchor": "class-rsahashedkeyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:01a7d8f25140", + "chapter": "webcrypto", + "kind": "Uint8Array", + "name": "Type", + "signature": "`publicExponent` Type: {Uint8Array}", + "label": "publicExponent", + "apiSymbol": "publicExponent", + "depth": 2, + "scope": "api", + "anchor": "class-rsahashedkeyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:5ad6e661be1f", + "chapter": "webcrypto", + "kind": "class", + "name": "RsaHashedKeyGenParams", + "signature": "Class: `RsaHashedKeyGenParams`", + "label": "RsaHashedKeyGenParams", + "apiSymbol": "RsaHashedKeyGenParams", + "depth": 1, + "scope": "api", + "anchor": "class-rsahashedkeygenparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:48e265876023", + "chapter": "webcrypto", + "kind": "string|Algorithm", + "name": "Type", + "signature": "`hash` Type: {string|Algorithm}", + "label": "hash", + "apiSymbol": "hash", + "depth": 2, + "scope": "api", + "anchor": "class-rsahashedkeygenparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "webcrypto:7a3c6c28260d", + "chapter": "webcrypto", + "kind": "number", + "name": "Type", + "signature": "`modulusLength` Type: {number}", + "label": "modulusLength", + "apiSymbol": "modulusLength", + "depth": 2, + "scope": "api", + "anchor": "class-rsahashedkeygenparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:e2fe42d18365", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string} Must be one of `'RSASSA-PKCS1-v1_5'`, `'RSA-PSS'`, or `'RSA-OAEP'`.", + "label": "name", + "apiSymbol": "name", + "depth": 2, + "scope": "api", + "anchor": "class-rsahashedkeygenparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:eee791955790", + "chapter": "webcrypto", + "kind": "Uint8Array", + "name": "Type", + "signature": "`publicExponent` Type: {Uint8Array}", + "label": "publicExponent", + "apiSymbol": "publicExponent", + "depth": 2, + "scope": "api", + "anchor": "class-rsahashedkeygenparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:32b6a2fa2369", + "chapter": "webcrypto", + "kind": "class", + "name": "RsaOaepParams", + "signature": "Class: `RsaOaepParams`", + "label": "RsaOaepParams", + "apiSymbol": "RsaOaepParams", + "depth": 1, + "scope": "api", + "anchor": "class-rsaoaepparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:e7eb643f042b", + "chapter": "webcrypto", + "kind": "ArrayBuffer|TypedArray|DataView|Buffer", + "name": "Type", + "signature": "`label` Type: {ArrayBuffer|TypedArray|DataView|Buffer}", + "label": "label", + "apiSymbol": "label", + "depth": 2, + "scope": "api", + "anchor": "class-rsaoaepparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:1937cc2aa87b", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string} must be `'RSA-OAEP'`.", + "label": "name", + "apiSymbol": "name", + "depth": 2, + "scope": "api", + "anchor": "class-rsaoaepparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:9ee8f6b8658b", + "chapter": "webcrypto", + "kind": "class", + "name": "RsaPssParams", + "signature": "Class: `RsaPssParams`", + "label": "RsaPssParams", + "apiSymbol": "RsaPssParams", + "depth": 1, + "scope": "api", + "anchor": "class-rsapssparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:1b596465e1de", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string} Must be `'RSA-PSS'`.", + "label": "name", + "apiSymbol": "name", + "depth": 2, + "scope": "api", + "anchor": "class-rsapssparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:ab8289473829", + "chapter": "webcrypto", + "kind": "number", + "name": "Type", + "signature": "`saltLength` Type: {number}", + "label": "saltLength", + "apiSymbol": "saltLength", + "depth": 2, + "scope": "api", + "anchor": "class-rsapssparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:92a3a1223e3b", + "chapter": "webcrypto", + "kind": "class", + "name": "Crypto", + "signature": "Class: `Crypto`", + "label": "Crypto", + "apiSymbol": "Crypto", + "depth": 1, + "scope": "api", + "anchor": "class-crypto", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:dcc24f369f43", + "chapter": "webcrypto", + "kind": "method", + "name": "getRandomValues", + "signature": "`crypto.getRandomValues(typedArray)`", + "label": "crypto.getRandomValues(typedArray)", + "apiSymbol": "crypto.getRandomValues", + "depth": 2, + "scope": "api", + "anchor": "cryptogetrandomvaluestypedarray", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "webcrypto:35fd8cce482a", + "chapter": "webcrypto", + "kind": "method", + "name": "randomUUID", + "signature": "`crypto.randomUUID()`", + "label": "crypto.randomUUID()", + "apiSymbol": "crypto.randomUUID", + "depth": 2, + "scope": "api", + "anchor": "cryptorandomuuid", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "webcrypto:8c570ec75666", + "chapter": "webcrypto", + "kind": "SubtleCrypto", + "name": "Type", + "signature": "`subtle` Type: {SubtleCrypto}", + "label": "subtle", + "apiSymbol": "subtle", + "depth": 2, + "scope": "api", + "anchor": "class-crypto", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "webcrypto:68e61427b871", + "chapter": "webcrypto", + "kind": "class", + "name": "CryptoKey", + "signature": "Class: `CryptoKey`", + "label": "CryptoKey", + "apiSymbol": "CryptoKey", + "depth": 1, + "scope": "api", + "anchor": "class-cryptokey", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:37e3b4aba98c", + "chapter": "webcrypto", + "kind": "section", + "name": "algorithm", + "signature": "`cryptoKey.algorithm`", + "label": "cryptoKey.algorithm", + "apiSymbol": "cryptoKey.algorithm", + "depth": 2, + "scope": "api", + "anchor": "cryptokeyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:0156e05ff68d", + "chapter": "webcrypto", + "kind": "boolean", + "name": "Type", + "signature": "`extractable` Type: {boolean}", + "label": "extractable", + "apiSymbol": "extractable", + "depth": 2, + "scope": "api", + "anchor": "class-cryptokey", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:5c7e32152dcc", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`type` Type: {string} One of `'secret'`, `'private'`, or `'public'`.", + "label": "type", + "apiSymbol": "type", + "depth": 2, + "scope": "api", + "anchor": "class-cryptokey", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:03f1bca47b2e", + "chapter": "webcrypto", + "kind": "string\\[]", + "name": "Type", + "signature": "`usages` Type: {string\\[]}", + "label": "usages", + "apiSymbol": "usages", + "depth": 2, + "scope": "api", + "anchor": "class-cryptokey", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:753cdf0ffee2", + "chapter": "webcrypto", + "kind": "class", + "name": "CryptoKeyPair", + "signature": "Class: `CryptoKeyPair`", + "label": "CryptoKeyPair", + "apiSymbol": "CryptoKeyPair", + "depth": 1, + "scope": "api", + "anchor": "class-cryptokeypair", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:6a02593ce03d", + "chapter": "webcrypto", + "kind": "CryptoKey", + "name": "Type", + "signature": "`privateKey` Type: {CryptoKey} A {CryptoKey} whose `type` will be `'private'`.", + "label": "privateKey", + "apiSymbol": "privateKey", + "depth": 2, + "scope": "api", + "anchor": "class-cryptokeypair", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:13b1f10bf801", + "chapter": "webcrypto", + "kind": "CryptoKey", + "name": "Type", + "signature": "`publicKey` Type: {CryptoKey} A {CryptoKey} whose `type` will be `'public'`.", + "label": "publicKey", + "apiSymbol": "publicKey", + "depth": 2, + "scope": "api", + "anchor": "class-cryptokeypair", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:f293a8743eee", + "chapter": "webcrypto", + "kind": "class", + "name": "SubtleCrypto", + "signature": "Class: `SubtleCrypto`", + "label": "SubtleCrypto", + "apiSymbol": "SubtleCrypto", + "depth": 1, + "scope": "api", + "anchor": "class-subtlecrypto", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:7cd42dcf9151", + "chapter": "webcrypto", + "kind": "method", + "name": "decapsulateBits", + "signature": "`subtle.decapsulateBits(decapsulationAlgorithm, decapsulationKey, ciphertext)`", + "label": "subtle.decapsulateBits(decapsulationAlgorithm, decapsulationKey, ciphertext)", + "apiSymbol": "subtle.decapsulateBits", + "depth": 2, + "scope": "api", + "anchor": "subtledecapsulatebitsdecapsulationalgorithm-decapsulationkey-ciphertext", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:d8f38474b5e5", + "chapter": "webcrypto", + "kind": "method", + "name": "decapsulateKey", + "signature": "`subtle.decapsulateKey(decapsulationAlgorithm, decapsulationKey, ciphertext, sharedKeyAlgorithm, extractable, usages)`", + "label": "subtle.decapsulateKey(decapsulationAlgorithm, decapsulationKey, ciphertext, sharedKeyAlgorithm, extractable, usages)", + "apiSymbol": "subtle.decapsulateKey", + "depth": 2, + "scope": "api", + "anchor": "subtledecapsulatekeydecapsulationalgorithm-decapsulationkey-ciphertext-sharedkeyalgorithm-extractable-usages", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:b11c8366ee0c", + "chapter": "webcrypto", + "kind": "method", + "name": "decrypt", + "signature": "`subtle.decrypt(algorithm, key, data)`", + "label": "subtle.decrypt(algorithm, key, data)", + "apiSymbol": "subtle.decrypt", + "depth": 2, + "scope": "api", + "anchor": "subtledecryptalgorithm-key-data", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:2074c3a9faae", + "chapter": "webcrypto", + "kind": "method", + "name": "deriveBits", + "signature": "`subtle.deriveBits(algorithm, baseKey[, length])`", + "label": "subtle.deriveBits(algorithm, baseKey[, length])", + "apiSymbol": "subtle.deriveBits", + "depth": 2, + "scope": "api", + "anchor": "subtlederivebitsalgorithm-basekey-length", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:8618a4716426", + "chapter": "webcrypto", + "kind": "method", + "name": "deriveKey", + "signature": "`subtle.deriveKey(algorithm, baseKey, derivedKeyAlgorithm, extractable, keyUsages)`", + "label": "subtle.deriveKey(algorithm, baseKey, derivedKeyAlgorithm, extractable, keyUsages)", + "apiSymbol": "subtle.deriveKey", + "depth": 2, + "scope": "api", + "anchor": "subtlederivekeyalgorithm-basekey-derivedkeyalgorithm-extractable-keyusages", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:609a0a8add1e", + "chapter": "webcrypto", + "kind": "method", + "name": "digest", + "signature": "`subtle.digest(algorithm, data)`", + "label": "subtle.digest(algorithm, data)", + "apiSymbol": "subtle.digest", + "depth": 2, + "scope": "api", + "anchor": "subtledigestalgorithm-data", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:549d41ea5d88", + "chapter": "webcrypto", + "kind": "method", + "name": "encapsulateBits", + "signature": "`subtle.encapsulateBits(encapsulationAlgorithm, encapsulationKey)`", + "label": "subtle.encapsulateBits(encapsulationAlgorithm, encapsulationKey)", + "apiSymbol": "subtle.encapsulateBits", + "depth": 2, + "scope": "api", + "anchor": "subtleencapsulatebitsencapsulationalgorithm-encapsulationkey", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:5e146a8a6347", + "chapter": "webcrypto", + "kind": "method", + "name": "encapsulateKey", + "signature": "`subtle.encapsulateKey(encapsulationAlgorithm, encapsulationKey, sharedKeyAlgorithm, extractable, usages)`", + "label": "subtle.encapsulateKey(encapsulationAlgorithm, encapsulationKey, sharedKeyAlgorithm, extractable, usages)", + "apiSymbol": "subtle.encapsulateKey", + "depth": 2, + "scope": "api", + "anchor": "subtleencapsulatekeyencapsulationalgorithm-encapsulationkey-sharedkeyalgorithm-extractable-usages", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:71ae6092934c", + "chapter": "webcrypto", + "kind": "method", + "name": "encrypt", + "signature": "`subtle.encrypt(algorithm, key, data)`", + "label": "subtle.encrypt(algorithm, key, data)", + "apiSymbol": "subtle.encrypt", + "depth": 2, + "scope": "api", + "anchor": "subtleencryptalgorithm-key-data", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:234e8c17f16e", + "chapter": "webcrypto", + "kind": "method", + "name": "exportKey", + "signature": "`subtle.exportKey(format, key)`", + "label": "subtle.exportKey(format, key)", + "apiSymbol": "subtle.exportKey", + "depth": 2, + "scope": "api", + "anchor": "subtleexportkeyformat-key", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:4c2759443aed", + "chapter": "webcrypto", + "kind": "method", + "name": "getPublicKey", + "signature": "`subtle.getPublicKey(key, keyUsages)`", + "label": "subtle.getPublicKey(key, keyUsages)", + "apiSymbol": "subtle.getPublicKey", + "depth": 2, + "scope": "api", + "anchor": "subtlegetpublickeykey-keyusages", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:9efd347f3ac9", + "chapter": "webcrypto", + "kind": "method", + "name": "generateKey", + "signature": "`subtle.generateKey(algorithm, extractable, keyUsages)`", + "label": "subtle.generateKey(algorithm, extractable, keyUsages)", + "apiSymbol": "subtle.generateKey", + "depth": 2, + "scope": "api", + "anchor": "subtlegeneratekeyalgorithm-extractable-keyusages", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:48597e41090f", + "chapter": "webcrypto", + "kind": "method", + "name": "importKey", + "signature": "`subtle.importKey(format, keyData, algorithm, extractable, keyUsages)`", + "label": "subtle.importKey(format, keyData, algorithm, extractable, keyUsages)", + "apiSymbol": "subtle.importKey", + "depth": 2, + "scope": "api", + "anchor": "subtleimportkeyformat-keydata-algorithm-extractable-keyusages", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:0504b64c6286", + "chapter": "webcrypto", + "kind": "method", + "name": "sign", + "signature": "`subtle.sign(algorithm, key, data)`", + "label": "subtle.sign(algorithm, key, data)", + "apiSymbol": "subtle.sign", + "depth": 2, + "scope": "api", + "anchor": "subtlesignalgorithm-key-data", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:67f9b9466d2c", + "chapter": "webcrypto", + "kind": "method", + "name": "unwrapKey", + "signature": "`subtle.unwrapKey(format, wrappedKey, unwrappingKey, unwrapAlgo, unwrappedKeyAlgo, extractable, keyUsages)`", + "label": "subtle.unwrapKey(format, wrappedKey, unwrappingKey, unwrapAlgo, unwrappedKeyAlgo, extractable, keyUsages)", + "apiSymbol": "subtle.unwrapKey", + "depth": 2, + "scope": "api", + "anchor": "subtleunwrapkeyformat-wrappedkey-unwrappingkey-unwrapalgo-unwrappedkeyalgo-extractable-keyusages", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:2471cc57bfa3", + "chapter": "webcrypto", + "kind": "method", + "name": "verify", + "signature": "`subtle.verify(algorithm, key, signature, data)`", + "label": "subtle.verify(algorithm, key, signature, data)", + "apiSymbol": "subtle.verify", + "depth": 2, + "scope": "api", + "anchor": "subtleverifyalgorithm-key-signature-data", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webcrypto:62ec6d9ec96a", + "chapter": "webcrypto", + "kind": "method", + "name": "wrapKey", + "signature": "`subtle.wrapKey(format, key, wrappingKey, wrapAlgo)`", + "label": "subtle.wrapKey(format, key, wrappingKey, wrapAlgo)", + "apiSymbol": "subtle.wrapKey", + "depth": 2, + "scope": "api", + "anchor": "subtlewrapkeyformat-key-wrappingkey-wrapalgo", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:2e18af6371a8", + "chapter": "webstreams", + "kind": "module", + "name": "web_streams_api", + "signature": "Web Streams API", + "label": "Web Streams API", + "apiSymbol": "web_streams_api", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + }, + "dynamic": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + } + }, + { + "id": "webstreams:a0aa7f7603de", + "chapter": "webstreams", + "kind": "method", + "name": "arrayBuffer", + "signature": "`streamConsumers.arrayBuffer(stream)`", + "label": "streamConsumers.arrayBuffer(stream)", + "apiSymbol": "streamConsumers.arrayBuffer", + "depth": 1, + "scope": "api", + "anchor": "streamconsumersarraybufferstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:d39eca07e53e", + "chapter": "webstreams", + "kind": "method", + "name": "blob", + "signature": "`streamConsumers.blob(stream)`", + "label": "streamConsumers.blob(stream)", + "apiSymbol": "streamConsumers.blob", + "depth": 1, + "scope": "api", + "anchor": "streamconsumersblobstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:21ae10f1891a", + "chapter": "webstreams", + "kind": "method", + "name": "buffer", + "signature": "`streamConsumers.buffer(stream)`", + "label": "streamConsumers.buffer(stream)", + "apiSymbol": "streamConsumers.buffer", + "depth": 1, + "scope": "api", + "anchor": "streamconsumersbufferstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:5d8f059c0df0", + "chapter": "webstreams", + "kind": "method", + "name": "bytes", + "signature": "`streamConsumers.bytes(stream)`", + "label": "streamConsumers.bytes(stream)", + "apiSymbol": "streamConsumers.bytes", + "depth": 1, + "scope": "api", + "anchor": "streamconsumersbytesstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:653a4c9233ad", + "chapter": "webstreams", + "kind": "method", + "name": "json", + "signature": "`streamConsumers.json(stream)`", + "label": "streamConsumers.json(stream)", + "apiSymbol": "streamConsumers.json", + "depth": 1, + "scope": "api", + "anchor": "streamconsumersjsonstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:0e1bc54ba771", + "chapter": "webstreams", + "kind": "method", + "name": "text", + "signature": "`streamConsumers.text(stream)`", + "label": "streamConsumers.text(stream)", + "apiSymbol": "streamConsumers.text", + "depth": 1, + "scope": "api", + "anchor": "streamconsumerstextstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:6ae7ec5a740c", + "chapter": "webstreams", + "kind": "class", + "name": "ReadableStream", + "signature": "Class: `ReadableStream`", + "label": "ReadableStream", + "apiSymbol": "ReadableStream", + "depth": 1, + "scope": "api", + "anchor": "class-readablestream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "webstreams:e1344c6274af", + "chapter": "webstreams", + "kind": "module", + "name": "transferring_with_`postmessage()`", + "signature": "Transferring with `postMessage()`", + "label": "Transferring with postMessage()", + "apiSymbol": "postMessage", + "depth": 2, + "scope": "api", + "anchor": "transferring-with-postmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:07874a3f716e", + "chapter": "webstreams", + "kind": "method", + "name": "cancel", + "signature": "`readableStream.cancel([reason])`", + "label": "readableStream.cancel([reason])", + "apiSymbol": "readableStream.cancel", + "depth": 2, + "scope": "api", + "anchor": "readablestreamcancelreason", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:e16de5c53eb4", + "chapter": "webstreams", + "kind": "method", + "name": "getReader", + "signature": "`readableStream.getReader([options])`", + "label": "readableStream.getReader([options])", + "apiSymbol": "readableStream.getReader", + "depth": 2, + "scope": "api", + "anchor": "readablestreamgetreaderoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:63b2d89c6c00", + "chapter": "webstreams", + "kind": "method", + "name": "pipeThrough", + "signature": "`readableStream.pipeThrough(transform[, options])`", + "label": "readableStream.pipeThrough(transform[, options])", + "apiSymbol": "readableStream.pipeThrough", + "depth": 2, + "scope": "api", + "anchor": "readablestreampipethroughtransform-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:0a27945017c9", + "chapter": "webstreams", + "kind": "method", + "name": "pipeTo", + "signature": "`readableStream.pipeTo(destination[, options])`", + "label": "readableStream.pipeTo(destination[, options])", + "apiSymbol": "readableStream.pipeTo", + "depth": 2, + "scope": "api", + "anchor": "readablestreampipetodestination-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:37ce77efec40", + "chapter": "webstreams", + "kind": "method", + "name": "tee", + "signature": "`readableStream.tee()`", + "label": "readableStream.tee()", + "apiSymbol": "readableStream.tee", + "depth": 2, + "scope": "api", + "anchor": "readablestreamtee", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:59af1c97ad6c", + "chapter": "webstreams", + "kind": "method", + "name": "values", + "signature": "`readableStream.values([options])`", + "label": "readableStream.values([options])", + "apiSymbol": "readableStream.values", + "depth": 2, + "scope": "api", + "anchor": "readablestreamvaluesoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:22e4c5cb6e21", + "chapter": "webstreams", + "kind": "boolean", + "name": "Type", + "signature": "`locked` Type: {boolean} Set to `true` if there is an active reader for this {ReadableStream}.", + "label": "locked", + "apiSymbol": "locked", + "depth": 2, + "scope": "api", + "anchor": "class-readablestream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:59cd7b8edaca", + "chapter": "webstreams", + "kind": "class", + "name": "ReadableStreamDefaultReader", + "signature": "Class: `ReadableStreamDefaultReader`", + "label": "ReadableStreamDefaultReader", + "apiSymbol": "ReadableStreamDefaultReader", + "depth": 1, + "scope": "api", + "anchor": "class-readablestreamdefaultreader", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:a22fabc014a7", + "chapter": "webstreams", + "kind": "method", + "name": "cancel", + "signature": "`readableStreamDefaultReader.cancel([reason])`", + "label": "readableStreamDefaultReader.cancel([reason])", + "apiSymbol": "readableStreamDefaultReader.cancel", + "depth": 2, + "scope": "api", + "anchor": "readablestreamdefaultreadercancelreason", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:e83c6546e3e6", + "chapter": "webstreams", + "kind": "method", + "name": "read", + "signature": "`readableStreamDefaultReader.read()`", + "label": "readableStreamDefaultReader.read()", + "apiSymbol": "readableStreamDefaultReader.read", + "depth": 2, + "scope": "api", + "anchor": "readablestreamdefaultreaderread", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:c8b676670e1b", + "chapter": "webstreams", + "kind": "method", + "name": "releaseLock", + "signature": "`readableStreamDefaultReader.releaseLock()`", + "label": "readableStreamDefaultReader.releaseLock()", + "apiSymbol": "readableStreamDefaultReader.releaseLock", + "depth": 2, + "scope": "api", + "anchor": "readablestreamdefaultreaderreleaselock", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:31610192c3bb", + "chapter": "webstreams", + "kind": "Promise", + "name": "Type", + "signature": "`closed` Type: {Promise} Fulfilled with `undefined` when the associated {ReadableStream} is closed or rejected if the stream errors or the reader's lock is released before the stream finishes closing.", + "label": "closed", + "apiSymbol": "closed", + "depth": 2, + "scope": "api", + "anchor": "class-readablestreamdefaultreader", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:7d5990cd5487", + "chapter": "webstreams", + "kind": "class", + "name": "ReadableStreamBYOBReader", + "signature": "Class: `ReadableStreamBYOBReader`", + "label": "ReadableStreamBYOBReader", + "apiSymbol": "ReadableStreamBYOBReader", + "depth": 1, + "scope": "api", + "anchor": "class-readablestreambyobreader", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:f090647268e8", + "chapter": "webstreams", + "kind": "method", + "name": "cancel", + "signature": "`readableStreamBYOBReader.cancel([reason])`", + "label": "readableStreamBYOBReader.cancel([reason])", + "apiSymbol": "readableStreamBYOBReader.cancel", + "depth": 2, + "scope": "api", + "anchor": "readablestreambyobreadercancelreason", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:ad6d78bc9fb9", + "chapter": "webstreams", + "kind": "method", + "name": "read", + "signature": "`readableStreamBYOBReader.read(view[, options])`", + "label": "readableStreamBYOBReader.read(view[, options])", + "apiSymbol": "readableStreamBYOBReader.read", + "depth": 2, + "scope": "api", + "anchor": "readablestreambyobreaderreadview-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:3c38808260c5", + "chapter": "webstreams", + "kind": "method", + "name": "releaseLock", + "signature": "`readableStreamBYOBReader.releaseLock()`", + "label": "readableStreamBYOBReader.releaseLock()", + "apiSymbol": "readableStreamBYOBReader.releaseLock", + "depth": 2, + "scope": "api", + "anchor": "readablestreambyobreaderreleaselock", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:bde92078dc9c", + "chapter": "webstreams", + "kind": "Promise", + "name": "Type", + "signature": "`closed` Type: {Promise} Fulfilled with `undefined` when the associated {ReadableStream} is closed or rejected if the stream errors or the reader's lock is released before the stream finishes closing.", + "label": "closed", + "apiSymbol": "closed", + "depth": 2, + "scope": "api", + "anchor": "class-readablestreambyobreader", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:6790e97eee62", + "chapter": "webstreams", + "kind": "class", + "name": "ReadableStreamDefaultController", + "signature": "Class: `ReadableStreamDefaultController`", + "label": "ReadableStreamDefaultController", + "apiSymbol": "ReadableStreamDefaultController", + "depth": 1, + "scope": "api", + "anchor": "class-readablestreamdefaultcontroller", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:ad8c1f29c51c", + "chapter": "webstreams", + "kind": "method", + "name": "close", + "signature": "`readableStreamDefaultController.close()`", + "label": "readableStreamDefaultController.close()", + "apiSymbol": "readableStreamDefaultController.close", + "depth": 2, + "scope": "api", + "anchor": "readablestreamdefaultcontrollerclose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:4896adba6cde", + "chapter": "webstreams", + "kind": "method", + "name": "enqueue", + "signature": "`readableStreamDefaultController.enqueue([chunk])`", + "label": "readableStreamDefaultController.enqueue([chunk])", + "apiSymbol": "readableStreamDefaultController.enqueue", + "depth": 2, + "scope": "api", + "anchor": "readablestreamdefaultcontrollerenqueuechunk", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:446e7767814c", + "chapter": "webstreams", + "kind": "method", + "name": "error", + "signature": "`readableStreamDefaultController.error([error])`", + "label": "readableStreamDefaultController.error([error])", + "apiSymbol": "readableStreamDefaultController.error", + "depth": 2, + "scope": "api", + "anchor": "readablestreamdefaultcontrollererrorerror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:7a1f0cee4c0a", + "chapter": "webstreams", + "kind": "number", + "name": "Type", + "signature": "`desiredSize` Type: {number}", + "label": "desiredSize", + "apiSymbol": "desiredSize", + "depth": 2, + "scope": "api", + "anchor": "class-readablestreamdefaultcontroller", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:976b099cb870", + "chapter": "webstreams", + "kind": "class", + "name": "ReadableByteStreamController", + "signature": "Class: `ReadableByteStreamController`", + "label": "ReadableByteStreamController", + "apiSymbol": "ReadableByteStreamController", + "depth": 1, + "scope": "api", + "anchor": "class-readablebytestreamcontroller", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:fc086187e19a", + "chapter": "webstreams", + "kind": "method", + "name": "close", + "signature": "`readableByteStreamController.close()`", + "label": "readableByteStreamController.close()", + "apiSymbol": "readableByteStreamController.close", + "depth": 2, + "scope": "api", + "anchor": "readablebytestreamcontrollerclose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:b12dec2fbd1d", + "chapter": "webstreams", + "kind": "method", + "name": "enqueue", + "signature": "`readableByteStreamController.enqueue(chunk)`", + "label": "readableByteStreamController.enqueue(chunk)", + "apiSymbol": "readableByteStreamController.enqueue", + "depth": 2, + "scope": "api", + "anchor": "readablebytestreamcontrollerenqueuechunk", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:6fb37f5a196a", + "chapter": "webstreams", + "kind": "method", + "name": "error", + "signature": "`readableByteStreamController.error([error])`", + "label": "readableByteStreamController.error([error])", + "apiSymbol": "readableByteStreamController.error", + "depth": 2, + "scope": "api", + "anchor": "readablebytestreamcontrollererrorerror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:0df1635cf34d", + "chapter": "webstreams", + "kind": "ReadableStreamBYOBRequest", + "name": "Type", + "signature": "`byobRequest` Type: {ReadableStreamBYOBRequest}", + "label": "byobRequest", + "apiSymbol": "byobRequest", + "depth": 2, + "scope": "api", + "anchor": "class-readablebytestreamcontroller", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:086b3d6c7506", + "chapter": "webstreams", + "kind": "number", + "name": "Type", + "signature": "`desiredSize` Type: {number}", + "label": "desiredSize", + "apiSymbol": "desiredSize", + "depth": 2, + "scope": "api", + "anchor": "class-readablebytestreamcontroller", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:e5184ac8185b", + "chapter": "webstreams", + "kind": "class", + "name": "ReadableStreamBYOBRequest", + "signature": "Class: `ReadableStreamBYOBRequest`", + "label": "ReadableStreamBYOBRequest", + "apiSymbol": "ReadableStreamBYOBRequest", + "depth": 1, + "scope": "api", + "anchor": "class-readablestreambyobrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:5cec36fdad53", + "chapter": "webstreams", + "kind": "method", + "name": "respond", + "signature": "`readableStreamBYOBRequest.respond(bytesWritten)`", + "label": "readableStreamBYOBRequest.respond(bytesWritten)", + "apiSymbol": "readableStreamBYOBRequest.respond", + "depth": 2, + "scope": "api", + "anchor": "readablestreambyobrequestrespondbyteswritten", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:ae613e5feafc", + "chapter": "webstreams", + "kind": "method", + "name": "respondWithNewView", + "signature": "`readableStreamBYOBRequest.respondWithNewView(view)`", + "label": "readableStreamBYOBRequest.respondWithNewView(view)", + "apiSymbol": "readableStreamBYOBRequest.respondWithNewView", + "depth": 2, + "scope": "api", + "anchor": "readablestreambyobrequestrespondwithnewviewview", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:4817ef9308dd", + "chapter": "webstreams", + "kind": "Buffer|TypedArray|DataView", + "name": "Type", + "signature": "`view` Type: {Buffer|TypedArray|DataView}", + "label": "view", + "apiSymbol": "view", + "depth": 2, + "scope": "api", + "anchor": "class-readablestreambyobrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:9a218933fb72", + "chapter": "webstreams", + "kind": "class", + "name": "WritableStream", + "signature": "Class: `WritableStream`", + "label": "WritableStream", + "apiSymbol": "WritableStream", + "depth": 1, + "scope": "api", + "anchor": "class-writablestream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:9a2ccc527c47", + "chapter": "webstreams", + "kind": "method", + "name": "abort", + "signature": "`writableStream.abort([reason])`", + "label": "writableStream.abort([reason])", + "apiSymbol": "writableStream.abort", + "depth": 2, + "scope": "api", + "anchor": "writablestreamabortreason", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:b1ff78629efd", + "chapter": "webstreams", + "kind": "method", + "name": "close", + "signature": "`writableStream.close()`", + "label": "writableStream.close()", + "apiSymbol": "writableStream.close", + "depth": 2, + "scope": "api", + "anchor": "writablestreamclose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:3a22c62e3afa", + "chapter": "webstreams", + "kind": "method", + "name": "getWriter", + "signature": "`writableStream.getWriter()`", + "label": "writableStream.getWriter()", + "apiSymbol": "writableStream.getWriter", + "depth": 2, + "scope": "api", + "anchor": "writablestreamgetwriter", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:e0783a4df74d", + "chapter": "webstreams", + "kind": "boolean", + "name": "Type", + "signature": "`locked` Type: {boolean}", + "label": "locked", + "apiSymbol": "locked", + "depth": 2, + "scope": "api", + "anchor": "class-writablestream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:224d0f8d84a2", + "chapter": "webstreams", + "kind": "class", + "name": "WritableStreamDefaultWriter", + "signature": "Class: `WritableStreamDefaultWriter`", + "label": "WritableStreamDefaultWriter", + "apiSymbol": "WritableStreamDefaultWriter", + "depth": 1, + "scope": "api", + "anchor": "class-writablestreamdefaultwriter", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:326716928d08", + "chapter": "webstreams", + "kind": "method", + "name": "abort", + "signature": "`writableStreamDefaultWriter.abort([reason])`", + "label": "writableStreamDefaultWriter.abort([reason])", + "apiSymbol": "writableStreamDefaultWriter.abort", + "depth": 2, + "scope": "api", + "anchor": "writablestreamdefaultwriterabortreason", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:692468144121", + "chapter": "webstreams", + "kind": "method", + "name": "close", + "signature": "`writableStreamDefaultWriter.close()`", + "label": "writableStreamDefaultWriter.close()", + "apiSymbol": "writableStreamDefaultWriter.close", + "depth": 2, + "scope": "api", + "anchor": "writablestreamdefaultwriterclose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:a6c1f3872dd6", + "chapter": "webstreams", + "kind": "method", + "name": "releaseLock", + "signature": "`writableStreamDefaultWriter.releaseLock()`", + "label": "writableStreamDefaultWriter.releaseLock()", + "apiSymbol": "writableStreamDefaultWriter.releaseLock", + "depth": 2, + "scope": "api", + "anchor": "writablestreamdefaultwriterreleaselock", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:6587d1ca2758", + "chapter": "webstreams", + "kind": "method", + "name": "write", + "signature": "`writableStreamDefaultWriter.write([chunk])`", + "label": "writableStreamDefaultWriter.write([chunk])", + "apiSymbol": "writableStreamDefaultWriter.write", + "depth": 2, + "scope": "api", + "anchor": "writablestreamdefaultwriterwritechunk", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:b33d7f544115", + "chapter": "webstreams", + "kind": "Promise", + "name": "Type", + "signature": "`closed` Type: {Promise} Fulfilled with `undefined` when the associated {WritableStream} is closed or rejected if the stream errors or the writer's lock is released before the stream finishes closing.", + "label": "closed", + "apiSymbol": "closed", + "depth": 2, + "scope": "api", + "anchor": "class-writablestreamdefaultwriter", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:39e0df6f571b", + "chapter": "webstreams", + "kind": "number", + "name": "Type", + "signature": "`desiredSize` Type: {number}", + "label": "desiredSize", + "apiSymbol": "desiredSize", + "depth": 2, + "scope": "api", + "anchor": "class-writablestreamdefaultwriter", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:24f064d91fda", + "chapter": "webstreams", + "kind": "Promise", + "name": "Type", + "signature": "`ready` Type: {Promise} Fulfilled with `undefined` when the writer is ready to be used.", + "label": "ready", + "apiSymbol": "ready", + "depth": 2, + "scope": "api", + "anchor": "class-writablestreamdefaultwriter", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:03e865d0551b", + "chapter": "webstreams", + "kind": "class", + "name": "WritableStreamDefaultController", + "signature": "Class: `WritableStreamDefaultController`", + "label": "WritableStreamDefaultController", + "apiSymbol": "WritableStreamDefaultController", + "depth": 1, + "scope": "api", + "anchor": "class-writablestreamdefaultcontroller", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:0874c6edcae4", + "chapter": "webstreams", + "kind": "method", + "name": "error", + "signature": "`writableStreamDefaultController.error([error])`", + "label": "writableStreamDefaultController.error([error])", + "apiSymbol": "writableStreamDefaultController.error", + "depth": 2, + "scope": "api", + "anchor": "writablestreamdefaultcontrollererrorerror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:955007abea66", + "chapter": "webstreams", + "kind": "AbortSignal", + "name": "Type", + "signature": "`signal` Type: {AbortSignal} An `AbortSignal` that can be used to cancel pending write or close operations when a {WritableStream} is aborted.", + "label": "signal", + "apiSymbol": "signal", + "depth": 2, + "scope": "api", + "anchor": "class-writablestreamdefaultcontroller", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:c25d842fc815", + "chapter": "webstreams", + "kind": "class", + "name": "TransformStream", + "signature": "Class: `TransformStream`", + "label": "TransformStream", + "apiSymbol": "TransformStream", + "depth": 1, + "scope": "api", + "anchor": "class-transformstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "webstreams:ddbc268aec5a", + "chapter": "webstreams", + "kind": "ReadableStream", + "name": "Type", + "signature": "`readable` Type: {ReadableStream}", + "label": "readable", + "apiSymbol": "readable", + "depth": 2, + "scope": "api", + "anchor": "class-transformstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:231398d14977", + "chapter": "webstreams", + "kind": "WritableStream", + "name": "Type", + "signature": "`writable` Type: {WritableStream}", + "label": "writable", + "apiSymbol": "writable", + "depth": 2, + "scope": "api", + "anchor": "class-transformstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:e788e15a2bf2", + "chapter": "webstreams", + "kind": "class", + "name": "TransformStreamDefaultController", + "signature": "Class: `TransformStreamDefaultController`", + "label": "TransformStreamDefaultController", + "apiSymbol": "TransformStreamDefaultController", + "depth": 1, + "scope": "api", + "anchor": "class-transformstreamdefaultcontroller", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:3bb8ad83b1ae", + "chapter": "webstreams", + "kind": "method", + "name": "enqueue", + "signature": "`transformStreamDefaultController.enqueue([chunk])`", + "label": "transformStreamDefaultController.enqueue([chunk])", + "apiSymbol": "transformStreamDefaultController.enqueue", + "depth": 2, + "scope": "api", + "anchor": "transformstreamdefaultcontrollerenqueuechunk", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:ecfa06a848f1", + "chapter": "webstreams", + "kind": "method", + "name": "error", + "signature": "`transformStreamDefaultController.error([reason])`", + "label": "transformStreamDefaultController.error([reason])", + "apiSymbol": "transformStreamDefaultController.error", + "depth": 2, + "scope": "api", + "anchor": "transformstreamdefaultcontrollererrorreason", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:700f054c0b67", + "chapter": "webstreams", + "kind": "method", + "name": "terminate", + "signature": "`transformStreamDefaultController.terminate()`", + "label": "transformStreamDefaultController.terminate()", + "apiSymbol": "transformStreamDefaultController.terminate", + "depth": 2, + "scope": "api", + "anchor": "transformstreamdefaultcontrollerterminate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:0866431a6cd4", + "chapter": "webstreams", + "kind": "number", + "name": "Type", + "signature": "`desiredSize` Type: {number}", + "label": "desiredSize", + "apiSymbol": "desiredSize", + "depth": 2, + "scope": "api", + "anchor": "class-transformstreamdefaultcontroller", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:09f83fd95a39", + "chapter": "webstreams", + "kind": "class", + "name": "ByteLengthQueuingStrategy", + "signature": "Class: `ByteLengthQueuingStrategy`", + "label": "ByteLengthQueuingStrategy", + "apiSymbol": "ByteLengthQueuingStrategy", + "depth": 1, + "scope": "api", + "anchor": "class-bytelengthqueuingstrategy", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:5acb1d2e7442", + "chapter": "webstreams", + "kind": "number", + "name": "Type", + "signature": "`highWaterMark` Type: {number}", + "label": "highWaterMark", + "apiSymbol": "highWaterMark", + "depth": 2, + "scope": "api", + "anchor": "class-bytelengthqueuingstrategy", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:748354473b33", + "chapter": "webstreams", + "kind": "Function", + "name": "Type", + "signature": "`size` Type: {Function}", + "label": "size", + "apiSymbol": "size", + "depth": 2, + "scope": "api", + "anchor": "class-bytelengthqueuingstrategy", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:6c617f750992", + "chapter": "webstreams", + "kind": "class", + "name": "CountQueuingStrategy", + "signature": "Class: `CountQueuingStrategy`", + "label": "CountQueuingStrategy", + "apiSymbol": "CountQueuingStrategy", + "depth": 1, + "scope": "api", + "anchor": "class-countqueuingstrategy", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:1a7b6068e2b1", + "chapter": "webstreams", + "kind": "number", + "name": "Type", + "signature": "`highWaterMark` Type: {number}", + "label": "highWaterMark", + "apiSymbol": "highWaterMark", + "depth": 2, + "scope": "api", + "anchor": "class-countqueuingstrategy", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:396854b8c5c4", + "chapter": "webstreams", + "kind": "Function", + "name": "Type", + "signature": "`size` Type: {Function}", + "label": "size", + "apiSymbol": "size", + "depth": 2, + "scope": "api", + "anchor": "class-countqueuingstrategy", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:ed6d58f31fcf", + "chapter": "webstreams", + "kind": "class", + "name": "TextEncoderStream", + "signature": "Class: `TextEncoderStream`", + "label": "TextEncoderStream", + "apiSymbol": "TextEncoderStream", + "depth": 1, + "scope": "api", + "anchor": "class-textencoderstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:de77458dd9f4", + "chapter": "webstreams", + "kind": "string", + "name": "Type", + "signature": "`encoding` Type: {string}", + "label": "encoding", + "apiSymbol": "encoding", + "depth": 2, + "scope": "api", + "anchor": "class-textencoderstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:f678b73a1fca", + "chapter": "webstreams", + "kind": "ReadableStream", + "name": "Type", + "signature": "`readable` Type: {ReadableStream}", + "label": "readable", + "apiSymbol": "readable", + "depth": 2, + "scope": "api", + "anchor": "class-textencoderstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:7dcfefd655cf", + "chapter": "webstreams", + "kind": "WritableStream", + "name": "Type", + "signature": "`writable` Type: {WritableStream}", + "label": "writable", + "apiSymbol": "writable", + "depth": 2, + "scope": "api", + "anchor": "class-textencoderstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:6673c095131b", + "chapter": "webstreams", + "kind": "class", + "name": "TextDecoderStream", + "signature": "Class: `TextDecoderStream`", + "label": "TextDecoderStream", + "apiSymbol": "TextDecoderStream", + "depth": 1, + "scope": "api", + "anchor": "class-textdecoderstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "webstreams:16933dc8a5bd", + "chapter": "webstreams", + "kind": "string", + "name": "Type", + "signature": "`encoding` Type: {string}", + "label": "encoding", + "apiSymbol": "encoding", + "depth": 2, + "scope": "api", + "anchor": "class-textdecoderstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:be485e9fc7e2", + "chapter": "webstreams", + "kind": "boolean", + "name": "Type", + "signature": "`fatal` Type: {boolean}", + "label": "fatal", + "apiSymbol": "fatal", + "depth": 2, + "scope": "api", + "anchor": "class-textdecoderstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:d9855511b7a8", + "chapter": "webstreams", + "kind": "boolean", + "name": "Type", + "signature": "`ignoreBOM` Type: {boolean}", + "label": "ignoreBOM", + "apiSymbol": "ignoreBOM", + "depth": 2, + "scope": "api", + "anchor": "class-textdecoderstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:95c66ef359ad", + "chapter": "webstreams", + "kind": "ReadableStream", + "name": "Type", + "signature": "`readable` Type: {ReadableStream}", + "label": "readable", + "apiSymbol": "readable", + "depth": 2, + "scope": "api", + "anchor": "class-textdecoderstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:ab6a95f11bda", + "chapter": "webstreams", + "kind": "WritableStream", + "name": "Type", + "signature": "`writable` Type: {WritableStream}", + "label": "writable", + "apiSymbol": "writable", + "depth": 2, + "scope": "api", + "anchor": "class-textdecoderstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:ada28bc23554", + "chapter": "webstreams", + "kind": "class", + "name": "CompressionStream", + "signature": "Class: `CompressionStream`", + "label": "CompressionStream", + "apiSymbol": "CompressionStream", + "depth": 1, + "scope": "api", + "anchor": "class-compressionstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:1d0708fcb59d", + "chapter": "webstreams", + "kind": "ReadableStream", + "name": "Type", + "signature": "`readable` Type: {ReadableStream}", + "label": "readable", + "apiSymbol": "readable", + "depth": 2, + "scope": "api", + "anchor": "class-compressionstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:d6e6a45a6022", + "chapter": "webstreams", + "kind": "WritableStream", + "name": "Type", + "signature": "`writable` Type: {WritableStream}", + "label": "writable", + "apiSymbol": "writable", + "depth": 2, + "scope": "api", + "anchor": "class-compressionstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:4ece75e1a260", + "chapter": "webstreams", + "kind": "class", + "name": "DecompressionStream", + "signature": "Class: `DecompressionStream`", + "label": "DecompressionStream", + "apiSymbol": "DecompressionStream", + "depth": 1, + "scope": "api", + "anchor": "class-decompressionstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:978c5c982f0f", + "chapter": "webstreams", + "kind": "ReadableStream", + "name": "Type", + "signature": "`readable` Type: {ReadableStream}", + "label": "readable", + "apiSymbol": "readable", + "depth": 2, + "scope": "api", + "anchor": "class-decompressionstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:eb4f2ec77ada", + "chapter": "webstreams", + "kind": "WritableStream", + "name": "Type", + "signature": "`writable` Type: {WritableStream}", + "label": "writable", + "apiSymbol": "writable", + "depth": 2, + "scope": "api", + "anchor": "class-decompressionstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "webstreams:4c7d9f984091", + "chapter": "webstreams", + "kind": "method", + "name": "from", + "signature": "`ReadableStream.from(iterable)`", + "label": "ReadableStream.from(iterable)", + "apiSymbol": "ReadableStream.from", + "depth": 1, + "scope": "api", + "anchor": "readablestreamfromiterable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "worker_threads:33a47fc8e33a", + "chapter": "worker_threads", + "kind": "module", + "name": "worker_threads", + "signature": "Worker threads", + "label": "Worker threads", + "apiSymbol": "worker_threads", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + }, + "dynamic": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + } + }, + { + "id": "worker_threads:cf4424f7a1cf", + "chapter": "worker_threads", + "kind": "class", + "name": "BroadcastChannel", + "signature": "Class: `BroadcastChannel extends EventTarget`", + "label": "BroadcastChannel extends EventTarget", + "apiSymbol": "BroadcastChannel extends EventTarget", + "depth": 1, + "scope": "api", + "anchor": "class-broadcastchannel-extends-eventtarget", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "worker_threads:c42a42df81f9", + "chapter": "worker_threads", + "kind": "method", + "name": "close", + "signature": "`broadcastChannel.close()`", + "label": "broadcastChannel.close()", + "apiSymbol": "broadcastChannel.close", + "depth": 2, + "scope": "api", + "anchor": "broadcastchannelclose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "worker_threads:168fe279d66f", + "chapter": "worker_threads", + "kind": "method", + "name": "postMessage", + "signature": "`broadcastChannel.postMessage(message)`", + "label": "broadcastChannel.postMessage(message)", + "apiSymbol": "broadcastChannel.postMessage", + "depth": 2, + "scope": "api", + "anchor": "broadcastchannelpostmessagemessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "worker_threads:f07157246319", + "chapter": "worker_threads", + "kind": "method", + "name": "ref", + "signature": "`broadcastChannel.ref()`", + "label": "broadcastChannel.ref()", + "apiSymbol": "broadcastChannel.ref", + "depth": 2, + "scope": "api", + "anchor": "broadcastchannelref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "worker_threads:56e73d657971", + "chapter": "worker_threads", + "kind": "method", + "name": "unref", + "signature": "`broadcastChannel.unref()`", + "label": "broadcastChannel.unref()", + "apiSymbol": "broadcastChannel.unref", + "depth": 2, + "scope": "api", + "anchor": "broadcastchannelunref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "worker_threads:63e1b1ffd63c", + "chapter": "worker_threads", + "kind": "Function", + "name": "Type", + "signature": "`onmessage` Type: {Function} Invoked with a single `MessageEvent` argument when a message is received.", + "label": "onmessage", + "apiSymbol": "onmessage", + "depth": 2, + "scope": "api", + "anchor": "class-broadcastchannel-extends-eventtarget", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "worker_threads:de776bc75234", + "chapter": "worker_threads", + "kind": "Function", + "name": "Type", + "signature": "`onmessageerror` Type: {Function} Invoked with a received message cannot be deserialized.", + "label": "onmessageerror", + "apiSymbol": "onmessageerror", + "depth": 2, + "scope": "api", + "anchor": "class-broadcastchannel-extends-eventtarget", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "worker_threads:8f86db7bdcdb", + "chapter": "worker_threads", + "kind": "class", + "name": "MessageChannel", + "signature": "Class: `MessageChannel`", + "label": "MessageChannel", + "apiSymbol": "MessageChannel", + "depth": 1, + "scope": "api", + "anchor": "class-messagechannel", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "worker_threads:608a944a6593", + "chapter": "worker_threads", + "kind": "class", + "name": "MessagePort", + "signature": "Class: `MessagePort`", + "label": "MessagePort", + "apiSymbol": "MessagePort", + "depth": 1, + "scope": "api", + "anchor": "class-messageport", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "worker_threads:9bca0cdecd41", + "chapter": "worker_threads", + "kind": "method", + "name": "close", + "signature": "`port.close()`", + "label": "port.close()", + "apiSymbol": "port.close", + "depth": 2, + "scope": "api", + "anchor": "portclose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "worker_threads:389633d880fc", + "chapter": "worker_threads", + "kind": "method", + "name": "postMessage", + "signature": "`port.postMessage(value[, transferList])`", + "label": "port.postMessage(value[, transferList])", + "apiSymbol": "port.postMessage", + "depth": 2, + "scope": "api", + "anchor": "portpostmessagevalue-transferlist", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "worker_threads:c2323b965d93", + "chapter": "worker_threads", + "kind": "method", + "name": "hasRef", + "signature": "`port.hasRef()`", + "label": "port.hasRef()", + "apiSymbol": "port.hasRef", + "depth": 2, + "scope": "api", + "anchor": "porthasref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "worker_threads:169b0d7c758d", + "chapter": "worker_threads", + "kind": "method", + "name": "ref", + "signature": "`port.ref()`", + "label": "port.ref()", + "apiSymbol": "port.ref", + "depth": 2, + "scope": "api", + "anchor": "portref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "worker_threads:fedc0425972a", + "chapter": "worker_threads", + "kind": "method", + "name": "start", + "signature": "`port.start()`", + "label": "port.start()", + "apiSymbol": "port.start", + "depth": 2, + "scope": "api", + "anchor": "portstart", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "worker_threads:797508159c6e", + "chapter": "worker_threads", + "kind": "method", + "name": "unref", + "signature": "`port.unref()`", + "label": "port.unref()", + "apiSymbol": "port.unref", + "depth": 2, + "scope": "api", + "anchor": "portunref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "worker_threads:85ef506d03ee", + "chapter": "worker_threads", + "kind": "event", + "name": "close", + "signature": "Event: `'close'`", + "label": "'close'", + "apiSymbol": "'close'", + "depth": 2, + "scope": "api", + "anchor": "event-close", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "worker_threads:c64febb107f3", + "chapter": "worker_threads", + "kind": "event", + "name": "message", + "signature": "Event: `'message'`", + "label": "'message'", + "apiSymbol": "'message'", + "depth": 2, + "scope": "api", + "anchor": "event-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "worker_threads:4529c484aac5", + "chapter": "worker_threads", + "kind": "event", + "name": "messageerror", + "signature": "Event: `'messageerror'`", + "label": "'messageerror'", + "apiSymbol": "'messageerror'", + "depth": 2, + "scope": "api", + "anchor": "event-messageerror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "worker_threads:7536dde91c9c", + "chapter": "worker_threads", + "kind": "class", + "name": "Worker", + "signature": "Class: `Worker`", + "label": "Worker", + "apiSymbol": "Worker", + "depth": 1, + "scope": "api", + "anchor": "class-worker", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "refused", + "detail": "Exposed only as an explicit throwing or rejecting compatibility stub.", + "verification": "explicit-refusal" + } + }, + { + "id": "worker_threads:99f9a94d5919", + "chapter": "worker_threads", + "kind": "method", + "name": "cpuUsage", + "signature": "`worker.cpuUsage([prev])`", + "label": "worker.cpuUsage([prev])", + "apiSymbol": "worker.cpuUsage", + "depth": 2, + "scope": "api", + "anchor": "workercpuusageprev", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "worker_threads:8361370bb2bc", + "chapter": "worker_threads", + "kind": "method", + "name": "getHeapSnapshot", + "signature": "`worker.getHeapSnapshot([options])`", + "label": "worker.getHeapSnapshot([options])", + "apiSymbol": "worker.getHeapSnapshot", + "depth": 2, + "scope": "api", + "anchor": "workergetheapsnapshotoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "worker_threads:09479350e62f", + "chapter": "worker_threads", + "kind": "method", + "name": "getHeapStatistics", + "signature": "`worker.getHeapStatistics()`", + "label": "worker.getHeapStatistics()", + "apiSymbol": "worker.getHeapStatistics", + "depth": 2, + "scope": "api", + "anchor": "workergetheapstatistics", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "worker_threads:8d404e152648", + "chapter": "worker_threads", + "kind": "method", + "name": "postMessage", + "signature": "`worker.postMessage(value[, transferList])`", + "label": "worker.postMessage(value[, transferList])", + "apiSymbol": "worker.postMessage", + "depth": 2, + "scope": "api", + "anchor": "workerpostmessagevalue-transferlist", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "worker_threads:be349c881c74", + "chapter": "worker_threads", + "kind": "method", + "name": "ref", + "signature": "`worker.ref()`", + "label": "worker.ref()", + "apiSymbol": "worker.ref", + "depth": 2, + "scope": "api", + "anchor": "workerref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "worker_threads:d7443ee2bb71", + "chapter": "worker_threads", + "kind": "method", + "name": "startCpuProfile", + "signature": "`worker.startCpuProfile()`", + "label": "worker.startCpuProfile()", + "apiSymbol": "worker.startCpuProfile", + "depth": 2, + "scope": "api", + "anchor": "workerstartcpuprofile", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "worker_threads:a4e0ad92946d", + "chapter": "worker_threads", + "kind": "method", + "name": "startHeapProfile", + "signature": "`worker.startHeapProfile()`", + "label": "worker.startHeapProfile()", + "apiSymbol": "worker.startHeapProfile", + "depth": 2, + "scope": "api", + "anchor": "workerstartheapprofile", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "worker_threads:fcf587df6a0a", + "chapter": "worker_threads", + "kind": "method", + "name": "terminate", + "signature": "`worker.terminate()`", + "label": "worker.terminate()", + "apiSymbol": "worker.terminate", + "depth": 2, + "scope": "api", + "anchor": "workerterminate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "worker_threads:bcafd270d5a4", + "chapter": "worker_threads", + "kind": "method", + "name": "unref", + "signature": "`worker.unref()`", + "label": "worker.unref()", + "apiSymbol": "worker.unref", + "depth": 2, + "scope": "api", + "anchor": "workerunref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "worker_threads:8502ade0dfc3", + "chapter": "worker_threads", + "kind": "method", + "name": "[Symbol.asyncDispose]", + "signature": "`worker[Symbol.asyncDispose]()`", + "label": "worker[Symbol.asyncDispose]()", + "apiSymbol": "worker", + "depth": 2, + "scope": "api", + "anchor": "workersymbolasyncdispose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "worker_threads:b499a5daed50", + "chapter": "worker_threads", + "kind": "section", + "name": "performance", + "signature": "`worker.performance`", + "label": "worker.performance", + "apiSymbol": "worker.performance", + "depth": 2, + "scope": "api", + "anchor": "workerperformance", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "worker_threads:f665e4fe7d26", + "chapter": "worker_threads", + "kind": "method", + "name": "eventLoopUtilization", + "signature": "`performance.eventLoopUtilization([utilization1[, utilization2]])`", + "label": "performance.eventLoopUtilization([utilization1[, utilization2]])", + "apiSymbol": "performance.eventLoopUtilization", + "depth": 3, + "scope": "api", + "anchor": "performanceeventlooputilizationutilization1-utilization2", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "worker_threads:a9b70ec46e67", + "chapter": "worker_threads", + "kind": "Object", + "name": "Type", + "signature": "`resourceLimits` Type: {Object}", + "label": "resourceLimits", + "apiSymbol": "resourceLimits", + "depth": 2, + "scope": "api", + "anchor": "class-worker", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "worker_threads:efa929d81b46", + "chapter": "worker_threads", + "kind": "stream.Readable", + "name": "Type", + "signature": "`stderr` Type: {stream.Readable}", + "label": "stderr", + "apiSymbol": "stderr", + "depth": 2, + "scope": "api", + "anchor": "class-worker", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "worker_threads:cae35208baa5", + "chapter": "worker_threads", + "kind": "null|stream.Writable", + "name": "Type", + "signature": "`stdin` Type: {null|stream.Writable}", + "label": "stdin", + "apiSymbol": "stdin", + "depth": 2, + "scope": "api", + "anchor": "class-worker", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "worker_threads:58e72446eda6", + "chapter": "worker_threads", + "kind": "stream.Readable", + "name": "Type", + "signature": "`stdout` Type: {stream.Readable}", + "label": "stdout", + "apiSymbol": "stdout", + "depth": 2, + "scope": "api", + "anchor": "class-worker", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "worker_threads:e44f6340458d", + "chapter": "worker_threads", + "kind": "integer", + "name": "Type", + "signature": "`threadId` Type: {integer}", + "label": "threadId", + "apiSymbol": "threadId", + "depth": 2, + "scope": "api", + "anchor": "class-worker", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "worker_threads:4f475e9f95bd", + "chapter": "worker_threads", + "kind": "string|null", + "name": "threadName", + "signature": "`threadName` {string|null}", + "label": "threadName", + "apiSymbol": "threadName", + "depth": 2, + "scope": "api", + "anchor": "class-worker", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "worker_threads:8d3a7dcfa968", + "chapter": "worker_threads", + "kind": "event", + "name": "error", + "signature": "Event: `'error'`", + "label": "'error'", + "apiSymbol": "'error'", + "depth": 2, + "scope": "api", + "anchor": "event-error", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "worker_threads:7fa7816fa878", + "chapter": "worker_threads", + "kind": "event", + "name": "exit", + "signature": "Event: `'exit'`", + "label": "'exit'", + "apiSymbol": "'exit'", + "depth": 2, + "scope": "api", + "anchor": "event-exit", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "worker_threads:18389d4c2d81", + "chapter": "worker_threads", + "kind": "event", + "name": "message", + "signature": "Event: `'message'`", + "label": "'message'", + "apiSymbol": "'message'", + "depth": 2, + "scope": "api", + "anchor": "event-message_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "worker_threads:af0c1725084e", + "chapter": "worker_threads", + "kind": "event", + "name": "messageerror", + "signature": "Event: `'messageerror'`", + "label": "'messageerror'", + "apiSymbol": "'messageerror'", + "depth": 2, + "scope": "api", + "anchor": "event-messageerror_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "worker_threads:9c5a8d6e723d", + "chapter": "worker_threads", + "kind": "event", + "name": "online", + "signature": "Event: `'online'`", + "label": "'online'", + "apiSymbol": "'online'", + "depth": 2, + "scope": "api", + "anchor": "event-online", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "worker_threads:c8c1e9f553f9", + "chapter": "worker_threads", + "kind": "method", + "name": "getEnvironmentData", + "signature": "`worker_threads.getEnvironmentData(key)`", + "label": "worker_threads.getEnvironmentData(key)", + "apiSymbol": "worker_threads.getEnvironmentData", + "depth": 1, + "scope": "api", + "anchor": "worker_threadsgetenvironmentdatakey", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "worker_threads:3d8d04215ee7", + "chapter": "worker_threads", + "kind": "method", + "name": "markAsUntransferable", + "signature": "`worker_threads.markAsUntransferable(object)`", + "label": "worker_threads.markAsUntransferable(object)", + "apiSymbol": "worker_threads.markAsUntransferable", + "depth": 1, + "scope": "api", + "anchor": "worker_threadsmarkasuntransferableobject", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "worker_threads:9a73a9191b81", + "chapter": "worker_threads", + "kind": "method", + "name": "isMarkedAsUntransferable", + "signature": "`worker_threads.isMarkedAsUntransferable(object)`", + "label": "worker_threads.isMarkedAsUntransferable(object)", + "apiSymbol": "worker_threads.isMarkedAsUntransferable", + "depth": 1, + "scope": "api", + "anchor": "worker_threadsismarkedasuntransferableobject", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "worker_threads:323635b01e95", + "chapter": "worker_threads", + "kind": "method", + "name": "markAsUncloneable", + "signature": "`worker_threads.markAsUncloneable(object)`", + "label": "worker_threads.markAsUncloneable(object)", + "apiSymbol": "worker_threads.markAsUncloneable", + "depth": 1, + "scope": "api", + "anchor": "worker_threadsmarkasuncloneableobject", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "worker_threads:6e322a3abb2a", + "chapter": "worker_threads", + "kind": "method", + "name": "moveMessagePortToContext", + "signature": "`worker_threads.moveMessagePortToContext(port, contextifiedSandbox)`", + "label": "worker_threads.moveMessagePortToContext(port, contextifiedSandbox)", + "apiSymbol": "worker_threads.moveMessagePortToContext", + "depth": 1, + "scope": "api", + "anchor": "worker_threadsmovemessageporttocontextport-contextifiedsandbox", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "worker_threads:b353e1b0cd58", + "chapter": "worker_threads", + "kind": "method", + "name": "postMessageToThread", + "signature": "`worker_threads.postMessageToThread(threadId, value[, transferList][, timeout])`", + "label": "worker_threads.postMessageToThread(threadId, value[, transferList][, timeout])", + "apiSymbol": "worker_threads.postMessageToThread", + "depth": 1, + "scope": "api", + "anchor": "worker_threadspostmessagetothreadthreadid-value-transferlist-timeout", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "worker_threads:c809b5d89f8d", + "chapter": "worker_threads", + "kind": "method", + "name": "receiveMessageOnPort", + "signature": "`worker_threads.receiveMessageOnPort(port)`", + "label": "worker_threads.receiveMessageOnPort(port)", + "apiSymbol": "worker_threads.receiveMessageOnPort", + "depth": 1, + "scope": "api", + "anchor": "worker_threadsreceivemessageonportport", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "worker_threads:cfc588f55a52", + "chapter": "worker_threads", + "kind": "method", + "name": "setEnvironmentData", + "signature": "`worker_threads.setEnvironmentData(key[, value])`", + "label": "worker_threads.setEnvironmentData(key[, value])", + "apiSymbol": "worker_threads.setEnvironmentData", + "depth": 1, + "scope": "api", + "anchor": "worker_threadssetenvironmentdatakey-value", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "worker_threads:48c73a2517e5", + "chapter": "worker_threads", + "kind": "boolean", + "name": "Type", + "signature": "`isInternalThread` Type: {boolean}", + "label": "isInternalThread", + "apiSymbol": "isInternalThread", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "worker_threads:3b43f2113dee", + "chapter": "worker_threads", + "kind": "boolean", + "name": "Type", + "signature": "`isMainThread` Type: {boolean}", + "label": "isMainThread", + "apiSymbol": "isMainThread", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "worker_threads:d2494e5a39fe", + "chapter": "worker_threads", + "kind": "null|MessagePort", + "name": "Type", + "signature": "`parentPort` Type: {null|MessagePort}", + "label": "parentPort", + "apiSymbol": "parentPort", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "worker_threads:c635fc5e9af1", + "chapter": "worker_threads", + "kind": "Object", + "name": "Type", + "signature": "`resourceLimits` Type: {Object}", + "label": "resourceLimits", + "apiSymbol": "resourceLimits", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "worker_threads:54960c77536b", + "chapter": "worker_threads", + "kind": "symbol", + "name": "Type", + "signature": "`SHARE_ENV` Type: {symbol}", + "label": "SHARE_ENV", + "apiSymbol": "SHARE_ENV", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "worker_threads:51c40ec5e385", + "chapter": "worker_threads", + "kind": "integer", + "name": "Type", + "signature": "`threadId` Type: {integer}", + "label": "threadId", + "apiSymbol": "threadId", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "worker_threads:b24d867784a1", + "chapter": "worker_threads", + "kind": "string|null", + "name": "threadName", + "signature": "`threadName` {string|null}", + "label": "threadName", + "apiSymbol": "threadName", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "worker_threads:4a1136335aed", + "chapter": "worker_threads", + "kind": "section", + "name": "workerData", + "signature": "`worker_threads.workerData`", + "label": "worker_threads.workerData", + "apiSymbol": "worker_threads.workerData", + "depth": 1, + "scope": "api", + "anchor": "worker_threadsworkerdata", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "worker_threads:494c0be22bd9", + "chapter": "worker_threads", + "kind": "LockManager", + "name": "locks", + "signature": "`locks` {LockManager}", + "label": "locks", + "apiSymbol": "locks", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "worker_threads:e94146c6a707", + "chapter": "worker_threads", + "kind": "class", + "name": "Lock", + "signature": "Class: `Lock`", + "label": "Lock", + "apiSymbol": "Lock", + "depth": 2, + "scope": "api", + "anchor": "class-lock", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "worker_threads:48350287fe0a", + "chapter": "worker_threads", + "kind": "string", + "name": "name", + "signature": "`name` {string}", + "label": "name", + "apiSymbol": "name", + "depth": 3, + "scope": "api", + "anchor": "class-lock", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "worker_threads:11e01a881cd8", + "chapter": "worker_threads", + "kind": "string", + "name": "mode", + "signature": "`mode` {string}", + "label": "mode", + "apiSymbol": "mode", + "depth": 3, + "scope": "api", + "anchor": "class-lock", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "worker_threads:88665c57101b", + "chapter": "worker_threads", + "kind": "class", + "name": "LockManager", + "signature": "Class: `LockManager`", + "label": "LockManager", + "apiSymbol": "LockManager", + "depth": 2, + "scope": "api", + "anchor": "class-lockmanager", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "worker_threads:785d2e08642b", + "chapter": "worker_threads", + "kind": "method", + "name": "request", + "signature": "`locks.request(name[, options], callback)`", + "label": "locks.request(name[, options], callback)", + "apiSymbol": "locks.request", + "depth": 3, + "scope": "api", + "anchor": "locksrequestname-options-callback", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "worker_threads:9ed6b67ed9e0", + "chapter": "worker_threads", + "kind": "method", + "name": "query", + "signature": "`locks.query()`", + "label": "locks.query()", + "apiSymbol": "locks.query", + "depth": 3, + "scope": "api", + "anchor": "locksquery", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "zlib:f66a69fdc76f", + "chapter": "zlib", + "kind": "module", + "name": "zlib", + "signature": "Zlib", + "label": "Zlib", + "apiSymbol": "zlib", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + }, + "dynamic": { + "status": "partial", + "detail": "Derived from the exact API rows in this chapter.", + "verification": "derived" + } + }, + { + "id": "zlib:4b20a6571ae3", + "chapter": "zlib", + "kind": "class", + "name": "zlib.BrotliCompress", + "signature": "Class: `zlib.BrotliCompress`", + "label": "zlib.BrotliCompress", + "apiSymbol": "zlib.BrotliCompress", + "depth": 1, + "scope": "api", + "anchor": "class-zlibbrotlicompress", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "zlib:4169f388cdff", + "chapter": "zlib", + "kind": "class", + "name": "zlib.BrotliDecompress", + "signature": "Class: `zlib.BrotliDecompress`", + "label": "zlib.BrotliDecompress", + "apiSymbol": "zlib.BrotliDecompress", + "depth": 1, + "scope": "api", + "anchor": "class-zlibbrotlidecompress", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "zlib:ded1ef888418", + "chapter": "zlib", + "kind": "class", + "name": "zlib.Deflate", + "signature": "Class: `zlib.Deflate`", + "label": "zlib.Deflate", + "apiSymbol": "zlib.Deflate", + "depth": 1, + "scope": "api", + "anchor": "class-zlibdeflate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "zlib:4affff3a2d56", + "chapter": "zlib", + "kind": "class", + "name": "zlib.DeflateRaw", + "signature": "Class: `zlib.DeflateRaw`", + "label": "zlib.DeflateRaw", + "apiSymbol": "zlib.DeflateRaw", + "depth": 1, + "scope": "api", + "anchor": "class-zlibdeflateraw", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "zlib:2b0d3efcf5d6", + "chapter": "zlib", + "kind": "class", + "name": "zlib.Gunzip", + "signature": "Class: `zlib.Gunzip`", + "label": "zlib.Gunzip", + "apiSymbol": "zlib.Gunzip", + "depth": 1, + "scope": "api", + "anchor": "class-zlibgunzip", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "zlib:02184f773e95", + "chapter": "zlib", + "kind": "class", + "name": "zlib.Gzip", + "signature": "Class: `zlib.Gzip`", + "label": "zlib.Gzip", + "apiSymbol": "zlib.Gzip", + "depth": 1, + "scope": "api", + "anchor": "class-zlibgzip", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "zlib:ebb640d531fc", + "chapter": "zlib", + "kind": "class", + "name": "zlib.Inflate", + "signature": "Class: `zlib.Inflate`", + "label": "zlib.Inflate", + "apiSymbol": "zlib.Inflate", + "depth": 1, + "scope": "api", + "anchor": "class-zlibinflate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "zlib:1fe0c9a8930f", + "chapter": "zlib", + "kind": "class", + "name": "zlib.InflateRaw", + "signature": "Class: `zlib.InflateRaw`", + "label": "zlib.InflateRaw", + "apiSymbol": "zlib.InflateRaw", + "depth": 1, + "scope": "api", + "anchor": "class-zlibinflateraw", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "zlib:c84ea8856d26", + "chapter": "zlib", + "kind": "class", + "name": "zlib.Unzip", + "signature": "Class: `zlib.Unzip`", + "label": "zlib.Unzip", + "apiSymbol": "zlib.Unzip", + "depth": 1, + "scope": "api", + "anchor": "class-zlibunzip", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "zlib:c58d0ed2b80a", + "chapter": "zlib", + "kind": "class", + "name": "zlib.ZlibBase", + "signature": "Class: `zlib.ZlibBase`", + "label": "zlib.ZlibBase", + "apiSymbol": "zlib.ZlibBase", + "depth": 1, + "scope": "api", + "anchor": "class-zlibzlibbase", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "zlib:ede53f463eab", + "chapter": "zlib", + "kind": "method", + "name": "close", + "signature": "`zlib.close([callback])`", + "label": "zlib.close([callback])", + "apiSymbol": "zlib.close", + "depth": 2, + "scope": "api", + "anchor": "zlibclosecallback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "zlib:fd8ca0a6f7bc", + "chapter": "zlib", + "kind": "method", + "name": "flush", + "signature": "`zlib.flush([kind, ]callback)`", + "label": "zlib.flush([kind, ]callback)", + "apiSymbol": "zlib.flush", + "depth": 2, + "scope": "api", + "anchor": "zlibflushkind-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "zlib:71e1c5251a95", + "chapter": "zlib", + "kind": "method", + "name": "params", + "signature": "`zlib.params(level, strategy, callback)`", + "label": "zlib.params(level, strategy, callback)", + "apiSymbol": "zlib.params", + "depth": 2, + "scope": "api", + "anchor": "zlibparamslevel-strategy-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "zlib:5479c2d3644d", + "chapter": "zlib", + "kind": "method", + "name": "reset", + "signature": "`zlib.reset()`", + "label": "zlib.reset()", + "apiSymbol": "zlib.reset", + "depth": 2, + "scope": "api", + "anchor": "zlibreset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Implemented by the embedded Node compatibility shim.", + "verification": "test-backed" + } + }, + { + "id": "zlib:f048fe3814cc", + "chapter": "zlib", + "kind": "number", + "name": "Type", + "signature": "`bytesWritten` Type: {number}", + "label": "bytesWritten", + "apiSymbol": "bytesWritten", + "depth": 2, + "scope": "api", + "anchor": "class-zlibzlibbase", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "zlib:076dcd29d91e", + "chapter": "zlib", + "kind": "class", + "name": "zlib.ZstdCompress", + "signature": "Class: `zlib.ZstdCompress`", + "label": "zlib.ZstdCompress", + "apiSymbol": "zlib.ZstdCompress", + "depth": 1, + "scope": "api", + "anchor": "class-zlibzstdcompress", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "zlib:bcc9b628cb17", + "chapter": "zlib", + "kind": "class", + "name": "zlib.ZstdDecompress", + "signature": "Class: `zlib.ZstdDecompress`", + "label": "zlib.ZstdDecompress", + "apiSymbol": "zlib.ZstdDecompress", + "depth": 1, + "scope": "api", + "anchor": "class-zlibzstddecompress", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "zlib:b06d152f415a", + "chapter": "zlib", + "kind": "method", + "name": "crc32", + "signature": "`zlib.crc32(data[, value])`", + "label": "zlib.crc32(data[, value])", + "apiSymbol": "zlib.crc32", + "depth": 1, + "scope": "api", + "anchor": "zlibcrc32data-value", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "zlib:2c0bf8d1287b", + "chapter": "zlib", + "kind": "method", + "name": "createBrotliCompress", + "signature": "`zlib.createBrotliCompress([options])`", + "label": "zlib.createBrotliCompress([options])", + "apiSymbol": "zlib.createBrotliCompress", + "depth": 1, + "scope": "api", + "anchor": "zlibcreatebrotlicompressoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "zlib:4982c1ed786e", + "chapter": "zlib", + "kind": "method", + "name": "createBrotliDecompress", + "signature": "`zlib.createBrotliDecompress([options])`", + "label": "zlib.createBrotliDecompress([options])", + "apiSymbol": "zlib.createBrotliDecompress", + "depth": 1, + "scope": "api", + "anchor": "zlibcreatebrotlidecompressoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "zlib:d337574567a0", + "chapter": "zlib", + "kind": "method", + "name": "createDeflate", + "signature": "`zlib.createDeflate([options])`", + "label": "zlib.createDeflate([options])", + "apiSymbol": "zlib.createDeflate", + "depth": 1, + "scope": "api", + "anchor": "zlibcreatedeflateoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "zlib:5b0e23669580", + "chapter": "zlib", + "kind": "method", + "name": "createDeflateRaw", + "signature": "`zlib.createDeflateRaw([options])`", + "label": "zlib.createDeflateRaw([options])", + "apiSymbol": "zlib.createDeflateRaw", + "depth": 1, + "scope": "api", + "anchor": "zlibcreatedeflaterawoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "zlib:6961051e8d79", + "chapter": "zlib", + "kind": "method", + "name": "createGunzip", + "signature": "`zlib.createGunzip([options])`", + "label": "zlib.createGunzip([options])", + "apiSymbol": "zlib.createGunzip", + "depth": 1, + "scope": "api", + "anchor": "zlibcreategunzipoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "zlib:885538090b92", + "chapter": "zlib", + "kind": "method", + "name": "createGzip", + "signature": "`zlib.createGzip([options])`", + "label": "zlib.createGzip([options])", + "apiSymbol": "zlib.createGzip", + "depth": 1, + "scope": "api", + "anchor": "zlibcreategzipoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "zlib:bc8dae771b5d", + "chapter": "zlib", + "kind": "method", + "name": "createInflate", + "signature": "`zlib.createInflate([options])`", + "label": "zlib.createInflate([options])", + "apiSymbol": "zlib.createInflate", + "depth": 1, + "scope": "api", + "anchor": "zlibcreateinflateoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "zlib:20bd626cd17f", + "chapter": "zlib", + "kind": "method", + "name": "createInflateRaw", + "signature": "`zlib.createInflateRaw([options])`", + "label": "zlib.createInflateRaw([options])", + "apiSymbol": "zlib.createInflateRaw", + "depth": 1, + "scope": "api", + "anchor": "zlibcreateinflaterawoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "zlib:20d01f57ef22", + "chapter": "zlib", + "kind": "method", + "name": "createUnzip", + "signature": "`zlib.createUnzip([options])`", + "label": "zlib.createUnzip([options])", + "apiSymbol": "zlib.createUnzip", + "depth": 1, + "scope": "api", + "anchor": "zlibcreateunzipoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "zlib:418d301a09fe", + "chapter": "zlib", + "kind": "method", + "name": "createZstdCompress", + "signature": "`zlib.createZstdCompress([options])`", + "label": "zlib.createZstdCompress([options])", + "apiSymbol": "zlib.createZstdCompress", + "depth": 1, + "scope": "api", + "anchor": "zlibcreatezstdcompressoptions", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "zlib:41240db6ac8a", + "chapter": "zlib", + "kind": "method", + "name": "createZstdDecompress", + "signature": "`zlib.createZstdDecompress([options])`", + "label": "zlib.createZstdDecompress([options])", + "apiSymbol": "zlib.createZstdDecompress", + "depth": 1, + "scope": "api", + "anchor": "zlibcreatezstddecompressoptions", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "zlib:ab5a41da5c98", + "chapter": "zlib", + "kind": "method", + "name": "brotliCompress", + "signature": "`zlib.brotliCompress(buffer[, options], callback)`", + "label": "zlib.brotliCompress(buffer[, options], callback)", + "apiSymbol": "zlib.brotliCompress", + "depth": 1, + "scope": "api", + "anchor": "zlibbrotlicompressbuffer-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "zlib:4b56083a4a2b", + "chapter": "zlib", + "kind": "method", + "name": "brotliCompressSync", + "signature": "`zlib.brotliCompressSync(buffer[, options])`", + "label": "zlib.brotliCompressSync(buffer[, options])", + "apiSymbol": "zlib.brotliCompressSync", + "depth": 1, + "scope": "api", + "anchor": "zlibbrotlicompresssyncbuffer-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "zlib:3a34fb66ef2a", + "chapter": "zlib", + "kind": "method", + "name": "brotliDecompress", + "signature": "`zlib.brotliDecompress(buffer[, options], callback)`", + "label": "zlib.brotliDecompress(buffer[, options], callback)", + "apiSymbol": "zlib.brotliDecompress", + "depth": 1, + "scope": "api", + "anchor": "zlibbrotlidecompressbuffer-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "zlib:acd9cc6c671e", + "chapter": "zlib", + "kind": "method", + "name": "brotliDecompressSync", + "signature": "`zlib.brotliDecompressSync(buffer[, options])`", + "label": "zlib.brotliDecompressSync(buffer[, options])", + "apiSymbol": "zlib.brotliDecompressSync", + "depth": 1, + "scope": "api", + "anchor": "zlibbrotlidecompresssyncbuffer-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "zlib:f604395f9083", + "chapter": "zlib", + "kind": "method", + "name": "deflate", + "signature": "`zlib.deflate(buffer[, options], callback)`", + "label": "zlib.deflate(buffer[, options], callback)", + "apiSymbol": "zlib.deflate", + "depth": 1, + "scope": "api", + "anchor": "zlibdeflatebuffer-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "zlib:428fa9a73083", + "chapter": "zlib", + "kind": "method", + "name": "deflateSync", + "signature": "`zlib.deflateSync(buffer[, options])`", + "label": "zlib.deflateSync(buffer[, options])", + "apiSymbol": "zlib.deflateSync", + "depth": 1, + "scope": "api", + "anchor": "zlibdeflatesyncbuffer-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "zlib:e13dae62a27b", + "chapter": "zlib", + "kind": "method", + "name": "deflateRaw", + "signature": "`zlib.deflateRaw(buffer[, options], callback)`", + "label": "zlib.deflateRaw(buffer[, options], callback)", + "apiSymbol": "zlib.deflateRaw", + "depth": 1, + "scope": "api", + "anchor": "zlibdeflaterawbuffer-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "zlib:cc5ec46a0ec0", + "chapter": "zlib", + "kind": "method", + "name": "deflateRawSync", + "signature": "`zlib.deflateRawSync(buffer[, options])`", + "label": "zlib.deflateRawSync(buffer[, options])", + "apiSymbol": "zlib.deflateRawSync", + "depth": 1, + "scope": "api", + "anchor": "zlibdeflaterawsyncbuffer-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "zlib:7f50b0ec2b90", + "chapter": "zlib", + "kind": "method", + "name": "gunzip", + "signature": "`zlib.gunzip(buffer[, options], callback)`", + "label": "zlib.gunzip(buffer[, options], callback)", + "apiSymbol": "zlib.gunzip", + "depth": 1, + "scope": "api", + "anchor": "zlibgunzipbuffer-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "zlib:c5a483a5c5f2", + "chapter": "zlib", + "kind": "method", + "name": "gunzipSync", + "signature": "`zlib.gunzipSync(buffer[, options])`", + "label": "zlib.gunzipSync(buffer[, options])", + "apiSymbol": "zlib.gunzipSync", + "depth": 1, + "scope": "api", + "anchor": "zlibgunzipsyncbuffer-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "zlib:2eecde200f0c", + "chapter": "zlib", + "kind": "method", + "name": "gzip", + "signature": "`zlib.gzip(buffer[, options], callback)`", + "label": "zlib.gzip(buffer[, options], callback)", + "apiSymbol": "zlib.gzip", + "depth": 1, + "scope": "api", + "anchor": "zlibgzipbuffer-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "zlib:10b92c73cb1d", + "chapter": "zlib", + "kind": "method", + "name": "gzipSync", + "signature": "`zlib.gzipSync(buffer[, options])`", + "label": "zlib.gzipSync(buffer[, options])", + "apiSymbol": "zlib.gzipSync", + "depth": 1, + "scope": "api", + "anchor": "zlibgzipsyncbuffer-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "zlib:e7711bd2b116", + "chapter": "zlib", + "kind": "method", + "name": "inflate", + "signature": "`zlib.inflate(buffer[, options], callback)`", + "label": "zlib.inflate(buffer[, options], callback)", + "apiSymbol": "zlib.inflate", + "depth": 1, + "scope": "api", + "anchor": "zlibinflatebuffer-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "zlib:001d7aadd24b", + "chapter": "zlib", + "kind": "method", + "name": "inflateSync", + "signature": "`zlib.inflateSync(buffer[, options])`", + "label": "zlib.inflateSync(buffer[, options])", + "apiSymbol": "zlib.inflateSync", + "depth": 1, + "scope": "api", + "anchor": "zlibinflatesyncbuffer-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "zlib:a5bfce8f8ba8", + "chapter": "zlib", + "kind": "method", + "name": "inflateRaw", + "signature": "`zlib.inflateRaw(buffer[, options], callback)`", + "label": "zlib.inflateRaw(buffer[, options], callback)", + "apiSymbol": "zlib.inflateRaw", + "depth": 1, + "scope": "api", + "anchor": "zlibinflaterawbuffer-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "zlib:1223334f59ae", + "chapter": "zlib", + "kind": "method", + "name": "inflateRawSync", + "signature": "`zlib.inflateRawSync(buffer[, options])`", + "label": "zlib.inflateRawSync(buffer[, options])", + "apiSymbol": "zlib.inflateRawSync", + "depth": 1, + "scope": "api", + "anchor": "zlibinflaterawsyncbuffer-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "zlib:ef1aacfe74c4", + "chapter": "zlib", + "kind": "method", + "name": "unzip", + "signature": "`zlib.unzip(buffer[, options], callback)`", + "label": "zlib.unzip(buffer[, options], callback)", + "apiSymbol": "zlib.unzip", + "depth": 1, + "scope": "api", + "anchor": "zlibunzipbuffer-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "zlib:a80685d2463e", + "chapter": "zlib", + "kind": "method", + "name": "unzipSync", + "signature": "`zlib.unzipSync(buffer[, options])`", + "label": "zlib.unzipSync(buffer[, options])", + "apiSymbol": "zlib.unzipSync", + "depth": 1, + "scope": "api", + "anchor": "zlibunzipsyncbuffer-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "zlib:5895bed69c8c", + "chapter": "zlib", + "kind": "method", + "name": "zstdCompress", + "signature": "`zlib.zstdCompress(buffer[, options], callback)`", + "label": "zlib.zstdCompress(buffer[, options], callback)", + "apiSymbol": "zlib.zstdCompress", + "depth": 1, + "scope": "api", + "anchor": "zlibzstdcompressbuffer-options-callback", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "zlib:ab3099bbfcd6", + "chapter": "zlib", + "kind": "method", + "name": "zstdCompressSync", + "signature": "`zlib.zstdCompressSync(buffer[, options])`", + "label": "zlib.zstdCompressSync(buffer[, options])", + "apiSymbol": "zlib.zstdCompressSync", + "depth": 1, + "scope": "api", + "anchor": "zlibzstdcompresssyncbuffer-options", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "zlib:38d8fda01d1d", + "chapter": "zlib", + "kind": "method", + "name": "zstdDecompress", + "signature": "`zlib.zstdDecompress(buffer[, options], callback)`", + "label": "zlib.zstdDecompress(buffer[, options], callback)", + "apiSymbol": "zlib.zstdDecompress", + "depth": 1, + "scope": "api", + "anchor": "zlibzstddecompressbuffer-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "zlib:a6c146459cf4", + "chapter": "zlib", + "kind": "method", + "name": "zstdDecompressSync", + "signature": "`zlib.zstdDecompressSync(buffer[, options])`", + "label": "zlib.zstdDecompressSync(buffer[, options])", + "apiSymbol": "zlib.zstdDecompressSync", + "depth": 1, + "scope": "api", + "anchor": "zlibzstddecompresssyncbuffer-options", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "zlib:aed3ed5b0674", + "chapter": "zlib", + "kind": "section", + "name": "constants", + "signature": "`zlib.constants`", + "label": "zlib.constants", + "apiSymbol": "zlib.constants", + "depth": 1, + "scope": "api", + "anchor": "zlibconstants", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "zlib:6cc61b0f19f5", + "chapter": "zlib", + "kind": "misc", + "name": "Options", + "signature": "Class: `Options`", + "label": "Options", + "apiSymbol": "Options", + "depth": 1, + "scope": "api", + "anchor": "class-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "zlib:52722fa8b0c9", + "chapter": "zlib", + "kind": "misc", + "name": "BrotliOptions", + "signature": "Class: `BrotliOptions`", + "label": "BrotliOptions", + "apiSymbol": "BrotliOptions", + "depth": 1, + "scope": "api", + "anchor": "class-brotlioptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "zlib:da020127898d", + "chapter": "zlib", + "kind": "misc", + "name": "ZstdOptions", + "signature": "Class: `ZstdOptions`", + "label": "ZstdOptions", + "apiSymbol": "ZstdOptions", + "depth": 1, + "scope": "api", + "anchor": "class-zstdoptions", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "zlib:3e66247e360c", + "chapter": "zlib", + "kind": "method", + "name": "brotliCompress", + "signature": "`zlib.brotliCompress(buffer[, options], callback)`", + "label": "zlib.brotliCompress(buffer[, options], callback)", + "apiSymbol": "zlib.brotliCompress", + "depth": 1, + "scope": "api", + "anchor": "convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "zlib:9490d47c61f4", + "chapter": "zlib", + "kind": "method", + "name": "brotliCompressSync", + "signature": "`zlib.brotliCompressSync(buffer[, options])`", + "label": "zlib.brotliCompressSync(buffer[, options])", + "apiSymbol": "zlib.brotliCompressSync", + "depth": 1, + "scope": "api", + "anchor": "convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "zlib:f2e78ece88df", + "chapter": "zlib", + "kind": "method", + "name": "brotliDecompress", + "signature": "`zlib.brotliDecompress(buffer[, options], callback)`", + "label": "zlib.brotliDecompress(buffer[, options], callback)", + "apiSymbol": "zlib.brotliDecompress", + "depth": 1, + "scope": "api", + "anchor": "convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "zlib:53a4733c7181", + "chapter": "zlib", + "kind": "method", + "name": "brotliDecompressSync", + "signature": "`zlib.brotliDecompressSync(buffer[, options])`", + "label": "zlib.brotliDecompressSync(buffer[, options])", + "apiSymbol": "zlib.brotliDecompressSync", + "depth": 1, + "scope": "api", + "anchor": "convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "zlib:3cd87dedcccf", + "chapter": "zlib", + "kind": "method", + "name": "deflate", + "signature": "`zlib.deflate(buffer[, options], callback)`", + "label": "zlib.deflate(buffer[, options], callback)", + "apiSymbol": "zlib.deflate", + "depth": 1, + "scope": "api", + "anchor": "convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "zlib:667d3c8ee3a2", + "chapter": "zlib", + "kind": "method", + "name": "deflateSync", + "signature": "`zlib.deflateSync(buffer[, options])`", + "label": "zlib.deflateSync(buffer[, options])", + "apiSymbol": "zlib.deflateSync", + "depth": 1, + "scope": "api", + "anchor": "convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "zlib:ec5f9d2b1eea", + "chapter": "zlib", + "kind": "method", + "name": "deflateRaw", + "signature": "`zlib.deflateRaw(buffer[, options], callback)`", + "label": "zlib.deflateRaw(buffer[, options], callback)", + "apiSymbol": "zlib.deflateRaw", + "depth": 1, + "scope": "api", + "anchor": "convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "zlib:11a916863a7b", + "chapter": "zlib", + "kind": "method", + "name": "deflateRawSync", + "signature": "`zlib.deflateRawSync(buffer[, options])`", + "label": "zlib.deflateRawSync(buffer[, options])", + "apiSymbol": "zlib.deflateRawSync", + "depth": 1, + "scope": "api", + "anchor": "convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "zlib:49ec4da71666", + "chapter": "zlib", + "kind": "method", + "name": "gunzip", + "signature": "`zlib.gunzip(buffer[, options], callback)`", + "label": "zlib.gunzip(buffer[, options], callback)", + "apiSymbol": "zlib.gunzip", + "depth": 1, + "scope": "api", + "anchor": "convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "zlib:6c545740165d", + "chapter": "zlib", + "kind": "method", + "name": "gunzipSync", + "signature": "`zlib.gunzipSync(buffer[, options])`", + "label": "zlib.gunzipSync(buffer[, options])", + "apiSymbol": "zlib.gunzipSync", + "depth": 1, + "scope": "api", + "anchor": "convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "zlib:7e4988c596d9", + "chapter": "zlib", + "kind": "method", + "name": "gzip", + "signature": "`zlib.gzip(buffer[, options], callback)`", + "label": "zlib.gzip(buffer[, options], callback)", + "apiSymbol": "zlib.gzip", + "depth": 1, + "scope": "api", + "anchor": "convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "zlib:56c1bf0a2e9e", + "chapter": "zlib", + "kind": "method", + "name": "gzipSync", + "signature": "`zlib.gzipSync(buffer[, options])`", + "label": "zlib.gzipSync(buffer[, options])", + "apiSymbol": "zlib.gzipSync", + "depth": 1, + "scope": "api", + "anchor": "convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "zlib:c3a6ce69f46f", + "chapter": "zlib", + "kind": "method", + "name": "inflate", + "signature": "`zlib.inflate(buffer[, options], callback)`", + "label": "zlib.inflate(buffer[, options], callback)", + "apiSymbol": "zlib.inflate", + "depth": 1, + "scope": "api", + "anchor": "convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "zlib:1f0ae73c9ea6", + "chapter": "zlib", + "kind": "method", + "name": "inflateSync", + "signature": "`zlib.inflateSync(buffer[, options])`", + "label": "zlib.inflateSync(buffer[, options])", + "apiSymbol": "zlib.inflateSync", + "depth": 1, + "scope": "api", + "anchor": "convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "detail": "Implemented for the call shapes accepted by the compiler lowering.", + "verification": "test-backed" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "zlib:424390e3fe15", + "chapter": "zlib", + "kind": "method", + "name": "inflateRaw", + "signature": "`zlib.inflateRaw(buffer[, options], callback)`", + "label": "zlib.inflateRaw(buffer[, options], callback)", + "apiSymbol": "zlib.inflateRaw", + "depth": 1, + "scope": "api", + "anchor": "convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "zlib:13ab6395ec04", + "chapter": "zlib", + "kind": "method", + "name": "inflateRawSync", + "signature": "`zlib.inflateRawSync(buffer[, options])`", + "label": "zlib.inflateRawSync(buffer[, options])", + "apiSymbol": "zlib.inflateRawSync", + "depth": 1, + "scope": "api", + "anchor": "convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "zlib:85bd58305e85", + "chapter": "zlib", + "kind": "method", + "name": "unzip", + "signature": "`zlib.unzip(buffer[, options], callback)`", + "label": "zlib.unzip(buffer[, options], callback)", + "apiSymbol": "zlib.unzip", + "depth": 1, + "scope": "api", + "anchor": "convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "zlib:d04e82f9a82e", + "chapter": "zlib", + "kind": "method", + "name": "unzipSync", + "signature": "`zlib.unzipSync(buffer[, options])`", + "label": "zlib.unzipSync(buffer[, options])", + "apiSymbol": "zlib.unzipSync", + "depth": 1, + "scope": "api", + "anchor": "convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "detail": "Explicitly rejected by a named compiler diagnostic.", + "verification": "explicit-refusal" + }, + "dynamic": { + "status": "partial", + "detail": "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower.", + "verification": "test-backed" + } + }, + { + "id": "zlib:43de580a1778", + "chapter": "zlib", + "kind": "method", + "name": "zstdCompress", + "signature": "`zlib.zstdCompress(buffer[, options], callback)`", + "label": "zlib.zstdCompress(buffer[, options], callback)", + "apiSymbol": "zlib.zstdCompress", + "depth": 1, + "scope": "api", + "anchor": "convenience-methods", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "zlib:6f8b52c2236d", + "chapter": "zlib", + "kind": "method", + "name": "zstdCompressSync", + "signature": "`zlib.zstdCompressSync(buffer[, options])`", + "label": "zlib.zstdCompressSync(buffer[, options])", + "apiSymbol": "zlib.zstdCompressSync", + "depth": 1, + "scope": "api", + "anchor": "convenience-methods", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "zlib:84792f46b3fa", + "chapter": "zlib", + "kind": "method", + "name": "zstdDecompress", + "signature": "`zlib.zstdDecompress(buffer[, options], callback)`", + "label": "zlib.zstdDecompress(buffer[, options], callback)", + "apiSymbol": "zlib.zstdDecompress", + "depth": 1, + "scope": "api", + "anchor": "convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + }, + { + "id": "zlib:669c3150be97", + "chapter": "zlib", + "kind": "method", + "name": "zstdDecompressSync", + "signature": "`zlib.zstdDecompressSync(buffer[, options])`", + "label": "zlib.zstdDecompressSync(buffer[, options])", + "apiSymbol": "zlib.zstdDecompressSync", + "depth": 1, + "scope": "api", + "anchor": "convenience-methods", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "detail": "No static compiler lowering is registered for this API yet.", + "verification": "registry-gap" + }, + "dynamic": { + "status": "not-implemented", + "detail": "This API is not implemented by the dynamic-island shim.", + "verification": "registry-gap" + } + } + ] +} diff --git a/docs/src/lib/page-titles.ts b/docs/src/lib/page-titles.ts index 55771a959..5fc93f555 100644 --- a/docs/src/lib/page-titles.ts +++ b/docs/src/lib/page-titles.ts @@ -8,6 +8,7 @@ export const PAGE_TITLES: Record = { ffi: "Native FFI", "native-objects": "Native Program Objects", platforms: "Platform Support", + compatibility: "Node.js 24 Compatibility", "how-it-works": "How It Works", limitations: "Limitations", }; diff --git a/internal/compatibility/README.md b/internal/compatibility/README.md new file mode 100644 index 000000000..724a71141 --- /dev/null +++ b/internal/compatibility/README.md @@ -0,0 +1,16 @@ +# Node compatibility ledger + +This workspace package owns scriptc's Node.js parity system. + +- `node-v24.json` pins the Node release tag, commit, and canonical docs/source inputs. +- `static-support.json` overlays dedicated compiler paths and their internal test evidence on the compiler's generated surface manifest. +- `dynamic-support.json` is the implementation-owned dynamic-island module/global registry. Its `globals.supported` entries are installed by the always-on web prelude, while `globals.npmSupported` entries are installed only by the embedded npm module bootstrap. It also generates `packages/runtime/src/scr_island_manifest.h`, so runtime exports and compatibility claims share one source. +- `generated/node-v24-internal.json` is the engineering ledger, including implementation evidence and repository test paths. +- `generated/node-v24-backlog.json` is the internal tier-specific work queue. It separates verification, implementation, explicit-refusal replacement, and partial-surface audit work, and prioritizes stable Node APIs above experimental, deprecated, and legacy APIs. +- `docs/src/generated/node-v24-compatibility.json` is the stripped public artifact consumed by the docs website. It contains compiler-relevant runtime APIs, statuses, verification bases, and user-facing details; documentation, metadata, command-line/configuration entries, and rows that are N/A in both tiers remain internal. + +Statuses are evidence-aware: `supported` and `partial` require test evidence; `refused` requires an explicit compiler diagnostic or dynamic throwing stub; `not-implemented` is the actionable backlog for an owned API family with no implementation match; `by-design` records an architectural exclusion; `unreviewed` still needs classification; and `not-applicable` is not a runtime API for that execution tier. + +Run `pnpm node-compat:backlog` from the repository root for a summary. The filters `--tier`, `--action`, `--priority`, `--chapter`, and `--status` compose; use `--format=json` or `--format=tsv` for tooling. + +Run `pnpm node-compat` from the repository root after changing the Node pin or either support manifest. `pnpm node-compat:check` is the offline drift/evidence gate; `pnpm --filter @internal/compatibility check:upstream` additionally verifies the pinned upstream inputs over the network. diff --git a/internal/compatibility/dynamic-support.json b/internal/compatibility/dynamic-support.json new file mode 100644 index 000000000..8dcc9cecf --- /dev/null +++ b/internal/compatibility/dynamic-support.json @@ -0,0 +1,84 @@ +{ + "schemaVersion": 1, + "chapterPolicies": { + "addons": "by-design", + "n-api": "by-design", + "embedding": "not-applicable", + "cli": "not-applicable", + "debugger": "not-applicable", + "deprecations": "not-applicable", + "intl": "not-applicable", + "permissions": "not-implemented", + "report": "not-implemented", + "single-executable-applications": "not-applicable", + "repl": "not-implemented", + "sqlite": "not-implemented", + "test": "not-implemented", + "tracing": "not-implemented", + "vm": "by-design", + "wasi": "by-design" + }, + "features": [ + { "chapter": "environment_variables", "symbols": ["process.env"], "status": "partial", "evidence": ["tests/fixtures/npm/cases/misc-shims/main.ts"] }, + { "chapter": "environment_variables", "symbols": ["export"], "status": "not-applicable" }, + { "chapter": "modules", "symbols": ["__dirname", "__filename", "exports", "module", "require", "cache", "filename", "id", "loaded", "parent", "path"], "status": "partial", "evidence": ["tests/fixtures/npm/cases/create-require/main.ts", "tests/fixtures/npm/cases/dynamic-import/main.ts"] }, + { "chapter": "modules", "symbols": ["require.resolve", "require.resolve.paths", "extensions", "main", "module.require", "children", "isPreloading", "paths", "Module"], "status": "not-implemented" }, + { "chapter": "modules", "symbols": ["node:", "node_modules"], "status": "partial", "evidence": ["tests/fixtures/npm/cases/builtin-shims/main.ts", "tests/fixtures/npm/cases/create-require/main.ts"] }, + { "chapter": "esm", "symbols": ["import", "file:", "node:", "await", "url"], "status": "partial", "evidence": ["tests/fixtures/npm/cases/dynamic-import/main.ts", "tests/corpus/2646-top-level-await.ts"] }, + { "chapter": "esm", "signatures": ["`import()` expressions"], "status": "partial", "evidence": ["tests/fixtures/npm/cases/dynamic-import/main.ts", "tests/corpus/2050-dynamic-import-own-module/main.ts"] }, + { "chapter": "esm", "symbols": ["meta", "import.meta.resolve", "dirname", "filename", "main", "data:", "require", "__filename", "require.main", "require.resolve", "NODE_PATH", "require.extensions", "require.cache"], "status": "not-implemented" }, + { "chapter": "packages", "symbols": ["package.json", "\"name\"", "\"main\"", "\"type\"", "\"exports\"", "\"imports\""], "status": "partial", "evidence": ["tests/fixtures/npm/cases/dual-entry/main.ts", "tests/fixtures/npm/cases/self-name/main.ts", "tests/fixtures/npm/cases/scoped-nested/main.ts"] }, + { "chapter": "packages", "symbols": ["--input-type"], "status": "not-applicable" }, + { "chapter": "typescript", "symbols": ["type"], "status": "not-implemented" } + ], + "modules": { + "events": { "exports": ["EventEmitter", "once", "on", "listenerCount", "getEventListeners", "setMaxListeners", "defaultMaxListeners", "errorMonitor", "captureRejectionSymbol"], "members": ["emitter.addListener", "emitter.emit", "emitter.eventNames", "emitter.getMaxListeners", "emitter.listenerCount", "emitter.listeners", "emitter.off", "emitter.on", "emitter.once", "emitter.prependListener", "emitter.prependOnceListener", "emitter.removeAllListeners", "emitter.removeListener", "emitter.setMaxListeners", "emitter.rawListeners", "events.getEventListeners", "events.listenerCount", "events.once", "events.on", "events.setMaxListeners"], "evidence": ["tests/fixtures/npm/cases/stream-shims/main.ts"] }, + "path": { "exports": ["sep", "delimiter", "basename", "dirname", "extname", "join", "resolve", "normalize", "relative", "isAbsolute", "toNamespacedPath", "parse", "format", "posix", "win32"], "evidence": ["tests/fixtures/npm/cases/misc-shims/main.ts"] }, + "path/posix": { "exports": ["sep", "delimiter", "basename", "dirname", "extname", "join", "resolve", "normalize", "relative", "isAbsolute", "toNamespacedPath", "parse", "format", "posix", "win32"], "evidence": ["tests/fixtures/npm/cases/misc-shims/main.ts"] }, + "path/win32": { "exports": ["sep", "delimiter", "basename", "dirname", "extname", "join", "resolve", "normalize", "relative", "isAbsolute", "toNamespacedPath", "parse", "format", "posix", "win32"], "evidence": ["tests/fixtures/npm/cases/misc-shims/main.ts"] }, + "process": { "exports": ["argv", "env", "platform", "execPath", "execArgv", "version", "versions", "stdout", "stderr", "stdin", "cwd", "exit", "nextTick", "hrtime", "pid", "ppid", "title", "argv0", "release", "config", "allowedNodeEnvironmentFlags", "emitWarning", "uptime", "memoryUsage", "umask", "exitCode", "on", "once", "off", "removeListener", "emit"], "evidence": ["tests/fixtures/npm/cases/misc-shims/main.ts"] }, + "fs": { "exports": ["readFileSync", "writeFileSync", "appendFileSync", "existsSync", "realpathSync", "mkdirSync", "rmSync", "rmdirSync", "unlinkSync", "readdirSync", "statSync", "lstatSync", "accessSync", "mkdtempSync", "chmodSync", "copyFileSync", "renameSync", "constants", "Stats", "Dirent", "promises", "readFile", "writeFile", "appendFile", "exists", "realpath", "mkdir", "rm", "rmdir", "unlink", "readdir", "stat", "lstat", "access", "mkdtemp", "chmod", "copyFile", "rename", "readlink", "readlinkSync", "createReadStream", "createWriteStream", "watch", "watchFile", "unwatchFile", "openSync", "closeSync", "readSync", "read", "open"], "refused": ["watch", "watchFile", "openSync", "readSync", "read", "open"], "members": ["dirent.isBlockDevice", "dirent.isCharacterDevice", "dirent.isDirectory", "dirent.isFIFO", "dirent.isFile", "dirent.isSocket", "dirent.isSymbolicLink", "stats.isBlockDevice", "stats.isCharacterDevice", "stats.isDirectory", "stats.isFIFO", "stats.isFile", "stats.isSocket", "stats.isSymbolicLink"], "evidence": ["tests/fixtures/npm/cases/fs-shims/main.ts"] }, + "fs/promises": { "exports": ["readFile", "writeFile", "appendFile", "realpath", "mkdir", "rm", "rmdir", "unlink", "readdir", "stat", "lstat", "access", "mkdtemp", "chmod", "copyFile", "rename", "readlink", "constants", "open"], "refused": ["open"], "evidence": ["tests/fixtures/npm/cases/fs-shims/main.ts"] }, + "child_process": { "exports": ["spawn", "spawnSync", "exec", "execSync", "execFile", "execFileSync", "fork"], "refused": ["spawn", "spawnSync", "exec", "execSync", "execFile", "execFileSync", "fork"], "evidence": ["tests/harness/npm.test.ts"] }, + "os": { "exports": ["EOL", "platform", "arch", "hostname", "homedir", "tmpdir", "type", "endianness", "userInfo", "release", "version", "machine", "cpus", "availableParallelism", "totalmem", "freemem", "loadavg", "uptime", "networkInterfaces", "constants"], "evidence": ["tests/fixtures/npm/cases/builtin-shims/main.ts"] }, + "tty": { "exports": ["isatty", "ReadStream", "WriteStream"], "evidence": ["tests/fixtures/npm/cases/misc-shims/main.ts"] }, + "http": { "exports": ["request", "get", "Agent", "globalAgent", "ClientRequest", "IncomingMessage", "STATUS_CODES", "METHODS", "createServer", "Server"], "refused": ["createServer", "Server"], "members": ["agent.destroy", "request.abort", "request.end", "request.destroy", "request.flushHeaders", "request.getHeader", "request.removeHeader", "request.setHeader", "request.setTimeout", "request.write", "message.destroy", "message.setEncoding", "message.pause", "message.resume"], "evidence": ["tests/fixtures/fetch/cases/island-http/main.ts"] }, + "https": { "exports": ["request", "get", "Agent", "globalAgent", "ClientRequest", "IncomingMessage", "STATUS_CODES", "METHODS", "createServer", "Server"], "refused": ["createServer", "Server"], "members": ["agent.destroy", "request.abort", "request.end", "request.destroy", "request.flushHeaders", "request.getHeader", "request.removeHeader", "request.setHeader", "request.setTimeout", "request.write", "message.destroy", "message.setEncoding", "message.pause", "message.resume"], "evidence": ["tests/fixtures/fetch/cases/island-http/main.ts"] }, + "net": { "exports": ["isIP", "isIPv4", "isIPv6", "connect", "createConnection", "createServer", "Socket", "Server"], "refused": ["connect", "createConnection", "createServer", "Socket", "Server"], "evidence": ["tests/fixtures/fetch/cases/island-http/main.ts"] }, + "tls": { "exports": ["connect", "createServer", "createSecureContext", "TLSSocket", "rootCertificates"], "refused": ["connect", "createServer", "createSecureContext", "TLSSocket"], "evidence": ["tests/fixtures/fetch/cases/island-http/main.ts"] }, + "diagnostics_channel": { "exports": ["channel", "subscribe", "unsubscribe", "hasSubscribers", "tracingChannel"], "members": ["channel.publish", "channel.subscribe", "channel.unsubscribe", "tracingChannel.traceSync", "tracingChannel.tracePromise", "tracingChannel.traceCallback"], "evidence": ["tests/fixtures/npm/cases/builtin-shims/main.ts"] }, + "module": { "exports": ["createRequire", "builtinModules", "isBuiltin", "syncBuiltinESMExports", "register", "findSourceMap"], "refused": ["register"], "evidence": ["tests/fixtures/npm/cases/create-require/main.ts", "tests/fixtures/npm/cases/misc-shims/main.ts"] }, + "url": { "exports": ["URL", "URLSearchParams", "fileURLToPath", "pathToFileURL", "parse", "format", "resolve", "domainToASCII", "domainToUnicode", "urlToHttpOptions"], "members": ["url.toString", "url.toJSON", "URL.canParse", "URL.parse", "urlSearchParams.append", "urlSearchParams.delete", "urlSearchParams.entries", "urlSearchParams.forEach", "urlSearchParams.get", "urlSearchParams.getAll", "urlSearchParams.has", "urlSearchParams.keys", "urlSearchParams.set", "urlSearchParams.sort", "urlSearchParams.toString", "urlSearchParams.values", "urlSearchParams.size"], "evidence": ["tests/fixtures/npm/cases/misc-shims/main.ts", "tests/fixtures/npm/cases/island-web-plumbing/main.ts"] }, + "buffer": { "exports": ["Buffer", "SlowBuffer", "INSPECT_MAX_BYTES", "kMaxLength", "kStringMaxLength", "constants", "isAscii", "isUtf8", "atob", "btoa", "Blob", "File", "transcode", "resolveObjectURL"], "members": ["Buffer.alloc", "Buffer.allocUnsafe", "Buffer.allocUnsafeSlow", "Buffer.from", "Buffer.isBuffer", "Buffer.isEncoding", "Buffer.byteLength", "Buffer.concat", "Buffer.compare", "buf.compare", "buf.copy", "buf.equals", "buf.fill", "buf.includes", "buf.indexOf", "buf.lastIndexOf", "buf.subarray", "buf.slice", "buf.swap16", "buf.swap32", "buf.swap64", "buf.toJSON", "buf.toString", "buf.write", "buf.readBigInt64BE", "buf.readBigInt64LE", "buf.readBigUInt64BE", "buf.readBigUInt64LE", "buf.readDoubleBE", "buf.readDoubleLE", "buf.readFloatBE", "buf.readFloatLE", "buf.readInt8", "buf.readInt16BE", "buf.readInt16LE", "buf.readInt32BE", "buf.readInt32LE", "buf.readIntBE", "buf.readIntLE", "buf.readUInt8", "buf.readUInt16BE", "buf.readUInt16LE", "buf.readUInt32BE", "buf.readUInt32LE", "buf.readUIntBE", "buf.readUIntLE", "buf.writeBigInt64BE", "buf.writeBigInt64LE", "buf.writeBigUInt64BE", "buf.writeBigUInt64LE", "buf.writeDoubleBE", "buf.writeDoubleLE", "buf.writeFloatBE", "buf.writeFloatLE", "buf.writeInt8", "buf.writeInt16BE", "buf.writeInt16LE", "buf.writeInt32BE", "buf.writeInt32LE", "buf.writeIntBE", "buf.writeIntLE", "buf.writeUInt8", "buf.writeUInt16BE", "buf.writeUInt16LE", "buf.writeUInt32BE", "buf.writeUInt32LE", "buf.writeUIntBE", "buf.writeUIntLE"], "evidence": ["tests/fixtures/npm/cases/buffer-shims/main.ts"] }, + "string_decoder": { "exports": ["StringDecoder"], "members": ["stringDecoder.write", "stringDecoder.end"], "evidence": ["tests/fixtures/npm/cases/buffer-shims/main.ts"] }, + "assert": { "exports": ["AssertionError", "ok", "fail", "equal", "notEqual", "strictEqual", "notStrictEqual", "deepEqual", "notDeepEqual", "deepStrictEqual", "notDeepStrictEqual", "throws", "doesNotThrow", "rejects", "doesNotReject", "match", "doesNotMatch", "ifError", "strict"], "evidence": ["tests/fixtures/npm/cases/assert-shims/main.ts"] }, + "assert/strict": { "exports": ["AssertionError", "ok", "fail", "equal", "notEqual", "strictEqual", "notStrictEqual", "deepEqual", "notDeepEqual", "deepStrictEqual", "notDeepStrictEqual", "throws", "doesNotThrow", "rejects", "doesNotReject", "match", "doesNotMatch", "ifError", "strict"], "evidence": ["tests/fixtures/npm/cases/assert-shims/main.ts"] }, + "domain": { "exports": ["create", "createDomain", "Domain", "active"], "members": ["domain.add", "domain.bind", "domain.enter", "domain.exit", "domain.intercept", "domain.remove", "domain.run"], "evidence": ["tests/fixtures/npm/cases/island-web-plumbing/main.ts"] }, + "worker_threads": { "exports": ["isMainThread", "parentPort", "threadId", "workerData", "resourceLimits", "MessageChannel", "MessagePort", "Worker", "receiveMessageOnPort", "SHARE_ENV", "markAsUntransferable", "getEnvironmentData", "setEnvironmentData"], "refused": ["Worker"], "members": ["port.close", "port.postMessage", "port.hasRef", "port.ref", "port.start", "port.unref"], "evidence": ["tests/fixtures/npm/cases/island-web-plumbing/main.ts"] }, + "perf_hooks": { "exports": ["performance", "PerformanceObserver", "monitorEventLoopDelay", "constants"], "members": ["performanceObserver.disconnect", "performanceObserver.observe", "performanceObserver.takeRecords", "performance.clearMarks", "performance.clearMeasures", "performance.getEntries", "performance.getEntriesByName", "performance.getEntriesByType", "performance.mark", "performance.measure", "performance.now", "performance.toJSON"], "evidence": ["tests/fixtures/npm/cases/island-web-plumbing/main.ts"] }, + "v8": { "exports": ["startupSnapshot", "cachedDataVersionTag", "getHeapStatistics", "getHeapSpaceStatistics", "getHeapCodeStatistics", "getCppHeapStatistics", "setFlagsFromString", "takeCoverage", "stopCoverage", "setHeapSnapshotNearHeapLimit", "serialize", "deserialize", "writeHeapSnapshot", "getHeapSnapshot", "queryObjects", "startCpuProfile", "isStringOneByteRepresentation", "promiseHooks", "Serializer", "Deserializer", "DefaultSerializer", "DefaultDeserializer", "GCProfiler"], "refused": ["serialize", "deserialize", "writeHeapSnapshot", "getHeapSnapshot", "queryObjects", "startCpuProfile", "isStringOneByteRepresentation", "promiseHooks", "Serializer", "Deserializer", "DefaultSerializer", "DefaultDeserializer", "GCProfiler"], "evidence": ["tests/fixtures/npm/cases/misc-shims/main.ts"] }, + "dns": { "exports": ["lookup", "lookupService", "resolve", "resolve4", "resolve6", "resolveCname", "resolveMx", "resolveNs", "resolveSrv", "resolveTxt", "reverse", "getServers", "setServers", "Resolver", "promises", "ADDRCONFIG", "V4MAPPED", "ALL"], "refused": ["lookup", "lookupService", "resolve", "resolve4", "resolve6", "resolveCname", "resolveMx", "resolveNs", "resolveSrv", "resolveTxt", "reverse"], "evidence": ["tests/fixtures/npm/cases/island-web-plumbing/main.ts"] }, + "async_hooks": { "exports": ["AsyncLocalStorage", "AsyncResource", "executionAsyncId", "triggerAsyncId", "executionAsyncResource", "createHook"], "members": ["asyncLocalStorage.run", "asyncLocalStorage.exit", "asyncLocalStorage.getStore", "asyncLocalStorage.enterWith", "asyncLocalStorage.disable", "asyncResource.runInAsyncScope", "asyncResource.bind", "asyncResource.emitDestroy", "asyncResource.asyncId", "asyncResource.triggerAsyncId"], "evidence": ["tests/fixtures/npm/cases/misc-shims/main.ts"] }, + "punycode": { "exports": ["version", "ucs2", "decode", "encode", "toASCII", "toUnicode"], "evidence": ["tests/fixtures/npm/cases/misc-shims/main.ts"] }, + "querystring": { "exports": ["parse", "stringify", "decode", "encode", "escape", "unescape", "unescapeBuffer"], "evidence": ["tests/fixtures/npm/cases/misc-shims/main.ts"] }, + "constants": { "exports": ["F_OK", "R_OK", "W_OK", "X_OK"], "evidence": ["tests/fixtures/npm/cases/misc-shims/main.ts"] }, + "console": { "exports": ["Console", "log", "info", "debug", "warn", "error", "trace", "dir", "assert", "count", "countReset", "time", "timeEnd", "group", "groupEnd", "table", "clear"], "evidence": ["tests/fixtures/npm/cases/misc-shims/main.ts"] }, + "timers": { "exports": ["setTimeout", "clearTimeout", "setInterval", "clearInterval", "setImmediate", "clearImmediate"], "evidence": ["tests/fixtures/npm/cases/misc-shims/main.ts"] }, + "timers/promises": { "exports": ["setTimeout", "setImmediate", "setInterval", "scheduler"], "evidence": ["tests/fixtures/npm/cases/misc-shims/main.ts"] }, + "zlib": { "exports": ["deflateSync", "inflateSync", "deflateRawSync", "inflateRawSync", "gzipSync", "gunzipSync", "unzipSync", "deflate", "inflate", "deflateRaw", "inflateRaw", "gzip", "gunzip", "unzip", "Deflate", "Inflate", "DeflateRaw", "InflateRaw", "Gzip", "Gunzip", "Unzip", "BrotliCompress", "BrotliDecompress", "createDeflate", "createInflate", "createDeflateRaw", "createInflateRaw", "createGzip", "createGunzip", "createUnzip", "createBrotliCompress", "createBrotliDecompress", "brotliCompressSync", "brotliDecompressSync", "constants"], "members": ["zlib.close", "zlib.flush", "zlib.reset"], "evidence": ["tests/fixtures/npm/cases/zlib-shims/main.ts"] }, + "readline": { "exports": ["Interface", "createInterface", "clearLine", "clearScreenDown", "cursorTo", "moveCursor", "emitKeypressEvents"], "members": ["rl.question", "rl.close", "rl.pause", "rl.prompt", "rl.resume", "rl.setPrompt", "rl.getPrompt", "rl.write"], "evidence": ["tests/fixtures/npm/cases/misc-shims/main.ts"] }, + "stream": { "exports": ["Stream", "Readable", "Writable", "Duplex", "Transform", "PassThrough", "pipeline", "finished", "addAbortSignal", "promises", "isErrored", "isDestroyed", "isReadable", "isWritable"], "members": ["stream.Readable.from", "readable.read", "readable.push", "readable.unshift", "readable.pause", "readable.resume", "readable.isPaused", "readable.setEncoding", "readable.pipe", "readable.unpipe", "readable.destroy", "writable.write", "writable.end", "writable.cork", "writable.uncork", "writable.setDefaultEncoding", "writable.destroy", "transform.destroy"], "refusedMembers": ["readable.wrap"], "evidence": ["tests/fixtures/npm/cases/stream-shims/main.ts"] }, + "stream/promises": { "exports": ["pipeline", "finished"], "evidence": ["tests/fixtures/npm/cases/stream-shims/main.ts"] }, + "stream/consumers": { "exports": ["text", "buffer", "arrayBuffer", "json", "blob"], "evidence": ["tests/fixtures/npm/cases/stream-shims/main.ts"] }, + "stream/web": { "exports": ["ReadableStream", "TransformStream", "TextDecoderStream"], "evidence": ["tests/fixtures/npm/cases/web-streams/main.ts"] }, + "crypto": { "exports": ["createHash", "createHmac", "hash", "Hash", "Hmac", "randomBytes", "randomFillSync", "randomFill", "randomInt", "randomUUID", "getRandomValues", "timingSafeEqual", "pbkdf2", "pbkdf2Sync", "getHashes", "getCiphers", "getCurves", "webcrypto", "subtle", "constants", "KeyObject", "createCipheriv", "createDecipheriv", "createSign", "createVerify", "createDiffieHellman", "createECDH", "createPublicKey", "createPrivateKey", "createSecretKey", "diffieHellman", "generateKeyPair", "generateKeyPairSync", "generateKey", "generateKeySync", "sign", "verify", "publicEncrypt", "publicDecrypt", "privateEncrypt", "privateDecrypt", "scrypt", "scryptSync", "hkdf", "hkdfSync", "X509Certificate", "Certificate", "checkPrime", "checkPrimeSync", "generatePrime", "generatePrimeSync", "secureHeapUsed", "setEngine", "setFips", "getFips"], "refused": ["KeyObject", "createCipheriv", "createDecipheriv", "createSign", "createVerify", "createDiffieHellman", "createECDH", "createPublicKey", "createPrivateKey", "createSecretKey", "diffieHellman", "generateKeyPair", "generateKeyPairSync", "generateKey", "generateKeySync", "sign", "verify", "publicEncrypt", "publicDecrypt", "privateEncrypt", "privateDecrypt", "scrypt", "scryptSync", "hkdf", "hkdfSync", "X509Certificate", "Certificate", "checkPrime", "checkPrimeSync", "generatePrime", "generatePrimeSync", "secureHeapUsed", "setEngine"], "members": ["hash.copy", "hash.digest", "hash.update", "hmac.digest", "hmac.update"], "evidence": ["tests/fixtures/npm/cases/crypto-shims/main.ts"] }, + "util": { "exports": ["format", "formatWithOptions", "inspect", "inherits", "promisify", "callbackify", "deprecate", "debuglog", "debug", "types", "isDeepStrictEqual", "stripVTControlCharacters", "styleText", "parseArgs", "toUSVString", "_extend", "TextEncoder", "TextDecoder", "isArray"], "evidence": ["tests/fixtures/npm/cases/util-shims/main.ts"] }, + "util/types": { "exports": ["isAnyArrayBuffer", "isArrayBufferView", "isArgumentsObject", "isArrayBuffer", "isAsyncFunction", "isBigInt64Array", "isBigUint64Array", "isBooleanObject", "isBoxedPrimitive", "isBigIntObject", "isCryptoKey", "isDataView", "isDate", "isExternal", "isFloat16Array", "isFloat32Array", "isFloat64Array", "isGeneratorFunction", "isGeneratorObject", "isInt8Array", "isInt16Array", "isInt32Array", "isKeyObject", "isMap", "isMapIterator", "isModuleNamespaceObject", "isNativeError", "isNumberObject", "isPromise", "isProxy", "isRegExp", "isSet", "isSetIterator", "isSharedArrayBuffer", "isStringObject", "isSymbolObject", "isTypedArray", "isUint8Array", "isUint8ClampedArray", "isUint16Array", "isUint32Array", "isWeakMap", "isWeakSet"], "evidence": ["tests/fixtures/npm/cases/util-shims/main.ts"] } + }, + "globals": { + "supported": ["atob", "btoa", "clearInterval", "clearTimeout", "queueMicrotask", "setInterval", "setTimeout", "structuredClone", "AbortController", "AbortSignal", "Blob", "CustomEvent", "DOMException", "Event", "EventTarget", "File", "Headers", "MessageChannel", "MessageEvent", "MessagePort", "Request", "Response", "TextDecoder", "TextDecoderStream", "TextEncoder", "TransformStream", "URLSearchParams", "ReadableStream"], + "npmSupported": ["Buffer", "URL", "clearImmediate", "setImmediate"], + "absent": ["BroadcastChannel", "ByteLengthQueuingStrategy", "CloseEvent", "CompressionStream", "CountQueuingStrategy", "CryptoKey", "DecompressionStream", "EventSource", "FormData", "Navigator", "ReadableByteStreamController", "ReadableStreamBYOBReader", "ReadableStreamBYOBRequest", "Storage", "SubtleCrypto", "TextEncoderStream", "TransformStreamDefaultController", "URLPattern", "WebAssembly", "WebSocket", "WritableStream", "WritableStreamDefaultController", "WritableStreamDefaultWriter"], + "evidence": ["tests/harness/web-globals.test.ts"] + } +} diff --git a/internal/compatibility/generated/node-v24-backlog.json b/internal/compatibility/generated/node-v24-backlog.json new file mode 100644 index 000000000..71525799a --- /dev/null +++ b/internal/compatibility/generated/node-v24-backlog.json @@ -0,0 +1,110069 @@ +{ + "schemaVersion": 1, + "nodeVersion": "24.15.0", + "nodeCommit": "848430679556aed0bd073f2bc263331ad84fa119", + "summary": { + "taskCount": 3369, + "tierItemCount": 6673, + "tiers": { + "static": { + "replace-refusal": 73, + "verify-gap": 2764, + "audit-partial": 367, + "classify": 4, + "implement": 96 + }, + "dynamic": { + "audit-partial": 745, + "verify-gap": 2302, + "replace-refusal": 101, + "implement": 221 + } + }, + "priorities": { + "high": 4510, + "normal": 1411, + "low": 752 + } + }, + "tasks": [ + { + "id": "assert:fdb8010c6379", + "chapter": "assert", + "label": "assert.AssertionError", + "signature": "Class: `assert.AssertionError`", + "apiSymbol": "assert.AssertionError", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/assert.html#class-assertassertionerror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.assert.AssertionError", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:assert.AssertionError", + "tests": [ + "tests/fixtures/npm/cases/assert-shims/main.ts" + ] + } + } + }, + { + "id": "assert:d4e5053210e6", + "chapter": "assert", + "label": "assert.Assert", + "signature": "Class: `assert.Assert`", + "apiSymbol": "assert.Assert", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/assert.html#class-assertassert", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:assert", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:assert", + "tests": [] + } + } + }, + { + "id": "assert:403fea8dcb8f", + "chapter": "assert", + "label": "assert.CallTracker", + "signature": "Class: `assert.CallTracker`", + "apiSymbol": "assert.CallTracker", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/assert.html#class-assertcalltracker", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:assert", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:assert", + "tests": [] + } + } + }, + { + "id": "assert:576b9d6d6ec2", + "chapter": "assert", + "label": "tracker.calls([fn][, exact])", + "signature": "`tracker.calls([fn][, exact])`", + "apiSymbol": "tracker.calls", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/assert.html#trackercallsfn-exact", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:assert", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:assert", + "tests": [] + } + } + }, + { + "id": "assert:055d28894b6f", + "chapter": "assert", + "label": "tracker.getCalls(fn)", + "signature": "`tracker.getCalls(fn)`", + "apiSymbol": "tracker.getCalls", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/assert.html#trackergetcallsfn", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:assert", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:assert", + "tests": [] + } + } + }, + { + "id": "assert:8461e0b4cece", + "chapter": "assert", + "label": "tracker.report()", + "signature": "`tracker.report()`", + "apiSymbol": "tracker.report", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/assert.html#trackerreport", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:assert", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:assert", + "tests": [] + } + } + }, + { + "id": "assert:5b731bc1c035", + "chapter": "assert", + "label": "tracker.reset([fn])", + "signature": "`tracker.reset([fn])`", + "apiSymbol": "tracker.reset", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/assert.html#trackerresetfn", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:assert", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:assert", + "tests": [] + } + } + }, + { + "id": "assert:7d1be65a4f04", + "chapter": "assert", + "label": "tracker.verify()", + "signature": "`tracker.verify()`", + "apiSymbol": "tracker.verify", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/assert.html#trackerverify", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:assert", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:assert", + "tests": [] + } + } + }, + { + "id": "assert:47b140441b19", + "chapter": "assert", + "label": "assert(value[, message])", + "signature": "`assert(value[, message])`", + "apiSymbol": "assert", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/assert.html#assertvalue-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:assert", + "tests": [ + "tests/corpus/1600-assert-passing.ts", + "tests/corpus/1604-assert-deep-structures.ts", + "tests/corpus/1609-assert-async.ts", + "tests/corpus/1721-assert-throws-regex-class.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:assert", + "tests": [] + } + } + }, + { + "id": "assert:b99ea75ee6b8", + "chapter": "assert", + "label": "assert.deepEqual(actual, expected[, message])", + "signature": "`assert.deepEqual(actual, expected[, message])`", + "apiSymbol": "assert.deepEqual", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/assert.html#assertdeepequalactual-expected-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.assert.deepEqual", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:assert.deepEqual", + "tests": [ + "tests/fixtures/npm/cases/assert-shims/main.ts" + ] + } + } + }, + { + "id": "assert:7a6ba7d551e3", + "chapter": "assert", + "label": "assert.deepStrictEqual(actual, expected[, message])", + "signature": "`assert.deepStrictEqual(actual, expected[, message])`", + "apiSymbol": "assert.deepStrictEqual", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/assert.html#assertdeepstrictequalactual-expected-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:assert.deepStrictEqual", + "tests": [ + "tests/corpus/1600-assert-passing.ts", + "tests/corpus/1604-assert-deep-structures.ts", + "tests/corpus/1609-assert-async.ts", + "tests/corpus/1721-assert-throws-regex-class.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:assert.deepStrictEqual", + "tests": [ + "tests/fixtures/npm/cases/assert-shims/main.ts" + ] + } + } + }, + { + "id": "assert:06bab895dd75", + "chapter": "assert", + "label": "assert.doesNotMatch(string, regexp[, message])", + "signature": "`assert.doesNotMatch(string, regexp[, message])`", + "apiSymbol": "assert.doesNotMatch", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/assert.html#assertdoesnotmatchstring-regexp-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:assert.doesNotMatch", + "tests": [ + "tests/corpus/1600-assert-passing.ts", + "tests/corpus/1604-assert-deep-structures.ts", + "tests/corpus/1609-assert-async.ts", + "tests/corpus/1721-assert-throws-regex-class.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:assert.doesNotMatch", + "tests": [ + "tests/fixtures/npm/cases/assert-shims/main.ts" + ] + } + } + }, + { + "id": "assert:f50eba13de65", + "chapter": "assert", + "label": "assert.doesNotReject(asyncFn[, error][, message])", + "signature": "`assert.doesNotReject(asyncFn[, error][, message])`", + "apiSymbol": "assert.doesNotReject", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/assert.html#assertdoesnotrejectasyncfn-error-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:assert.doesNotReject", + "tests": [ + "tests/corpus/1600-assert-passing.ts", + "tests/corpus/1604-assert-deep-structures.ts", + "tests/corpus/1609-assert-async.ts", + "tests/corpus/1721-assert-throws-regex-class.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:assert.doesNotReject", + "tests": [ + "tests/fixtures/npm/cases/assert-shims/main.ts" + ] + } + } + }, + { + "id": "assert:8e8ad2dfb66c", + "chapter": "assert", + "label": "assert.doesNotThrow(fn[, error][, message])", + "signature": "`assert.doesNotThrow(fn[, error][, message])`", + "apiSymbol": "assert.doesNotThrow", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/assert.html#assertdoesnotthrowfn-error-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.assert.doesNotThrow", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:assert.doesNotThrow", + "tests": [ + "tests/fixtures/npm/cases/assert-shims/main.ts" + ] + } + } + }, + { + "id": "assert:137b161ac3fb", + "chapter": "assert", + "label": "assert.equal(actual, expected[, message])", + "signature": "`assert.equal(actual, expected[, message])`", + "apiSymbol": "assert.equal", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/assert.html#assertequalactual-expected-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.assert.equal", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:assert.equal", + "tests": [ + "tests/fixtures/npm/cases/assert-shims/main.ts" + ] + } + } + }, + { + "id": "assert:2c80d261696a", + "chapter": "assert", + "label": "assert.fail([message])", + "signature": "`assert.fail([message])`", + "apiSymbol": "assert.fail", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/assert.html#assertfailmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:assert.fail", + "tests": [ + "tests/corpus/1600-assert-passing.ts", + "tests/corpus/1604-assert-deep-structures.ts", + "tests/corpus/1609-assert-async.ts", + "tests/corpus/1721-assert-throws-regex-class.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:assert.fail", + "tests": [ + "tests/fixtures/npm/cases/assert-shims/main.ts" + ] + } + } + }, + { + "id": "assert:9b189cd0bab6", + "chapter": "assert", + "label": "assert.fail(actual, expected[, message[, operator[, stackStartFn]]])", + "signature": "`assert.fail(actual, expected[, message[, operator[, stackStartFn]]])`", + "apiSymbol": "assert.fail", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/assert.html#assertfailactual-expected-message-operator-stackstartfn", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Use `assert.fail([message])` or other assert functions instead.", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:assert.fail", + "tests": [ + "tests/corpus/1600-assert-passing.ts", + "tests/corpus/1604-assert-deep-structures.ts", + "tests/corpus/1609-assert-async.ts", + "tests/corpus/1721-assert-throws-regex-class.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:assert.fail", + "tests": [ + "tests/fixtures/npm/cases/assert-shims/main.ts" + ] + } + } + }, + { + "id": "assert:ddfa5d48c175", + "chapter": "assert", + "label": "assert.ifError(value)", + "signature": "`assert.ifError(value)`", + "apiSymbol": "assert.ifError", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/assert.html#assertiferrorvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:assert.ifError", + "tests": [ + "tests/corpus/1600-assert-passing.ts", + "tests/corpus/1604-assert-deep-structures.ts", + "tests/corpus/1609-assert-async.ts", + "tests/corpus/1721-assert-throws-regex-class.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:assert.ifError", + "tests": [ + "tests/fixtures/npm/cases/assert-shims/main.ts" + ] + } + } + }, + { + "id": "assert:4ce54067ce1b", + "chapter": "assert", + "label": "assert.match(string, regexp[, message])", + "signature": "`assert.match(string, regexp[, message])`", + "apiSymbol": "assert.match", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/assert.html#assertmatchstring-regexp-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:assert.match", + "tests": [ + "tests/corpus/1600-assert-passing.ts", + "tests/corpus/1604-assert-deep-structures.ts", + "tests/corpus/1609-assert-async.ts", + "tests/corpus/1721-assert-throws-regex-class.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:assert.match", + "tests": [ + "tests/fixtures/npm/cases/assert-shims/main.ts" + ] + } + } + }, + { + "id": "assert:1b5f04efb0ab", + "chapter": "assert", + "label": "assert.notDeepEqual(actual, expected[, message])", + "signature": "`assert.notDeepEqual(actual, expected[, message])`", + "apiSymbol": "assert.notDeepEqual", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/assert.html#assertnotdeepequalactual-expected-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.assert.notDeepEqual", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:assert.notDeepEqual", + "tests": [ + "tests/fixtures/npm/cases/assert-shims/main.ts" + ] + } + } + }, + { + "id": "assert:980f8d1bb511", + "chapter": "assert", + "label": "assert.notDeepStrictEqual(actual, expected[, message])", + "signature": "`assert.notDeepStrictEqual(actual, expected[, message])`", + "apiSymbol": "assert.notDeepStrictEqual", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/assert.html#assertnotdeepstrictequalactual-expected-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:assert.notDeepStrictEqual", + "tests": [ + "tests/corpus/1600-assert-passing.ts", + "tests/corpus/1604-assert-deep-structures.ts", + "tests/corpus/1609-assert-async.ts", + "tests/corpus/1721-assert-throws-regex-class.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:assert.notDeepStrictEqual", + "tests": [ + "tests/fixtures/npm/cases/assert-shims/main.ts" + ] + } + } + }, + { + "id": "assert:3acc79b323ad", + "chapter": "assert", + "label": "assert.notEqual(actual, expected[, message])", + "signature": "`assert.notEqual(actual, expected[, message])`", + "apiSymbol": "assert.notEqual", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/assert.html#assertnotequalactual-expected-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.assert.notEqual", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:assert.notEqual", + "tests": [ + "tests/fixtures/npm/cases/assert-shims/main.ts" + ] + } + } + }, + { + "id": "assert:758353e2aa36", + "chapter": "assert", + "label": "assert.notStrictEqual(actual, expected[, message])", + "signature": "`assert.notStrictEqual(actual, expected[, message])`", + "apiSymbol": "assert.notStrictEqual", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/assert.html#assertnotstrictequalactual-expected-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:assert.notStrictEqual", + "tests": [ + "tests/corpus/1600-assert-passing.ts", + "tests/corpus/1604-assert-deep-structures.ts", + "tests/corpus/1609-assert-async.ts", + "tests/corpus/1721-assert-throws-regex-class.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:assert.notStrictEqual", + "tests": [ + "tests/fixtures/npm/cases/assert-shims/main.ts" + ] + } + } + }, + { + "id": "assert:4a44441f61a7", + "chapter": "assert", + "label": "assert.ok(value[, message])", + "signature": "`assert.ok(value[, message])`", + "apiSymbol": "assert.ok", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/assert.html#assertokvalue-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:assert.ok", + "tests": [ + "tests/corpus/1600-assert-passing.ts", + "tests/corpus/1604-assert-deep-structures.ts", + "tests/corpus/1609-assert-async.ts", + "tests/corpus/1721-assert-throws-regex-class.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:assert.ok", + "tests": [ + "tests/fixtures/npm/cases/assert-shims/main.ts" + ] + } + } + }, + { + "id": "assert:5e1e54b4c5d7", + "chapter": "assert", + "label": "assert.rejects(asyncFn[, error][, message])", + "signature": "`assert.rejects(asyncFn[, error][, message])`", + "apiSymbol": "assert.rejects", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/assert.html#assertrejectsasyncfn-error-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:assert.rejects", + "tests": [ + "tests/corpus/1600-assert-passing.ts", + "tests/corpus/1604-assert-deep-structures.ts", + "tests/corpus/1609-assert-async.ts", + "tests/corpus/1721-assert-throws-regex-class.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:assert.rejects", + "tests": [ + "tests/fixtures/npm/cases/assert-shims/main.ts" + ] + } + } + }, + { + "id": "assert:8937227848eb", + "chapter": "assert", + "label": "assert.strictEqual(actual, expected[, message])", + "signature": "`assert.strictEqual(actual, expected[, message])`", + "apiSymbol": "assert.strictEqual", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/assert.html#assertstrictequalactual-expected-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:assert.strictEqual", + "tests": [ + "tests/corpus/1600-assert-passing.ts", + "tests/corpus/1604-assert-deep-structures.ts", + "tests/corpus/1609-assert-async.ts", + "tests/corpus/1721-assert-throws-regex-class.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:assert.strictEqual", + "tests": [ + "tests/fixtures/npm/cases/assert-shims/main.ts" + ] + } + } + }, + { + "id": "assert:dd9addafdc8b", + "chapter": "assert", + "label": "assert.throws(fn[, error][, message])", + "signature": "`assert.throws(fn[, error][, message])`", + "apiSymbol": "assert.throws", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/assert.html#assertthrowsfn-error-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:assert.throws", + "tests": [ + "tests/corpus/1600-assert-passing.ts", + "tests/corpus/1604-assert-deep-structures.ts", + "tests/corpus/1609-assert-async.ts", + "tests/corpus/1721-assert-throws-regex-class.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:assert.throws", + "tests": [ + "tests/fixtures/npm/cases/assert-shims/main.ts" + ] + } + } + }, + { + "id": "assert:263d8a46f9e7", + "chapter": "assert", + "label": "assert.partialDeepStrictEqual(actual, expected[, message])", + "signature": "`assert.partialDeepStrictEqual(actual, expected[, message])`", + "apiSymbol": "assert.partialDeepStrictEqual", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/assert.html#assertpartialdeepstrictequalactual-expected-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:assert", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:assert", + "tests": [] + } + } + }, + { + "id": "async_context:411b8aa75166", + "chapter": "async_context", + "label": "AsyncLocalStorage", + "signature": "Class: `AsyncLocalStorage`", + "apiSymbol": "AsyncLocalStorage", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/async_context.html#class-asynclocalstorage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:AsyncLocalStorage", + "tests": [ + "tests/corpus/2213-async-local-storage.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:async_hooks.AsyncLocalStorage", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "async_context:830769f9f94c", + "chapter": "async_context", + "label": "Usage with async/await", + "signature": "Usage with `async/await`", + "apiSymbol": "async/await", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/async_context.html#usage-with-asyncawait", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:async_context", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:async_context", + "tests": [] + } + } + }, + { + "id": "async_context:b6256a3e7833", + "chapter": "async_context", + "label": "asyncLocalStorage.disable()", + "signature": "`asyncLocalStorage.disable()`", + "apiSymbol": "asyncLocalStorage.disable", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/async_context.html#asynclocalstoragedisable", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:asyncLocalStorage.disable", + "tests": [ + "tests/corpus/2213-async-local-storage.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:async_hooks.asyncLocalStorage.disable", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "async_context:74eb723c17ad", + "chapter": "async_context", + "label": "asyncLocalStorage.getStore()", + "signature": "`asyncLocalStorage.getStore()`", + "apiSymbol": "asyncLocalStorage.getStore", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/async_context.html#asynclocalstoragegetstore", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:asyncLocalStorage.getStore", + "tests": [ + "tests/corpus/2213-async-local-storage.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:async_hooks.asyncLocalStorage.getStore", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "async_context:aaa94766e686", + "chapter": "async_context", + "label": "asyncLocalStorage.enterWith(store)", + "signature": "`asyncLocalStorage.enterWith(store)`", + "apiSymbol": "asyncLocalStorage.enterWith", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/async_context.html#asynclocalstorageenterwithstore", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:asyncLocalStorage.enterWith", + "tests": [ + "tests/corpus/2213-async-local-storage.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:async_hooks.asyncLocalStorage.enterWith", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "async_context:619db3b1a0c9", + "chapter": "async_context", + "label": "asyncLocalStorage.run(store, callback[, ...args])", + "signature": "`asyncLocalStorage.run(store, callback[, ...args])`", + "apiSymbol": "asyncLocalStorage.run", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/async_context.html#asynclocalstoragerunstore-callback-args", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:asyncLocalStorage.run", + "tests": [ + "tests/corpus/2213-async-local-storage.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:async_hooks.asyncLocalStorage.run", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "async_context:7ce346a66348", + "chapter": "async_context", + "label": "asyncLocalStorage.exit(callback[, ...args])", + "signature": "`asyncLocalStorage.exit(callback[, ...args])`", + "apiSymbol": "asyncLocalStorage.exit", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/async_context.html#asynclocalstorageexitcallback-args", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:asyncLocalStorage.exit", + "tests": [ + "tests/corpus/2213-async-local-storage.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:async_hooks.asyncLocalStorage.exit", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "async_context:c3f9e759e7a3", + "chapter": "async_context", + "label": "name", + "signature": "`name` Type: {string}", + "apiSymbol": "name", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/async_context.html#class-asynclocalstorage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:async_context", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:async_context", + "tests": [] + } + } + }, + { + "id": "async_context:509d8ed918da", + "chapter": "async_context", + "label": "AsyncResource", + "signature": "Class: `AsyncResource`", + "apiSymbol": "AsyncResource", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/async_context.html#class-asyncresource", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:async_context", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:async_hooks.AsyncResource", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "async_context:2df063cd33de", + "chapter": "async_context", + "label": "Using AsyncResource for a Worker thread pool", + "signature": "Using `AsyncResource` for a `Worker` thread pool", + "apiSymbol": "AsyncResource", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/async_context.html#using-asyncresource-for-a-worker-thread-pool", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:async_context", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:async_hooks.AsyncResource", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "async_context:f9a222d2f454", + "chapter": "async_context", + "label": "Integrating AsyncResource with EventEmitter", + "signature": "Integrating `AsyncResource` with `EventEmitter`", + "apiSymbol": "AsyncResource", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/async_context.html#integrating-asyncresource-with-eventemitter", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:async_context", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:async_hooks.AsyncResource", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "async_context:d5d7e15685dc", + "chapter": "async_context", + "label": "asyncResource.bind(fn[, thisArg])", + "signature": "`asyncResource.bind(fn[, thisArg])`", + "apiSymbol": "asyncResource.bind", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/async_context.html#asyncresourcebindfn-thisarg", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:async_context", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:async_hooks.asyncResource.bind", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "async_context:8beab6827887", + "chapter": "async_context", + "label": "asyncResource.runInAsyncScope(fn[, thisArg, ...args])", + "signature": "`asyncResource.runInAsyncScope(fn[, thisArg, ...args])`", + "apiSymbol": "asyncResource.runInAsyncScope", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/async_context.html#asyncresourceruninasyncscopefn-thisarg-args", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:async_context", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:async_hooks.asyncResource.runInAsyncScope", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "async_context:b63525644b2e", + "chapter": "async_context", + "label": "asyncResource.emitDestroy()", + "signature": "`asyncResource.emitDestroy()`", + "apiSymbol": "asyncResource.emitDestroy", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/async_context.html#asyncresourceemitdestroy", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:async_context", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:async_hooks.asyncResource.emitDestroy", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "async_context:d8c00a701ae0", + "chapter": "async_context", + "label": "asyncResource.asyncId()", + "signature": "`asyncResource.asyncId()`", + "apiSymbol": "asyncResource.asyncId", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/async_context.html#asyncresourceasyncid", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:async_context", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:async_hooks.asyncResource.asyncId", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "async_context:53501aab7077", + "chapter": "async_context", + "label": "asyncResource.triggerAsyncId()", + "signature": "`asyncResource.triggerAsyncId()`", + "apiSymbol": "asyncResource.triggerAsyncId", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/async_context.html#asyncresourcetriggerasyncid", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:async_context", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:async_hooks.asyncResource.triggerAsyncId", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "async_hooks:782c2669a547", + "chapter": "async_hooks", + "label": "AsyncResource", + "signature": "Class: `AsyncResource`", + "apiSymbol": "AsyncResource", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/async_hooks.html#class-asyncresource", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:async_hooks", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:async_hooks.AsyncResource", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "async_hooks:c82d15734e04", + "chapter": "async_hooks", + "label": "AsyncHook", + "signature": "Class: `AsyncHook`", + "apiSymbol": "AsyncHook", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/async_hooks.html#class-asynchook", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:async_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:async_hooks", + "tests": [] + } + } + }, + { + "id": "async_hooks:6dd6e1d9f328", + "chapter": "async_hooks", + "label": "init(asyncId, type, triggerAsyncId, resource)", + "signature": "`init(asyncId, type, triggerAsyncId, resource)`", + "apiSymbol": "init", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/async_hooks.html#initasyncid-type-triggerasyncid-resource", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:async_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:async_hooks", + "tests": [] + } + } + }, + { + "id": "async_hooks:5d0343e7f846", + "chapter": "async_hooks", + "label": "type", + "signature": "`type`", + "apiSymbol": "type", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/async_hooks.html#type", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:async_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:async_hooks", + "tests": [] + } + } + }, + { + "id": "async_hooks:77df2207bbc0", + "chapter": "async_hooks", + "label": "triggerAsyncId", + "signature": "`triggerAsyncId`", + "apiSymbol": "triggerAsyncId", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/async_hooks.html#triggerasyncid", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:async_hooks", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:async_hooks.triggerAsyncId", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "async_hooks:2553d2211150", + "chapter": "async_hooks", + "label": "resource", + "signature": "`resource`", + "apiSymbol": "resource", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/async_hooks.html#resource", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:async_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:async_hooks", + "tests": [] + } + } + }, + { + "id": "async_hooks:9055066129e3", + "chapter": "async_hooks", + "label": "before(asyncId)", + "signature": "`before(asyncId)`", + "apiSymbol": "before", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/async_hooks.html#beforeasyncid", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:before", + "tests": [ + "tests/harness/node-test.test.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:async_hooks", + "tests": [] + } + } + }, + { + "id": "async_hooks:be16de62bff8", + "chapter": "async_hooks", + "label": "after(asyncId)", + "signature": "`after(asyncId)`", + "apiSymbol": "after", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/async_hooks.html#afterasyncid", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:after", + "tests": [ + "tests/harness/node-test.test.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:async_hooks", + "tests": [] + } + } + }, + { + "id": "async_hooks:5ce245f9e752", + "chapter": "async_hooks", + "label": "destroy(asyncId)", + "signature": "`destroy(asyncId)`", + "apiSymbol": "destroy", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/async_hooks.html#destroyasyncid", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:async_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:async_hooks", + "tests": [] + } + } + }, + { + "id": "async_hooks:8e9ee9d50fee", + "chapter": "async_hooks", + "label": "promiseResolve(asyncId)", + "signature": "`promiseResolve(asyncId)`", + "apiSymbol": "promiseResolve", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/async_hooks.html#promiseresolveasyncid", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:async_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:async_hooks", + "tests": [] + } + } + }, + { + "id": "async_hooks:8ab802a152e6", + "chapter": "async_hooks", + "label": "asyncHook.enable()", + "signature": "`asyncHook.enable()`", + "apiSymbol": "asyncHook.enable", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/async_hooks.html#asynchookenable", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:async_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:async_hooks", + "tests": [] + } + } + }, + { + "id": "async_hooks:1a49af7bfe20", + "chapter": "async_hooks", + "label": "asyncHook.disable()", + "signature": "`asyncHook.disable()`", + "apiSymbol": "asyncHook.disable", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/async_hooks.html#asynchookdisable", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:async_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:async_hooks", + "tests": [] + } + } + }, + { + "id": "async_hooks:1d1a013c7220", + "chapter": "async_hooks", + "label": "async_hooks.executionAsyncResource()", + "signature": "`async_hooks.executionAsyncResource()`", + "apiSymbol": "async_hooks.executionAsyncResource", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/async_hooks.html#async_hooksexecutionasyncresource", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:async_hooks", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:async_hooks.executionAsyncResource", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "async_hooks:816820b65a84", + "chapter": "async_hooks", + "label": "async_hooks.executionAsyncId()", + "signature": "`async_hooks.executionAsyncId()`", + "apiSymbol": "async_hooks.executionAsyncId", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/async_hooks.html#async_hooksexecutionasyncid", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:async_hooks", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:async_hooks.executionAsyncId", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "async_hooks:0adfc9f2569a", + "chapter": "async_hooks", + "label": "async_hooks.triggerAsyncId()", + "signature": "`async_hooks.triggerAsyncId()`", + "apiSymbol": "async_hooks.triggerAsyncId", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/async_hooks.html#async_hookstriggerasyncid", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:async_hooks", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:async_hooks.triggerAsyncId", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "async_hooks:6576b1af07e3", + "chapter": "async_hooks", + "label": "asyncWrapProviders", + "signature": "`asyncWrapProviders` Returns: A map of provider types to the corresponding numeric id. This map contains all the event types that might be emitted by the `async_hooks.init()` event.", + "apiSymbol": "asyncWrapProviders", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/async_hooks.html#class-asynchook", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:async_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:async_hooks", + "tests": [] + } + } + }, + { + "id": "async_hooks:f9d106409989", + "chapter": "async_hooks", + "label": "AsyncLocalStorage", + "signature": "Class: `AsyncLocalStorage`", + "apiSymbol": "AsyncLocalStorage", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/async_hooks.html#class-asynclocalstorage", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:AsyncLocalStorage", + "tests": [ + "tests/corpus/2213-async-local-storage.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:async_hooks.AsyncLocalStorage", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "async_hooks:d7f3af6be1fb", + "chapter": "async_hooks", + "label": "async_hooks.createHook(options)", + "signature": "`async_hooks.createHook(options)`", + "apiSymbol": "async_hooks.createHook", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/async_hooks.html#async_hookscreatehookoptions", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:async_hooks", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:async_hooks.createHook", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "async_hooks:6898b0e4be97", + "chapter": "async_hooks", + "label": "Printing in AsyncHook callbacks", + "signature": "Printing in `AsyncHook` callbacks", + "apiSymbol": "AsyncHook", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/async_hooks.html#printing-in-asynchook-callbacks", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:async_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:async_hooks", + "tests": [] + } + } + }, + { + "id": "buffer:1e26176db21e", + "chapter": "buffer", + "label": "Buffer methods are callable with Uint8Array instances", + "signature": "Buffer methods are callable with `Uint8Array` instances", + "apiSymbol": "Uint8Array", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#buffer-methods-are-callable-with-uint8array-instances", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:buffer", + "tests": [] + } + } + }, + { + "id": "buffer:f7837133ce51", + "chapter": "buffer", + "label": "node:buffer", + "signature": "`node:buffer` module APIs", + "apiSymbol": "node:buffer", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#nodebuffer-module-apis", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:buffer", + "tests": [] + } + } + }, + { + "id": "buffer:4ac5c665f147", + "chapter": "buffer", + "label": "MAX_LENGTH", + "signature": "`MAX_LENGTH` Type: {integer} The largest size allowed for a single `Buffer` instance.", + "apiSymbol": "MAX_LENGTH", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#buffer-constants", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:buffer", + "tests": [] + } + } + }, + { + "id": "buffer:f1690b6c126d", + "chapter": "buffer", + "label": "MAX_STRING_LENGTH", + "signature": "`MAX_STRING_LENGTH` Type: {integer} The largest length allowed for a single `string` instance.", + "apiSymbol": "MAX_STRING_LENGTH", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#buffer-constants", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:buffer", + "tests": [] + } + } + }, + { + "id": "buffer:49de2a6fccce", + "chapter": "buffer", + "label": "SlowBuffer", + "signature": "Class: `SlowBuffer`", + "apiSymbol": "SlowBuffer", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#class-slowbuffer", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Use [`Buffer.allocUnsafeSlow()`][] instead.", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:buffer.SlowBuffer", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:057c8995c3ab", + "chapter": "buffer", + "label": "buffer.atob(data)", + "signature": "`buffer.atob(data)`", + "apiSymbol": "buffer.atob", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufferatobdata", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy. Use `Buffer.from(data, 'base64')` instead.", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:buffer.atob", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:4e0f1978e0cb", + "chapter": "buffer", + "label": "buffer.btoa(data)", + "signature": "`buffer.btoa(data)`", + "apiSymbol": "buffer.btoa", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufferbtoadata", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy. Use `buf.toString('base64')` instead.", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:buffer.btoa", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:ea7f6db7a485", + "chapter": "buffer", + "label": "buffer.isAscii(input)", + "signature": "`buffer.isAscii(input)`", + "apiSymbol": "buffer.isAscii", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufferisasciiinput", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:buffer.isAscii", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:71bddcc32c3b", + "chapter": "buffer", + "label": "buffer.isUtf8(input)", + "signature": "`buffer.isUtf8(input)`", + "apiSymbol": "buffer.isUtf8", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufferisutf8input", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:buffer.isUtf8", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:42b26c658cde", + "chapter": "buffer", + "label": "buffer.resolveObjectURL(id)", + "signature": "`buffer.resolveObjectURL(id)`", + "apiSymbol": "buffer.resolveObjectURL", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufferresolveobjecturlid", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:buffer.resolveObjectURL", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:0a8ff17340c5", + "chapter": "buffer", + "label": "buffer.transcode(source, fromEnc, toEnc)", + "signature": "`buffer.transcode(source, fromEnc, toEnc)`", + "apiSymbol": "buffer.transcode", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#buffertranscodesource-fromenc-toenc", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:buffer.transcode", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:3b381797d5c3", + "chapter": "buffer", + "label": "INSPECT_MAX_BYTES", + "signature": "`INSPECT_MAX_BYTES` Type: {integer} **Default:** `50`", + "apiSymbol": "INSPECT_MAX_BYTES", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#nodebuffer-module-apis", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:buffer.INSPECT_MAX_BYTES", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:e1ba51ebecdd", + "chapter": "buffer", + "label": "kMaxLength", + "signature": "`kMaxLength` Type: {integer} The largest size allowed for a single `Buffer` instance.", + "apiSymbol": "kMaxLength", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#nodebuffer-module-apis", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:buffer.kMaxLength", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:0d2ef05ceef9", + "chapter": "buffer", + "label": "kStringMaxLength", + "signature": "`kStringMaxLength` Type: {integer} The largest length allowed for a single `string` instance.", + "apiSymbol": "kStringMaxLength", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#nodebuffer-module-apis", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:buffer.kStringMaxLength", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:8b66b7c33498", + "chapter": "buffer", + "label": "Buffer.from()", + "signature": "`Buffer.from()`, `Buffer.alloc()`, and `Buffer.allocUnsafe()`", + "apiSymbol": "Buffer.from", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufferfrom-bufferalloc-and-bufferallocunsafe", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.Buffer.from", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:d9fc19815ae5", + "chapter": "buffer", + "label": "What makes Buffer.allocUnsafe() and Buffer.allocUnsafeSlow() \"unsafe\"?", + "signature": "What makes `Buffer.allocUnsafe()` and `Buffer.allocUnsafeSlow()` \"unsafe\"?", + "apiSymbol": "Buffer.allocUnsafe", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#what-makes-bufferallocunsafe-and-bufferallocunsafeslow-unsafe", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.Buffer.allocUnsafe", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:27c79f11fc38", + "chapter": "buffer", + "label": "Blob", + "signature": "Class: `Blob`", + "apiSymbol": "Blob", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#class-blob", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:buffer.Blob", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:7af8d47ba3d3", + "chapter": "buffer", + "label": "Blob", + "signature": "`Blob` objects and `MessageChannel`", + "apiSymbol": "Blob", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#blob-objects-and-messagechannel", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:buffer.Blob", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:fd92362208df", + "chapter": "buffer", + "label": "blob.arrayBuffer()", + "signature": "`blob.arrayBuffer()`", + "apiSymbol": "blob.arrayBuffer", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#blobarraybuffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:buffer", + "tests": [] + } + } + }, + { + "id": "buffer:9f1b499f235f", + "chapter": "buffer", + "label": "blob.bytes()", + "signature": "`blob.bytes()`", + "apiSymbol": "blob.bytes", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#blobbytes", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:buffer", + "tests": [] + } + } + }, + { + "id": "buffer:0b785450eeac", + "chapter": "buffer", + "label": "blob.slice([start[, end[, type]]])", + "signature": "`blob.slice([start[, end[, type]]])`", + "apiSymbol": "blob.slice", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#blobslicestart-end-type", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:buffer", + "tests": [] + } + } + }, + { + "id": "buffer:eac9c35da8f8", + "chapter": "buffer", + "label": "blob.stream()", + "signature": "`blob.stream()`", + "apiSymbol": "blob.stream", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#blobstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:buffer", + "tests": [] + } + } + }, + { + "id": "buffer:568587fd78af", + "chapter": "buffer", + "label": "blob.text()", + "signature": "`blob.text()`", + "apiSymbol": "blob.text", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#blobtext", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:buffer", + "tests": [] + } + } + }, + { + "id": "buffer:fe2720024378", + "chapter": "buffer", + "label": "blob.size", + "signature": "`blob.size`", + "apiSymbol": "blob.size", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#blobsize", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:buffer", + "tests": [] + } + } + }, + { + "id": "buffer:23148ab6a5af", + "chapter": "buffer", + "label": "type", + "signature": "`type` Type: {string}", + "apiSymbol": "type", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#class-blob", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:buffer", + "tests": [] + } + } + }, + { + "id": "buffer:ee741d00a630", + "chapter": "buffer", + "label": "Buffer", + "signature": "Class: `Buffer`", + "apiSymbol": "Buffer", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#class-buffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:buffer.Buffer", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:8672343fcd48", + "chapter": "buffer", + "label": "buf.compare(target[, targetStart[, targetEnd[, sourceStart[, sourceEnd]]]])", + "signature": "`buf.compare(target[, targetStart[, targetEnd[, sourceStart[, sourceEnd]]]])`", + "apiSymbol": "buf.compare", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufcomparetarget-targetstart-targetend-sourcestart-sourceend", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.compare", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:ac4a2199c01a", + "chapter": "buffer", + "label": "buf.copy(target[, targetStart[, sourceStart[, sourceEnd]]])", + "signature": "`buf.copy(target[, targetStart[, sourceStart[, sourceEnd]]])`", + "apiSymbol": "buf.copy", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufcopytarget-targetstart-sourcestart-sourceend", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.copy", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:10171a3317cd", + "chapter": "buffer", + "label": "buf.entries()", + "signature": "`buf.entries()`", + "apiSymbol": "buf.entries", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufentries", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:buffer", + "tests": [] + } + } + }, + { + "id": "buffer:efedb81e3160", + "chapter": "buffer", + "label": "buf.equals(otherBuffer)", + "signature": "`buf.equals(otherBuffer)`", + "apiSymbol": "buf.equals", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufequalsotherbuffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.equals", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:e758d4a2f55a", + "chapter": "buffer", + "label": "buf.fill(value[, offset[, end]][, encoding])", + "signature": "`buf.fill(value[, offset[, end]][, encoding])`", + "apiSymbol": "buf.fill", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#buffillvalue-offset-end-encoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.fill", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:036238ad6edd", + "chapter": "buffer", + "label": "buf.includes(value[, byteOffset][, encoding])", + "signature": "`buf.includes(value[, byteOffset][, encoding])`", + "apiSymbol": "buf.includes", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufincludesvalue-byteoffset-encoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.includes", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:4bb2e1c043ab", + "chapter": "buffer", + "label": "buf.indexOf(value[, byteOffset][, encoding])", + "signature": "`buf.indexOf(value[, byteOffset][, encoding])`", + "apiSymbol": "buf.indexOf", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufindexofvalue-byteoffset-encoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.indexOf", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:2d035a951d24", + "chapter": "buffer", + "label": "buf.keys()", + "signature": "`buf.keys()`", + "apiSymbol": "buf.keys", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufkeys", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:buffer", + "tests": [] + } + } + }, + { + "id": "buffer:0f29211b95db", + "chapter": "buffer", + "label": "buf.lastIndexOf(value[, byteOffset][, encoding])", + "signature": "`buf.lastIndexOf(value[, byteOffset][, encoding])`", + "apiSymbol": "buf.lastIndexOf", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#buflastindexofvalue-byteoffset-encoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.lastIndexOf", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:192a90d09b9e", + "chapter": "buffer", + "label": "buf.readBigInt64BE([offset])", + "signature": "`buf.readBigInt64BE([offset])`", + "apiSymbol": "buf.readBigInt64BE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufreadbigint64beoffset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.readBigInt64BE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:4cfbe8f7ea1a", + "chapter": "buffer", + "label": "buf.readBigInt64LE([offset])", + "signature": "`buf.readBigInt64LE([offset])`", + "apiSymbol": "buf.readBigInt64LE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufreadbigint64leoffset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.readBigInt64LE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:884486b34123", + "chapter": "buffer", + "label": "buf.readBigUInt64BE([offset])", + "signature": "`buf.readBigUInt64BE([offset])`", + "apiSymbol": "buf.readBigUInt64BE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufreadbiguint64beoffset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.readBigUInt64BE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:c6a190fd1f05", + "chapter": "buffer", + "label": "buf.readBigUInt64LE([offset])", + "signature": "`buf.readBigUInt64LE([offset])`", + "apiSymbol": "buf.readBigUInt64LE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufreadbiguint64leoffset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.readBigUInt64LE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:f6a623628019", + "chapter": "buffer", + "label": "buf.readDoubleBE([offset])", + "signature": "`buf.readDoubleBE([offset])`", + "apiSymbol": "buf.readDoubleBE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufreaddoublebeoffset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.readDoubleBE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:60511dd6b0c3", + "chapter": "buffer", + "label": "buf.readDoubleLE([offset])", + "signature": "`buf.readDoubleLE([offset])`", + "apiSymbol": "buf.readDoubleLE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufreaddoubleleoffset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.readDoubleLE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:17ddd1fd1bd4", + "chapter": "buffer", + "label": "buf.readFloatBE([offset])", + "signature": "`buf.readFloatBE([offset])`", + "apiSymbol": "buf.readFloatBE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufreadfloatbeoffset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.readFloatBE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:4558a046b49c", + "chapter": "buffer", + "label": "buf.readFloatLE([offset])", + "signature": "`buf.readFloatLE([offset])`", + "apiSymbol": "buf.readFloatLE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufreadfloatleoffset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.readFloatLE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:c15ada36c30b", + "chapter": "buffer", + "label": "buf.readInt8([offset])", + "signature": "`buf.readInt8([offset])`", + "apiSymbol": "buf.readInt8", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufreadint8offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.readInt8", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:ceefb63f8c94", + "chapter": "buffer", + "label": "buf.readInt16BE([offset])", + "signature": "`buf.readInt16BE([offset])`", + "apiSymbol": "buf.readInt16BE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufreadint16beoffset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.readInt16BE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:cb59d1f1c4ca", + "chapter": "buffer", + "label": "buf.readInt16LE([offset])", + "signature": "`buf.readInt16LE([offset])`", + "apiSymbol": "buf.readInt16LE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufreadint16leoffset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.readInt16LE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:5f3c932deb78", + "chapter": "buffer", + "label": "buf.readInt32BE([offset])", + "signature": "`buf.readInt32BE([offset])`", + "apiSymbol": "buf.readInt32BE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufreadint32beoffset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.readInt32BE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:d96791085a61", + "chapter": "buffer", + "label": "buf.readInt32LE([offset])", + "signature": "`buf.readInt32LE([offset])`", + "apiSymbol": "buf.readInt32LE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufreadint32leoffset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.readInt32LE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:1419911d4aad", + "chapter": "buffer", + "label": "buf.readIntBE(offset, byteLength)", + "signature": "`buf.readIntBE(offset, byteLength)`", + "apiSymbol": "buf.readIntBE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufreadintbeoffset-bytelength", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.readIntBE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:4fc8a02f910d", + "chapter": "buffer", + "label": "buf.readIntLE(offset, byteLength)", + "signature": "`buf.readIntLE(offset, byteLength)`", + "apiSymbol": "buf.readIntLE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufreadintleoffset-bytelength", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.readIntLE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:f33bc928a80b", + "chapter": "buffer", + "label": "buf.readUInt8([offset])", + "signature": "`buf.readUInt8([offset])`", + "apiSymbol": "buf.readUInt8", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufreaduint8offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.readUInt8", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:26539eec3cf5", + "chapter": "buffer", + "label": "buf.readUInt16BE([offset])", + "signature": "`buf.readUInt16BE([offset])`", + "apiSymbol": "buf.readUInt16BE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufreaduint16beoffset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.readUInt16BE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:1e574c44adec", + "chapter": "buffer", + "label": "buf.readUInt16LE([offset])", + "signature": "`buf.readUInt16LE([offset])`", + "apiSymbol": "buf.readUInt16LE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufreaduint16leoffset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.readUInt16LE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:d10610de9a80", + "chapter": "buffer", + "label": "buf.readUInt32BE([offset])", + "signature": "`buf.readUInt32BE([offset])`", + "apiSymbol": "buf.readUInt32BE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufreaduint32beoffset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.readUInt32BE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:e9b4ad55de11", + "chapter": "buffer", + "label": "buf.readUInt32LE([offset])", + "signature": "`buf.readUInt32LE([offset])`", + "apiSymbol": "buf.readUInt32LE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufreaduint32leoffset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.readUInt32LE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:ec388bc7047c", + "chapter": "buffer", + "label": "buf.readUIntBE(offset, byteLength)", + "signature": "`buf.readUIntBE(offset, byteLength)`", + "apiSymbol": "buf.readUIntBE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufreaduintbeoffset-bytelength", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.readUIntBE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:c4c91d262648", + "chapter": "buffer", + "label": "buf.readUIntLE(offset, byteLength)", + "signature": "`buf.readUIntLE(offset, byteLength)`", + "apiSymbol": "buf.readUIntLE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufreaduintleoffset-bytelength", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.readUIntLE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:ffed09a95d37", + "chapter": "buffer", + "label": "buf.subarray([start[, end]])", + "signature": "`buf.subarray([start[, end]])`", + "apiSymbol": "buf.subarray", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufsubarraystart-end", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.subarray", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:11d1440f0137", + "chapter": "buffer", + "label": "buf.slice([start[, end]])", + "signature": "`buf.slice([start[, end]])`", + "apiSymbol": "buf.slice", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufslicestart-end", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Use [`buf.subarray`][] instead.", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.slice", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:e9fdf934fb29", + "chapter": "buffer", + "label": "buf.swap16()", + "signature": "`buf.swap16()`", + "apiSymbol": "buf.swap16", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufswap16", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.swap16", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:6f11fc97710d", + "chapter": "buffer", + "label": "buf.swap32()", + "signature": "`buf.swap32()`", + "apiSymbol": "buf.swap32", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufswap32", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.swap32", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:d2b36e039323", + "chapter": "buffer", + "label": "buf.swap64()", + "signature": "`buf.swap64()`", + "apiSymbol": "buf.swap64", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufswap64", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.swap64", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:0556466f3199", + "chapter": "buffer", + "label": "buf.toJSON()", + "signature": "`buf.toJSON()`", + "apiSymbol": "buf.toJSON", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#buftojson", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.toJSON", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:c8bddf10fb87", + "chapter": "buffer", + "label": "buf.toString([encoding[, start[, end]]])", + "signature": "`buf.toString([encoding[, start[, end]]])`", + "apiSymbol": "buf.toString", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#buftostringencoding-start-end", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.toString", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:d7428a07c1d1", + "chapter": "buffer", + "label": "buf.values()", + "signature": "`buf.values()`", + "apiSymbol": "buf.values", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufvalues", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:buffer", + "tests": [] + } + } + }, + { + "id": "buffer:9bc687c91608", + "chapter": "buffer", + "label": "buf.write(string[, offset[, length]][, encoding])", + "signature": "`buf.write(string[, offset[, length]][, encoding])`", + "apiSymbol": "buf.write", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufwritestring-offset-length-encoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.write", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:a0f65696c0ff", + "chapter": "buffer", + "label": "buf.writeBigInt64BE(value[, offset])", + "signature": "`buf.writeBigInt64BE(value[, offset])`", + "apiSymbol": "buf.writeBigInt64BE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufwritebigint64bevalue-offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.writeBigInt64BE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:bec4d18deb28", + "chapter": "buffer", + "label": "buf.writeBigInt64LE(value[, offset])", + "signature": "`buf.writeBigInt64LE(value[, offset])`", + "apiSymbol": "buf.writeBigInt64LE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufwritebigint64levalue-offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.writeBigInt64LE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:03fe65c4dcae", + "chapter": "buffer", + "label": "buf.writeBigUInt64BE(value[, offset])", + "signature": "`buf.writeBigUInt64BE(value[, offset])`", + "apiSymbol": "buf.writeBigUInt64BE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufwritebiguint64bevalue-offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.writeBigUInt64BE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:16a200c1a65f", + "chapter": "buffer", + "label": "buf.writeBigUInt64LE(value[, offset])", + "signature": "`buf.writeBigUInt64LE(value[, offset])`", + "apiSymbol": "buf.writeBigUInt64LE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufwritebiguint64levalue-offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.writeBigUInt64LE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:4674d4e7f8c8", + "chapter": "buffer", + "label": "buf.writeDoubleBE(value[, offset])", + "signature": "`buf.writeDoubleBE(value[, offset])`", + "apiSymbol": "buf.writeDoubleBE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufwritedoublebevalue-offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.writeDoubleBE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:d7ad065243e0", + "chapter": "buffer", + "label": "buf.writeDoubleLE(value[, offset])", + "signature": "`buf.writeDoubleLE(value[, offset])`", + "apiSymbol": "buf.writeDoubleLE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufwritedoublelevalue-offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.writeDoubleLE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:757ffb8c8b58", + "chapter": "buffer", + "label": "buf.writeFloatBE(value[, offset])", + "signature": "`buf.writeFloatBE(value[, offset])`", + "apiSymbol": "buf.writeFloatBE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufwritefloatbevalue-offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.writeFloatBE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:e13ba4f75fbf", + "chapter": "buffer", + "label": "buf.writeFloatLE(value[, offset])", + "signature": "`buf.writeFloatLE(value[, offset])`", + "apiSymbol": "buf.writeFloatLE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufwritefloatlevalue-offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.writeFloatLE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:42838a6743c2", + "chapter": "buffer", + "label": "buf.writeInt8(value[, offset])", + "signature": "`buf.writeInt8(value[, offset])`", + "apiSymbol": "buf.writeInt8", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufwriteint8value-offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.writeInt8", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:fc788ef34e1d", + "chapter": "buffer", + "label": "buf.writeInt16BE(value[, offset])", + "signature": "`buf.writeInt16BE(value[, offset])`", + "apiSymbol": "buf.writeInt16BE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufwriteint16bevalue-offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.writeInt16BE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:3e3c7938cbb6", + "chapter": "buffer", + "label": "buf.writeInt16LE(value[, offset])", + "signature": "`buf.writeInt16LE(value[, offset])`", + "apiSymbol": "buf.writeInt16LE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufwriteint16levalue-offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.writeInt16LE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:7153b99eb633", + "chapter": "buffer", + "label": "buf.writeInt32BE(value[, offset])", + "signature": "`buf.writeInt32BE(value[, offset])`", + "apiSymbol": "buf.writeInt32BE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufwriteint32bevalue-offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.writeInt32BE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:5a754188c53c", + "chapter": "buffer", + "label": "buf.writeInt32LE(value[, offset])", + "signature": "`buf.writeInt32LE(value[, offset])`", + "apiSymbol": "buf.writeInt32LE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufwriteint32levalue-offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.writeInt32LE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:19845f3017e2", + "chapter": "buffer", + "label": "buf.writeIntBE(value, offset, byteLength)", + "signature": "`buf.writeIntBE(value, offset, byteLength)`", + "apiSymbol": "buf.writeIntBE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufwriteintbevalue-offset-bytelength", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.writeIntBE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:2e1c255cdf2e", + "chapter": "buffer", + "label": "buf.writeIntLE(value, offset, byteLength)", + "signature": "`buf.writeIntLE(value, offset, byteLength)`", + "apiSymbol": "buf.writeIntLE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufwriteintlevalue-offset-bytelength", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.writeIntLE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:e761416f0593", + "chapter": "buffer", + "label": "buf.writeUInt8(value[, offset])", + "signature": "`buf.writeUInt8(value[, offset])`", + "apiSymbol": "buf.writeUInt8", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufwriteuint8value-offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.writeUInt8", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:4eae6fa8da16", + "chapter": "buffer", + "label": "buf.writeUInt16BE(value[, offset])", + "signature": "`buf.writeUInt16BE(value[, offset])`", + "apiSymbol": "buf.writeUInt16BE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufwriteuint16bevalue-offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.writeUInt16BE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:b4e4901ce98b", + "chapter": "buffer", + "label": "buf.writeUInt16LE(value[, offset])", + "signature": "`buf.writeUInt16LE(value[, offset])`", + "apiSymbol": "buf.writeUInt16LE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufwriteuint16levalue-offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.writeUInt16LE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:d02c17904301", + "chapter": "buffer", + "label": "buf.writeUInt32BE(value[, offset])", + "signature": "`buf.writeUInt32BE(value[, offset])`", + "apiSymbol": "buf.writeUInt32BE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufwriteuint32bevalue-offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.writeUInt32BE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:df1b0aefcd1b", + "chapter": "buffer", + "label": "buf.writeUInt32LE(value[, offset])", + "signature": "`buf.writeUInt32LE(value[, offset])`", + "apiSymbol": "buf.writeUInt32LE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufwriteuint32levalue-offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.writeUInt32LE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:8e583bbdf7ba", + "chapter": "buffer", + "label": "buf.writeUIntBE(value, offset, byteLength)", + "signature": "`buf.writeUIntBE(value, offset, byteLength)`", + "apiSymbol": "buf.writeUIntBE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufwriteuintbevalue-offset-bytelength", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.writeUIntBE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:3919144cc9db", + "chapter": "buffer", + "label": "buf.writeUIntLE(value, offset, byteLength)", + "signature": "`buf.writeUIntLE(value, offset, byteLength)`", + "apiSymbol": "buf.writeUIntLE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufwriteuintlevalue-offset-bytelength", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:buffer.buf.writeUIntLE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:a12afe3296c9", + "chapter": "buffer", + "label": "poolSize", + "signature": "`poolSize` Type: {integer} **Default:** `8192`", + "apiSymbol": "poolSize", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#class-buffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:buffer", + "tests": [] + } + } + }, + { + "id": "buffer:2d6a3ef75d98", + "chapter": "buffer", + "label": "[index]", + "signature": "`[index]` `index` {integer}", + "apiSymbol": "", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#class-buffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:buffer", + "tests": [] + } + } + }, + { + "id": "buffer:ee0685658c0f", + "chapter": "buffer", + "label": "buffer", + "signature": "`buffer` Type: {ArrayBuffer} The underlying `ArrayBuffer` object based on which this `Buffer` object is created.", + "apiSymbol": "buffer", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#class-buffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:buffer", + "tests": [] + } + } + }, + { + "id": "buffer:7100316c9e70", + "chapter": "buffer", + "label": "byteOffset", + "signature": "`byteOffset` Type: {integer} The `byteOffset` of the `Buffer`'s underlying `ArrayBuffer` object.", + "apiSymbol": "byteOffset", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#class-buffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:buffer", + "tests": [] + } + } + }, + { + "id": "buffer:9658d24dfd74", + "chapter": "buffer", + "label": "length", + "signature": "`length` Type: {integer}", + "apiSymbol": "length", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#class-buffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:buffer", + "tests": [] + } + } + }, + { + "id": "buffer:dc280baf2e72", + "chapter": "buffer", + "label": "buf.parent", + "signature": "`buf.parent`", + "apiSymbol": "buf.parent", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#bufparent", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Use [`buf.buffer`][] instead.", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:buffer", + "tests": [] + } + } + }, + { + "id": "buffer:803f990625f6", + "chapter": "buffer", + "label": "File", + "signature": "Class: `File`", + "apiSymbol": "File", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#class-file", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:buffer.File", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "buffer:3c4f6df8cde2", + "chapter": "buffer", + "label": "name", + "signature": "`name` Type: {string}", + "apiSymbol": "name", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#class-file", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:buffer", + "tests": [] + } + } + }, + { + "id": "buffer:0e7d3e3ae7de", + "chapter": "buffer", + "label": "lastModified", + "signature": "`lastModified` Type: {number}", + "apiSymbol": "lastModified", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/buffer.html#class-file", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:buffer", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:buffer", + "tests": [] + } + } + }, + { + "id": "child_process:e9644f54deb2", + "chapter": "child_process", + "label": "Spawning .bat and .cmd files on Windows", + "signature": "Spawning `.bat` and `.cmd` files on Windows", + "apiSymbol": ".bat", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/child_process.html#spawning-bat-and-cmd-files-on-windows", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:child_process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:child_process", + "tests": [] + } + } + }, + { + "id": "child_process:f47f2a8c7ca3", + "chapter": "child_process", + "label": "child_process.exec(command[, options][, callback])", + "signature": "`child_process.exec(command[, options][, callback])`", + "apiSymbol": "child_process.exec", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/child_process.html#child_processexeccommand-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:child_process", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:child_process.exec", + "tests": [] + } + } + }, + { + "id": "child_process:208c270740f5", + "chapter": "child_process", + "label": "child_process.execFile(file[, args][, options][, callback])", + "signature": "`child_process.execFile(file[, args][, options][, callback])`", + "apiSymbol": "child_process.execFile", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/child_process.html#child_processexecfilefile-args-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.child_process.execFile", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:child_process.execFile", + "tests": [] + } + } + }, + { + "id": "child_process:7f42373d1e50", + "chapter": "child_process", + "label": "child_process.fork(modulePath[, args][, options])", + "signature": "`child_process.fork(modulePath[, args][, options])`", + "apiSymbol": "child_process.fork", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/child_process.html#child_processforkmodulepath-args-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:child_process", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:child_process.fork", + "tests": [] + } + } + }, + { + "id": "child_process:68579f790657", + "chapter": "child_process", + "label": "child_process.spawn(command[, args][, options])", + "signature": "`child_process.spawn(command[, args][, options])`", + "apiSymbol": "child_process.spawn", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/child_process.html#child_processspawncommand-args-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.child_process.spawn", + "tests": [ + "tests/corpus/1361-spawn-events.ts", + "tests/corpus/1565-spawn-pipe-streams.ts" + ] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:child_process.spawn", + "tests": [] + } + } + }, + { + "id": "child_process:abebcbcb71aa", + "chapter": "child_process", + "label": "options.detached", + "signature": "`options.detached`", + "apiSymbol": "options.detached", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/child_process.html#optionsdetached", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:child_process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:child_process", + "tests": [] + } + } + }, + { + "id": "child_process:2b641feb4d00", + "chapter": "child_process", + "label": "options.stdio", + "signature": "`options.stdio`", + "apiSymbol": "options.stdio", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/child_process.html#optionsstdio", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:child_process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:child_process", + "tests": [] + } + } + }, + { + "id": "child_process:80ea5d759f8a", + "chapter": "child_process", + "label": "child_process.execFileSync(file[, args][, options])", + "signature": "`child_process.execFileSync(file[, args][, options])`", + "apiSymbol": "child_process.execFileSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/child_process.html#child_processexecfilesyncfile-args-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.child_process.execFileSync", + "tests": [ + "tests/corpus/1361-spawn-events.ts", + "tests/corpus/1565-spawn-pipe-streams.ts" + ] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:child_process.execFileSync", + "tests": [] + } + } + }, + { + "id": "child_process:79505e139e9d", + "chapter": "child_process", + "label": "child_process.execSync(command[, options])", + "signature": "`child_process.execSync(command[, options])`", + "apiSymbol": "child_process.execSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/child_process.html#child_processexecsynccommand-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.child_process.execSync", + "tests": [ + "tests/corpus/1361-spawn-events.ts", + "tests/corpus/1565-spawn-pipe-streams.ts" + ] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:child_process.execSync", + "tests": [] + } + } + }, + { + "id": "child_process:47169de929e0", + "chapter": "child_process", + "label": "child_process.spawnSync(command[, args][, options])", + "signature": "`child_process.spawnSync(command[, args][, options])`", + "apiSymbol": "child_process.spawnSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/child_process.html#child_processspawnsynccommand-args-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.child_process.spawnSync", + "tests": [ + "tests/corpus/1361-spawn-events.ts", + "tests/corpus/1565-spawn-pipe-streams.ts" + ] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:child_process.spawnSync", + "tests": [] + } + } + }, + { + "id": "child_process:9a9c99d0f1ba", + "chapter": "child_process", + "label": "maxBuffer", + "signature": "`maxBuffer` and Unicode", + "apiSymbol": "maxBuffer", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/child_process.html#maxbuffer-and-unicode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:child_process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:child_process", + "tests": [] + } + } + }, + { + "id": "child_process:6f70df179b46", + "chapter": "child_process", + "label": "ChildProcess", + "signature": "Class: `ChildProcess`", + "apiSymbol": "ChildProcess", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/child_process.html#class-childprocess", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:child_process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:child_process", + "tests": [] + } + } + }, + { + "id": "child_process:8b0c27fbae1f", + "chapter": "child_process", + "label": "subprocess.disconnect()", + "signature": "`subprocess.disconnect()`", + "apiSymbol": "subprocess.disconnect", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/child_process.html#subprocessdisconnect", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:child_process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:child_process", + "tests": [] + } + } + }, + { + "id": "child_process:0099993e166e", + "chapter": "child_process", + "label": "subprocess.kill([signal])", + "signature": "`subprocess.kill([signal])`", + "apiSymbol": "subprocess.kill", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/child_process.html#subprocesskillsignal", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:child_process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:child_process", + "tests": [] + } + } + }, + { + "id": "child_process:4665a40edf20", + "chapter": "child_process", + "label": "subprocess[Symbol.dispose]()", + "signature": "`subprocess[Symbol.dispose]()`", + "apiSymbol": "subprocess", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/child_process.html#subprocesssymboldispose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:child_process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:child_process", + "tests": [] + } + } + }, + { + "id": "child_process:5851394dacfe", + "chapter": "child_process", + "label": "subprocess.ref()", + "signature": "`subprocess.ref()`", + "apiSymbol": "subprocess.ref", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/child_process.html#subprocessref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:child_process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:child_process", + "tests": [] + } + } + }, + { + "id": "child_process:4efd845b6ae7", + "chapter": "child_process", + "label": "subprocess.send(message[, sendHandle[, options]][, callback])", + "signature": "`subprocess.send(message[, sendHandle[, options]][, callback])`", + "apiSymbol": "subprocess.send", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/child_process.html#subprocesssendmessage-sendhandle-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:child_process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:child_process", + "tests": [] + } + } + }, + { + "id": "child_process:5342bcc81b6f", + "chapter": "child_process", + "label": "subprocess.unref()", + "signature": "`subprocess.unref()`", + "apiSymbol": "subprocess.unref", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/child_process.html#subprocessunref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:child_process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:child_process", + "tests": [] + } + } + }, + { + "id": "child_process:0212900a85b9", + "chapter": "child_process", + "label": "channel", + "signature": "`channel` Type: {Object} A pipe representing the IPC channel to the child process.", + "apiSymbol": "channel", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/child_process.html#class-childprocess", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:child_process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:child_process", + "tests": [] + } + } + }, + { + "id": "child_process:ac51764b6efd", + "chapter": "child_process", + "label": "subprocess.channel.ref()", + "signature": "`subprocess.channel.ref()`", + "apiSymbol": "subprocess.channel.ref", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/child_process.html#subprocesschannelref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:child_process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:child_process", + "tests": [] + } + } + }, + { + "id": "child_process:ed0094174606", + "chapter": "child_process", + "label": "subprocess.channel.unref()", + "signature": "`subprocess.channel.unref()`", + "apiSymbol": "subprocess.channel.unref", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/child_process.html#subprocesschannelunref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:child_process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:child_process", + "tests": [] + } + } + }, + { + "id": "child_process:9bdf04cea3e8", + "chapter": "child_process", + "label": "connected", + "signature": "`connected` Type: {boolean} Set to `false` after `subprocess.disconnect()` is called.", + "apiSymbol": "connected", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/child_process.html#class-childprocess", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:child_process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:child_process", + "tests": [] + } + } + }, + { + "id": "child_process:4e67eefefd3a", + "chapter": "child_process", + "label": "exitCode", + "signature": "`exitCode` Type: {integer}", + "apiSymbol": "exitCode", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/child_process.html#class-childprocess", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:child_process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:child_process", + "tests": [] + } + } + }, + { + "id": "child_process:b0811a57c0c9", + "chapter": "child_process", + "label": "killed", + "signature": "`killed` Type: {boolean} Set to `true` after `subprocess.kill()` is used to successfully send a signal to the child process.", + "apiSymbol": "killed", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/child_process.html#class-childprocess", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:child_process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:child_process", + "tests": [] + } + } + }, + { + "id": "child_process:bc5b80a98b48", + "chapter": "child_process", + "label": "pid", + "signature": "`pid` Type: {integer|undefined}", + "apiSymbol": "pid", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/child_process.html#class-childprocess", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:child_process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:child_process", + "tests": [] + } + } + }, + { + "id": "child_process:ecd0e632d88a", + "chapter": "child_process", + "label": "signalCode", + "signature": "`signalCode` Type: {string|null}", + "apiSymbol": "signalCode", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/child_process.html#class-childprocess", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:child_process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:child_process", + "tests": [] + } + } + }, + { + "id": "child_process:31d67b68a96d", + "chapter": "child_process", + "label": "spawnargs", + "signature": "`spawnargs` Type: {Array}", + "apiSymbol": "spawnargs", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/child_process.html#class-childprocess", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:child_process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:child_process", + "tests": [] + } + } + }, + { + "id": "child_process:3afbde068ec9", + "chapter": "child_process", + "label": "spawnfile", + "signature": "`spawnfile` Type: {string}", + "apiSymbol": "spawnfile", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/child_process.html#class-childprocess", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:child_process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:child_process", + "tests": [] + } + } + }, + { + "id": "child_process:ee449711cf20", + "chapter": "child_process", + "label": "stderr", + "signature": "`stderr` Type: {stream.Readable|null|undefined}", + "apiSymbol": "stderr", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/child_process.html#class-childprocess", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:child_process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:child_process", + "tests": [] + } + } + }, + { + "id": "child_process:468dee97bdda", + "chapter": "child_process", + "label": "stdin", + "signature": "`stdin` Type: {stream.Writable|null|undefined}", + "apiSymbol": "stdin", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/child_process.html#class-childprocess", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:child_process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:child_process", + "tests": [] + } + } + }, + { + "id": "child_process:673be4a4f0af", + "chapter": "child_process", + "label": "stdio", + "signature": "`stdio` Type: {Array}", + "apiSymbol": "stdio", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/child_process.html#class-childprocess", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:child_process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:child_process", + "tests": [] + } + } + }, + { + "id": "child_process:2a294374a4c4", + "chapter": "child_process", + "label": "stdout", + "signature": "`stdout` Type: {stream.Readable|null|undefined}", + "apiSymbol": "stdout", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/child_process.html#class-childprocess", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:child_process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:child_process", + "tests": [] + } + } + }, + { + "id": "child_process:215cd22379d9", + "chapter": "child_process", + "label": "'close'", + "signature": "Event: `'close'`", + "apiSymbol": "'close'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/child_process.html#event-close", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:child_process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:child_process", + "tests": [] + } + } + }, + { + "id": "child_process:40cfcd7f8ece", + "chapter": "child_process", + "label": "'disconnect'", + "signature": "Event: `'disconnect'`", + "apiSymbol": "'disconnect'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/child_process.html#event-disconnect", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:child_process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:child_process", + "tests": [] + } + } + }, + { + "id": "child_process:184191eb8629", + "chapter": "child_process", + "label": "'error'", + "signature": "Event: `'error'`", + "apiSymbol": "'error'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/child_process.html#event-error", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:child_process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:child_process", + "tests": [] + } + } + }, + { + "id": "child_process:1dd54cb977fe", + "chapter": "child_process", + "label": "'exit'", + "signature": "Event: `'exit'`", + "apiSymbol": "'exit'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/child_process.html#event-exit", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:child_process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:child_process", + "tests": [] + } + } + }, + { + "id": "child_process:cf1754c71d45", + "chapter": "child_process", + "label": "'message'", + "signature": "Event: `'message'`", + "apiSymbol": "'message'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/child_process.html#event-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:child_process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:child_process", + "tests": [] + } + } + }, + { + "id": "child_process:3094f339cf99", + "chapter": "child_process", + "label": "'spawn'", + "signature": "Event: `'spawn'`", + "apiSymbol": "'spawn'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/child_process.html#event-spawn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:child_process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:child_process", + "tests": [] + } + } + }, + { + "id": "cluster:a2f3c70d4b2b", + "chapter": "cluster", + "label": "Worker", + "signature": "Class: `Worker`", + "apiSymbol": "Worker", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/cluster.html#class-worker", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:cluster", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:cluster", + "tests": [] + } + } + }, + { + "id": "cluster:907b84307f2c", + "chapter": "cluster", + "label": "worker.disconnect()", + "signature": "`worker.disconnect()`", + "apiSymbol": "worker.disconnect", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/cluster.html#workerdisconnect", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:cluster", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:cluster", + "tests": [] + } + } + }, + { + "id": "cluster:797617eb8b67", + "chapter": "cluster", + "label": "worker.isConnected()", + "signature": "`worker.isConnected()`", + "apiSymbol": "worker.isConnected", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/cluster.html#workerisconnected", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:cluster", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:cluster", + "tests": [] + } + } + }, + { + "id": "cluster:ced794997b27", + "chapter": "cluster", + "label": "worker.isDead()", + "signature": "`worker.isDead()`", + "apiSymbol": "worker.isDead", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/cluster.html#workerisdead", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:cluster", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:cluster", + "tests": [] + } + } + }, + { + "id": "cluster:d7b8a5ae8983", + "chapter": "cluster", + "label": "worker.kill([signal])", + "signature": "`worker.kill([signal])`", + "apiSymbol": "worker.kill", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/cluster.html#workerkillsignal", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:cluster", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:cluster", + "tests": [] + } + } + }, + { + "id": "cluster:e5a8eca75432", + "chapter": "cluster", + "label": "worker.send(message[, sendHandle[, options]][, callback])", + "signature": "`worker.send(message[, sendHandle[, options]][, callback])`", + "apiSymbol": "worker.send", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/cluster.html#workersendmessage-sendhandle-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:cluster", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:cluster", + "tests": [] + } + } + }, + { + "id": "cluster:43f1ee9ec417", + "chapter": "cluster", + "label": "exitedAfterDisconnect", + "signature": "`exitedAfterDisconnect` Type: {boolean}", + "apiSymbol": "exitedAfterDisconnect", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/cluster.html#class-worker", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:cluster", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:cluster", + "tests": [] + } + } + }, + { + "id": "cluster:5b52c572e788", + "chapter": "cluster", + "label": "id", + "signature": "`id` Type: {integer}", + "apiSymbol": "id", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/cluster.html#class-worker", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:cluster", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:cluster", + "tests": [] + } + } + }, + { + "id": "cluster:eb657c2022e6", + "chapter": "cluster", + "label": "process", + "signature": "`process` Type: {ChildProcess}", + "apiSymbol": "process", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/cluster.html#class-worker", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:cluster", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:cluster", + "tests": [] + } + } + }, + { + "id": "cluster:31f39c6892bc", + "chapter": "cluster", + "label": "'disconnect'", + "signature": "Event: `'disconnect'`", + "apiSymbol": "'disconnect'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/cluster.html#event-disconnect", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:cluster", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:cluster", + "tests": [] + } + } + }, + { + "id": "cluster:a2eca8edee57", + "chapter": "cluster", + "label": "'error'", + "signature": "Event: `'error'`", + "apiSymbol": "'error'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/cluster.html#event-error", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:cluster", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:cluster", + "tests": [] + } + } + }, + { + "id": "cluster:fa1a393e3bb6", + "chapter": "cluster", + "label": "'exit'", + "signature": "Event: `'exit'`", + "apiSymbol": "'exit'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/cluster.html#event-exit", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:cluster", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:cluster", + "tests": [] + } + } + }, + { + "id": "cluster:865458d82d7a", + "chapter": "cluster", + "label": "'listening'", + "signature": "Event: `'listening'`", + "apiSymbol": "'listening'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/cluster.html#event-listening", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:cluster", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:cluster", + "tests": [] + } + } + }, + { + "id": "cluster:53778d100561", + "chapter": "cluster", + "label": "'message'", + "signature": "Event: `'message'`", + "apiSymbol": "'message'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/cluster.html#event-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:cluster", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:cluster", + "tests": [] + } + } + }, + { + "id": "cluster:f24b23e3064e", + "chapter": "cluster", + "label": "'online'", + "signature": "Event: `'online'`", + "apiSymbol": "'online'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/cluster.html#event-online", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:cluster", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:cluster", + "tests": [] + } + } + }, + { + "id": "cluster:513f9f07bbc3", + "chapter": "cluster", + "label": "cluster.disconnect([callback])", + "signature": "`cluster.disconnect([callback])`", + "apiSymbol": "cluster.disconnect", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/cluster.html#clusterdisconnectcallback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:cluster", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:cluster", + "tests": [] + } + } + }, + { + "id": "cluster:603004ae11ec", + "chapter": "cluster", + "label": "cluster.fork([env])", + "signature": "`cluster.fork([env])`", + "apiSymbol": "cluster.fork", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/cluster.html#clusterforkenv", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:cluster", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:cluster", + "tests": [] + } + } + }, + { + "id": "cluster:ec2151dccc18", + "chapter": "cluster", + "label": "cluster.setupMaster([settings])", + "signature": "`cluster.setupMaster([settings])`", + "apiSymbol": "cluster.setupMaster", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/cluster.html#clustersetupmastersettings", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:cluster", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:cluster", + "tests": [] + } + } + }, + { + "id": "cluster:3c5104745205", + "chapter": "cluster", + "label": "cluster.setupPrimary([settings])", + "signature": "`cluster.setupPrimary([settings])`", + "apiSymbol": "cluster.setupPrimary", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/cluster.html#clustersetupprimarysettings", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:cluster", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:cluster", + "tests": [] + } + } + }, + { + "id": "cluster:585ce489996d", + "chapter": "cluster", + "label": "cluster.isMaster", + "signature": "`cluster.isMaster`", + "apiSymbol": "cluster.isMaster", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/cluster.html#clusterismaster", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.cluster.isMaster", + "tests": [ + "tests/corpus/957-builtins-namespace.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:cluster", + "tests": [] + } + } + }, + { + "id": "cluster:d581a10dce7a", + "chapter": "cluster", + "label": "isPrimary", + "signature": "`isPrimary` Type: {boolean}", + "apiSymbol": "isPrimary", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/cluster.html", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.cluster.isPrimary", + "tests": [ + "tests/corpus/957-builtins-namespace.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:cluster", + "tests": [] + } + } + }, + { + "id": "cluster:3086f12a11d7", + "chapter": "cluster", + "label": "isWorker", + "signature": "`isWorker` Type: {boolean}", + "apiSymbol": "isWorker", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/cluster.html", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.cluster.isWorker", + "tests": [ + "tests/corpus/957-builtins-namespace.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:cluster", + "tests": [] + } + } + }, + { + "id": "cluster:55e8f77822d1", + "chapter": "cluster", + "label": "cluster.schedulingPolicy", + "signature": "`cluster.schedulingPolicy`", + "apiSymbol": "cluster.schedulingPolicy", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/cluster.html#clusterschedulingpolicy", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:cluster", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:cluster", + "tests": [] + } + } + }, + { + "id": "cluster:06708de43d4d", + "chapter": "cluster", + "label": "settings", + "signature": "`settings` Type: {Object}", + "apiSymbol": "settings", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/cluster.html", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:cluster", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:cluster", + "tests": [] + } + } + }, + { + "id": "cluster:30af577cb351", + "chapter": "cluster", + "label": "worker", + "signature": "`worker` Type: {Object}", + "apiSymbol": "worker", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/cluster.html", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:cluster", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:cluster", + "tests": [] + } + } + }, + { + "id": "cluster:8404aafb01df", + "chapter": "cluster", + "label": "workers", + "signature": "`workers` Type: {Object}", + "apiSymbol": "workers", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/cluster.html", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:cluster", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:cluster", + "tests": [] + } + } + }, + { + "id": "cluster:e85acbbc2103", + "chapter": "cluster", + "label": "'disconnect'", + "signature": "Event: `'disconnect'`", + "apiSymbol": "'disconnect'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/cluster.html#event-disconnect_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:cluster", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:cluster", + "tests": [] + } + } + }, + { + "id": "cluster:0125161acbcd", + "chapter": "cluster", + "label": "'exit'", + "signature": "Event: `'exit'`", + "apiSymbol": "'exit'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/cluster.html#event-exit_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:cluster", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:cluster", + "tests": [] + } + } + }, + { + "id": "cluster:828e25c5eabb", + "chapter": "cluster", + "label": "'fork'", + "signature": "Event: `'fork'`", + "apiSymbol": "'fork'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/cluster.html#event-fork", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:cluster", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:cluster", + "tests": [] + } + } + }, + { + "id": "cluster:86dbf766e47a", + "chapter": "cluster", + "label": "'listening'", + "signature": "Event: `'listening'`", + "apiSymbol": "'listening'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/cluster.html#event-listening_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:cluster", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:cluster", + "tests": [] + } + } + }, + { + "id": "cluster:9bdfd1a39174", + "chapter": "cluster", + "label": "'message'", + "signature": "Event: `'message'`", + "apiSymbol": "'message'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/cluster.html#event-message_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:cluster", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:cluster", + "tests": [] + } + } + }, + { + "id": "cluster:7cc469a78395", + "chapter": "cluster", + "label": "'online'", + "signature": "Event: `'online'`", + "apiSymbol": "'online'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/cluster.html#event-online_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:cluster", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:cluster", + "tests": [] + } + } + }, + { + "id": "cluster:4c8ea265d664", + "chapter": "cluster", + "label": "'setup'", + "signature": "Event: `'setup'`", + "apiSymbol": "'setup'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/cluster.html#event-setup", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:cluster", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:cluster", + "tests": [] + } + } + }, + { + "id": "console:d5e7718ea460", + "chapter": "console", + "label": "console.profile([label])", + "signature": "`console.profile([label])`", + "apiSymbol": "console.profile", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/console.html#consoleprofilelabel", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:console", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:console", + "tests": [] + } + } + }, + { + "id": "console:0d1dfa0b9e5f", + "chapter": "console", + "label": "console.profileEnd([label])", + "signature": "`console.profileEnd([label])`", + "apiSymbol": "console.profileEnd", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/console.html#consoleprofileendlabel", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:console", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:console", + "tests": [] + } + } + }, + { + "id": "console:412a0f4ec0cd", + "chapter": "console", + "label": "console.timeStamp([label])", + "signature": "`console.timeStamp([label])`", + "apiSymbol": "console.timeStamp", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/console.html#consoletimestamplabel", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:console", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:console", + "tests": [] + } + } + }, + { + "id": "console:10b99ddc9b4a", + "chapter": "console", + "label": "Console", + "signature": "Class: `Console`", + "apiSymbol": "Console", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/console.html#class-console", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:console", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:console.Console", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "console:a7b252061a64", + "chapter": "console", + "label": "console.assert(value[, ...message])", + "signature": "`console.assert(value[, ...message])`", + "apiSymbol": "console.assert", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/console.html#consoleassertvalue-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:console", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:console.assert", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "console:14c8a00abc52", + "chapter": "console", + "label": "console.clear()", + "signature": "`console.clear()`", + "apiSymbol": "console.clear", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/console.html#consoleclear", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:console", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:console.clear", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "console:3239f2dcfbc7", + "chapter": "console", + "label": "console.count([label])", + "signature": "`console.count([label])`", + "apiSymbol": "console.count", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/console.html#consolecountlabel", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:console", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:console.count", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "console:38a3e7029f90", + "chapter": "console", + "label": "console.countReset([label])", + "signature": "`console.countReset([label])`", + "apiSymbol": "console.countReset", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/console.html#consolecountresetlabel", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:console", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:console.countReset", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "console:9110e9b01ca9", + "chapter": "console", + "label": "console.debug(data[, ...args])", + "signature": "`console.debug(data[, ...args])`", + "apiSymbol": "console.debug", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/console.html#consoledebugdata-args", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:console.debug", + "tests": [ + "tests/corpus/1460-console-error-warn.ts", + "tests/corpus/2440-console-inspect-args.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:console.debug", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "console:6bb0882d404c", + "chapter": "console", + "label": "console.dir(obj[, options])", + "signature": "`console.dir(obj[, options])`", + "apiSymbol": "console.dir", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/console.html#consoledirobj-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:console", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:console.dir", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "console:3032d448c24b", + "chapter": "console", + "label": "console.dirxml(...data)", + "signature": "`console.dirxml(...data)`", + "apiSymbol": "console.dirxml", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/console.html#consoledirxmldata", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:console", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:console", + "tests": [] + } + } + }, + { + "id": "console:8716b01c7a7c", + "chapter": "console", + "label": "console.error([data][, ...args])", + "signature": "`console.error([data][, ...args])`", + "apiSymbol": "console.error", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/console.html#consoleerrordata-args", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:console.error", + "tests": [ + "tests/corpus/1460-console-error-warn.ts", + "tests/corpus/2440-console-inspect-args.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:console.error", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "console:77ee6e5ea308", + "chapter": "console", + "label": "console.group([...label])", + "signature": "`console.group([...label])`", + "apiSymbol": "console.group", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/console.html#consolegrouplabel", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:console", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:console.group", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "console:b348d794e50a", + "chapter": "console", + "label": "console.groupCollapsed()", + "signature": "`console.groupCollapsed()`", + "apiSymbol": "console.groupCollapsed", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/console.html#consolegroupcollapsed", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:console", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:console", + "tests": [] + } + } + }, + { + "id": "console:45045a57f5ec", + "chapter": "console", + "label": "console.groupEnd()", + "signature": "`console.groupEnd()`", + "apiSymbol": "console.groupEnd", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/console.html#consolegroupend", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:console", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:console.groupEnd", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "console:0ed260294c26", + "chapter": "console", + "label": "console.info([data][, ...args])", + "signature": "`console.info([data][, ...args])`", + "apiSymbol": "console.info", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/console.html#consoleinfodata-args", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:console.info", + "tests": [ + "tests/corpus/1460-console-error-warn.ts", + "tests/corpus/2440-console-inspect-args.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:console.info", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "console:fe5504b52a3a", + "chapter": "console", + "label": "console.log([data][, ...args])", + "signature": "`console.log([data][, ...args])`", + "apiSymbol": "console.log", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/console.html#consolelogdata-args", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:console.log", + "tests": [ + "tests/corpus/1460-console-error-warn.ts", + "tests/corpus/2440-console-inspect-args.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:console.log", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "console:fbcc1d146f54", + "chapter": "console", + "label": "console.table(tabularData[, properties])", + "signature": "`console.table(tabularData[, properties])`", + "apiSymbol": "console.table", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/console.html#consoletabletabulardata-properties", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:console", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:console.table", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "console:0bd8bcffbbfd", + "chapter": "console", + "label": "console.time([label])", + "signature": "`console.time([label])`", + "apiSymbol": "console.time", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/console.html#consoletimelabel", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:console", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:console.time", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "console:5a06bf7ae635", + "chapter": "console", + "label": "console.timeEnd([label])", + "signature": "`console.timeEnd([label])`", + "apiSymbol": "console.timeEnd", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/console.html#consoletimeendlabel", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:console", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:console.timeEnd", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "console:0682b025ea9e", + "chapter": "console", + "label": "console.timeLog([label][, ...data])", + "signature": "`console.timeLog([label][, ...data])`", + "apiSymbol": "console.timeLog", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/console.html#consoletimeloglabel-data", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:console", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:console", + "tests": [] + } + } + }, + { + "id": "console:8d9fa8d9afcd", + "chapter": "console", + "label": "console.trace([message][, ...args])", + "signature": "`console.trace([message][, ...args])`", + "apiSymbol": "console.trace", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/console.html#consoletracemessage-args", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:console", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:console.trace", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "console:d7625e260cc9", + "chapter": "console", + "label": "console.warn([data][, ...args])", + "signature": "`console.warn([data][, ...args])`", + "apiSymbol": "console.warn", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/console.html#consolewarndata-args", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:console.warn", + "tests": [ + "tests/corpus/1460-console-error-warn.ts", + "tests/corpus/2440-console-inspect-args.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:console.warn", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "crypto:fc032ceb2cfd", + "chapter": "crypto", + "label": "node:crypto", + "signature": "`node:crypto` module methods and properties", + "apiSymbol": "node:crypto", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#nodecrypto-module-methods-and-properties", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:ac6e3d78bddd", + "chapter": "crypto", + "label": "crypto.argon2(algorithm, parameters, callback)", + "signature": "`crypto.argon2(algorithm, parameters, callback)`", + "apiSymbol": "crypto.argon2", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cryptoargon2algorithm-parameters-callback", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate", + "inherited": false + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:7516d604858d", + "chapter": "crypto", + "label": "crypto.argon2Sync(algorithm, parameters)", + "signature": "`crypto.argon2Sync(algorithm, parameters)`", + "apiSymbol": "crypto.argon2Sync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cryptoargon2syncalgorithm-parameters", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate", + "inherited": false + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:93c11d6b797c", + "chapter": "crypto", + "label": "crypto.checkPrime(candidate[, options], callback)", + "signature": "`crypto.checkPrime(candidate[, options], callback)`", + "apiSymbol": "crypto.checkPrime", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cryptocheckprimecandidate-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:crypto.checkPrime", + "tests": [] + } + } + }, + { + "id": "crypto:23ff59a813ff", + "chapter": "crypto", + "label": "crypto.checkPrimeSync(candidate[, options])", + "signature": "`crypto.checkPrimeSync(candidate[, options])`", + "apiSymbol": "crypto.checkPrimeSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cryptocheckprimesynccandidate-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:crypto.checkPrimeSync", + "tests": [] + } + } + }, + { + "id": "crypto:e5cfdf7f141d", + "chapter": "crypto", + "label": "crypto.createCipheriv(algorithm, key, iv[, options])", + "signature": "`crypto.createCipheriv(algorithm, key, iv[, options])`", + "apiSymbol": "crypto.createCipheriv", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cryptocreatecipherivalgorithm-key-iv-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.crypto.createCipheriv", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:crypto.createCipheriv", + "tests": [] + } + } + }, + { + "id": "crypto:c7f997a76b46", + "chapter": "crypto", + "label": "crypto.createDecipheriv(algorithm, key, iv[, options])", + "signature": "`crypto.createDecipheriv(algorithm, key, iv[, options])`", + "apiSymbol": "crypto.createDecipheriv", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cryptocreatedecipherivalgorithm-key-iv-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.crypto.createDecipheriv", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:crypto.createDecipheriv", + "tests": [] + } + } + }, + { + "id": "crypto:4773e5e82ab8", + "chapter": "crypto", + "label": "crypto.createDiffieHellman(prime[, primeEncoding][, generator][, generatorEncoding])", + "signature": "`crypto.createDiffieHellman(prime[, primeEncoding][, generator][, generatorEncoding])`", + "apiSymbol": "crypto.createDiffieHellman", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cryptocreatediffiehellmanprime-primeencoding-generator-generatorencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.crypto.createDiffieHellman", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:crypto.createDiffieHellman", + "tests": [] + } + } + }, + { + "id": "crypto:13af8af3a2c1", + "chapter": "crypto", + "label": "crypto.createDiffieHellman(primeLength[, generator])", + "signature": "`crypto.createDiffieHellman(primeLength[, generator])`", + "apiSymbol": "crypto.createDiffieHellman", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cryptocreatediffiehellmanprimelength-generator", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.crypto.createDiffieHellman", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:crypto.createDiffieHellman", + "tests": [] + } + } + }, + { + "id": "crypto:4f02ea28db46", + "chapter": "crypto", + "label": "crypto.createDiffieHellmanGroup(name)", + "signature": "`crypto.createDiffieHellmanGroup(name)`", + "apiSymbol": "crypto.createDiffieHellmanGroup", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cryptocreatediffiehellmangroupname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.crypto.createDiffieHellmanGroup", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:064eef4115c3", + "chapter": "crypto", + "label": "crypto.createECDH(curveName)", + "signature": "`crypto.createECDH(curveName)`", + "apiSymbol": "crypto.createECDH", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cryptocreateecdhcurvename", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.crypto.createECDH", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:crypto.createECDH", + "tests": [] + } + } + }, + { + "id": "crypto:846439408342", + "chapter": "crypto", + "label": "crypto.createHash(algorithm[, options])", + "signature": "`crypto.createHash(algorithm[, options])`", + "apiSymbol": "crypto.createHash", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cryptocreatehashalgorithm-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.crypto.createHash", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:crypto.createHash", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + } + } + }, + { + "id": "crypto:63db60cd1844", + "chapter": "crypto", + "label": "crypto.createHmac(algorithm, key[, options])", + "signature": "`crypto.createHmac(algorithm, key[, options])`", + "apiSymbol": "crypto.createHmac", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cryptocreatehmacalgorithm-key-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.crypto.createHmac", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:crypto.createHmac", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + } + } + }, + { + "id": "crypto:a91640a96ead", + "chapter": "crypto", + "label": "crypto.createPrivateKey(key)", + "signature": "`crypto.createPrivateKey(key)`", + "apiSymbol": "crypto.createPrivateKey", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cryptocreateprivatekeykey", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.crypto.createPrivateKey", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:crypto.createPrivateKey", + "tests": [] + } + } + }, + { + "id": "crypto:850de15dc8d0", + "chapter": "crypto", + "label": "crypto.createPublicKey(key)", + "signature": "`crypto.createPublicKey(key)`", + "apiSymbol": "crypto.createPublicKey", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cryptocreatepublickeykey", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.crypto.createPublicKey", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:crypto.createPublicKey", + "tests": [] + } + } + }, + { + "id": "crypto:0f82aa9a8526", + "chapter": "crypto", + "label": "crypto.createSecretKey(key[, encoding])", + "signature": "`crypto.createSecretKey(key[, encoding])`", + "apiSymbol": "crypto.createSecretKey", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cryptocreatesecretkeykey-encoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.crypto.createSecretKey", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:crypto.createSecretKey", + "tests": [] + } + } + }, + { + "id": "crypto:a1ee1d7ba01a", + "chapter": "crypto", + "label": "crypto.createSign(algorithm[, options])", + "signature": "`crypto.createSign(algorithm[, options])`", + "apiSymbol": "crypto.createSign", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cryptocreatesignalgorithm-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.crypto.createSign", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:crypto.createSign", + "tests": [] + } + } + }, + { + "id": "crypto:66b20a9bfb7f", + "chapter": "crypto", + "label": "crypto.createVerify(algorithm[, options])", + "signature": "`crypto.createVerify(algorithm[, options])`", + "apiSymbol": "crypto.createVerify", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cryptocreateverifyalgorithm-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.crypto.createVerify", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:crypto.createVerify", + "tests": [] + } + } + }, + { + "id": "crypto:dcde4645d6cb", + "chapter": "crypto", + "label": "crypto.decapsulate(key, ciphertext[, callback])", + "signature": "`crypto.decapsulate(key, ciphertext[, callback])`", + "apiSymbol": "crypto.decapsulate", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cryptodecapsulatekey-ciphertext-callback", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate", + "inherited": false + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:a73deddc6957", + "chapter": "crypto", + "label": "crypto.diffieHellman(options[, callback])", + "signature": "`crypto.diffieHellman(options[, callback])`", + "apiSymbol": "crypto.diffieHellman", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cryptodiffiehellmanoptions-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.crypto.diffieHellman", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:crypto.diffieHellman", + "tests": [] + } + } + }, + { + "id": "crypto:0f44865d3a04", + "chapter": "crypto", + "label": "crypto.encapsulate(key[, callback])", + "signature": "`crypto.encapsulate(key[, callback])`", + "apiSymbol": "crypto.encapsulate", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cryptoencapsulatekey-callback", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate", + "inherited": false + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:bb6642ab8937", + "chapter": "crypto", + "label": "crypto.generateKey(type, options, callback)", + "signature": "`crypto.generateKey(type, options, callback)`", + "apiSymbol": "crypto.generateKey", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cryptogeneratekeytype-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.crypto.generateKey", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:crypto.generateKey", + "tests": [] + } + } + }, + { + "id": "crypto:fc42f1bad4d1", + "chapter": "crypto", + "label": "crypto.generateKeyPair(type, options, callback)", + "signature": "`crypto.generateKeyPair(type, options, callback)`", + "apiSymbol": "crypto.generateKeyPair", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cryptogeneratekeypairtype-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.crypto.generateKeyPair", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:crypto.generateKeyPair", + "tests": [] + } + } + }, + { + "id": "crypto:5808394b3781", + "chapter": "crypto", + "label": "crypto.generateKeyPairSync(type, options)", + "signature": "`crypto.generateKeyPairSync(type, options)`", + "apiSymbol": "crypto.generateKeyPairSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cryptogeneratekeypairsynctype-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.crypto.generateKeyPairSync", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:crypto.generateKeyPairSync", + "tests": [] + } + } + }, + { + "id": "crypto:75cc34446e28", + "chapter": "crypto", + "label": "crypto.generateKeySync(type, options)", + "signature": "`crypto.generateKeySync(type, options)`", + "apiSymbol": "crypto.generateKeySync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cryptogeneratekeysynctype-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.crypto.generateKeySync", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:crypto.generateKeySync", + "tests": [] + } + } + }, + { + "id": "crypto:e07cbcbe9ed1", + "chapter": "crypto", + "label": "crypto.generatePrime(size[, options], callback)", + "signature": "`crypto.generatePrime(size[, options], callback)`", + "apiSymbol": "crypto.generatePrime", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cryptogenerateprimesize-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:crypto.generatePrime", + "tests": [] + } + } + }, + { + "id": "crypto:63fe6df1a09a", + "chapter": "crypto", + "label": "crypto.generatePrimeSync(size[, options])", + "signature": "`crypto.generatePrimeSync(size[, options])`", + "apiSymbol": "crypto.generatePrimeSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cryptogenerateprimesyncsize-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:crypto.generatePrimeSync", + "tests": [] + } + } + }, + { + "id": "crypto:7c8bb668e4c8", + "chapter": "crypto", + "label": "crypto.getCipherInfo(nameOrNid[, options])", + "signature": "`crypto.getCipherInfo(nameOrNid[, options])`", + "apiSymbol": "crypto.getCipherInfo", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cryptogetcipherinfonameornid-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.crypto.getCipherInfo", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:9ebd425a428e", + "chapter": "crypto", + "label": "crypto.getCiphers()", + "signature": "`crypto.getCiphers()`", + "apiSymbol": "crypto.getCiphers", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cryptogetciphers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:crypto.getCiphers", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + } + } + }, + { + "id": "crypto:874132c86691", + "chapter": "crypto", + "label": "crypto.getCurves()", + "signature": "`crypto.getCurves()`", + "apiSymbol": "crypto.getCurves", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cryptogetcurves", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:crypto.getCurves", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + } + } + }, + { + "id": "crypto:6049d733b35d", + "chapter": "crypto", + "label": "crypto.getDiffieHellman(groupName)", + "signature": "`crypto.getDiffieHellman(groupName)`", + "apiSymbol": "crypto.getDiffieHellman", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cryptogetdiffiehellmangroupname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.crypto.getDiffieHellman", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:d3a713d6958d", + "chapter": "crypto", + "label": "crypto.getFips()", + "signature": "`crypto.getFips()`", + "apiSymbol": "crypto.getFips", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cryptogetfips", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:crypto.getFips", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + } + } + }, + { + "id": "crypto:0ad4144fc921", + "chapter": "crypto", + "label": "crypto.getHashes()", + "signature": "`crypto.getHashes()`", + "apiSymbol": "crypto.getHashes", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cryptogethashes", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:crypto.getHashes", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + } + } + }, + { + "id": "crypto:2ab8394e29a7", + "chapter": "crypto", + "label": "crypto.getRandomValues(typedArray)", + "signature": "`crypto.getRandomValues(typedArray)`", + "apiSymbol": "crypto.getRandomValues", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cryptogetrandomvaluestypedarray", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:crypto.getRandomValues", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + } + } + }, + { + "id": "crypto:21f22c71fb61", + "chapter": "crypto", + "label": "crypto.hash(algorithm, data[, options])", + "signature": "`crypto.hash(algorithm, data[, options])`", + "apiSymbol": "crypto.hash", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cryptohashalgorithm-data-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.crypto.hash", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:crypto.hash", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + } + } + }, + { + "id": "crypto:3d310ed07414", + "chapter": "crypto", + "label": "crypto.hkdf(digest, ikm, salt, info, keylen, callback)", + "signature": "`crypto.hkdf(digest, ikm, salt, info, keylen, callback)`", + "apiSymbol": "crypto.hkdf", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cryptohkdfdigest-ikm-salt-info-keylen-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.crypto.hkdf", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:crypto.hkdf", + "tests": [] + } + } + }, + { + "id": "crypto:0a05b645a564", + "chapter": "crypto", + "label": "crypto.hkdfSync(digest, ikm, salt, info, keylen)", + "signature": "`crypto.hkdfSync(digest, ikm, salt, info, keylen)`", + "apiSymbol": "crypto.hkdfSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cryptohkdfsyncdigest-ikm-salt-info-keylen", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.crypto.hkdfSync", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:crypto.hkdfSync", + "tests": [] + } + } + }, + { + "id": "crypto:cb974006b4f5", + "chapter": "crypto", + "label": "crypto.pbkdf2(password, salt, iterations, keylen, digest, callback)", + "signature": "`crypto.pbkdf2(password, salt, iterations, keylen, digest, callback)`", + "apiSymbol": "crypto.pbkdf2", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cryptopbkdf2password-salt-iterations-keylen-digest-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.crypto.pbkdf2", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:crypto.pbkdf2", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + } + } + }, + { + "id": "crypto:01aba8f47f6c", + "chapter": "crypto", + "label": "crypto.pbkdf2Sync(password, salt, iterations, keylen, digest)", + "signature": "`crypto.pbkdf2Sync(password, salt, iterations, keylen, digest)`", + "apiSymbol": "crypto.pbkdf2Sync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cryptopbkdf2syncpassword-salt-iterations-keylen-digest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.crypto.pbkdf2Sync", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:crypto.pbkdf2Sync", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + } + } + }, + { + "id": "crypto:18079d0b276e", + "chapter": "crypto", + "label": "crypto.privateDecrypt(privateKey, buffer)", + "signature": "`crypto.privateDecrypt(privateKey, buffer)`", + "apiSymbol": "crypto.privateDecrypt", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cryptoprivatedecryptprivatekey-buffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.crypto.privateDecrypt", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:crypto.privateDecrypt", + "tests": [] + } + } + }, + { + "id": "crypto:2df78bda430e", + "chapter": "crypto", + "label": "crypto.privateEncrypt(privateKey, buffer)", + "signature": "`crypto.privateEncrypt(privateKey, buffer)`", + "apiSymbol": "crypto.privateEncrypt", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cryptoprivateencryptprivatekey-buffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.crypto.privateEncrypt", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:crypto.privateEncrypt", + "tests": [] + } + } + }, + { + "id": "crypto:5a9fa19ab36b", + "chapter": "crypto", + "label": "crypto.publicDecrypt(key, buffer)", + "signature": "`crypto.publicDecrypt(key, buffer)`", + "apiSymbol": "crypto.publicDecrypt", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cryptopublicdecryptkey-buffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.crypto.publicDecrypt", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:crypto.publicDecrypt", + "tests": [] + } + } + }, + { + "id": "crypto:a1084819aea0", + "chapter": "crypto", + "label": "crypto.publicEncrypt(key, buffer)", + "signature": "`crypto.publicEncrypt(key, buffer)`", + "apiSymbol": "crypto.publicEncrypt", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cryptopublicencryptkey-buffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.crypto.publicEncrypt", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:crypto.publicEncrypt", + "tests": [] + } + } + }, + { + "id": "crypto:94f9996a010b", + "chapter": "crypto", + "label": "crypto.randomBytes(size[, callback])", + "signature": "`crypto.randomBytes(size[, callback])`", + "apiSymbol": "crypto.randomBytes", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cryptorandombytessize-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.crypto.randomBytes", + "tests": [ + "tests/corpus/1358-crypto-random.ts", + "tests/corpus/1534-crypto-hash-chain.ts", + "tests/corpus/2556-crypto-introspection.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:crypto.randomBytes", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + } + } + }, + { + "id": "crypto:974195d3b725", + "chapter": "crypto", + "label": "crypto.randomFill(buffer[, offset][, size], callback)", + "signature": "`crypto.randomFill(buffer[, offset][, size], callback)`", + "apiSymbol": "crypto.randomFill", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cryptorandomfillbuffer-offset-size-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:crypto.randomFill", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + } + } + }, + { + "id": "crypto:9a954164ef2a", + "chapter": "crypto", + "label": "crypto.randomFillSync(buffer[, offset][, size])", + "signature": "`crypto.randomFillSync(buffer[, offset][, size])`", + "apiSymbol": "crypto.randomFillSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cryptorandomfillsyncbuffer-offset-size", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:crypto.randomFillSync", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + } + } + }, + { + "id": "crypto:a403de3874bc", + "chapter": "crypto", + "label": "crypto.randomInt([min, ]max[, callback])", + "signature": "`crypto.randomInt([min, ]max[, callback])`", + "apiSymbol": "crypto.randomInt", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cryptorandomintmin-max-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:crypto.randomInt", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + } + } + }, + { + "id": "crypto:0d3bcb43072b", + "chapter": "crypto", + "label": "crypto.randomUUID([options])", + "signature": "`crypto.randomUUID([options])`", + "apiSymbol": "crypto.randomUUID", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cryptorandomuuidoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.crypto.randomUUID", + "tests": [ + "tests/corpus/1358-crypto-random.ts", + "tests/corpus/1534-crypto-hash-chain.ts", + "tests/corpus/2556-crypto-introspection.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:crypto.randomUUID", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + } + } + }, + { + "id": "crypto:10402b3c70ca", + "chapter": "crypto", + "label": "crypto.scrypt(password, salt, keylen[, options], callback)", + "signature": "`crypto.scrypt(password, salt, keylen[, options], callback)`", + "apiSymbol": "crypto.scrypt", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cryptoscryptpassword-salt-keylen-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.crypto.scrypt", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:crypto.scrypt", + "tests": [] + } + } + }, + { + "id": "crypto:63b476fb71db", + "chapter": "crypto", + "label": "crypto.scryptSync(password, salt, keylen[, options])", + "signature": "`crypto.scryptSync(password, salt, keylen[, options])`", + "apiSymbol": "crypto.scryptSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cryptoscryptsyncpassword-salt-keylen-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.crypto.scryptSync", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:crypto.scryptSync", + "tests": [] + } + } + }, + { + "id": "crypto:f05cc6926023", + "chapter": "crypto", + "label": "crypto.secureHeapUsed()", + "signature": "`crypto.secureHeapUsed()`", + "apiSymbol": "crypto.secureHeapUsed", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cryptosecureheapused", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:crypto.secureHeapUsed", + "tests": [] + } + } + }, + { + "id": "crypto:2ef08279a30e", + "chapter": "crypto", + "label": "crypto.setEngine(engine[, flags])", + "signature": "`crypto.setEngine(engine[, flags])`", + "apiSymbol": "crypto.setEngine", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cryptosetengineengine-flags", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:crypto.setEngine", + "tests": [] + } + } + }, + { + "id": "crypto:d61ebc090db7", + "chapter": "crypto", + "label": "crypto.setFips(bool)", + "signature": "`crypto.setFips(bool)`", + "apiSymbol": "crypto.setFips", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cryptosetfipsbool", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.crypto.setFips", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:crypto.setFips", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + } + } + }, + { + "id": "crypto:5d370d84944c", + "chapter": "crypto", + "label": "crypto.sign(algorithm, data, key[, callback])", + "signature": "`crypto.sign(algorithm, data, key[, callback])`", + "apiSymbol": "crypto.sign", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cryptosignalgorithm-data-key-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.crypto.sign", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:crypto.sign", + "tests": [] + } + } + }, + { + "id": "crypto:6ed432bf0cfd", + "chapter": "crypto", + "label": "crypto.timingSafeEqual(a, b)", + "signature": "`crypto.timingSafeEqual(a, b)`", + "apiSymbol": "crypto.timingSafeEqual", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cryptotimingsafeequala-b", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:crypto.timingSafeEqual", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + } + } + }, + { + "id": "crypto:82c455f50fd0", + "chapter": "crypto", + "label": "crypto.verify(algorithm, data, key, signature[, callback])", + "signature": "`crypto.verify(algorithm, data, key, signature[, callback])`", + "apiSymbol": "crypto.verify", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cryptoverifyalgorithm-data-key-signature-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.crypto.verify", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:crypto.verify", + "tests": [] + } + } + }, + { + "id": "crypto:de32b59d0bf8", + "chapter": "crypto", + "label": "constants", + "signature": "`constants` Type: {Object}", + "apiSymbol": "constants", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#nodecrypto-module-methods-and-properties", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:crypto.constants", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + } + } + }, + { + "id": "crypto:ba0605358b38", + "chapter": "crypto", + "label": "crypto.fips", + "signature": "`crypto.fips`", + "apiSymbol": "crypto.fips", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cryptofips", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:548174ec78f8", + "chapter": "crypto", + "label": "subtle", + "signature": "`subtle` Type: {SubtleCrypto}", + "apiSymbol": "subtle", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#nodecrypto-module-methods-and-properties", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:crypto.subtle", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + } + } + }, + { + "id": "crypto:c3b378f7da8d", + "chapter": "crypto", + "label": "crypto.webcrypto", + "signature": "`crypto.webcrypto`", + "apiSymbol": "crypto.webcrypto", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cryptowebcrypto", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.crypto.webcrypto", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:crypto.webcrypto", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + } + } + }, + { + "id": "crypto:ec97f1991446", + "chapter": "crypto", + "label": "Certificate", + "signature": "Class: `Certificate`", + "apiSymbol": "Certificate", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#class-certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:crypto.Certificate", + "tests": [] + } + } + }, + { + "id": "crypto:fd2f88142073", + "chapter": "crypto", + "label": "certificate.exportChallenge(spkac[, encoding])", + "signature": "`certificate.exportChallenge(spkac[, encoding])`", + "apiSymbol": "certificate.exportChallenge", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#certificateexportchallengespkac-encoding", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:7e1be5373df5", + "chapter": "crypto", + "label": "certificate.exportPublicKey(spkac[, encoding])", + "signature": "`certificate.exportPublicKey(spkac[, encoding])`", + "apiSymbol": "certificate.exportPublicKey", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#certificateexportpublickeyspkac-encoding", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:eeda6a11b532", + "chapter": "crypto", + "label": "certificate.verifySpkac(spkac[, encoding])", + "signature": "`certificate.verifySpkac(spkac[, encoding])`", + "apiSymbol": "certificate.verifySpkac", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#certificateverifyspkacspkac-encoding", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:b9c273cbab39", + "chapter": "crypto", + "label": "Cipheriv", + "signature": "Class: `Cipheriv`", + "apiSymbol": "Cipheriv", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#class-cipheriv", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:700daa6ff9f9", + "chapter": "crypto", + "label": "cipher.final([outputEncoding])", + "signature": "`cipher.final([outputEncoding])`", + "apiSymbol": "cipher.final", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cipherfinaloutputencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:8b816d8b8aae", + "chapter": "crypto", + "label": "cipher.getAuthTag()", + "signature": "`cipher.getAuthTag()`", + "apiSymbol": "cipher.getAuthTag", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#ciphergetauthtag", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:eec0c6c93bc7", + "chapter": "crypto", + "label": "cipher.setAAD(buffer[, options])", + "signature": "`cipher.setAAD(buffer[, options])`", + "apiSymbol": "cipher.setAAD", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#ciphersetaadbuffer-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:979cc100d122", + "chapter": "crypto", + "label": "cipher.setAutoPadding([autoPadding])", + "signature": "`cipher.setAutoPadding([autoPadding])`", + "apiSymbol": "cipher.setAutoPadding", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#ciphersetautopaddingautopadding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:114053049b29", + "chapter": "crypto", + "label": "cipher.update(data[, inputEncoding][, outputEncoding])", + "signature": "`cipher.update(data[, inputEncoding][, outputEncoding])`", + "apiSymbol": "cipher.update", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#cipherupdatedata-inputencoding-outputencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:9c956f80d347", + "chapter": "crypto", + "label": "Decipheriv", + "signature": "Class: `Decipheriv`", + "apiSymbol": "Decipheriv", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#class-decipheriv", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:d13ee411d37c", + "chapter": "crypto", + "label": "decipher.final([outputEncoding])", + "signature": "`decipher.final([outputEncoding])`", + "apiSymbol": "decipher.final", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#decipherfinaloutputencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:a8e4d1bd740f", + "chapter": "crypto", + "label": "decipher.setAAD(buffer[, options])", + "signature": "`decipher.setAAD(buffer[, options])`", + "apiSymbol": "decipher.setAAD", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#deciphersetaadbuffer-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:931f37a91f62", + "chapter": "crypto", + "label": "decipher.setAuthTag(buffer[, encoding])", + "signature": "`decipher.setAuthTag(buffer[, encoding])`", + "apiSymbol": "decipher.setAuthTag", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#deciphersetauthtagbuffer-encoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:9ca24a440c70", + "chapter": "crypto", + "label": "decipher.setAutoPadding([autoPadding])", + "signature": "`decipher.setAutoPadding([autoPadding])`", + "apiSymbol": "decipher.setAutoPadding", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#deciphersetautopaddingautopadding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:2e92de121be5", + "chapter": "crypto", + "label": "decipher.update(data[, inputEncoding][, outputEncoding])", + "signature": "`decipher.update(data[, inputEncoding][, outputEncoding])`", + "apiSymbol": "decipher.update", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#decipherupdatedata-inputencoding-outputencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:4f72a2bdb4f3", + "chapter": "crypto", + "label": "DiffieHellman", + "signature": "Class: `DiffieHellman`", + "apiSymbol": "DiffieHellman", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#class-diffiehellman", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:23014d576554", + "chapter": "crypto", + "label": "diffieHellman.computeSecret(otherPublicKey[, inputEncoding][, outputEncoding])", + "signature": "`diffieHellman.computeSecret(otherPublicKey[, inputEncoding][, outputEncoding])`", + "apiSymbol": "diffieHellman.computeSecret", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#diffiehellmancomputesecretotherpublickey-inputencoding-outputencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:285040b024fb", + "chapter": "crypto", + "label": "diffieHellman.generateKeys([encoding])", + "signature": "`diffieHellman.generateKeys([encoding])`", + "apiSymbol": "diffieHellman.generateKeys", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#diffiehellmangeneratekeysencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:f981e631eadc", + "chapter": "crypto", + "label": "diffieHellman.getGenerator([encoding])", + "signature": "`diffieHellman.getGenerator([encoding])`", + "apiSymbol": "diffieHellman.getGenerator", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#diffiehellmangetgeneratorencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:1bc38308e8e0", + "chapter": "crypto", + "label": "diffieHellman.getPrime([encoding])", + "signature": "`diffieHellman.getPrime([encoding])`", + "apiSymbol": "diffieHellman.getPrime", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#diffiehellmangetprimeencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:6ae8ed1c16aa", + "chapter": "crypto", + "label": "diffieHellman.getPrivateKey([encoding])", + "signature": "`diffieHellman.getPrivateKey([encoding])`", + "apiSymbol": "diffieHellman.getPrivateKey", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#diffiehellmangetprivatekeyencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:9069ec158cfb", + "chapter": "crypto", + "label": "diffieHellman.getPublicKey([encoding])", + "signature": "`diffieHellman.getPublicKey([encoding])`", + "apiSymbol": "diffieHellman.getPublicKey", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#diffiehellmangetpublickeyencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:d3723dc39029", + "chapter": "crypto", + "label": "diffieHellman.setPrivateKey(privateKey[, encoding])", + "signature": "`diffieHellman.setPrivateKey(privateKey[, encoding])`", + "apiSymbol": "diffieHellman.setPrivateKey", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#diffiehellmansetprivatekeyprivatekey-encoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:16362019d0a0", + "chapter": "crypto", + "label": "diffieHellman.setPublicKey(publicKey[, encoding])", + "signature": "`diffieHellman.setPublicKey(publicKey[, encoding])`", + "apiSymbol": "diffieHellman.setPublicKey", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#diffiehellmansetpublickeypublickey-encoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:64a2a8e6f521", + "chapter": "crypto", + "label": "diffieHellman.verifyError", + "signature": "`diffieHellman.verifyError`", + "apiSymbol": "diffieHellman.verifyError", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#diffiehellmanverifyerror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:d8a35058e2b8", + "chapter": "crypto", + "label": "DiffieHellmanGroup", + "signature": "Class: `DiffieHellmanGroup`", + "apiSymbol": "DiffieHellmanGroup", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#class-diffiehellmangroup", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:12976329983d", + "chapter": "crypto", + "label": "ECDH", + "signature": "Class: `ECDH`", + "apiSymbol": "ECDH", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#class-ecdh", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:90286cb0202e", + "chapter": "crypto", + "label": "ecdh.computeSecret(otherPublicKey[, inputEncoding][, outputEncoding])", + "signature": "`ecdh.computeSecret(otherPublicKey[, inputEncoding][, outputEncoding])`", + "apiSymbol": "ecdh.computeSecret", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#ecdhcomputesecretotherpublickey-inputencoding-outputencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:152f6b5531a6", + "chapter": "crypto", + "label": "ecdh.generateKeys([encoding[, format]])", + "signature": "`ecdh.generateKeys([encoding[, format]])`", + "apiSymbol": "ecdh.generateKeys", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#ecdhgeneratekeysencoding-format", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:1d7a0a99229b", + "chapter": "crypto", + "label": "ecdh.getPrivateKey([encoding])", + "signature": "`ecdh.getPrivateKey([encoding])`", + "apiSymbol": "ecdh.getPrivateKey", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#ecdhgetprivatekeyencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:31a28a09eb16", + "chapter": "crypto", + "label": "ecdh.getPublicKey([encoding][, format])", + "signature": "`ecdh.getPublicKey([encoding][, format])`", + "apiSymbol": "ecdh.getPublicKey", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#ecdhgetpublickeyencoding-format", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:d54f215087e4", + "chapter": "crypto", + "label": "ecdh.setPrivateKey(privateKey[, encoding])", + "signature": "`ecdh.setPrivateKey(privateKey[, encoding])`", + "apiSymbol": "ecdh.setPrivateKey", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#ecdhsetprivatekeyprivatekey-encoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:ac963ede7945", + "chapter": "crypto", + "label": "ecdh.setPublicKey(publicKey[, encoding])", + "signature": "`ecdh.setPublicKey(publicKey[, encoding])`", + "apiSymbol": "ecdh.setPublicKey", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#ecdhsetpublickeypublickey-encoding", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:a4f0b3c152f1", + "chapter": "crypto", + "label": "Hash", + "signature": "Class: `Hash`", + "apiSymbol": "Hash", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#class-hash", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:crypto.Hash", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + } + } + }, + { + "id": "crypto:d3963279f285", + "chapter": "crypto", + "label": "hash.copy([options])", + "signature": "`hash.copy([options])`", + "apiSymbol": "hash.copy", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#hashcopyoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:crypto.hash.copy", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + } + } + }, + { + "id": "crypto:59585e0a2438", + "chapter": "crypto", + "label": "hash.digest([encoding])", + "signature": "`hash.digest([encoding])`", + "apiSymbol": "hash.digest", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#hashdigestencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:crypto.hash.digest", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + } + } + }, + { + "id": "crypto:a73c2c671736", + "chapter": "crypto", + "label": "hash.update(data[, inputEncoding])", + "signature": "`hash.update(data[, inputEncoding])`", + "apiSymbol": "hash.update", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#hashupdatedata-inputencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:crypto.hash.update", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + } + } + }, + { + "id": "crypto:c15e8a6a36cf", + "chapter": "crypto", + "label": "Hmac", + "signature": "Class: `Hmac`", + "apiSymbol": "Hmac", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#class-hmac", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:crypto.Hmac", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + } + } + }, + { + "id": "crypto:8b80f07883fa", + "chapter": "crypto", + "label": "hmac.digest([encoding])", + "signature": "`hmac.digest([encoding])`", + "apiSymbol": "hmac.digest", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#hmacdigestencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:crypto.hmac.digest", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + } + } + }, + { + "id": "crypto:89653e25c6cd", + "chapter": "crypto", + "label": "hmac.update(data[, inputEncoding])", + "signature": "`hmac.update(data[, inputEncoding])`", + "apiSymbol": "hmac.update", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#hmacupdatedata-inputencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:crypto.hmac.update", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + } + } + }, + { + "id": "crypto:2b66d6d94c1b", + "chapter": "crypto", + "label": "KeyObject", + "signature": "Class: `KeyObject`", + "apiSymbol": "KeyObject", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#class-keyobject", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:crypto.KeyObject", + "tests": [] + } + } + }, + { + "id": "crypto:6f2bcfb156ac", + "chapter": "crypto", + "label": "keyObject.equals(otherKeyObject)", + "signature": "`keyObject.equals(otherKeyObject)`", + "apiSymbol": "keyObject.equals", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#keyobjectequalsotherkeyobject", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:85e85102b244", + "chapter": "crypto", + "label": "keyObject.export([options])", + "signature": "`keyObject.export([options])`", + "apiSymbol": "keyObject.export", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#keyobjectexportoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:e353651be6c6", + "chapter": "crypto", + "label": "keyObject.toCryptoKey(algorithm, extractable, keyUsages)", + "signature": "`keyObject.toCryptoKey(algorithm, extractable, keyUsages)`", + "apiSymbol": "keyObject.toCryptoKey", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#keyobjecttocryptokeyalgorithm-extractable-keyusages", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:a0364b2ad9ac", + "chapter": "crypto", + "label": "asymmetricKeyDetails", + "signature": "`asymmetricKeyDetails` Type: {Object}", + "apiSymbol": "asymmetricKeyDetails", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#class-keyobject", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:485527857ce7", + "chapter": "crypto", + "label": "asymmetricKeyType", + "signature": "`asymmetricKeyType` Type: {string}", + "apiSymbol": "asymmetricKeyType", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#class-keyobject", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:50b2afeb1043", + "chapter": "crypto", + "label": "symmetricKeySize", + "signature": "`symmetricKeySize` Type: {number}", + "apiSymbol": "symmetricKeySize", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#class-keyobject", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:5995cb82e2ad", + "chapter": "crypto", + "label": "type", + "signature": "`type` Type: {string}", + "apiSymbol": "type", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#class-keyobject", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:1f80502ef093", + "chapter": "crypto", + "label": "Sign", + "signature": "Class: `Sign`", + "apiSymbol": "Sign", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#class-sign", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:f0d4c38cb195", + "chapter": "crypto", + "label": "sign.sign(privateKey[, outputEncoding])", + "signature": "`sign.sign(privateKey[, outputEncoding])`", + "apiSymbol": "sign.sign", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#signsignprivatekey-outputencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:1a7934a06f56", + "chapter": "crypto", + "label": "sign.update(data[, inputEncoding])", + "signature": "`sign.update(data[, inputEncoding])`", + "apiSymbol": "sign.update", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#signupdatedata-inputencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:27bc6401cdef", + "chapter": "crypto", + "label": "Verify", + "signature": "Class: `Verify`", + "apiSymbol": "Verify", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#class-verify", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:3268d2b63eaf", + "chapter": "crypto", + "label": "verify.update(data[, inputEncoding])", + "signature": "`verify.update(data[, inputEncoding])`", + "apiSymbol": "verify.update", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#verifyupdatedata-inputencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:16511e6f27c0", + "chapter": "crypto", + "label": "verify.verify(object, signature[, signatureEncoding])", + "signature": "`verify.verify(object, signature[, signatureEncoding])`", + "apiSymbol": "verify.verify", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#verifyverifyobject-signature-signatureencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:21193c8007c3", + "chapter": "crypto", + "label": "X509Certificate", + "signature": "Class: `X509Certificate`", + "apiSymbol": "X509Certificate", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:crypto.X509Certificate", + "tests": [] + } + } + }, + { + "id": "crypto:782c3f6355f4", + "chapter": "crypto", + "label": "x509.checkEmail(email[, options])", + "signature": "`x509.checkEmail(email[, options])`", + "apiSymbol": "x509.checkEmail", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#x509checkemailemail-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:7bd4defaa6f6", + "chapter": "crypto", + "label": "x509.checkHost(name[, options])", + "signature": "`x509.checkHost(name[, options])`", + "apiSymbol": "x509.checkHost", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#x509checkhostname-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:a552ac77f041", + "chapter": "crypto", + "label": "x509.checkIP(ip)", + "signature": "`x509.checkIP(ip)`", + "apiSymbol": "x509.checkIP", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#x509checkipip", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:5e0b7bb3139e", + "chapter": "crypto", + "label": "x509.checkIssued(otherCert)", + "signature": "`x509.checkIssued(otherCert)`", + "apiSymbol": "x509.checkIssued", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#x509checkissuedothercert", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:9bb6177d2e64", + "chapter": "crypto", + "label": "x509.checkPrivateKey(privateKey)", + "signature": "`x509.checkPrivateKey(privateKey)`", + "apiSymbol": "x509.checkPrivateKey", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#x509checkprivatekeyprivatekey", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:f8b12d2ad75d", + "chapter": "crypto", + "label": "x509.toJSON()", + "signature": "`x509.toJSON()`", + "apiSymbol": "x509.toJSON", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#x509tojson", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:c1ed50d74df9", + "chapter": "crypto", + "label": "x509.toLegacyObject()", + "signature": "`x509.toLegacyObject()`", + "apiSymbol": "x509.toLegacyObject", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#x509tolegacyobject", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:01179d9bc0fa", + "chapter": "crypto", + "label": "x509.toString()", + "signature": "`x509.toString()`", + "apiSymbol": "x509.toString", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#x509tostring", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:22923e49e9e2", + "chapter": "crypto", + "label": "x509.verify(publicKey)", + "signature": "`x509.verify(publicKey)`", + "apiSymbol": "x509.verify", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#x509verifypublickey", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:384f09c59f83", + "chapter": "crypto", + "label": "ca", + "signature": "`ca` Type: {boolean} Will be `true` if this is a Certificate Authority (CA) certificate.", + "apiSymbol": "ca", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:033a5471ea87", + "chapter": "crypto", + "label": "fingerprint", + "signature": "`fingerprint` Type: {string}", + "apiSymbol": "fingerprint", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:54e236e6cbb1", + "chapter": "crypto", + "label": "fingerprint256", + "signature": "`fingerprint256` Type: {string}", + "apiSymbol": "fingerprint256", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:99b8d79428f9", + "chapter": "crypto", + "label": "fingerprint512", + "signature": "`fingerprint512` Type: {string}", + "apiSymbol": "fingerprint512", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:8d64fdd4d74d", + "chapter": "crypto", + "label": "infoAccess", + "signature": "`infoAccess` Type: {string}", + "apiSymbol": "infoAccess", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:961336842e1d", + "chapter": "crypto", + "label": "issuer", + "signature": "`issuer` Type: {string}", + "apiSymbol": "issuer", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:8dbb2c55f9f1", + "chapter": "crypto", + "label": "issuerCertificate", + "signature": "`issuerCertificate` Type: {X509Certificate}", + "apiSymbol": "issuerCertificate", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:8d468947b609", + "chapter": "crypto", + "label": "keyUsage", + "signature": "`keyUsage` Type: {string\\[]}", + "apiSymbol": "keyUsage", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:889b2e52ecb8", + "chapter": "crypto", + "label": "publicKey", + "signature": "`publicKey` Type: {KeyObject}", + "apiSymbol": "publicKey", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:0ea854d0e858", + "chapter": "crypto", + "label": "raw", + "signature": "`raw` Type: {Buffer}", + "apiSymbol": "raw", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:31308b99a231", + "chapter": "crypto", + "label": "serialNumber", + "signature": "`serialNumber` Type: {string}", + "apiSymbol": "serialNumber", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:4f31985db14a", + "chapter": "crypto", + "label": "subject", + "signature": "`subject` Type: {string}", + "apiSymbol": "subject", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:39b2be69dd3e", + "chapter": "crypto", + "label": "subjectAltName", + "signature": "`subjectAltName` Type: {string}", + "apiSymbol": "subjectAltName", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:2599c820624c", + "chapter": "crypto", + "label": "validFrom", + "signature": "`validFrom` Type: {string}", + "apiSymbol": "validFrom", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:1cd0e31c665e", + "chapter": "crypto", + "label": "validFromDate", + "signature": "`validFromDate` Type: {Date}", + "apiSymbol": "validFromDate", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:015b61fc4aed", + "chapter": "crypto", + "label": "validTo", + "signature": "`validTo` Type: {string}", + "apiSymbol": "validTo", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:12cadeecd77d", + "chapter": "crypto", + "label": "validToDate", + "signature": "`validToDate` Type: {Date}", + "apiSymbol": "validToDate", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:dd666ee892cd", + "chapter": "crypto", + "label": "signatureAlgorithm", + "signature": "`signatureAlgorithm` Type: {string|undefined}", + "apiSymbol": "signatureAlgorithm", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "crypto:3a62d3a86672", + "chapter": "crypto", + "label": "signatureAlgorithmOid", + "signature": "`signatureAlgorithmOid` Type: {string}", + "apiSymbol": "signatureAlgorithmOid", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/crypto.html#class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:crypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:crypto", + "tests": [] + } + } + }, + { + "id": "diagnostics_channel:3a83bf4c0f02", + "chapter": "diagnostics_channel", + "label": "diagnostics_channel.hasSubscribers(name)", + "signature": "`diagnostics_channel.hasSubscribers(name)`", + "apiSymbol": "diagnostics_channel.hasSubscribers", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#diagnostics_channelhassubscribersname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.diagnostics_channel.hasSubscribers", + "tests": [ + "tests/corpus/2214-dc-bind-store.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:diagnostics_channel.hasSubscribers", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + } + } + }, + { + "id": "diagnostics_channel:5dc721bef53e", + "chapter": "diagnostics_channel", + "label": "diagnostics_channel.channel(name)", + "signature": "`diagnostics_channel.channel(name)`", + "apiSymbol": "diagnostics_channel.channel", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#diagnostics_channelchannelname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.diagnostics_channel.channel", + "tests": [ + "tests/corpus/2214-dc-bind-store.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:diagnostics_channel.channel", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + } + } + }, + { + "id": "diagnostics_channel:58098a420ca7", + "chapter": "diagnostics_channel", + "label": "diagnostics_channel.subscribe(name, onMessage)", + "signature": "`diagnostics_channel.subscribe(name, onMessage)`", + "apiSymbol": "diagnostics_channel.subscribe", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#diagnostics_channelsubscribename-onmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.diagnostics_channel.subscribe", + "tests": [ + "tests/corpus/2214-dc-bind-store.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:diagnostics_channel.subscribe", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + } + } + }, + { + "id": "diagnostics_channel:610af18774f3", + "chapter": "diagnostics_channel", + "label": "diagnostics_channel.unsubscribe(name, onMessage)", + "signature": "`diagnostics_channel.unsubscribe(name, onMessage)`", + "apiSymbol": "diagnostics_channel.unsubscribe", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#diagnostics_channelunsubscribename-onmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.diagnostics_channel.unsubscribe", + "tests": [ + "tests/corpus/2214-dc-bind-store.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:diagnostics_channel.unsubscribe", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + } + } + }, + { + "id": "diagnostics_channel:b3b8c4de5108", + "chapter": "diagnostics_channel", + "label": "diagnostics_channel.tracingChannel(nameOrChannels)", + "signature": "`diagnostics_channel.tracingChannel(nameOrChannels)`", + "apiSymbol": "diagnostics_channel.tracingChannel", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#diagnostics_channeltracingchannelnameorchannels", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.diagnostics_channel.tracingChannel", + "tests": [ + "tests/corpus/2214-dc-bind-store.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:diagnostics_channel.tracingChannel", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + } + } + }, + { + "id": "diagnostics_channel:e7b043d069d2", + "chapter": "diagnostics_channel", + "label": "start(event)", + "signature": "`start(event)`", + "apiSymbol": "start", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#startevent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:diagnostics_channel", + "tests": [] + } + } + }, + { + "id": "diagnostics_channel:ad43c540a991", + "chapter": "diagnostics_channel", + "label": "end(event)", + "signature": "`end(event)`", + "apiSymbol": "end", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#endevent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:diagnostics_channel", + "tests": [] + } + } + }, + { + "id": "diagnostics_channel:ca9b1fb81fe7", + "chapter": "diagnostics_channel", + "label": "asyncStart(event)", + "signature": "`asyncStart(event)`", + "apiSymbol": "asyncStart", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#asyncstartevent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:diagnostics_channel", + "tests": [] + } + } + }, + { + "id": "diagnostics_channel:5c9a2f6b6212", + "chapter": "diagnostics_channel", + "label": "asyncEnd(event)", + "signature": "`asyncEnd(event)`", + "apiSymbol": "asyncEnd", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#asyncendevent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:diagnostics_channel", + "tests": [] + } + } + }, + { + "id": "diagnostics_channel:e1c5179dc980", + "chapter": "diagnostics_channel", + "label": "error(event)", + "signature": "`error(event)`", + "apiSymbol": "error", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#errorevent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:diagnostics_channel", + "tests": [] + } + } + }, + { + "id": "diagnostics_channel:3c8b9230f22c", + "chapter": "diagnostics_channel", + "label": "'console.log'", + "signature": "Event: `'console.log'`", + "apiSymbol": "'console.log'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#event-consolelog", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:diagnostics_channel", + "tests": [] + } + } + }, + { + "id": "diagnostics_channel:192addcfe8d5", + "chapter": "diagnostics_channel", + "label": "'console.info'", + "signature": "Event: `'console.info'`", + "apiSymbol": "'console.info'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#event-consoleinfo", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:diagnostics_channel", + "tests": [] + } + } + }, + { + "id": "diagnostics_channel:5825be615c37", + "chapter": "diagnostics_channel", + "label": "'console.debug'", + "signature": "Event: `'console.debug'`", + "apiSymbol": "'console.debug'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#event-consoledebug", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:diagnostics_channel", + "tests": [] + } + } + }, + { + "id": "diagnostics_channel:e7c098f4a4be", + "chapter": "diagnostics_channel", + "label": "'console.warn'", + "signature": "Event: `'console.warn'`", + "apiSymbol": "'console.warn'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#event-consolewarn", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:diagnostics_channel", + "tests": [] + } + } + }, + { + "id": "diagnostics_channel:f5d8f7c48fef", + "chapter": "diagnostics_channel", + "label": "'console.error'", + "signature": "Event: `'console.error'`", + "apiSymbol": "'console.error'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#event-consoleerror", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:diagnostics_channel", + "tests": [] + } + } + }, + { + "id": "diagnostics_channel:50a76b004ae9", + "chapter": "diagnostics_channel", + "label": "'http.client.request.created'", + "signature": "Event: `'http.client.request.created'`", + "apiSymbol": "'http.client.request.created'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#event-httpclientrequestcreated", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:diagnostics_channel", + "tests": [] + } + } + }, + { + "id": "diagnostics_channel:d19d2098844d", + "chapter": "diagnostics_channel", + "label": "'http.client.request.start'", + "signature": "Event: `'http.client.request.start'`", + "apiSymbol": "'http.client.request.start'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#event-httpclientrequeststart", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:diagnostics_channel", + "tests": [] + } + } + }, + { + "id": "diagnostics_channel:0efc0584b099", + "chapter": "diagnostics_channel", + "label": "'http.client.request.error'", + "signature": "Event: `'http.client.request.error'`", + "apiSymbol": "'http.client.request.error'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#event-httpclientrequesterror", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:diagnostics_channel", + "tests": [] + } + } + }, + { + "id": "diagnostics_channel:04e5ed42f276", + "chapter": "diagnostics_channel", + "label": "'http.client.response.finish'", + "signature": "Event: `'http.client.response.finish'`", + "apiSymbol": "'http.client.response.finish'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#event-httpclientresponsefinish", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:diagnostics_channel", + "tests": [] + } + } + }, + { + "id": "diagnostics_channel:c4b514e9fd58", + "chapter": "diagnostics_channel", + "label": "'http.server.request.start'", + "signature": "Event: `'http.server.request.start'`", + "apiSymbol": "'http.server.request.start'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#event-httpserverrequeststart", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:diagnostics_channel", + "tests": [] + } + } + }, + { + "id": "diagnostics_channel:30048d6b5d93", + "chapter": "diagnostics_channel", + "label": "'http.server.response.created'", + "signature": "Event: `'http.server.response.created'`", + "apiSymbol": "'http.server.response.created'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#event-httpserverresponsecreated", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:diagnostics_channel", + "tests": [] + } + } + }, + { + "id": "diagnostics_channel:b9fcb7b3c176", + "chapter": "diagnostics_channel", + "label": "'http.server.response.finish'", + "signature": "Event: `'http.server.response.finish'`", + "apiSymbol": "'http.server.response.finish'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#event-httpserverresponsefinish", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:diagnostics_channel", + "tests": [] + } + } + }, + { + "id": "diagnostics_channel:f371268e3e6e", + "chapter": "diagnostics_channel", + "label": "'http2.client.stream.created'", + "signature": "Event: `'http2.client.stream.created'`", + "apiSymbol": "'http2.client.stream.created'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#event-http2clientstreamcreated", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:diagnostics_channel", + "tests": [] + } + } + }, + { + "id": "diagnostics_channel:5c461371ec2f", + "chapter": "diagnostics_channel", + "label": "'http2.client.stream.start'", + "signature": "Event: `'http2.client.stream.start'`", + "apiSymbol": "'http2.client.stream.start'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#event-http2clientstreamstart", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:diagnostics_channel", + "tests": [] + } + } + }, + { + "id": "diagnostics_channel:0d58e966dbf6", + "chapter": "diagnostics_channel", + "label": "'http2.client.stream.error'", + "signature": "Event: `'http2.client.stream.error'`", + "apiSymbol": "'http2.client.stream.error'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#event-http2clientstreamerror", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:diagnostics_channel", + "tests": [] + } + } + }, + { + "id": "diagnostics_channel:b6fb66c771d4", + "chapter": "diagnostics_channel", + "label": "'http2.client.stream.finish'", + "signature": "Event: `'http2.client.stream.finish'`", + "apiSymbol": "'http2.client.stream.finish'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#event-http2clientstreamfinish", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:diagnostics_channel", + "tests": [] + } + } + }, + { + "id": "diagnostics_channel:718e824eefa2", + "chapter": "diagnostics_channel", + "label": "'http2.client.stream.bodyChunkSent'", + "signature": "Event: `'http2.client.stream.bodyChunkSent'`", + "apiSymbol": "'http2.client.stream.bodyChunkSent'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#event-http2clientstreambodychunksent", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:diagnostics_channel", + "tests": [] + } + } + }, + { + "id": "diagnostics_channel:401ed3ea2963", + "chapter": "diagnostics_channel", + "label": "'http2.client.stream.bodySent'", + "signature": "Event: `'http2.client.stream.bodySent'`", + "apiSymbol": "'http2.client.stream.bodySent'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#event-http2clientstreambodysent", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:diagnostics_channel", + "tests": [] + } + } + }, + { + "id": "diagnostics_channel:9b614c2de9e4", + "chapter": "diagnostics_channel", + "label": "'http2.client.stream.close'", + "signature": "Event: `'http2.client.stream.close'`", + "apiSymbol": "'http2.client.stream.close'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#event-http2clientstreamclose", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:diagnostics_channel", + "tests": [] + } + } + }, + { + "id": "diagnostics_channel:83a09c52f2c6", + "chapter": "diagnostics_channel", + "label": "'http2.server.stream.created'", + "signature": "Event: `'http2.server.stream.created'`", + "apiSymbol": "'http2.server.stream.created'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#event-http2serverstreamcreated", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:diagnostics_channel", + "tests": [] + } + } + }, + { + "id": "diagnostics_channel:e25b6f904e15", + "chapter": "diagnostics_channel", + "label": "'http2.server.stream.start'", + "signature": "Event: `'http2.server.stream.start'`", + "apiSymbol": "'http2.server.stream.start'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#event-http2serverstreamstart", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:diagnostics_channel", + "tests": [] + } + } + }, + { + "id": "diagnostics_channel:16fd6ad9a398", + "chapter": "diagnostics_channel", + "label": "'http2.server.stream.error'", + "signature": "Event: `'http2.server.stream.error'`", + "apiSymbol": "'http2.server.stream.error'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#event-http2serverstreamerror", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:diagnostics_channel", + "tests": [] + } + } + }, + { + "id": "diagnostics_channel:838230e7598c", + "chapter": "diagnostics_channel", + "label": "'http2.server.stream.finish'", + "signature": "Event: `'http2.server.stream.finish'`", + "apiSymbol": "'http2.server.stream.finish'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#event-http2serverstreamfinish", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:diagnostics_channel", + "tests": [] + } + } + }, + { + "id": "diagnostics_channel:ad7084327c33", + "chapter": "diagnostics_channel", + "label": "'http2.server.stream.close'", + "signature": "Event: `'http2.server.stream.close'`", + "apiSymbol": "'http2.server.stream.close'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#event-http2serverstreamclose", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:diagnostics_channel", + "tests": [] + } + } + }, + { + "id": "diagnostics_channel:d1c41884e542", + "chapter": "diagnostics_channel", + "label": "'module.require.start'", + "signature": "Event: `'module.require.start'`", + "apiSymbol": "'module.require.start'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#event-modulerequirestart", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:diagnostics_channel", + "tests": [] + } + } + }, + { + "id": "diagnostics_channel:4cd1c32b77c6", + "chapter": "diagnostics_channel", + "label": "'module.require.end'", + "signature": "Event: `'module.require.end'`", + "apiSymbol": "'module.require.end'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#event-modulerequireend", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:diagnostics_channel", + "tests": [] + } + } + }, + { + "id": "diagnostics_channel:cd31d16f125f", + "chapter": "diagnostics_channel", + "label": "'module.require.error'", + "signature": "Event: `'module.require.error'`", + "apiSymbol": "'module.require.error'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#event-modulerequireerror", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:diagnostics_channel", + "tests": [] + } + } + }, + { + "id": "diagnostics_channel:a2840f3e48cc", + "chapter": "diagnostics_channel", + "label": "'module.import.asyncStart'", + "signature": "Event: `'module.import.asyncStart'`", + "apiSymbol": "'module.import.asyncStart'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#event-moduleimportasyncstart", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:diagnostics_channel", + "tests": [] + } + } + }, + { + "id": "diagnostics_channel:730d6618877f", + "chapter": "diagnostics_channel", + "label": "'module.import.asyncEnd'", + "signature": "Event: `'module.import.asyncEnd'`", + "apiSymbol": "'module.import.asyncEnd'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#event-moduleimportasyncend", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:diagnostics_channel", + "tests": [] + } + } + }, + { + "id": "diagnostics_channel:b94f162dfbad", + "chapter": "diagnostics_channel", + "label": "'module.import.error'", + "signature": "Event: `'module.import.error'`", + "apiSymbol": "'module.import.error'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#event-moduleimporterror", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:diagnostics_channel", + "tests": [] + } + } + }, + { + "id": "diagnostics_channel:96f699c20c83", + "chapter": "diagnostics_channel", + "label": "'net.client.socket'", + "signature": "Event: `'net.client.socket'`", + "apiSymbol": "'net.client.socket'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#event-netclientsocket", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:diagnostics_channel", + "tests": [] + } + } + }, + { + "id": "diagnostics_channel:a4ac7822e041", + "chapter": "diagnostics_channel", + "label": "'net.server.socket'", + "signature": "Event: `'net.server.socket'`", + "apiSymbol": "'net.server.socket'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#event-netserversocket", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:diagnostics_channel", + "tests": [] + } + } + }, + { + "id": "diagnostics_channel:8fb6ed70db09", + "chapter": "diagnostics_channel", + "label": "'tracing:net.server.listen:asyncStart'", + "signature": "Event: `'tracing:net.server.listen:asyncStart'`", + "apiSymbol": "'tracing:net.server.listen:asyncStart'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#event-tracingnetserverlistenasyncstart", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:diagnostics_channel", + "tests": [] + } + } + }, + { + "id": "diagnostics_channel:227fa6e52c85", + "chapter": "diagnostics_channel", + "label": "'tracing:net.server.listen:asyncEnd'", + "signature": "Event: `'tracing:net.server.listen:asyncEnd'`", + "apiSymbol": "'tracing:net.server.listen:asyncEnd'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#event-tracingnetserverlistenasyncend", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:diagnostics_channel", + "tests": [] + } + } + }, + { + "id": "diagnostics_channel:2ab98bc47cfd", + "chapter": "diagnostics_channel", + "label": "'tracing:net.server.listen:error'", + "signature": "Event: `'tracing:net.server.listen:error'`", + "apiSymbol": "'tracing:net.server.listen:error'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#event-tracingnetserverlistenerror", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:diagnostics_channel", + "tests": [] + } + } + }, + { + "id": "diagnostics_channel:b2b7e4c01971", + "chapter": "diagnostics_channel", + "label": "'udp.socket'", + "signature": "Event: `'udp.socket'`", + "apiSymbol": "'udp.socket'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#event-udpsocket", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:diagnostics_channel", + "tests": [] + } + } + }, + { + "id": "diagnostics_channel:d80660abc192", + "chapter": "diagnostics_channel", + "label": "'child_process'", + "signature": "Event: `'child_process'`", + "apiSymbol": "'child_process'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#event-child_process", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:diagnostics_channel", + "tests": [] + } + } + }, + { + "id": "diagnostics_channel:3e684ab90652", + "chapter": "diagnostics_channel", + "label": "'execve'", + "signature": "Event: `'execve'`", + "apiSymbol": "'execve'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#event-execve", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:diagnostics_channel", + "tests": [] + } + } + }, + { + "id": "diagnostics_channel:2150baf1c289", + "chapter": "diagnostics_channel", + "label": "'locks.request.start'", + "signature": "Event: `'locks.request.start'`", + "apiSymbol": "'locks.request.start'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#event-locksrequeststart", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:diagnostics_channel", + "tests": [] + } + } + }, + { + "id": "diagnostics_channel:ff0186747334", + "chapter": "diagnostics_channel", + "label": "'locks.request.grant'", + "signature": "Event: `'locks.request.grant'`", + "apiSymbol": "'locks.request.grant'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#event-locksrequestgrant", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:diagnostics_channel", + "tests": [] + } + } + }, + { + "id": "diagnostics_channel:e52bc3bff166", + "chapter": "diagnostics_channel", + "label": "'locks.request.miss'", + "signature": "Event: `'locks.request.miss'`", + "apiSymbol": "'locks.request.miss'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#event-locksrequestmiss", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:diagnostics_channel", + "tests": [] + } + } + }, + { + "id": "diagnostics_channel:357e89691f43", + "chapter": "diagnostics_channel", + "label": "'locks.request.end'", + "signature": "Event: `'locks.request.end'`", + "apiSymbol": "'locks.request.end'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#event-locksrequestend", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:diagnostics_channel", + "tests": [] + } + } + }, + { + "id": "diagnostics_channel:d4ce0a297579", + "chapter": "diagnostics_channel", + "label": "'worker_threads'", + "signature": "Event: `'worker_threads'`", + "apiSymbol": "'worker_threads'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#event-worker_threads", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:diagnostics_channel", + "tests": [] + } + } + }, + { + "id": "diagnostics_channel:e311810f8dca", + "chapter": "diagnostics_channel", + "label": "Channel", + "signature": "Class: `Channel`", + "apiSymbol": "Channel", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#class-channel", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:diagnostics_channel", + "tests": [] + } + } + }, + { + "id": "diagnostics_channel:4546c9960c41", + "chapter": "diagnostics_channel", + "label": "channel.publish(message)", + "signature": "`channel.publish(message)`", + "apiSymbol": "channel.publish", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#channelpublishmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:diagnostics_channel.channel.publish", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + } + } + }, + { + "id": "diagnostics_channel:9b216a62d8a3", + "chapter": "diagnostics_channel", + "label": "channel.subscribe(onMessage)", + "signature": "`channel.subscribe(onMessage)`", + "apiSymbol": "channel.subscribe", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#channelsubscribeonmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:diagnostics_channel.channel.subscribe", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + } + } + }, + { + "id": "diagnostics_channel:b6526124c5e9", + "chapter": "diagnostics_channel", + "label": "channel.unsubscribe(onMessage)", + "signature": "`channel.unsubscribe(onMessage)`", + "apiSymbol": "channel.unsubscribe", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#channelunsubscribeonmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:diagnostics_channel.channel.unsubscribe", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + } + } + }, + { + "id": "diagnostics_channel:67cdfaab1d61", + "chapter": "diagnostics_channel", + "label": "channel.bindStore(store[, transform])", + "signature": "`channel.bindStore(store[, transform])`", + "apiSymbol": "channel.bindStore", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#channelbindstorestore-transform", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:diagnostics_channel", + "tests": [] + } + } + }, + { + "id": "diagnostics_channel:8e15a4c4f731", + "chapter": "diagnostics_channel", + "label": "channel.unbindStore(store)", + "signature": "`channel.unbindStore(store)`", + "apiSymbol": "channel.unbindStore", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#channelunbindstorestore", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:diagnostics_channel", + "tests": [] + } + } + }, + { + "id": "diagnostics_channel:5999206126f6", + "chapter": "diagnostics_channel", + "label": "channel.runStores(context, fn[, thisArg[, ...args]])", + "signature": "`channel.runStores(context, fn[, thisArg[, ...args]])`", + "apiSymbol": "channel.runStores", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#channelrunstorescontext-fn-thisarg-args", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:diagnostics_channel", + "tests": [] + } + } + }, + { + "id": "diagnostics_channel:d8ea9d9486e4", + "chapter": "diagnostics_channel", + "label": "hasSubscribers", + "signature": "`hasSubscribers` Returns: {boolean} If there are active subscribers", + "apiSymbol": "hasSubscribers", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#class-channel", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.diagnostics_channel.hasSubscribers", + "tests": [ + "tests/corpus/2214-dc-bind-store.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:diagnostics_channel.hasSubscribers", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + } + } + }, + { + "id": "diagnostics_channel:514c35ea453b", + "chapter": "diagnostics_channel", + "label": "TracingChannel", + "signature": "Class: `TracingChannel`", + "apiSymbol": "TracingChannel", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#class-tracingchannel", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:diagnostics_channel", + "tests": [] + } + } + }, + { + "id": "diagnostics_channel:4d97dbb25c78", + "chapter": "diagnostics_channel", + "label": "tracingChannel.subscribe(subscribers)", + "signature": "`tracingChannel.subscribe(subscribers)`", + "apiSymbol": "tracingChannel.subscribe", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#tracingchannelsubscribesubscribers", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:diagnostics_channel", + "tests": [] + } + } + }, + { + "id": "diagnostics_channel:02d20863fa22", + "chapter": "diagnostics_channel", + "label": "tracingChannel.unsubscribe(subscribers)", + "signature": "`tracingChannel.unsubscribe(subscribers)`", + "apiSymbol": "tracingChannel.unsubscribe", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#tracingchannelunsubscribesubscribers", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:diagnostics_channel", + "tests": [] + } + } + }, + { + "id": "diagnostics_channel:02999c2ba90c", + "chapter": "diagnostics_channel", + "label": "tracingChannel.traceSync(fn[, context[, thisArg[, ...args]]])", + "signature": "`tracingChannel.traceSync(fn[, context[, thisArg[, ...args]]])`", + "apiSymbol": "tracingChannel.traceSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#tracingchanneltracesyncfn-context-thisarg-args", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:diagnostics_channel.tracingChannel.traceSync", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + } + } + }, + { + "id": "diagnostics_channel:841661fad045", + "chapter": "diagnostics_channel", + "label": "tracingChannel.tracePromise(fn[, context[, thisArg[, ...args]]])", + "signature": "`tracingChannel.tracePromise(fn[, context[, thisArg[, ...args]]])`", + "apiSymbol": "tracingChannel.tracePromise", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#tracingchanneltracepromisefn-context-thisarg-args", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:diagnostics_channel.tracingChannel.tracePromise", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + } + } + }, + { + "id": "diagnostics_channel:eefec38bb12a", + "chapter": "diagnostics_channel", + "label": "tracingChannel.traceCallback(fn[, position[, context[, thisArg[, ...args]]]])", + "signature": "`tracingChannel.traceCallback(fn[, position[, context[, thisArg[, ...args]]]])`", + "apiSymbol": "tracingChannel.traceCallback", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#tracingchanneltracecallbackfn-position-context-thisarg-args", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:diagnostics_channel", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:diagnostics_channel.tracingChannel.traceCallback", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + } + } + }, + { + "id": "diagnostics_channel:ce732ca56277", + "chapter": "diagnostics_channel", + "label": "hasSubscribers", + "signature": "`hasSubscribers` Returns: {boolean} `true` if any of the individual channels has a subscriber, `false` if not.", + "apiSymbol": "hasSubscribers", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/diagnostics_channel.html#class-tracingchannel", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.diagnostics_channel.hasSubscribers", + "tests": [ + "tests/corpus/2214-dc-bind-store.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:diagnostics_channel.hasSubscribers", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + } + } + }, + { + "id": "dns:9d26a757b216", + "chapter": "dns", + "label": "dnsPromises.Resolver", + "signature": "Class: `dnsPromises.Resolver`", + "apiSymbol": "dnsPromises.Resolver", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dns.html#class-dnspromisesresolver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dns", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:dns", + "tests": [] + } + } + }, + { + "id": "dns:31c9728fecd0", + "chapter": "dns", + "label": "resolver.cancel()", + "signature": "`resolver.cancel()`", + "apiSymbol": "resolver.cancel", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dns.html#resolvercancel", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dns", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:dns", + "tests": [] + } + } + }, + { + "id": "dns:4fc0b8fec32c", + "chapter": "dns", + "label": "dnsPromises.getServers()", + "signature": "`dnsPromises.getServers()`", + "apiSymbol": "dnsPromises.getServers", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dns.html#dnspromisesgetservers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dns", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:dns", + "tests": [] + } + } + }, + { + "id": "dns:1684d350fdc7", + "chapter": "dns", + "label": "dnsPromises.lookup(hostname[, options])", + "signature": "`dnsPromises.lookup(hostname[, options])`", + "apiSymbol": "dnsPromises.lookup", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dns.html#dnspromiseslookuphostname-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dns", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:dns", + "tests": [] + } + } + }, + { + "id": "dns:788013947c49", + "chapter": "dns", + "label": "dnsPromises.lookupService(address, port)", + "signature": "`dnsPromises.lookupService(address, port)`", + "apiSymbol": "dnsPromises.lookupService", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dns.html#dnspromiseslookupserviceaddress-port", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dns", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:dns", + "tests": [] + } + } + }, + { + "id": "dns:7da68553b6ed", + "chapter": "dns", + "label": "dnsPromises.resolve(hostname[, rrtype])", + "signature": "`dnsPromises.resolve(hostname[, rrtype])`", + "apiSymbol": "dnsPromises.resolve", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dns.html#dnspromisesresolvehostname-rrtype", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dns", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:dns", + "tests": [] + } + } + }, + { + "id": "dns:48e279c9cd32", + "chapter": "dns", + "label": "dnsPromises.resolve4(hostname[, options])", + "signature": "`dnsPromises.resolve4(hostname[, options])`", + "apiSymbol": "dnsPromises.resolve4", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dns.html#dnspromisesresolve4hostname-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dns", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:dns", + "tests": [] + } + } + }, + { + "id": "dns:8f9ed07a487f", + "chapter": "dns", + "label": "dnsPromises.resolve6(hostname[, options])", + "signature": "`dnsPromises.resolve6(hostname[, options])`", + "apiSymbol": "dnsPromises.resolve6", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dns.html#dnspromisesresolve6hostname-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dns", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:dns", + "tests": [] + } + } + }, + { + "id": "dns:d23a1715b8ba", + "chapter": "dns", + "label": "dnsPromises.resolveAny(hostname)", + "signature": "`dnsPromises.resolveAny(hostname)`", + "apiSymbol": "dnsPromises.resolveAny", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dns.html#dnspromisesresolveanyhostname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dns", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:dns", + "tests": [] + } + } + }, + { + "id": "dns:590da03e70db", + "chapter": "dns", + "label": "dnsPromises.resolveCaa(hostname)", + "signature": "`dnsPromises.resolveCaa(hostname)`", + "apiSymbol": "dnsPromises.resolveCaa", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dns.html#dnspromisesresolvecaahostname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dns", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:dns", + "tests": [] + } + } + }, + { + "id": "dns:a803d1e0a192", + "chapter": "dns", + "label": "dnsPromises.resolveCname(hostname)", + "signature": "`dnsPromises.resolveCname(hostname)`", + "apiSymbol": "dnsPromises.resolveCname", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dns.html#dnspromisesresolvecnamehostname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dns", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:dns", + "tests": [] + } + } + }, + { + "id": "dns:586462ef8ad5", + "chapter": "dns", + "label": "dnsPromises.resolveMx(hostname)", + "signature": "`dnsPromises.resolveMx(hostname)`", + "apiSymbol": "dnsPromises.resolveMx", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dns.html#dnspromisesresolvemxhostname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dns", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:dns", + "tests": [] + } + } + }, + { + "id": "dns:847b7d14469d", + "chapter": "dns", + "label": "dnsPromises.resolveNaptr(hostname)", + "signature": "`dnsPromises.resolveNaptr(hostname)`", + "apiSymbol": "dnsPromises.resolveNaptr", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dns.html#dnspromisesresolvenaptrhostname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dns", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:dns", + "tests": [] + } + } + }, + { + "id": "dns:a4fec6893c05", + "chapter": "dns", + "label": "dnsPromises.resolveNs(hostname)", + "signature": "`dnsPromises.resolveNs(hostname)`", + "apiSymbol": "dnsPromises.resolveNs", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dns.html#dnspromisesresolvenshostname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dns", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:dns", + "tests": [] + } + } + }, + { + "id": "dns:a777492fa26f", + "chapter": "dns", + "label": "dnsPromises.resolvePtr(hostname)", + "signature": "`dnsPromises.resolvePtr(hostname)`", + "apiSymbol": "dnsPromises.resolvePtr", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dns.html#dnspromisesresolveptrhostname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dns", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:dns", + "tests": [] + } + } + }, + { + "id": "dns:2356d15798d1", + "chapter": "dns", + "label": "dnsPromises.resolveSoa(hostname)", + "signature": "`dnsPromises.resolveSoa(hostname)`", + "apiSymbol": "dnsPromises.resolveSoa", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dns.html#dnspromisesresolvesoahostname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dns", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:dns", + "tests": [] + } + } + }, + { + "id": "dns:8bc5eb74d643", + "chapter": "dns", + "label": "dnsPromises.resolveSrv(hostname)", + "signature": "`dnsPromises.resolveSrv(hostname)`", + "apiSymbol": "dnsPromises.resolveSrv", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dns.html#dnspromisesresolvesrvhostname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dns", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:dns", + "tests": [] + } + } + }, + { + "id": "dns:3d950352573b", + "chapter": "dns", + "label": "dnsPromises.resolveTlsa(hostname)", + "signature": "`dnsPromises.resolveTlsa(hostname)`", + "apiSymbol": "dnsPromises.resolveTlsa", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dns.html#dnspromisesresolvetlsahostname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dns", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:dns", + "tests": [] + } + } + }, + { + "id": "dns:4b4bc3e24563", + "chapter": "dns", + "label": "dnsPromises.resolveTxt(hostname)", + "signature": "`dnsPromises.resolveTxt(hostname)`", + "apiSymbol": "dnsPromises.resolveTxt", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dns.html#dnspromisesresolvetxthostname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dns", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:dns", + "tests": [] + } + } + }, + { + "id": "dns:1a354e828d63", + "chapter": "dns", + "label": "dnsPromises.reverse(ip)", + "signature": "`dnsPromises.reverse(ip)`", + "apiSymbol": "dnsPromises.reverse", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dns.html#dnspromisesreverseip", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dns", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:dns", + "tests": [] + } + } + }, + { + "id": "dns:a49662b82ac5", + "chapter": "dns", + "label": "dnsPromises.setDefaultResultOrder(order)", + "signature": "`dnsPromises.setDefaultResultOrder(order)`", + "apiSymbol": "dnsPromises.setDefaultResultOrder", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dns.html#dnspromisessetdefaultresultorderorder", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dns", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:dns", + "tests": [] + } + } + }, + { + "id": "dns:fc12fbc986e7", + "chapter": "dns", + "label": "dnsPromises.getDefaultResultOrder()", + "signature": "`dnsPromises.getDefaultResultOrder()`", + "apiSymbol": "dnsPromises.getDefaultResultOrder", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dns.html#dnspromisesgetdefaultresultorder", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dns", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:dns", + "tests": [] + } + } + }, + { + "id": "dns:ba0f65188cd3", + "chapter": "dns", + "label": "dnsPromises.setServers(servers)", + "signature": "`dnsPromises.setServers(servers)`", + "apiSymbol": "dnsPromises.setServers", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dns.html#dnspromisessetserversservers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dns", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:dns", + "tests": [] + } + } + }, + { + "id": "dns:5c15fbdbc51c", + "chapter": "dns", + "label": "dns.resolve()", + "signature": "`dns.resolve()`, `dns.resolve*()`, and `dns.reverse()`", + "apiSymbol": "dns.resolve", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dns.html#dnsresolve-dnsresolve-and-dnsreverse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dns", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:dns.resolve", + "tests": [] + } + } + }, + { + "id": "dns:01cf87ede032", + "chapter": "dns", + "label": "dns.lookup()", + "signature": "`dns.lookup()`", + "apiSymbol": "dns.lookup", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dns.html#dnslookup", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dns", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:dns.lookup", + "tests": [] + } + } + }, + { + "id": "dns:0adacb1439b4", + "chapter": "dns", + "label": "dns.Resolver", + "signature": "Class: `dns.Resolver`", + "apiSymbol": "dns.Resolver", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dns.html#class-dnsresolver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dns", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:dns.Resolver", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "dns:f3fcd24bac63", + "chapter": "dns", + "label": "Resolver([options])", + "signature": "`Resolver([options])`", + "apiSymbol": "Resolver", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dns.html#resolveroptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dns", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:dns.Resolver", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "dns:af580faea35d", + "chapter": "dns", + "label": "resolver.cancel()", + "signature": "`resolver.cancel()`", + "apiSymbol": "resolver.cancel", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dns.html#resolvercancel_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dns", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:dns", + "tests": [] + } + } + }, + { + "id": "dns:3ba2a74d3a16", + "chapter": "dns", + "label": "resolver.setLocalAddress([ipv4][, ipv6])", + "signature": "`resolver.setLocalAddress([ipv4][, ipv6])`", + "apiSymbol": "resolver.setLocalAddress", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dns.html#resolversetlocaladdressipv4-ipv6", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dns", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:dns", + "tests": [] + } + } + }, + { + "id": "dns:6ab027166169", + "chapter": "dns", + "label": "dns.getServers()", + "signature": "`dns.getServers()`", + "apiSymbol": "dns.getServers", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dns.html#dnsgetservers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dns", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:dns.getServers", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "dns:e258f26e9af5", + "chapter": "dns", + "label": "dns.lookup(hostname[, options], callback)", + "signature": "`dns.lookup(hostname[, options], callback)`", + "apiSymbol": "dns.lookup", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dns.html#dnslookuphostname-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dns", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:dns.lookup", + "tests": [] + } + } + }, + { + "id": "dns:a8b5aee78cf2", + "chapter": "dns", + "label": "dns.lookupService(address, port, callback)", + "signature": "`dns.lookupService(address, port, callback)`", + "apiSymbol": "dns.lookupService", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dns.html#dnslookupserviceaddress-port-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dns", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:dns.lookupService", + "tests": [] + } + } + }, + { + "id": "dns:6034cfc8acea", + "chapter": "dns", + "label": "dns.resolve(hostname[, rrtype], callback)", + "signature": "`dns.resolve(hostname[, rrtype], callback)`", + "apiSymbol": "dns.resolve", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dns.html#dnsresolvehostname-rrtype-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dns", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:dns.resolve", + "tests": [] + } + } + }, + { + "id": "dns:c8af21a1f17d", + "chapter": "dns", + "label": "dns.resolve4(hostname[, options], callback)", + "signature": "`dns.resolve4(hostname[, options], callback)`", + "apiSymbol": "dns.resolve4", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dns.html#dnsresolve4hostname-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dns", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:dns.resolve4", + "tests": [] + } + } + }, + { + "id": "dns:bd35ee54a04f", + "chapter": "dns", + "label": "dns.resolve6(hostname[, options], callback)", + "signature": "`dns.resolve6(hostname[, options], callback)`", + "apiSymbol": "dns.resolve6", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dns.html#dnsresolve6hostname-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dns", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:dns.resolve6", + "tests": [] + } + } + }, + { + "id": "dns:5c85b8ecb063", + "chapter": "dns", + "label": "dns.resolveAny(hostname, callback)", + "signature": "`dns.resolveAny(hostname, callback)`", + "apiSymbol": "dns.resolveAny", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dns.html#dnsresolveanyhostname-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dns", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:dns", + "tests": [] + } + } + }, + { + "id": "dns:b7d56eafc408", + "chapter": "dns", + "label": "dns.resolveCname(hostname, callback)", + "signature": "`dns.resolveCname(hostname, callback)`", + "apiSymbol": "dns.resolveCname", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dns.html#dnsresolvecnamehostname-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dns", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:dns.resolveCname", + "tests": [] + } + } + }, + { + "id": "dns:ad576c0b1cac", + "chapter": "dns", + "label": "dns.resolveCaa(hostname, callback)", + "signature": "`dns.resolveCaa(hostname, callback)`", + "apiSymbol": "dns.resolveCaa", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dns.html#dnsresolvecaahostname-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dns", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:dns", + "tests": [] + } + } + }, + { + "id": "dns:e96ebf0f4340", + "chapter": "dns", + "label": "dns.resolveMx(hostname, callback)", + "signature": "`dns.resolveMx(hostname, callback)`", + "apiSymbol": "dns.resolveMx", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dns.html#dnsresolvemxhostname-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dns", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:dns.resolveMx", + "tests": [] + } + } + }, + { + "id": "dns:09cd57380b12", + "chapter": "dns", + "label": "dns.resolveNaptr(hostname, callback)", + "signature": "`dns.resolveNaptr(hostname, callback)`", + "apiSymbol": "dns.resolveNaptr", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dns.html#dnsresolvenaptrhostname-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dns", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:dns", + "tests": [] + } + } + }, + { + "id": "dns:9b2964e4568d", + "chapter": "dns", + "label": "dns.resolveNs(hostname, callback)", + "signature": "`dns.resolveNs(hostname, callback)`", + "apiSymbol": "dns.resolveNs", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dns.html#dnsresolvenshostname-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dns", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:dns.resolveNs", + "tests": [] + } + } + }, + { + "id": "dns:5ced5f045833", + "chapter": "dns", + "label": "dns.resolvePtr(hostname, callback)", + "signature": "`dns.resolvePtr(hostname, callback)`", + "apiSymbol": "dns.resolvePtr", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dns.html#dnsresolveptrhostname-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dns", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:dns", + "tests": [] + } + } + }, + { + "id": "dns:8e70ef33c069", + "chapter": "dns", + "label": "dns.resolveSoa(hostname, callback)", + "signature": "`dns.resolveSoa(hostname, callback)`", + "apiSymbol": "dns.resolveSoa", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dns.html#dnsresolvesoahostname-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dns", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:dns", + "tests": [] + } + } + }, + { + "id": "dns:dd50303ab9ea", + "chapter": "dns", + "label": "dns.resolveSrv(hostname, callback)", + "signature": "`dns.resolveSrv(hostname, callback)`", + "apiSymbol": "dns.resolveSrv", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dns.html#dnsresolvesrvhostname-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dns", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:dns.resolveSrv", + "tests": [] + } + } + }, + { + "id": "dns:14d6393c7aa1", + "chapter": "dns", + "label": "dns.resolveTlsa(hostname, callback)", + "signature": "`dns.resolveTlsa(hostname, callback)`", + "apiSymbol": "dns.resolveTlsa", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dns.html#dnsresolvetlsahostname-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dns", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:dns", + "tests": [] + } + } + }, + { + "id": "dns:d8a041e64cd3", + "chapter": "dns", + "label": "dns.resolveTxt(hostname, callback)", + "signature": "`dns.resolveTxt(hostname, callback)`", + "apiSymbol": "dns.resolveTxt", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dns.html#dnsresolvetxthostname-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dns", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:dns.resolveTxt", + "tests": [] + } + } + }, + { + "id": "dns:01236237766b", + "chapter": "dns", + "label": "dns.reverse(ip, callback)", + "signature": "`dns.reverse(ip, callback)`", + "apiSymbol": "dns.reverse", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dns.html#dnsreverseip-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dns", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:dns.reverse", + "tests": [] + } + } + }, + { + "id": "dns:9e6d927d2de8", + "chapter": "dns", + "label": "dns.setDefaultResultOrder(order)", + "signature": "`dns.setDefaultResultOrder(order)`", + "apiSymbol": "dns.setDefaultResultOrder", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dns.html#dnssetdefaultresultorderorder", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dns", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:dns", + "tests": [] + } + } + }, + { + "id": "dns:4e7fd111f3b1", + "chapter": "dns", + "label": "dns.getDefaultResultOrder()", + "signature": "`dns.getDefaultResultOrder()`", + "apiSymbol": "dns.getDefaultResultOrder", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dns.html#dnsgetdefaultresultorder", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dns", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:dns", + "tests": [] + } + } + }, + { + "id": "dns:ceb6c0df5a08", + "chapter": "dns", + "label": "dns.setServers(servers)", + "signature": "`dns.setServers(servers)`", + "apiSymbol": "dns.setServers", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dns.html#dnssetserversservers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dns", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:dns.setServers", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "domain:066b93b2457d", + "chapter": "domain", + "label": "Domain", + "signature": "Class: `Domain`", + "apiSymbol": "Domain", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/domain.html#class-domain", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:domain", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:domain.Domain", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "domain:4cc4c464a948", + "chapter": "domain", + "label": "domain.add(emitter)", + "signature": "`domain.add(emitter)`", + "apiSymbol": "domain.add", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/domain.html#domainaddemitter", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:domain", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:domain.domain.add", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "domain:6e67fe3137e9", + "chapter": "domain", + "label": "domain.bind(callback)", + "signature": "`domain.bind(callback)`", + "apiSymbol": "domain.bind", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/domain.html#domainbindcallback", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:domain", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:domain.domain.bind", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "domain:9d805eb33429", + "chapter": "domain", + "label": "domain.enter()", + "signature": "`domain.enter()`", + "apiSymbol": "domain.enter", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/domain.html#domainenter", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:domain", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:domain.domain.enter", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "domain:b0a39284a169", + "chapter": "domain", + "label": "domain.exit()", + "signature": "`domain.exit()`", + "apiSymbol": "domain.exit", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/domain.html#domainexit", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:domain", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:domain.domain.exit", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "domain:3a81e811d22e", + "chapter": "domain", + "label": "domain.intercept(callback)", + "signature": "`domain.intercept(callback)`", + "apiSymbol": "domain.intercept", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/domain.html#domaininterceptcallback", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:domain", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:domain.domain.intercept", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "domain:9c0327571f4f", + "chapter": "domain", + "label": "domain.remove(emitter)", + "signature": "`domain.remove(emitter)`", + "apiSymbol": "domain.remove", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/domain.html#domainremoveemitter", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:domain", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:domain.domain.remove", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "domain:c71014f1575d", + "chapter": "domain", + "label": "domain.run(fn[, ...args])", + "signature": "`domain.run(fn[, ...args])`", + "apiSymbol": "domain.run", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/domain.html#domainrunfn-args", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:domain", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:domain.domain.run", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "domain:c33d5f5a8aeb", + "chapter": "domain", + "label": "members", + "signature": "`members` Type: {Array}", + "apiSymbol": "members", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/domain.html#class-domain", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:domain", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:domain", + "tests": [] + } + } + }, + { + "id": "domain:c32ec701e446", + "chapter": "domain", + "label": "domain.create()", + "signature": "`domain.create()`", + "apiSymbol": "domain.create", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/domain.html#domaincreate", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:domain", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:domain.create", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "domain:213e926e2eb1", + "chapter": "domain", + "label": "Additions to Error objects", + "signature": "Additions to `Error` objects", + "apiSymbol": "Error", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/domain.html#additions-to-error-objects", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:domain", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:domain", + "tests": [] + } + } + }, + { + "id": "environment_variables:33438b6e6dea", + "chapter": "environment_variables", + "label": "process.env", + "signature": "`process.env`", + "apiSymbol": "process.env", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/environment_variables.html#processenv", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.process.env", + "tests": [ + "tests/corpus/990-process-basics.ts", + "tests/corpus/2314-process-introspection.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-feature:environment_variables.process.env", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "errors:7f4794f1c5f2", + "chapter": "errors", + "label": "Error", + "signature": "Class: `Error`", + "apiSymbol": "Error", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#class-error", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:c556c64e0ff7", + "chapter": "errors", + "label": "Error.captureStackTrace(targetObject[, constructorOpt])", + "signature": "`Error.captureStackTrace(targetObject[, constructorOpt])`", + "apiSymbol": "Error.captureStackTrace", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#errorcapturestacktracetargetobject-constructoropt", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:25c660705430", + "chapter": "errors", + "label": "stackTraceLimit", + "signature": "`stackTraceLimit` Type: {number}", + "apiSymbol": "stackTraceLimit", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#class-error", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:307cb3b47923", + "chapter": "errors", + "label": "cause", + "signature": "`cause` Type: {any}", + "apiSymbol": "cause", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#class-error", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:0b8326fd49b9", + "chapter": "errors", + "label": "code", + "signature": "`code` Type: {string}", + "apiSymbol": "code", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#class-error", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:f1090de1c75e", + "chapter": "errors", + "label": "message", + "signature": "`message` Type: {string}", + "apiSymbol": "message", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#class-error", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:267871e38f35", + "chapter": "errors", + "label": "stack", + "signature": "`stack` Type: {string}", + "apiSymbol": "stack", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#class-error", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:eb3641f5dbc8", + "chapter": "errors", + "label": "AssertionError", + "signature": "Class: `AssertionError`", + "apiSymbol": "AssertionError", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#class-assertionerror", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:2c13de112ff5", + "chapter": "errors", + "label": "RangeError", + "signature": "Class: `RangeError`", + "apiSymbol": "RangeError", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#class-rangeerror", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:fa0b553e768a", + "chapter": "errors", + "label": "ReferenceError", + "signature": "Class: `ReferenceError`", + "apiSymbol": "ReferenceError", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#class-referenceerror", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:a5069dc010a6", + "chapter": "errors", + "label": "SyntaxError", + "signature": "Class: `SyntaxError`", + "apiSymbol": "SyntaxError", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#class-syntaxerror", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:8a2e6c678f19", + "chapter": "errors", + "label": "SystemError", + "signature": "Class: `SystemError`", + "apiSymbol": "SystemError", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#class-systemerror", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:64d8f9706c45", + "chapter": "errors", + "label": "address", + "signature": "`address` Type: {string}", + "apiSymbol": "address", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#class-systemerror", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:9b9d082b9877", + "chapter": "errors", + "label": "code", + "signature": "`code` Type: {string}", + "apiSymbol": "code", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#class-systemerror", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:e66be94e4ffa", + "chapter": "errors", + "label": "dest", + "signature": "`dest` Type: {string}", + "apiSymbol": "dest", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#class-systemerror", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:277ba61feefa", + "chapter": "errors", + "label": "errno", + "signature": "`errno` Type: {number}", + "apiSymbol": "errno", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#class-systemerror", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:9c8858f1fab2", + "chapter": "errors", + "label": "info", + "signature": "`info` Type: {Object}", + "apiSymbol": "info", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#class-systemerror", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:797eb4941811", + "chapter": "errors", + "label": "message", + "signature": "`message` Type: {string}", + "apiSymbol": "message", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#class-systemerror", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:3ab32c14d7b9", + "chapter": "errors", + "label": "path", + "signature": "`path` Type: {string}", + "apiSymbol": "path", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#class-systemerror", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:6c0abee577fd", + "chapter": "errors", + "label": "port", + "signature": "`port` Type: {number}", + "apiSymbol": "port", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#class-systemerror", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:2229a75bb318", + "chapter": "errors", + "label": "syscall", + "signature": "`syscall` Type: {string}", + "apiSymbol": "syscall", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#class-systemerror", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:f091af63f645", + "chapter": "errors", + "label": "TypeError", + "signature": "Class: `TypeError`", + "apiSymbol": "TypeError", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#class-typeerror", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:07593cc1d213", + "chapter": "errors", + "label": "error.opensslErrorStack", + "signature": "`error.opensslErrorStack`", + "apiSymbol": "error.opensslErrorStack", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#erroropensslerrorstack", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:244449227555", + "chapter": "errors", + "label": "error.function", + "signature": "`error.function`", + "apiSymbol": "error.function", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#errorfunction", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:8bb8399c81c1", + "chapter": "errors", + "label": "error.library", + "signature": "`error.library`", + "apiSymbol": "error.library", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#errorlibrary", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:88a004ac847e", + "chapter": "errors", + "label": "error.reason", + "signature": "`error.reason`", + "apiSymbol": "error.reason", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#errorreason", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:e0ac020287da", + "chapter": "errors", + "label": "ABORT_ERR", + "signature": "`ABORT_ERR`", + "apiSymbol": "ABORT_ERR", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#abort_err", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:2d2c7177fe55", + "chapter": "errors", + "label": "ERR_ACCESS_DENIED", + "signature": "`ERR_ACCESS_DENIED`", + "apiSymbol": "ERR_ACCESS_DENIED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_access_denied", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:02346cdcedea", + "chapter": "errors", + "label": "ERR_AMBIGUOUS_ARGUMENT", + "signature": "`ERR_AMBIGUOUS_ARGUMENT`", + "apiSymbol": "ERR_AMBIGUOUS_ARGUMENT", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_ambiguous_argument", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:f67deaf6ecde", + "chapter": "errors", + "label": "ERR_ARG_NOT_ITERABLE", + "signature": "`ERR_ARG_NOT_ITERABLE`", + "apiSymbol": "ERR_ARG_NOT_ITERABLE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_arg_not_iterable", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:1dc7c926bebf", + "chapter": "errors", + "label": "ERR_ASSERTION", + "signature": "`ERR_ASSERTION`", + "apiSymbol": "ERR_ASSERTION", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_assertion", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:554a1ab69130", + "chapter": "errors", + "label": "ERR_ASYNC_CALLBACK", + "signature": "`ERR_ASYNC_CALLBACK`", + "apiSymbol": "ERR_ASYNC_CALLBACK", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_async_callback", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:70875776e701", + "chapter": "errors", + "label": "ERR_ASYNC_LOADER_REQUEST_NEVER_SETTLED", + "signature": "`ERR_ASYNC_LOADER_REQUEST_NEVER_SETTLED`", + "apiSymbol": "ERR_ASYNC_LOADER_REQUEST_NEVER_SETTLED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_async_loader_request_never_settled", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:f9ff810384f0", + "chapter": "errors", + "label": "ERR_ASYNC_TYPE", + "signature": "`ERR_ASYNC_TYPE`", + "apiSymbol": "ERR_ASYNC_TYPE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_async_type", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:17fd1658ce09", + "chapter": "errors", + "label": "ERR_BROTLI_COMPRESSION_FAILED", + "signature": "`ERR_BROTLI_COMPRESSION_FAILED`", + "apiSymbol": "ERR_BROTLI_COMPRESSION_FAILED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_brotli_compression_failed", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:bd30c3b4a68e", + "chapter": "errors", + "label": "ERR_BROTLI_INVALID_PARAM", + "signature": "`ERR_BROTLI_INVALID_PARAM`", + "apiSymbol": "ERR_BROTLI_INVALID_PARAM", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_brotli_invalid_param", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:f4d0ec30d024", + "chapter": "errors", + "label": "ERR_BUFFER_CONTEXT_NOT_AVAILABLE", + "signature": "`ERR_BUFFER_CONTEXT_NOT_AVAILABLE`", + "apiSymbol": "ERR_BUFFER_CONTEXT_NOT_AVAILABLE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_buffer_context_not_available", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:57519c230c2b", + "chapter": "errors", + "label": "ERR_BUFFER_OUT_OF_BOUNDS", + "signature": "`ERR_BUFFER_OUT_OF_BOUNDS`", + "apiSymbol": "ERR_BUFFER_OUT_OF_BOUNDS", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_buffer_out_of_bounds", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:df7d3e8aa746", + "chapter": "errors", + "label": "ERR_BUFFER_TOO_LARGE", + "signature": "`ERR_BUFFER_TOO_LARGE`", + "apiSymbol": "ERR_BUFFER_TOO_LARGE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_buffer_too_large", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:dc24a9f6d88a", + "chapter": "errors", + "label": "ERR_CANNOT_WATCH_SIGINT", + "signature": "`ERR_CANNOT_WATCH_SIGINT`", + "apiSymbol": "ERR_CANNOT_WATCH_SIGINT", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_cannot_watch_sigint", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:8c8be2b153de", + "chapter": "errors", + "label": "ERR_CHILD_CLOSED_BEFORE_REPLY", + "signature": "`ERR_CHILD_CLOSED_BEFORE_REPLY`", + "apiSymbol": "ERR_CHILD_CLOSED_BEFORE_REPLY", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_child_closed_before_reply", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:46e8b80fd8e1", + "chapter": "errors", + "label": "ERR_CHILD_PROCESS_IPC_REQUIRED", + "signature": "`ERR_CHILD_PROCESS_IPC_REQUIRED`", + "apiSymbol": "ERR_CHILD_PROCESS_IPC_REQUIRED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_child_process_ipc_required", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:65ed23cc69f9", + "chapter": "errors", + "label": "ERR_CHILD_PROCESS_STDIO_MAXBUFFER", + "signature": "`ERR_CHILD_PROCESS_STDIO_MAXBUFFER`", + "apiSymbol": "ERR_CHILD_PROCESS_STDIO_MAXBUFFER", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_child_process_stdio_maxbuffer", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:2be4700c3cbb", + "chapter": "errors", + "label": "ERR_CLOSED_MESSAGE_PORT", + "signature": "`ERR_CLOSED_MESSAGE_PORT`", + "apiSymbol": "ERR_CLOSED_MESSAGE_PORT", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_closed_message_port", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:056cb04e0822", + "chapter": "errors", + "label": "ERR_CONSOLE_WRITABLE_STREAM", + "signature": "`ERR_CONSOLE_WRITABLE_STREAM`", + "apiSymbol": "ERR_CONSOLE_WRITABLE_STREAM", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_console_writable_stream", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:a6b622f20c74", + "chapter": "errors", + "label": "ERR_CONSTRUCT_CALL_INVALID", + "signature": "`ERR_CONSTRUCT_CALL_INVALID`", + "apiSymbol": "ERR_CONSTRUCT_CALL_INVALID", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_construct_call_invalid", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:344f30688139", + "chapter": "errors", + "label": "ERR_CONSTRUCT_CALL_REQUIRED", + "signature": "`ERR_CONSTRUCT_CALL_REQUIRED`", + "apiSymbol": "ERR_CONSTRUCT_CALL_REQUIRED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_construct_call_required", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:7f123c9bf896", + "chapter": "errors", + "label": "ERR_CONTEXT_NOT_INITIALIZED", + "signature": "`ERR_CONTEXT_NOT_INITIALIZED`", + "apiSymbol": "ERR_CONTEXT_NOT_INITIALIZED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_context_not_initialized", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:74c5c657e904", + "chapter": "errors", + "label": "ERR_CPU_PROFILE_ALREADY_STARTED", + "signature": "`ERR_CPU_PROFILE_ALREADY_STARTED`", + "apiSymbol": "ERR_CPU_PROFILE_ALREADY_STARTED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_cpu_profile_already_started", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:e894dcb945a5", + "chapter": "errors", + "label": "ERR_CPU_PROFILE_NOT_STARTED", + "signature": "`ERR_CPU_PROFILE_NOT_STARTED`", + "apiSymbol": "ERR_CPU_PROFILE_NOT_STARTED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_cpu_profile_not_started", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:a2faf2137f40", + "chapter": "errors", + "label": "ERR_CPU_PROFILE_TOO_MANY", + "signature": "`ERR_CPU_PROFILE_TOO_MANY`", + "apiSymbol": "ERR_CPU_PROFILE_TOO_MANY", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_cpu_profile_too_many", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:cc081da5a3cd", + "chapter": "errors", + "label": "ERR_CRYPTO_ARGON2_NOT_SUPPORTED", + "signature": "`ERR_CRYPTO_ARGON2_NOT_SUPPORTED`", + "apiSymbol": "ERR_CRYPTO_ARGON2_NOT_SUPPORTED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_crypto_argon2_not_supported", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:6172292c1827", + "chapter": "errors", + "label": "ERR_CRYPTO_CUSTOM_ENGINE_NOT_SUPPORTED", + "signature": "`ERR_CRYPTO_CUSTOM_ENGINE_NOT_SUPPORTED`", + "apiSymbol": "ERR_CRYPTO_CUSTOM_ENGINE_NOT_SUPPORTED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_crypto_custom_engine_not_supported", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:aab5ae69ed98", + "chapter": "errors", + "label": "ERR_CRYPTO_ECDH_INVALID_FORMAT", + "signature": "`ERR_CRYPTO_ECDH_INVALID_FORMAT`", + "apiSymbol": "ERR_CRYPTO_ECDH_INVALID_FORMAT", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_crypto_ecdh_invalid_format", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:f8f49ab7034b", + "chapter": "errors", + "label": "ERR_CRYPTO_ECDH_INVALID_PUBLIC_KEY", + "signature": "`ERR_CRYPTO_ECDH_INVALID_PUBLIC_KEY`", + "apiSymbol": "ERR_CRYPTO_ECDH_INVALID_PUBLIC_KEY", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_crypto_ecdh_invalid_public_key", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:c511898eb860", + "chapter": "errors", + "label": "ERR_CRYPTO_ENGINE_UNKNOWN", + "signature": "`ERR_CRYPTO_ENGINE_UNKNOWN`", + "apiSymbol": "ERR_CRYPTO_ENGINE_UNKNOWN", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_crypto_engine_unknown", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:3ad417a98b35", + "chapter": "errors", + "label": "ERR_CRYPTO_FIPS_FORCED", + "signature": "`ERR_CRYPTO_FIPS_FORCED`", + "apiSymbol": "ERR_CRYPTO_FIPS_FORCED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_crypto_fips_forced", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:6007a1f7544e", + "chapter": "errors", + "label": "ERR_CRYPTO_FIPS_UNAVAILABLE", + "signature": "`ERR_CRYPTO_FIPS_UNAVAILABLE`", + "apiSymbol": "ERR_CRYPTO_FIPS_UNAVAILABLE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_crypto_fips_unavailable", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:4804da4f5150", + "chapter": "errors", + "label": "ERR_CRYPTO_HASH_FINALIZED", + "signature": "`ERR_CRYPTO_HASH_FINALIZED`", + "apiSymbol": "ERR_CRYPTO_HASH_FINALIZED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_crypto_hash_finalized", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:cfb49877e743", + "chapter": "errors", + "label": "ERR_CRYPTO_HASH_UPDATE_FAILED", + "signature": "`ERR_CRYPTO_HASH_UPDATE_FAILED`", + "apiSymbol": "ERR_CRYPTO_HASH_UPDATE_FAILED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_crypto_hash_update_failed", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:bb43deee0627", + "chapter": "errors", + "label": "ERR_CRYPTO_INCOMPATIBLE_KEY", + "signature": "`ERR_CRYPTO_INCOMPATIBLE_KEY`", + "apiSymbol": "ERR_CRYPTO_INCOMPATIBLE_KEY", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_crypto_incompatible_key", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:703fd472c0e9", + "chapter": "errors", + "label": "ERR_CRYPTO_INCOMPATIBLE_KEY_OPTIONS", + "signature": "`ERR_CRYPTO_INCOMPATIBLE_KEY_OPTIONS`", + "apiSymbol": "ERR_CRYPTO_INCOMPATIBLE_KEY_OPTIONS", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_crypto_incompatible_key_options", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:49af00ab3a2f", + "chapter": "errors", + "label": "ERR_CRYPTO_INITIALIZATION_FAILED", + "signature": "`ERR_CRYPTO_INITIALIZATION_FAILED`", + "apiSymbol": "ERR_CRYPTO_INITIALIZATION_FAILED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_crypto_initialization_failed", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:020aaeb70963", + "chapter": "errors", + "label": "ERR_CRYPTO_INVALID_AUTH_TAG", + "signature": "`ERR_CRYPTO_INVALID_AUTH_TAG`", + "apiSymbol": "ERR_CRYPTO_INVALID_AUTH_TAG", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_crypto_invalid_auth_tag", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:5b52575c6081", + "chapter": "errors", + "label": "ERR_CRYPTO_INVALID_COUNTER", + "signature": "`ERR_CRYPTO_INVALID_COUNTER`", + "apiSymbol": "ERR_CRYPTO_INVALID_COUNTER", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_crypto_invalid_counter", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:9e7e407ab2fc", + "chapter": "errors", + "label": "ERR_CRYPTO_INVALID_CURVE", + "signature": "`ERR_CRYPTO_INVALID_CURVE`", + "apiSymbol": "ERR_CRYPTO_INVALID_CURVE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_crypto_invalid_curve", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:2e3d758d351a", + "chapter": "errors", + "label": "ERR_CRYPTO_INVALID_DIGEST", + "signature": "`ERR_CRYPTO_INVALID_DIGEST`", + "apiSymbol": "ERR_CRYPTO_INVALID_DIGEST", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_crypto_invalid_digest", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:f5052ad2fe7d", + "chapter": "errors", + "label": "ERR_CRYPTO_INVALID_IV", + "signature": "`ERR_CRYPTO_INVALID_IV`", + "apiSymbol": "ERR_CRYPTO_INVALID_IV", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_crypto_invalid_iv", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:ee4d3491fec1", + "chapter": "errors", + "label": "ERR_CRYPTO_INVALID_JWK", + "signature": "`ERR_CRYPTO_INVALID_JWK`", + "apiSymbol": "ERR_CRYPTO_INVALID_JWK", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_crypto_invalid_jwk", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:fd4b2673b1eb", + "chapter": "errors", + "label": "ERR_CRYPTO_INVALID_KEYLEN", + "signature": "`ERR_CRYPTO_INVALID_KEYLEN`", + "apiSymbol": "ERR_CRYPTO_INVALID_KEYLEN", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_crypto_invalid_keylen", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:619d9f68126a", + "chapter": "errors", + "label": "ERR_CRYPTO_INVALID_KEYPAIR", + "signature": "`ERR_CRYPTO_INVALID_KEYPAIR`", + "apiSymbol": "ERR_CRYPTO_INVALID_KEYPAIR", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_crypto_invalid_keypair", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:5fe168c464f5", + "chapter": "errors", + "label": "ERR_CRYPTO_INVALID_KEYTYPE", + "signature": "`ERR_CRYPTO_INVALID_KEYTYPE`", + "apiSymbol": "ERR_CRYPTO_INVALID_KEYTYPE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_crypto_invalid_keytype", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:03d6ade21caf", + "chapter": "errors", + "label": "ERR_CRYPTO_INVALID_KEY_OBJECT_TYPE", + "signature": "`ERR_CRYPTO_INVALID_KEY_OBJECT_TYPE`", + "apiSymbol": "ERR_CRYPTO_INVALID_KEY_OBJECT_TYPE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_crypto_invalid_key_object_type", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:f62618221d0d", + "chapter": "errors", + "label": "ERR_CRYPTO_INVALID_MESSAGELEN", + "signature": "`ERR_CRYPTO_INVALID_MESSAGELEN`", + "apiSymbol": "ERR_CRYPTO_INVALID_MESSAGELEN", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_crypto_invalid_messagelen", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:ffb39232292e", + "chapter": "errors", + "label": "ERR_CRYPTO_INVALID_SCRYPT_PARAMS", + "signature": "`ERR_CRYPTO_INVALID_SCRYPT_PARAMS`", + "apiSymbol": "ERR_CRYPTO_INVALID_SCRYPT_PARAMS", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_crypto_invalid_scrypt_params", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:62d1a569837e", + "chapter": "errors", + "label": "ERR_CRYPTO_INVALID_STATE", + "signature": "`ERR_CRYPTO_INVALID_STATE`", + "apiSymbol": "ERR_CRYPTO_INVALID_STATE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_crypto_invalid_state", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:57b70c974d1f", + "chapter": "errors", + "label": "ERR_CRYPTO_INVALID_TAG_LENGTH", + "signature": "`ERR_CRYPTO_INVALID_TAG_LENGTH`", + "apiSymbol": "ERR_CRYPTO_INVALID_TAG_LENGTH", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_crypto_invalid_tag_length", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:2e4136c48e3b", + "chapter": "errors", + "label": "ERR_CRYPTO_JOB_INIT_FAILED", + "signature": "`ERR_CRYPTO_JOB_INIT_FAILED`", + "apiSymbol": "ERR_CRYPTO_JOB_INIT_FAILED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_crypto_job_init_failed", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:05ff2e655c39", + "chapter": "errors", + "label": "ERR_CRYPTO_JWK_UNSUPPORTED_CURVE", + "signature": "`ERR_CRYPTO_JWK_UNSUPPORTED_CURVE`", + "apiSymbol": "ERR_CRYPTO_JWK_UNSUPPORTED_CURVE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_crypto_jwk_unsupported_curve", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:5e5b95644ac5", + "chapter": "errors", + "label": "ERR_CRYPTO_JWK_UNSUPPORTED_KEY_TYPE", + "signature": "`ERR_CRYPTO_JWK_UNSUPPORTED_KEY_TYPE`", + "apiSymbol": "ERR_CRYPTO_JWK_UNSUPPORTED_KEY_TYPE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_crypto_jwk_unsupported_key_type", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:bc83266adddf", + "chapter": "errors", + "label": "ERR_CRYPTO_KEM_NOT_SUPPORTED", + "signature": "`ERR_CRYPTO_KEM_NOT_SUPPORTED`", + "apiSymbol": "ERR_CRYPTO_KEM_NOT_SUPPORTED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_crypto_kem_not_supported", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:bbb816de6720", + "chapter": "errors", + "label": "ERR_CRYPTO_OPERATION_FAILED", + "signature": "`ERR_CRYPTO_OPERATION_FAILED`", + "apiSymbol": "ERR_CRYPTO_OPERATION_FAILED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_crypto_operation_failed", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:dc6a81f93f20", + "chapter": "errors", + "label": "ERR_CRYPTO_PBKDF2_ERROR", + "signature": "`ERR_CRYPTO_PBKDF2_ERROR`", + "apiSymbol": "ERR_CRYPTO_PBKDF2_ERROR", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_crypto_pbkdf2_error", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:39221d87d63f", + "chapter": "errors", + "label": "ERR_CRYPTO_SCRYPT_NOT_SUPPORTED", + "signature": "`ERR_CRYPTO_SCRYPT_NOT_SUPPORTED`", + "apiSymbol": "ERR_CRYPTO_SCRYPT_NOT_SUPPORTED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_crypto_scrypt_not_supported", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:4310d2860d58", + "chapter": "errors", + "label": "ERR_CRYPTO_SIGN_KEY_REQUIRED", + "signature": "`ERR_CRYPTO_SIGN_KEY_REQUIRED`", + "apiSymbol": "ERR_CRYPTO_SIGN_KEY_REQUIRED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_crypto_sign_key_required", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:1b6193d0a254", + "chapter": "errors", + "label": "ERR_CRYPTO_TIMING_SAFE_EQUAL_LENGTH", + "signature": "`ERR_CRYPTO_TIMING_SAFE_EQUAL_LENGTH`", + "apiSymbol": "ERR_CRYPTO_TIMING_SAFE_EQUAL_LENGTH", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_crypto_timing_safe_equal_length", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:0b4371b55b25", + "chapter": "errors", + "label": "ERR_CRYPTO_UNKNOWN_CIPHER", + "signature": "`ERR_CRYPTO_UNKNOWN_CIPHER`", + "apiSymbol": "ERR_CRYPTO_UNKNOWN_CIPHER", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_crypto_unknown_cipher", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:c863f78b249e", + "chapter": "errors", + "label": "ERR_CRYPTO_UNKNOWN_DH_GROUP", + "signature": "`ERR_CRYPTO_UNKNOWN_DH_GROUP`", + "apiSymbol": "ERR_CRYPTO_UNKNOWN_DH_GROUP", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_crypto_unknown_dh_group", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:29e73b6ed77c", + "chapter": "errors", + "label": "ERR_CRYPTO_UNSUPPORTED_OPERATION", + "signature": "`ERR_CRYPTO_UNSUPPORTED_OPERATION`", + "apiSymbol": "ERR_CRYPTO_UNSUPPORTED_OPERATION", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_crypto_unsupported_operation", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:fff1522fadd2", + "chapter": "errors", + "label": "ERR_DEBUGGER_ERROR", + "signature": "`ERR_DEBUGGER_ERROR`", + "apiSymbol": "ERR_DEBUGGER_ERROR", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_debugger_error", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:8ac58d0d91e4", + "chapter": "errors", + "label": "ERR_DEBUGGER_STARTUP_ERROR", + "signature": "`ERR_DEBUGGER_STARTUP_ERROR`", + "apiSymbol": "ERR_DEBUGGER_STARTUP_ERROR", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_debugger_startup_error", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:93d80817e498", + "chapter": "errors", + "label": "ERR_DIR_CLOSED", + "signature": "`ERR_DIR_CLOSED`", + "apiSymbol": "ERR_DIR_CLOSED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_dir_closed", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:a6bb8593a92e", + "chapter": "errors", + "label": "ERR_DIR_CONCURRENT_OPERATION", + "signature": "`ERR_DIR_CONCURRENT_OPERATION`", + "apiSymbol": "ERR_DIR_CONCURRENT_OPERATION", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_dir_concurrent_operation", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:385e93f7b3c0", + "chapter": "errors", + "label": "ERR_DLOPEN_DISABLED", + "signature": "`ERR_DLOPEN_DISABLED`", + "apiSymbol": "ERR_DLOPEN_DISABLED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_dlopen_disabled", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:7ebc9e9e144e", + "chapter": "errors", + "label": "ERR_DLOPEN_FAILED", + "signature": "`ERR_DLOPEN_FAILED`", + "apiSymbol": "ERR_DLOPEN_FAILED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_dlopen_failed", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:aa3062b49ff4", + "chapter": "errors", + "label": "ERR_DNS_SET_SERVERS_FAILED", + "signature": "`ERR_DNS_SET_SERVERS_FAILED`", + "apiSymbol": "ERR_DNS_SET_SERVERS_FAILED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_dns_set_servers_failed", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:a8bbe59c280f", + "chapter": "errors", + "label": "ERR_DOMAIN_CALLBACK_NOT_AVAILABLE", + "signature": "`ERR_DOMAIN_CALLBACK_NOT_AVAILABLE`", + "apiSymbol": "ERR_DOMAIN_CALLBACK_NOT_AVAILABLE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_domain_callback_not_available", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:a83d8a48b7c1", + "chapter": "errors", + "label": "ERR_DOMAIN_CANNOT_SET_UNCAUGHT_EXCEPTION_CAPTURE", + "signature": "`ERR_DOMAIN_CANNOT_SET_UNCAUGHT_EXCEPTION_CAPTURE`", + "apiSymbol": "ERR_DOMAIN_CANNOT_SET_UNCAUGHT_EXCEPTION_CAPTURE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_domain_cannot_set_uncaught_exception_capture", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:1a7e7ab4221e", + "chapter": "errors", + "label": "ERR_DUPLICATE_STARTUP_SNAPSHOT_MAIN_FUNCTION", + "signature": "`ERR_DUPLICATE_STARTUP_SNAPSHOT_MAIN_FUNCTION`", + "apiSymbol": "ERR_DUPLICATE_STARTUP_SNAPSHOT_MAIN_FUNCTION", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_duplicate_startup_snapshot_main_function", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:914f6b8ad5ff", + "chapter": "errors", + "label": "ERR_ENCODING_INVALID_ENCODED_DATA", + "signature": "`ERR_ENCODING_INVALID_ENCODED_DATA`", + "apiSymbol": "ERR_ENCODING_INVALID_ENCODED_DATA", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_encoding_invalid_encoded_data", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:6b2432f44e5e", + "chapter": "errors", + "label": "ERR_ENCODING_NOT_SUPPORTED", + "signature": "`ERR_ENCODING_NOT_SUPPORTED`", + "apiSymbol": "ERR_ENCODING_NOT_SUPPORTED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_encoding_not_supported", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:1bf53a9d6546", + "chapter": "errors", + "label": "ERR_EVAL_ESM_CANNOT_PRINT", + "signature": "`ERR_EVAL_ESM_CANNOT_PRINT`", + "apiSymbol": "ERR_EVAL_ESM_CANNOT_PRINT", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_eval_esm_cannot_print", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:8d80b6bf8bd8", + "chapter": "errors", + "label": "ERR_EVENT_RECURSION", + "signature": "`ERR_EVENT_RECURSION`", + "apiSymbol": "ERR_EVENT_RECURSION", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_event_recursion", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:2e2496d4db45", + "chapter": "errors", + "label": "ERR_EXECUTION_ENVIRONMENT_NOT_AVAILABLE", + "signature": "`ERR_EXECUTION_ENVIRONMENT_NOT_AVAILABLE`", + "apiSymbol": "ERR_EXECUTION_ENVIRONMENT_NOT_AVAILABLE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_execution_environment_not_available", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:a0a96a13ff89", + "chapter": "errors", + "label": "ERR_FALSY_VALUE_REJECTION", + "signature": "`ERR_FALSY_VALUE_REJECTION`", + "apiSymbol": "ERR_FALSY_VALUE_REJECTION", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_falsy_value_rejection", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:6f4e0bf7be7b", + "chapter": "errors", + "label": "ERR_FEATURE_UNAVAILABLE_ON_PLATFORM", + "signature": "`ERR_FEATURE_UNAVAILABLE_ON_PLATFORM`", + "apiSymbol": "ERR_FEATURE_UNAVAILABLE_ON_PLATFORM", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_feature_unavailable_on_platform", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:109fb306cc44", + "chapter": "errors", + "label": "ERR_FS_CP_DIR_TO_NON_DIR", + "signature": "`ERR_FS_CP_DIR_TO_NON_DIR`", + "apiSymbol": "ERR_FS_CP_DIR_TO_NON_DIR", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_fs_cp_dir_to_non_dir", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:d711577aa071", + "chapter": "errors", + "label": "ERR_FS_CP_EEXIST", + "signature": "`ERR_FS_CP_EEXIST`", + "apiSymbol": "ERR_FS_CP_EEXIST", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_fs_cp_eexist", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:591e537dea01", + "chapter": "errors", + "label": "ERR_FS_CP_EINVAL", + "signature": "`ERR_FS_CP_EINVAL`", + "apiSymbol": "ERR_FS_CP_EINVAL", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_fs_cp_einval", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:193e18cbc642", + "chapter": "errors", + "label": "ERR_FS_CP_FIFO_PIPE", + "signature": "`ERR_FS_CP_FIFO_PIPE`", + "apiSymbol": "ERR_FS_CP_FIFO_PIPE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_fs_cp_fifo_pipe", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:cea2d138c1c3", + "chapter": "errors", + "label": "ERR_FS_CP_NON_DIR_TO_DIR", + "signature": "`ERR_FS_CP_NON_DIR_TO_DIR`", + "apiSymbol": "ERR_FS_CP_NON_DIR_TO_DIR", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_fs_cp_non_dir_to_dir", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:b44f00ea9f00", + "chapter": "errors", + "label": "ERR_FS_CP_SOCKET", + "signature": "`ERR_FS_CP_SOCKET`", + "apiSymbol": "ERR_FS_CP_SOCKET", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_fs_cp_socket", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:578d53ee955f", + "chapter": "errors", + "label": "ERR_FS_CP_SYMLINK_TO_SUBDIRECTORY", + "signature": "`ERR_FS_CP_SYMLINK_TO_SUBDIRECTORY`", + "apiSymbol": "ERR_FS_CP_SYMLINK_TO_SUBDIRECTORY", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_fs_cp_symlink_to_subdirectory", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:7508273d2cc2", + "chapter": "errors", + "label": "ERR_FS_CP_UNKNOWN", + "signature": "`ERR_FS_CP_UNKNOWN`", + "apiSymbol": "ERR_FS_CP_UNKNOWN", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_fs_cp_unknown", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:00ec21ce38bc", + "chapter": "errors", + "label": "ERR_FS_EISDIR", + "signature": "`ERR_FS_EISDIR`", + "apiSymbol": "ERR_FS_EISDIR", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_fs_eisdir", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:8bb2e0b96ff3", + "chapter": "errors", + "label": "ERR_FS_FILE_TOO_LARGE", + "signature": "`ERR_FS_FILE_TOO_LARGE`", + "apiSymbol": "ERR_FS_FILE_TOO_LARGE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_fs_file_too_large", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:c62d401ab59d", + "chapter": "errors", + "label": "ERR_FS_WATCH_QUEUE_OVERFLOW", + "signature": "`ERR_FS_WATCH_QUEUE_OVERFLOW`", + "apiSymbol": "ERR_FS_WATCH_QUEUE_OVERFLOW", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_fs_watch_queue_overflow", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:8176b3548759", + "chapter": "errors", + "label": "ERR_HTTP2_ALTSVC_INVALID_ORIGIN", + "signature": "`ERR_HTTP2_ALTSVC_INVALID_ORIGIN`", + "apiSymbol": "ERR_HTTP2_ALTSVC_INVALID_ORIGIN", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http2_altsvc_invalid_origin", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:1ffa5faa134b", + "chapter": "errors", + "label": "ERR_HTTP2_ALTSVC_LENGTH", + "signature": "`ERR_HTTP2_ALTSVC_LENGTH`", + "apiSymbol": "ERR_HTTP2_ALTSVC_LENGTH", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http2_altsvc_length", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:a0754b7922ca", + "chapter": "errors", + "label": "ERR_HTTP2_CONNECT_AUTHORITY", + "signature": "`ERR_HTTP2_CONNECT_AUTHORITY`", + "apiSymbol": "ERR_HTTP2_CONNECT_AUTHORITY", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http2_connect_authority", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:9da29a9746b9", + "chapter": "errors", + "label": "ERR_HTTP2_CONNECT_PATH", + "signature": "`ERR_HTTP2_CONNECT_PATH`", + "apiSymbol": "ERR_HTTP2_CONNECT_PATH", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http2_connect_path", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:9e5b1b864d6e", + "chapter": "errors", + "label": "ERR_HTTP2_CONNECT_SCHEME", + "signature": "`ERR_HTTP2_CONNECT_SCHEME`", + "apiSymbol": "ERR_HTTP2_CONNECT_SCHEME", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http2_connect_scheme", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:3121028a67f0", + "chapter": "errors", + "label": "ERR_HTTP2_ERROR", + "signature": "`ERR_HTTP2_ERROR`", + "apiSymbol": "ERR_HTTP2_ERROR", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http2_error", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:87ef2b8b5dd4", + "chapter": "errors", + "label": "ERR_HTTP2_GOAWAY_SESSION", + "signature": "`ERR_HTTP2_GOAWAY_SESSION`", + "apiSymbol": "ERR_HTTP2_GOAWAY_SESSION", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http2_goaway_session", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:160c0d1ae617", + "chapter": "errors", + "label": "ERR_HTTP2_HEADERS_AFTER_RESPOND", + "signature": "`ERR_HTTP2_HEADERS_AFTER_RESPOND`", + "apiSymbol": "ERR_HTTP2_HEADERS_AFTER_RESPOND", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http2_headers_after_respond", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:48bf7e803b41", + "chapter": "errors", + "label": "ERR_HTTP2_HEADERS_SENT", + "signature": "`ERR_HTTP2_HEADERS_SENT`", + "apiSymbol": "ERR_HTTP2_HEADERS_SENT", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http2_headers_sent", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:5cccc962a5e1", + "chapter": "errors", + "label": "ERR_HTTP2_HEADER_SINGLE_VALUE", + "signature": "`ERR_HTTP2_HEADER_SINGLE_VALUE`", + "apiSymbol": "ERR_HTTP2_HEADER_SINGLE_VALUE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http2_header_single_value", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:dce0a399957f", + "chapter": "errors", + "label": "ERR_HTTP2_INFO_STATUS_NOT_ALLOWED", + "signature": "`ERR_HTTP2_INFO_STATUS_NOT_ALLOWED`", + "apiSymbol": "ERR_HTTP2_INFO_STATUS_NOT_ALLOWED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http2_info_status_not_allowed", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:1ebd2ac91e4e", + "chapter": "errors", + "label": "ERR_HTTP2_INVALID_CONNECTION_HEADERS", + "signature": "`ERR_HTTP2_INVALID_CONNECTION_HEADERS`", + "apiSymbol": "ERR_HTTP2_INVALID_CONNECTION_HEADERS", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http2_invalid_connection_headers", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:63eb5a9968fd", + "chapter": "errors", + "label": "ERR_HTTP2_INVALID_HEADER_VALUE", + "signature": "`ERR_HTTP2_INVALID_HEADER_VALUE`", + "apiSymbol": "ERR_HTTP2_INVALID_HEADER_VALUE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http2_invalid_header_value", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:4ad8971580e9", + "chapter": "errors", + "label": "ERR_HTTP2_INVALID_INFO_STATUS", + "signature": "`ERR_HTTP2_INVALID_INFO_STATUS`", + "apiSymbol": "ERR_HTTP2_INVALID_INFO_STATUS", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http2_invalid_info_status", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:75097044eca7", + "chapter": "errors", + "label": "ERR_HTTP2_INVALID_ORIGIN", + "signature": "`ERR_HTTP2_INVALID_ORIGIN`", + "apiSymbol": "ERR_HTTP2_INVALID_ORIGIN", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http2_invalid_origin", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:e119bdab938a", + "chapter": "errors", + "label": "ERR_HTTP2_INVALID_PACKED_SETTINGS_LENGTH", + "signature": "`ERR_HTTP2_INVALID_PACKED_SETTINGS_LENGTH`", + "apiSymbol": "ERR_HTTP2_INVALID_PACKED_SETTINGS_LENGTH", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http2_invalid_packed_settings_length", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:aa632699a0ee", + "chapter": "errors", + "label": "ERR_HTTP2_INVALID_PSEUDOHEADER", + "signature": "`ERR_HTTP2_INVALID_PSEUDOHEADER`", + "apiSymbol": "ERR_HTTP2_INVALID_PSEUDOHEADER", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http2_invalid_pseudoheader", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:ec973ca9d700", + "chapter": "errors", + "label": "ERR_HTTP2_INVALID_SESSION", + "signature": "`ERR_HTTP2_INVALID_SESSION`", + "apiSymbol": "ERR_HTTP2_INVALID_SESSION", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http2_invalid_session", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:c6d7d3dab1a8", + "chapter": "errors", + "label": "ERR_HTTP2_INVALID_SETTING_VALUE", + "signature": "`ERR_HTTP2_INVALID_SETTING_VALUE`", + "apiSymbol": "ERR_HTTP2_INVALID_SETTING_VALUE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http2_invalid_setting_value", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:cf3cbd4d75fa", + "chapter": "errors", + "label": "ERR_HTTP2_INVALID_STREAM", + "signature": "`ERR_HTTP2_INVALID_STREAM`", + "apiSymbol": "ERR_HTTP2_INVALID_STREAM", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http2_invalid_stream", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:b5e6ddde0b7c", + "chapter": "errors", + "label": "ERR_HTTP2_MAX_PENDING_SETTINGS_ACK", + "signature": "`ERR_HTTP2_MAX_PENDING_SETTINGS_ACK`", + "apiSymbol": "ERR_HTTP2_MAX_PENDING_SETTINGS_ACK", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http2_max_pending_settings_ack", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:46406d50a324", + "chapter": "errors", + "label": "ERR_HTTP2_NESTED_PUSH", + "signature": "`ERR_HTTP2_NESTED_PUSH`", + "apiSymbol": "ERR_HTTP2_NESTED_PUSH", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http2_nested_push", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:18c92c1db453", + "chapter": "errors", + "label": "ERR_HTTP2_NO_MEM", + "signature": "`ERR_HTTP2_NO_MEM`", + "apiSymbol": "ERR_HTTP2_NO_MEM", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http2_no_mem", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:e79b0b4eadd5", + "chapter": "errors", + "label": "ERR_HTTP2_NO_SOCKET_MANIPULATION", + "signature": "`ERR_HTTP2_NO_SOCKET_MANIPULATION`", + "apiSymbol": "ERR_HTTP2_NO_SOCKET_MANIPULATION", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http2_no_socket_manipulation", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:44424a396311", + "chapter": "errors", + "label": "ERR_HTTP2_ORIGIN_LENGTH", + "signature": "`ERR_HTTP2_ORIGIN_LENGTH`", + "apiSymbol": "ERR_HTTP2_ORIGIN_LENGTH", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http2_origin_length", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:0d5579703e20", + "chapter": "errors", + "label": "ERR_HTTP2_OUT_OF_STREAMS", + "signature": "`ERR_HTTP2_OUT_OF_STREAMS`", + "apiSymbol": "ERR_HTTP2_OUT_OF_STREAMS", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http2_out_of_streams", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:f1a269aedbe8", + "chapter": "errors", + "label": "ERR_HTTP2_PAYLOAD_FORBIDDEN", + "signature": "`ERR_HTTP2_PAYLOAD_FORBIDDEN`", + "apiSymbol": "ERR_HTTP2_PAYLOAD_FORBIDDEN", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http2_payload_forbidden", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:19ab65b984d1", + "chapter": "errors", + "label": "ERR_HTTP2_PING_CANCEL", + "signature": "`ERR_HTTP2_PING_CANCEL`", + "apiSymbol": "ERR_HTTP2_PING_CANCEL", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http2_ping_cancel", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:db454cd7e582", + "chapter": "errors", + "label": "ERR_HTTP2_PING_LENGTH", + "signature": "`ERR_HTTP2_PING_LENGTH`", + "apiSymbol": "ERR_HTTP2_PING_LENGTH", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http2_ping_length", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:c73d379688c5", + "chapter": "errors", + "label": "ERR_HTTP2_PSEUDOHEADER_NOT_ALLOWED", + "signature": "`ERR_HTTP2_PSEUDOHEADER_NOT_ALLOWED`", + "apiSymbol": "ERR_HTTP2_PSEUDOHEADER_NOT_ALLOWED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http2_pseudoheader_not_allowed", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:2707a922f688", + "chapter": "errors", + "label": "ERR_HTTP2_PUSH_DISABLED", + "signature": "`ERR_HTTP2_PUSH_DISABLED`", + "apiSymbol": "ERR_HTTP2_PUSH_DISABLED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http2_push_disabled", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:76a1cc9ec1e7", + "chapter": "errors", + "label": "ERR_HTTP2_SEND_FILE", + "signature": "`ERR_HTTP2_SEND_FILE`", + "apiSymbol": "ERR_HTTP2_SEND_FILE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http2_send_file", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:c07235ca435d", + "chapter": "errors", + "label": "ERR_HTTP2_SEND_FILE_NOSEEK", + "signature": "`ERR_HTTP2_SEND_FILE_NOSEEK`", + "apiSymbol": "ERR_HTTP2_SEND_FILE_NOSEEK", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http2_send_file_noseek", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:8b37b07bb7f6", + "chapter": "errors", + "label": "ERR_HTTP2_SESSION_ERROR", + "signature": "`ERR_HTTP2_SESSION_ERROR`", + "apiSymbol": "ERR_HTTP2_SESSION_ERROR", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http2_session_error", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:4d05c8b5434d", + "chapter": "errors", + "label": "ERR_HTTP2_SETTINGS_CANCEL", + "signature": "`ERR_HTTP2_SETTINGS_CANCEL`", + "apiSymbol": "ERR_HTTP2_SETTINGS_CANCEL", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http2_settings_cancel", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:4e49b5b5560b", + "chapter": "errors", + "label": "ERR_HTTP2_SOCKET_BOUND", + "signature": "`ERR_HTTP2_SOCKET_BOUND`", + "apiSymbol": "ERR_HTTP2_SOCKET_BOUND", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http2_socket_bound", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:79fc71028e38", + "chapter": "errors", + "label": "ERR_HTTP2_SOCKET_UNBOUND", + "signature": "`ERR_HTTP2_SOCKET_UNBOUND`", + "apiSymbol": "ERR_HTTP2_SOCKET_UNBOUND", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http2_socket_unbound", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:f6e7b358d9b5", + "chapter": "errors", + "label": "ERR_HTTP2_STATUS_101", + "signature": "`ERR_HTTP2_STATUS_101`", + "apiSymbol": "ERR_HTTP2_STATUS_101", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http2_status_101", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:e3b045f59b05", + "chapter": "errors", + "label": "ERR_HTTP2_STATUS_INVALID", + "signature": "`ERR_HTTP2_STATUS_INVALID`", + "apiSymbol": "ERR_HTTP2_STATUS_INVALID", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http2_status_invalid", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:2c9b400683b3", + "chapter": "errors", + "label": "ERR_HTTP2_STREAM_CANCEL", + "signature": "`ERR_HTTP2_STREAM_CANCEL`", + "apiSymbol": "ERR_HTTP2_STREAM_CANCEL", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http2_stream_cancel", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:7553eb05b4e7", + "chapter": "errors", + "label": "ERR_HTTP2_STREAM_ERROR", + "signature": "`ERR_HTTP2_STREAM_ERROR`", + "apiSymbol": "ERR_HTTP2_STREAM_ERROR", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http2_stream_error", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:98e421d82468", + "chapter": "errors", + "label": "ERR_HTTP2_STREAM_SELF_DEPENDENCY", + "signature": "`ERR_HTTP2_STREAM_SELF_DEPENDENCY`", + "apiSymbol": "ERR_HTTP2_STREAM_SELF_DEPENDENCY", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http2_stream_self_dependency", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:d75a49c3fa05", + "chapter": "errors", + "label": "ERR_HTTP2_TOO_MANY_CUSTOM_SETTINGS", + "signature": "`ERR_HTTP2_TOO_MANY_CUSTOM_SETTINGS`", + "apiSymbol": "ERR_HTTP2_TOO_MANY_CUSTOM_SETTINGS", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http2_too_many_custom_settings", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:f94974790b37", + "chapter": "errors", + "label": "ERR_HTTP2_TOO_MANY_INVALID_FRAMES", + "signature": "`ERR_HTTP2_TOO_MANY_INVALID_FRAMES`", + "apiSymbol": "ERR_HTTP2_TOO_MANY_INVALID_FRAMES", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http2_too_many_invalid_frames", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:799603ae61ed", + "chapter": "errors", + "label": "ERR_HTTP2_TRAILERS_ALREADY_SENT", + "signature": "`ERR_HTTP2_TRAILERS_ALREADY_SENT`", + "apiSymbol": "ERR_HTTP2_TRAILERS_ALREADY_SENT", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http2_trailers_already_sent", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:5fa9dec1e569", + "chapter": "errors", + "label": "ERR_HTTP2_TRAILERS_NOT_READY", + "signature": "`ERR_HTTP2_TRAILERS_NOT_READY`", + "apiSymbol": "ERR_HTTP2_TRAILERS_NOT_READY", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http2_trailers_not_ready", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:c3aa9f1635c6", + "chapter": "errors", + "label": "ERR_HTTP2_UNSUPPORTED_PROTOCOL", + "signature": "`ERR_HTTP2_UNSUPPORTED_PROTOCOL`", + "apiSymbol": "ERR_HTTP2_UNSUPPORTED_PROTOCOL", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http2_unsupported_protocol", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:6c447550feac", + "chapter": "errors", + "label": "ERR_HTTP_BODY_NOT_ALLOWED", + "signature": "`ERR_HTTP_BODY_NOT_ALLOWED`", + "apiSymbol": "ERR_HTTP_BODY_NOT_ALLOWED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http_body_not_allowed", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:34dda66d20a4", + "chapter": "errors", + "label": "ERR_HTTP_CONTENT_LENGTH_MISMATCH", + "signature": "`ERR_HTTP_CONTENT_LENGTH_MISMATCH`", + "apiSymbol": "ERR_HTTP_CONTENT_LENGTH_MISMATCH", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http_content_length_mismatch", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:d37359ebff74", + "chapter": "errors", + "label": "ERR_HTTP_HEADERS_SENT", + "signature": "`ERR_HTTP_HEADERS_SENT`", + "apiSymbol": "ERR_HTTP_HEADERS_SENT", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http_headers_sent", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:44630fe01a40", + "chapter": "errors", + "label": "ERR_HTTP_INVALID_HEADER_VALUE", + "signature": "`ERR_HTTP_INVALID_HEADER_VALUE`", + "apiSymbol": "ERR_HTTP_INVALID_HEADER_VALUE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http_invalid_header_value", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:c173d3dbb50d", + "chapter": "errors", + "label": "ERR_HTTP_INVALID_STATUS_CODE", + "signature": "`ERR_HTTP_INVALID_STATUS_CODE`", + "apiSymbol": "ERR_HTTP_INVALID_STATUS_CODE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http_invalid_status_code", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:2e378807efa9", + "chapter": "errors", + "label": "ERR_HTTP_REQUEST_TIMEOUT", + "signature": "`ERR_HTTP_REQUEST_TIMEOUT`", + "apiSymbol": "ERR_HTTP_REQUEST_TIMEOUT", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http_request_timeout", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:848bbf20e9aa", + "chapter": "errors", + "label": "ERR_HTTP_SOCKET_ASSIGNED", + "signature": "`ERR_HTTP_SOCKET_ASSIGNED`", + "apiSymbol": "ERR_HTTP_SOCKET_ASSIGNED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http_socket_assigned", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:7c5a56c488a5", + "chapter": "errors", + "label": "ERR_HTTP_SOCKET_ENCODING", + "signature": "`ERR_HTTP_SOCKET_ENCODING`", + "apiSymbol": "ERR_HTTP_SOCKET_ENCODING", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http_socket_encoding", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:51b4204d1850", + "chapter": "errors", + "label": "ERR_HTTP_TRAILER_INVALID", + "signature": "`ERR_HTTP_TRAILER_INVALID`", + "apiSymbol": "ERR_HTTP_TRAILER_INVALID", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http_trailer_invalid", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:fa5066e80d50", + "chapter": "errors", + "label": "ERR_ILLEGAL_CONSTRUCTOR", + "signature": "`ERR_ILLEGAL_CONSTRUCTOR`", + "apiSymbol": "ERR_ILLEGAL_CONSTRUCTOR", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_illegal_constructor", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:5499b270cf61", + "chapter": "errors", + "label": "ERR_IMPORT_ATTRIBUTE_MISSING", + "signature": "`ERR_IMPORT_ATTRIBUTE_MISSING`", + "apiSymbol": "ERR_IMPORT_ATTRIBUTE_MISSING", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_import_attribute_missing", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:ca1d4f69bf83", + "chapter": "errors", + "label": "ERR_IMPORT_ATTRIBUTE_TYPE_INCOMPATIBLE", + "signature": "`ERR_IMPORT_ATTRIBUTE_TYPE_INCOMPATIBLE`", + "apiSymbol": "ERR_IMPORT_ATTRIBUTE_TYPE_INCOMPATIBLE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_import_attribute_type_incompatible", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:5bac42b67ae2", + "chapter": "errors", + "label": "ERR_IMPORT_ATTRIBUTE_UNSUPPORTED", + "signature": "`ERR_IMPORT_ATTRIBUTE_UNSUPPORTED`", + "apiSymbol": "ERR_IMPORT_ATTRIBUTE_UNSUPPORTED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_import_attribute_unsupported", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:bd1b6cb74a7a", + "chapter": "errors", + "label": "ERR_INCOMPATIBLE_OPTION_PAIR", + "signature": "`ERR_INCOMPATIBLE_OPTION_PAIR`", + "apiSymbol": "ERR_INCOMPATIBLE_OPTION_PAIR", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_incompatible_option_pair", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:0d9409025cef", + "chapter": "errors", + "label": "ERR_INPUT_TYPE_NOT_ALLOWED", + "signature": "`ERR_INPUT_TYPE_NOT_ALLOWED`", + "apiSymbol": "ERR_INPUT_TYPE_NOT_ALLOWED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_input_type_not_allowed", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:e56b8ffbab4e", + "chapter": "errors", + "label": "ERR_INSPECTOR_ALREADY_ACTIVATED", + "signature": "`ERR_INSPECTOR_ALREADY_ACTIVATED`", + "apiSymbol": "ERR_INSPECTOR_ALREADY_ACTIVATED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_inspector_already_activated", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:8d0db429bdb1", + "chapter": "errors", + "label": "ERR_INSPECTOR_ALREADY_CONNECTED", + "signature": "`ERR_INSPECTOR_ALREADY_CONNECTED`", + "apiSymbol": "ERR_INSPECTOR_ALREADY_CONNECTED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_inspector_already_connected", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:b1022db7e59e", + "chapter": "errors", + "label": "ERR_INSPECTOR_CLOSED", + "signature": "`ERR_INSPECTOR_CLOSED`", + "apiSymbol": "ERR_INSPECTOR_CLOSED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_inspector_closed", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:39b33b3db42a", + "chapter": "errors", + "label": "ERR_INSPECTOR_COMMAND", + "signature": "`ERR_INSPECTOR_COMMAND`", + "apiSymbol": "ERR_INSPECTOR_COMMAND", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_inspector_command", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:fc2412257d3a", + "chapter": "errors", + "label": "ERR_INSPECTOR_NOT_ACTIVE", + "signature": "`ERR_INSPECTOR_NOT_ACTIVE`", + "apiSymbol": "ERR_INSPECTOR_NOT_ACTIVE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_inspector_not_active", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:2bf1f9b87c80", + "chapter": "errors", + "label": "ERR_INSPECTOR_NOT_AVAILABLE", + "signature": "`ERR_INSPECTOR_NOT_AVAILABLE`", + "apiSymbol": "ERR_INSPECTOR_NOT_AVAILABLE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_inspector_not_available", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:a95db60cb6b8", + "chapter": "errors", + "label": "ERR_INSPECTOR_NOT_CONNECTED", + "signature": "`ERR_INSPECTOR_NOT_CONNECTED`", + "apiSymbol": "ERR_INSPECTOR_NOT_CONNECTED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_inspector_not_connected", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:a98b93817cce", + "chapter": "errors", + "label": "ERR_INSPECTOR_NOT_WORKER", + "signature": "`ERR_INSPECTOR_NOT_WORKER`", + "apiSymbol": "ERR_INSPECTOR_NOT_WORKER", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_inspector_not_worker", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:186493f3714e", + "chapter": "errors", + "label": "ERR_INTERNAL_ASSERTION", + "signature": "`ERR_INTERNAL_ASSERTION`", + "apiSymbol": "ERR_INTERNAL_ASSERTION", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_internal_assertion", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:ac53bbc6e276", + "chapter": "errors", + "label": "ERR_INVALID_ADDRESS", + "signature": "`ERR_INVALID_ADDRESS`", + "apiSymbol": "ERR_INVALID_ADDRESS", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_invalid_address", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:3efc19d28f60", + "chapter": "errors", + "label": "ERR_INVALID_ADDRESS_FAMILY", + "signature": "`ERR_INVALID_ADDRESS_FAMILY`", + "apiSymbol": "ERR_INVALID_ADDRESS_FAMILY", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_invalid_address_family", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:1a49260b39f5", + "chapter": "errors", + "label": "ERR_INVALID_ARG_TYPE", + "signature": "`ERR_INVALID_ARG_TYPE`", + "apiSymbol": "ERR_INVALID_ARG_TYPE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_invalid_arg_type", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:ad8192687e9f", + "chapter": "errors", + "label": "ERR_INVALID_ARG_VALUE", + "signature": "`ERR_INVALID_ARG_VALUE`", + "apiSymbol": "ERR_INVALID_ARG_VALUE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_invalid_arg_value", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:87c6ee235eb9", + "chapter": "errors", + "label": "ERR_INVALID_ASYNC_ID", + "signature": "`ERR_INVALID_ASYNC_ID`", + "apiSymbol": "ERR_INVALID_ASYNC_ID", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_invalid_async_id", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:833f9eeaf71a", + "chapter": "errors", + "label": "ERR_INVALID_BUFFER_SIZE", + "signature": "`ERR_INVALID_BUFFER_SIZE`", + "apiSymbol": "ERR_INVALID_BUFFER_SIZE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_invalid_buffer_size", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:003bcde06939", + "chapter": "errors", + "label": "ERR_INVALID_CHAR", + "signature": "`ERR_INVALID_CHAR`", + "apiSymbol": "ERR_INVALID_CHAR", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_invalid_char", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:0def7eb7c587", + "chapter": "errors", + "label": "ERR_INVALID_CURSOR_POS", + "signature": "`ERR_INVALID_CURSOR_POS`", + "apiSymbol": "ERR_INVALID_CURSOR_POS", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_invalid_cursor_pos", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:bd1a72ecbcb8", + "chapter": "errors", + "label": "ERR_INVALID_FD", + "signature": "`ERR_INVALID_FD`", + "apiSymbol": "ERR_INVALID_FD", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_invalid_fd", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:0bcd688b1012", + "chapter": "errors", + "label": "ERR_INVALID_FD_TYPE", + "signature": "`ERR_INVALID_FD_TYPE`", + "apiSymbol": "ERR_INVALID_FD_TYPE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_invalid_fd_type", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:6464f753c97f", + "chapter": "errors", + "label": "ERR_INVALID_FILE_URL_HOST", + "signature": "`ERR_INVALID_FILE_URL_HOST`", + "apiSymbol": "ERR_INVALID_FILE_URL_HOST", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_invalid_file_url_host", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:20b8c0056829", + "chapter": "errors", + "label": "ERR_INVALID_FILE_URL_PATH", + "signature": "`ERR_INVALID_FILE_URL_PATH`", + "apiSymbol": "ERR_INVALID_FILE_URL_PATH", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_invalid_file_url_path", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:e6461285520c", + "chapter": "errors", + "label": "ERR_INVALID_HANDLE_TYPE", + "signature": "`ERR_INVALID_HANDLE_TYPE`", + "apiSymbol": "ERR_INVALID_HANDLE_TYPE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_invalid_handle_type", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:f53daa707cce", + "chapter": "errors", + "label": "ERR_INVALID_HTTP_TOKEN", + "signature": "`ERR_INVALID_HTTP_TOKEN`", + "apiSymbol": "ERR_INVALID_HTTP_TOKEN", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_invalid_http_token", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:92490bcdf411", + "chapter": "errors", + "label": "ERR_INVALID_IP_ADDRESS", + "signature": "`ERR_INVALID_IP_ADDRESS`", + "apiSymbol": "ERR_INVALID_IP_ADDRESS", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_invalid_ip_address", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:01cf500177db", + "chapter": "errors", + "label": "ERR_INVALID_MIME_SYNTAX", + "signature": "`ERR_INVALID_MIME_SYNTAX`", + "apiSymbol": "ERR_INVALID_MIME_SYNTAX", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_invalid_mime_syntax", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:fafb6632a396", + "chapter": "errors", + "label": "ERR_INVALID_MODULE", + "signature": "`ERR_INVALID_MODULE`", + "apiSymbol": "ERR_INVALID_MODULE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_invalid_module", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:785b15656eee", + "chapter": "errors", + "label": "ERR_INVALID_MODULE_SPECIFIER", + "signature": "`ERR_INVALID_MODULE_SPECIFIER`", + "apiSymbol": "ERR_INVALID_MODULE_SPECIFIER", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_invalid_module_specifier", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:cecc76c887c9", + "chapter": "errors", + "label": "ERR_INVALID_OBJECT_DEFINE_PROPERTY", + "signature": "`ERR_INVALID_OBJECT_DEFINE_PROPERTY`", + "apiSymbol": "ERR_INVALID_OBJECT_DEFINE_PROPERTY", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_invalid_object_define_property", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:b1f52121dbcc", + "chapter": "errors", + "label": "ERR_INVALID_PACKAGE_CONFIG", + "signature": "`ERR_INVALID_PACKAGE_CONFIG`", + "apiSymbol": "ERR_INVALID_PACKAGE_CONFIG", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_invalid_package_config", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:fe9602bc0282", + "chapter": "errors", + "label": "ERR_INVALID_PACKAGE_TARGET", + "signature": "`ERR_INVALID_PACKAGE_TARGET`", + "apiSymbol": "ERR_INVALID_PACKAGE_TARGET", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_invalid_package_target", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:3a0d3a3ba68f", + "chapter": "errors", + "label": "ERR_INVALID_PROTOCOL", + "signature": "`ERR_INVALID_PROTOCOL`", + "apiSymbol": "ERR_INVALID_PROTOCOL", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_invalid_protocol", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:75e3a41fb34b", + "chapter": "errors", + "label": "ERR_INVALID_REPL_EVAL_CONFIG", + "signature": "`ERR_INVALID_REPL_EVAL_CONFIG`", + "apiSymbol": "ERR_INVALID_REPL_EVAL_CONFIG", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_invalid_repl_eval_config", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:b663c591c992", + "chapter": "errors", + "label": "ERR_INVALID_REPL_INPUT", + "signature": "`ERR_INVALID_REPL_INPUT`", + "apiSymbol": "ERR_INVALID_REPL_INPUT", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_invalid_repl_input", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:653dc9b273c7", + "chapter": "errors", + "label": "ERR_INVALID_RETURN_PROPERTY", + "signature": "`ERR_INVALID_RETURN_PROPERTY`", + "apiSymbol": "ERR_INVALID_RETURN_PROPERTY", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_invalid_return_property", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:3bfa1fc8e81f", + "chapter": "errors", + "label": "ERR_INVALID_RETURN_PROPERTY_VALUE", + "signature": "`ERR_INVALID_RETURN_PROPERTY_VALUE`", + "apiSymbol": "ERR_INVALID_RETURN_PROPERTY_VALUE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_invalid_return_property_value", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:375a4ca77b0e", + "chapter": "errors", + "label": "ERR_INVALID_RETURN_VALUE", + "signature": "`ERR_INVALID_RETURN_VALUE`", + "apiSymbol": "ERR_INVALID_RETURN_VALUE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_invalid_return_value", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:e4be3ac49c4b", + "chapter": "errors", + "label": "ERR_INVALID_STATE", + "signature": "`ERR_INVALID_STATE`", + "apiSymbol": "ERR_INVALID_STATE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_invalid_state", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:09c35593d92e", + "chapter": "errors", + "label": "ERR_INVALID_SYNC_FORK_INPUT", + "signature": "`ERR_INVALID_SYNC_FORK_INPUT`", + "apiSymbol": "ERR_INVALID_SYNC_FORK_INPUT", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_invalid_sync_fork_input", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:2a3808fea063", + "chapter": "errors", + "label": "ERR_INVALID_THIS", + "signature": "`ERR_INVALID_THIS`", + "apiSymbol": "ERR_INVALID_THIS", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_invalid_this", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:b24b3b5e4c56", + "chapter": "errors", + "label": "ERR_INVALID_TUPLE", + "signature": "`ERR_INVALID_TUPLE`", + "apiSymbol": "ERR_INVALID_TUPLE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_invalid_tuple", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:6dc192ecfb0d", + "chapter": "errors", + "label": "ERR_INVALID_TYPESCRIPT_SYNTAX", + "signature": "`ERR_INVALID_TYPESCRIPT_SYNTAX`", + "apiSymbol": "ERR_INVALID_TYPESCRIPT_SYNTAX", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_invalid_typescript_syntax", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:f9abbf482424", + "chapter": "errors", + "label": "ERR_INVALID_URI", + "signature": "`ERR_INVALID_URI`", + "apiSymbol": "ERR_INVALID_URI", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_invalid_uri", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:92f25e7991fc", + "chapter": "errors", + "label": "ERR_INVALID_URL", + "signature": "`ERR_INVALID_URL`", + "apiSymbol": "ERR_INVALID_URL", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_invalid_url", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:b69c245cb7c8", + "chapter": "errors", + "label": "ERR_INVALID_URL_PATTERN", + "signature": "`ERR_INVALID_URL_PATTERN`", + "apiSymbol": "ERR_INVALID_URL_PATTERN", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_invalid_url_pattern", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:76b7cd91c307", + "chapter": "errors", + "label": "ERR_INVALID_URL_SCHEME", + "signature": "`ERR_INVALID_URL_SCHEME`", + "apiSymbol": "ERR_INVALID_URL_SCHEME", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_invalid_url_scheme", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:d5d87ccd1dfc", + "chapter": "errors", + "label": "ERR_IPC_CHANNEL_CLOSED", + "signature": "`ERR_IPC_CHANNEL_CLOSED`", + "apiSymbol": "ERR_IPC_CHANNEL_CLOSED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_ipc_channel_closed", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:4971255ca18b", + "chapter": "errors", + "label": "ERR_IPC_DISCONNECTED", + "signature": "`ERR_IPC_DISCONNECTED`", + "apiSymbol": "ERR_IPC_DISCONNECTED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_ipc_disconnected", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:9fd1f6a22380", + "chapter": "errors", + "label": "ERR_IPC_ONE_PIPE", + "signature": "`ERR_IPC_ONE_PIPE`", + "apiSymbol": "ERR_IPC_ONE_PIPE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_ipc_one_pipe", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:ec9eacaf44bb", + "chapter": "errors", + "label": "ERR_IPC_SYNC_FORK", + "signature": "`ERR_IPC_SYNC_FORK`", + "apiSymbol": "ERR_IPC_SYNC_FORK", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_ipc_sync_fork", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:b94438c2e664", + "chapter": "errors", + "label": "ERR_IP_BLOCKED", + "signature": "`ERR_IP_BLOCKED`", + "apiSymbol": "ERR_IP_BLOCKED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_ip_blocked", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:bc06954a62f1", + "chapter": "errors", + "label": "ERR_LOADER_CHAIN_INCOMPLETE", + "signature": "`ERR_LOADER_CHAIN_INCOMPLETE`", + "apiSymbol": "ERR_LOADER_CHAIN_INCOMPLETE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_loader_chain_incomplete", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:0581aba04342", + "chapter": "errors", + "label": "ERR_LOAD_SQLITE_EXTENSION", + "signature": "`ERR_LOAD_SQLITE_EXTENSION`", + "apiSymbol": "ERR_LOAD_SQLITE_EXTENSION", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_load_sqlite_extension", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:af17d53d2b2e", + "chapter": "errors", + "label": "ERR_MEMORY_ALLOCATION_FAILED", + "signature": "`ERR_MEMORY_ALLOCATION_FAILED`", + "apiSymbol": "ERR_MEMORY_ALLOCATION_FAILED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_memory_allocation_failed", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:4b56da64b04a", + "chapter": "errors", + "label": "ERR_MESSAGE_TARGET_CONTEXT_UNAVAILABLE", + "signature": "`ERR_MESSAGE_TARGET_CONTEXT_UNAVAILABLE`", + "apiSymbol": "ERR_MESSAGE_TARGET_CONTEXT_UNAVAILABLE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_message_target_context_unavailable", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:de7e518366d4", + "chapter": "errors", + "label": "ERR_METHOD_NOT_IMPLEMENTED", + "signature": "`ERR_METHOD_NOT_IMPLEMENTED`", + "apiSymbol": "ERR_METHOD_NOT_IMPLEMENTED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_method_not_implemented", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:dfcc128d38c7", + "chapter": "errors", + "label": "ERR_MISSING_ARGS", + "signature": "`ERR_MISSING_ARGS`", + "apiSymbol": "ERR_MISSING_ARGS", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_missing_args", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:313e71dcfe5c", + "chapter": "errors", + "label": "ERR_MISSING_OPTION", + "signature": "`ERR_MISSING_OPTION`", + "apiSymbol": "ERR_MISSING_OPTION", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_missing_option", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:d06f21bcd9cc", + "chapter": "errors", + "label": "ERR_MISSING_PASSPHRASE", + "signature": "`ERR_MISSING_PASSPHRASE`", + "apiSymbol": "ERR_MISSING_PASSPHRASE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_missing_passphrase", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:e78d70175dea", + "chapter": "errors", + "label": "ERR_MISSING_PLATFORM_FOR_WORKER", + "signature": "`ERR_MISSING_PLATFORM_FOR_WORKER`", + "apiSymbol": "ERR_MISSING_PLATFORM_FOR_WORKER", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_missing_platform_for_worker", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:063e585c6b1d", + "chapter": "errors", + "label": "ERR_MODULE_LINK_MISMATCH", + "signature": "`ERR_MODULE_LINK_MISMATCH`", + "apiSymbol": "ERR_MODULE_LINK_MISMATCH", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_module_link_mismatch", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:485c3b061474", + "chapter": "errors", + "label": "ERR_MODULE_NOT_FOUND", + "signature": "`ERR_MODULE_NOT_FOUND`", + "apiSymbol": "ERR_MODULE_NOT_FOUND", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_module_not_found", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:6e9bc14ac5af", + "chapter": "errors", + "label": "ERR_MULTIPLE_CALLBACK", + "signature": "`ERR_MULTIPLE_CALLBACK`", + "apiSymbol": "ERR_MULTIPLE_CALLBACK", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_multiple_callback", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:c2dc7c56f4c0", + "chapter": "errors", + "label": "ERR_NAPI_CONS_FUNCTION", + "signature": "`ERR_NAPI_CONS_FUNCTION`", + "apiSymbol": "ERR_NAPI_CONS_FUNCTION", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_napi_cons_function", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:53aff93d7d88", + "chapter": "errors", + "label": "ERR_NAPI_INVALID_DATAVIEW_ARGS", + "signature": "`ERR_NAPI_INVALID_DATAVIEW_ARGS`", + "apiSymbol": "ERR_NAPI_INVALID_DATAVIEW_ARGS", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_napi_invalid_dataview_args", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:94defbce2694", + "chapter": "errors", + "label": "ERR_NAPI_INVALID_TYPEDARRAY_ALIGNMENT", + "signature": "`ERR_NAPI_INVALID_TYPEDARRAY_ALIGNMENT`", + "apiSymbol": "ERR_NAPI_INVALID_TYPEDARRAY_ALIGNMENT", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_napi_invalid_typedarray_alignment", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:f8051e00f147", + "chapter": "errors", + "label": "ERR_NAPI_INVALID_TYPEDARRAY_LENGTH", + "signature": "`ERR_NAPI_INVALID_TYPEDARRAY_LENGTH`", + "apiSymbol": "ERR_NAPI_INVALID_TYPEDARRAY_LENGTH", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_napi_invalid_typedarray_length", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:275169be88f4", + "chapter": "errors", + "label": "ERR_NAPI_TSFN_CALL_JS", + "signature": "`ERR_NAPI_TSFN_CALL_JS`", + "apiSymbol": "ERR_NAPI_TSFN_CALL_JS", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_napi_tsfn_call_js", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:b14df51bc8d4", + "chapter": "errors", + "label": "ERR_NAPI_TSFN_GET_UNDEFINED", + "signature": "`ERR_NAPI_TSFN_GET_UNDEFINED`", + "apiSymbol": "ERR_NAPI_TSFN_GET_UNDEFINED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_napi_tsfn_get_undefined", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:7f7a9439872d", + "chapter": "errors", + "label": "ERR_NON_CONTEXT_AWARE_DISABLED", + "signature": "`ERR_NON_CONTEXT_AWARE_DISABLED`", + "apiSymbol": "ERR_NON_CONTEXT_AWARE_DISABLED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_non_context_aware_disabled", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:fa53c0c34106", + "chapter": "errors", + "label": "ERR_NOT_BUILDING_SNAPSHOT", + "signature": "`ERR_NOT_BUILDING_SNAPSHOT`", + "apiSymbol": "ERR_NOT_BUILDING_SNAPSHOT", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_not_building_snapshot", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:2e2f1782dc4b", + "chapter": "errors", + "label": "ERR_NOT_IN_SINGLE_EXECUTABLE_APPLICATION", + "signature": "`ERR_NOT_IN_SINGLE_EXECUTABLE_APPLICATION`", + "apiSymbol": "ERR_NOT_IN_SINGLE_EXECUTABLE_APPLICATION", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_not_in_single_executable_application", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:bc59ef481c10", + "chapter": "errors", + "label": "ERR_NOT_SUPPORTED_IN_SNAPSHOT", + "signature": "`ERR_NOT_SUPPORTED_IN_SNAPSHOT`", + "apiSymbol": "ERR_NOT_SUPPORTED_IN_SNAPSHOT", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_not_supported_in_snapshot", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:b3c2351d41a5", + "chapter": "errors", + "label": "ERR_NO_CRYPTO", + "signature": "`ERR_NO_CRYPTO`", + "apiSymbol": "ERR_NO_CRYPTO", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_no_crypto", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:cae28646b828", + "chapter": "errors", + "label": "ERR_NO_ICU", + "signature": "`ERR_NO_ICU`", + "apiSymbol": "ERR_NO_ICU", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_no_icu", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:2a21cdce7923", + "chapter": "errors", + "label": "ERR_NO_TYPESCRIPT", + "signature": "`ERR_NO_TYPESCRIPT`", + "apiSymbol": "ERR_NO_TYPESCRIPT", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_no_typescript", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:f8b8628fb9ee", + "chapter": "errors", + "label": "ERR_OPERATION_FAILED", + "signature": "`ERR_OPERATION_FAILED`", + "apiSymbol": "ERR_OPERATION_FAILED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_operation_failed", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:622cef05a25b", + "chapter": "errors", + "label": "ERR_OPTIONS_BEFORE_BOOTSTRAPPING", + "signature": "`ERR_OPTIONS_BEFORE_BOOTSTRAPPING`", + "apiSymbol": "ERR_OPTIONS_BEFORE_BOOTSTRAPPING", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_options_before_bootstrapping", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:c7af89c248a0", + "chapter": "errors", + "label": "ERR_OUT_OF_RANGE", + "signature": "`ERR_OUT_OF_RANGE`", + "apiSymbol": "ERR_OUT_OF_RANGE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_out_of_range", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:520ffb827726", + "chapter": "errors", + "label": "ERR_PACKAGE_IMPORT_NOT_DEFINED", + "signature": "`ERR_PACKAGE_IMPORT_NOT_DEFINED`", + "apiSymbol": "ERR_PACKAGE_IMPORT_NOT_DEFINED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_package_import_not_defined", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:9a703bb883e6", + "chapter": "errors", + "label": "ERR_PACKAGE_PATH_NOT_EXPORTED", + "signature": "`ERR_PACKAGE_PATH_NOT_EXPORTED`", + "apiSymbol": "ERR_PACKAGE_PATH_NOT_EXPORTED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_package_path_not_exported", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:68e78368d1ac", + "chapter": "errors", + "label": "ERR_PARSE_ARGS_INVALID_OPTION_VALUE", + "signature": "`ERR_PARSE_ARGS_INVALID_OPTION_VALUE`", + "apiSymbol": "ERR_PARSE_ARGS_INVALID_OPTION_VALUE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_parse_args_invalid_option_value", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:b6cf473b4bc8", + "chapter": "errors", + "label": "ERR_PARSE_ARGS_UNEXPECTED_POSITIONAL", + "signature": "`ERR_PARSE_ARGS_UNEXPECTED_POSITIONAL`", + "apiSymbol": "ERR_PARSE_ARGS_UNEXPECTED_POSITIONAL", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_parse_args_unexpected_positional", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:0a551099584b", + "chapter": "errors", + "label": "ERR_PARSE_ARGS_UNKNOWN_OPTION", + "signature": "`ERR_PARSE_ARGS_UNKNOWN_OPTION`", + "apiSymbol": "ERR_PARSE_ARGS_UNKNOWN_OPTION", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_parse_args_unknown_option", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:05c96c0d54cf", + "chapter": "errors", + "label": "ERR_PERFORMANCE_INVALID_TIMESTAMP", + "signature": "`ERR_PERFORMANCE_INVALID_TIMESTAMP`", + "apiSymbol": "ERR_PERFORMANCE_INVALID_TIMESTAMP", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_performance_invalid_timestamp", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:8172446365db", + "chapter": "errors", + "label": "ERR_PERFORMANCE_MEASURE_INVALID_OPTIONS", + "signature": "`ERR_PERFORMANCE_MEASURE_INVALID_OPTIONS`", + "apiSymbol": "ERR_PERFORMANCE_MEASURE_INVALID_OPTIONS", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_performance_measure_invalid_options", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:d321b9e932ef", + "chapter": "errors", + "label": "ERR_PROTO_ACCESS", + "signature": "`ERR_PROTO_ACCESS`", + "apiSymbol": "ERR_PROTO_ACCESS", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_proto_access", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:c0f95633ca00", + "chapter": "errors", + "label": "ERR_PROXY_INVALID_CONFIG", + "signature": "`ERR_PROXY_INVALID_CONFIG`", + "apiSymbol": "ERR_PROXY_INVALID_CONFIG", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_proxy_invalid_config", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:914c14a158a4", + "chapter": "errors", + "label": "ERR_PROXY_TUNNEL", + "signature": "`ERR_PROXY_TUNNEL`", + "apiSymbol": "ERR_PROXY_TUNNEL", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_proxy_tunnel", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:99ded9f60d07", + "chapter": "errors", + "label": "ERR_QUIC_APPLICATION_ERROR", + "signature": "`ERR_QUIC_APPLICATION_ERROR`", + "apiSymbol": "ERR_QUIC_APPLICATION_ERROR", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_quic_application_error", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:8dab3930d180", + "chapter": "errors", + "label": "ERR_QUIC_CONNECTION_FAILED", + "signature": "`ERR_QUIC_CONNECTION_FAILED`", + "apiSymbol": "ERR_QUIC_CONNECTION_FAILED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_quic_connection_failed", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:a6832d79a601", + "chapter": "errors", + "label": "ERR_QUIC_ENDPOINT_CLOSED", + "signature": "`ERR_QUIC_ENDPOINT_CLOSED`", + "apiSymbol": "ERR_QUIC_ENDPOINT_CLOSED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_quic_endpoint_closed", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:9b3a144c5163", + "chapter": "errors", + "label": "ERR_QUIC_OPEN_STREAM_FAILED", + "signature": "`ERR_QUIC_OPEN_STREAM_FAILED`", + "apiSymbol": "ERR_QUIC_OPEN_STREAM_FAILED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_quic_open_stream_failed", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:266e07dc7ced", + "chapter": "errors", + "label": "ERR_QUIC_TRANSPORT_ERROR", + "signature": "`ERR_QUIC_TRANSPORT_ERROR`", + "apiSymbol": "ERR_QUIC_TRANSPORT_ERROR", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_quic_transport_error", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:a7a688eeb772", + "chapter": "errors", + "label": "ERR_QUIC_VERSION_NEGOTIATION_ERROR", + "signature": "`ERR_QUIC_VERSION_NEGOTIATION_ERROR`", + "apiSymbol": "ERR_QUIC_VERSION_NEGOTIATION_ERROR", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_quic_version_negotiation_error", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:841aa674a5cf", + "chapter": "errors", + "label": "ERR_REQUIRE_ASYNC_MODULE", + "signature": "`ERR_REQUIRE_ASYNC_MODULE`", + "apiSymbol": "ERR_REQUIRE_ASYNC_MODULE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_require_async_module", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:4c111078d4e6", + "chapter": "errors", + "label": "ERR_REQUIRE_CYCLE_MODULE", + "signature": "`ERR_REQUIRE_CYCLE_MODULE`", + "apiSymbol": "ERR_REQUIRE_CYCLE_MODULE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_require_cycle_module", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:40fd8c39f28b", + "chapter": "errors", + "label": "ERR_REQUIRE_ESM", + "signature": "`ERR_REQUIRE_ESM`", + "apiSymbol": "ERR_REQUIRE_ESM", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_require_esm", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:50007aab8780", + "chapter": "errors", + "label": "ERR_SCRIPT_EXECUTION_INTERRUPTED", + "signature": "`ERR_SCRIPT_EXECUTION_INTERRUPTED`", + "apiSymbol": "ERR_SCRIPT_EXECUTION_INTERRUPTED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_script_execution_interrupted", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:d21ae4c4d6b4", + "chapter": "errors", + "label": "ERR_SCRIPT_EXECUTION_TIMEOUT", + "signature": "`ERR_SCRIPT_EXECUTION_TIMEOUT`", + "apiSymbol": "ERR_SCRIPT_EXECUTION_TIMEOUT", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_script_execution_timeout", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:c25c0680648b", + "chapter": "errors", + "label": "ERR_SERVER_ALREADY_LISTEN", + "signature": "`ERR_SERVER_ALREADY_LISTEN`", + "apiSymbol": "ERR_SERVER_ALREADY_LISTEN", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_server_already_listen", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:b8a24ea91421", + "chapter": "errors", + "label": "ERR_SERVER_NOT_RUNNING", + "signature": "`ERR_SERVER_NOT_RUNNING`", + "apiSymbol": "ERR_SERVER_NOT_RUNNING", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_server_not_running", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:8ceeb2ed91b0", + "chapter": "errors", + "label": "ERR_SINGLE_EXECUTABLE_APPLICATION_ASSET_NOT_FOUND", + "signature": "`ERR_SINGLE_EXECUTABLE_APPLICATION_ASSET_NOT_FOUND`", + "apiSymbol": "ERR_SINGLE_EXECUTABLE_APPLICATION_ASSET_NOT_FOUND", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_single_executable_application_asset_not_found", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:a865f041bb7c", + "chapter": "errors", + "label": "ERR_SOCKET_ALREADY_BOUND", + "signature": "`ERR_SOCKET_ALREADY_BOUND`", + "apiSymbol": "ERR_SOCKET_ALREADY_BOUND", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_socket_already_bound", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:83b2c6cf5b3f", + "chapter": "errors", + "label": "ERR_SOCKET_BAD_BUFFER_SIZE", + "signature": "`ERR_SOCKET_BAD_BUFFER_SIZE`", + "apiSymbol": "ERR_SOCKET_BAD_BUFFER_SIZE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_socket_bad_buffer_size", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:8cfa222edffd", + "chapter": "errors", + "label": "ERR_SOCKET_BAD_PORT", + "signature": "`ERR_SOCKET_BAD_PORT`", + "apiSymbol": "ERR_SOCKET_BAD_PORT", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_socket_bad_port", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:d32e72f67ef4", + "chapter": "errors", + "label": "ERR_SOCKET_BAD_TYPE", + "signature": "`ERR_SOCKET_BAD_TYPE`", + "apiSymbol": "ERR_SOCKET_BAD_TYPE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_socket_bad_type", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:53979642f967", + "chapter": "errors", + "label": "ERR_SOCKET_BUFFER_SIZE", + "signature": "`ERR_SOCKET_BUFFER_SIZE`", + "apiSymbol": "ERR_SOCKET_BUFFER_SIZE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_socket_buffer_size", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:c0185664eebe", + "chapter": "errors", + "label": "ERR_SOCKET_CLOSED", + "signature": "`ERR_SOCKET_CLOSED`", + "apiSymbol": "ERR_SOCKET_CLOSED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_socket_closed", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:8b292afa66e0", + "chapter": "errors", + "label": "ERR_SOCKET_CLOSED_BEFORE_CONNECTION", + "signature": "`ERR_SOCKET_CLOSED_BEFORE_CONNECTION`", + "apiSymbol": "ERR_SOCKET_CLOSED_BEFORE_CONNECTION", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_socket_closed_before_connection", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:34d53c146e1f", + "chapter": "errors", + "label": "ERR_SOCKET_CONNECTION_TIMEOUT", + "signature": "`ERR_SOCKET_CONNECTION_TIMEOUT`", + "apiSymbol": "ERR_SOCKET_CONNECTION_TIMEOUT", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_socket_connection_timeout", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:3406f55a37c2", + "chapter": "errors", + "label": "ERR_SOCKET_DGRAM_IS_CONNECTED", + "signature": "`ERR_SOCKET_DGRAM_IS_CONNECTED`", + "apiSymbol": "ERR_SOCKET_DGRAM_IS_CONNECTED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_socket_dgram_is_connected", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:c1e7ba9f66af", + "chapter": "errors", + "label": "ERR_SOCKET_DGRAM_NOT_CONNECTED", + "signature": "`ERR_SOCKET_DGRAM_NOT_CONNECTED`", + "apiSymbol": "ERR_SOCKET_DGRAM_NOT_CONNECTED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_socket_dgram_not_connected", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:d117e91a9526", + "chapter": "errors", + "label": "ERR_SOCKET_DGRAM_NOT_RUNNING", + "signature": "`ERR_SOCKET_DGRAM_NOT_RUNNING`", + "apiSymbol": "ERR_SOCKET_DGRAM_NOT_RUNNING", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_socket_dgram_not_running", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:e1def23be437", + "chapter": "errors", + "label": "ERR_SOURCE_MAP_CORRUPT", + "signature": "`ERR_SOURCE_MAP_CORRUPT`", + "apiSymbol": "ERR_SOURCE_MAP_CORRUPT", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_source_map_corrupt", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:2d37dafaac37", + "chapter": "errors", + "label": "ERR_SOURCE_MAP_MISSING_SOURCE", + "signature": "`ERR_SOURCE_MAP_MISSING_SOURCE`", + "apiSymbol": "ERR_SOURCE_MAP_MISSING_SOURCE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_source_map_missing_source", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:cc70603d1f39", + "chapter": "errors", + "label": "ERR_SOURCE_PHASE_NOT_DEFINED", + "signature": "`ERR_SOURCE_PHASE_NOT_DEFINED`", + "apiSymbol": "ERR_SOURCE_PHASE_NOT_DEFINED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_source_phase_not_defined", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:4df0cee6f207", + "chapter": "errors", + "label": "ERR_SQLITE_ERROR", + "signature": "`ERR_SQLITE_ERROR`", + "apiSymbol": "ERR_SQLITE_ERROR", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_sqlite_error", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:be361a517f6f", + "chapter": "errors", + "label": "ERR_SRI_PARSE", + "signature": "`ERR_SRI_PARSE`", + "apiSymbol": "ERR_SRI_PARSE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_sri_parse", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:333336c0237e", + "chapter": "errors", + "label": "ERR_STREAM_ALREADY_FINISHED", + "signature": "`ERR_STREAM_ALREADY_FINISHED`", + "apiSymbol": "ERR_STREAM_ALREADY_FINISHED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_stream_already_finished", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:b3cb594cb7f5", + "chapter": "errors", + "label": "ERR_STREAM_CANNOT_PIPE", + "signature": "`ERR_STREAM_CANNOT_PIPE`", + "apiSymbol": "ERR_STREAM_CANNOT_PIPE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_stream_cannot_pipe", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:7b855ad7e3a0", + "chapter": "errors", + "label": "ERR_STREAM_DESTROYED", + "signature": "`ERR_STREAM_DESTROYED`", + "apiSymbol": "ERR_STREAM_DESTROYED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_stream_destroyed", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:b69c141eb822", + "chapter": "errors", + "label": "ERR_STREAM_NULL_VALUES", + "signature": "`ERR_STREAM_NULL_VALUES`", + "apiSymbol": "ERR_STREAM_NULL_VALUES", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_stream_null_values", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:8e3956acad04", + "chapter": "errors", + "label": "ERR_STREAM_PREMATURE_CLOSE", + "signature": "`ERR_STREAM_PREMATURE_CLOSE`", + "apiSymbol": "ERR_STREAM_PREMATURE_CLOSE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_stream_premature_close", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:8fb70188d840", + "chapter": "errors", + "label": "ERR_STREAM_PUSH_AFTER_EOF", + "signature": "`ERR_STREAM_PUSH_AFTER_EOF`", + "apiSymbol": "ERR_STREAM_PUSH_AFTER_EOF", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_stream_push_after_eof", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:9478c6541e79", + "chapter": "errors", + "label": "ERR_STREAM_UNABLE_TO_PIPE", + "signature": "`ERR_STREAM_UNABLE_TO_PIPE`", + "apiSymbol": "ERR_STREAM_UNABLE_TO_PIPE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_stream_unable_to_pipe", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:7ef9ee9da146", + "chapter": "errors", + "label": "ERR_STREAM_UNSHIFT_AFTER_END_EVENT", + "signature": "`ERR_STREAM_UNSHIFT_AFTER_END_EVENT`", + "apiSymbol": "ERR_STREAM_UNSHIFT_AFTER_END_EVENT", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_stream_unshift_after_end_event", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:cc497df672f0", + "chapter": "errors", + "label": "ERR_STREAM_WRAP", + "signature": "`ERR_STREAM_WRAP`", + "apiSymbol": "ERR_STREAM_WRAP", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_stream_wrap", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:eaf7a9b7ed04", + "chapter": "errors", + "label": "ERR_STREAM_WRITE_AFTER_END", + "signature": "`ERR_STREAM_WRITE_AFTER_END`", + "apiSymbol": "ERR_STREAM_WRITE_AFTER_END", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_stream_write_after_end", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:3e8e239722af", + "chapter": "errors", + "label": "ERR_STRING_TOO_LONG", + "signature": "`ERR_STRING_TOO_LONG`", + "apiSymbol": "ERR_STRING_TOO_LONG", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_string_too_long", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:76b4074e4b93", + "chapter": "errors", + "label": "ERR_SYNTHETIC", + "signature": "`ERR_SYNTHETIC`", + "apiSymbol": "ERR_SYNTHETIC", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_synthetic", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:8a0da2712905", + "chapter": "errors", + "label": "ERR_SYSTEM_ERROR", + "signature": "`ERR_SYSTEM_ERROR`", + "apiSymbol": "ERR_SYSTEM_ERROR", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_system_error", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:792502de328b", + "chapter": "errors", + "label": "ERR_TEST_FAILURE", + "signature": "`ERR_TEST_FAILURE`", + "apiSymbol": "ERR_TEST_FAILURE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_test_failure", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:9b1bacff6b37", + "chapter": "errors", + "label": "ERR_TLS_ALPN_CALLBACK_INVALID_RESULT", + "signature": "`ERR_TLS_ALPN_CALLBACK_INVALID_RESULT`", + "apiSymbol": "ERR_TLS_ALPN_CALLBACK_INVALID_RESULT", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_tls_alpn_callback_invalid_result", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:25e1c176c943", + "chapter": "errors", + "label": "ERR_TLS_ALPN_CALLBACK_WITH_PROTOCOLS", + "signature": "`ERR_TLS_ALPN_CALLBACK_WITH_PROTOCOLS`", + "apiSymbol": "ERR_TLS_ALPN_CALLBACK_WITH_PROTOCOLS", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_tls_alpn_callback_with_protocols", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:d52b3150fe25", + "chapter": "errors", + "label": "ERR_TLS_CERT_ALTNAME_FORMAT", + "signature": "`ERR_TLS_CERT_ALTNAME_FORMAT`", + "apiSymbol": "ERR_TLS_CERT_ALTNAME_FORMAT", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_tls_cert_altname_format", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:1ff2f1a68547", + "chapter": "errors", + "label": "ERR_TLS_CERT_ALTNAME_INVALID", + "signature": "`ERR_TLS_CERT_ALTNAME_INVALID`", + "apiSymbol": "ERR_TLS_CERT_ALTNAME_INVALID", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_tls_cert_altname_invalid", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:9533c0ce8014", + "chapter": "errors", + "label": "ERR_TLS_DH_PARAM_SIZE", + "signature": "`ERR_TLS_DH_PARAM_SIZE`", + "apiSymbol": "ERR_TLS_DH_PARAM_SIZE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_tls_dh_param_size", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:9165fa555354", + "chapter": "errors", + "label": "ERR_TLS_HANDSHAKE_TIMEOUT", + "signature": "`ERR_TLS_HANDSHAKE_TIMEOUT`", + "apiSymbol": "ERR_TLS_HANDSHAKE_TIMEOUT", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_tls_handshake_timeout", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:6c1afc2f4664", + "chapter": "errors", + "label": "ERR_TLS_INVALID_CONTEXT", + "signature": "`ERR_TLS_INVALID_CONTEXT`", + "apiSymbol": "ERR_TLS_INVALID_CONTEXT", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_tls_invalid_context", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:7b8835838db3", + "chapter": "errors", + "label": "ERR_TLS_INVALID_PROTOCOL_METHOD", + "signature": "`ERR_TLS_INVALID_PROTOCOL_METHOD`", + "apiSymbol": "ERR_TLS_INVALID_PROTOCOL_METHOD", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_tls_invalid_protocol_method", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:881be3f296ef", + "chapter": "errors", + "label": "ERR_TLS_INVALID_PROTOCOL_VERSION", + "signature": "`ERR_TLS_INVALID_PROTOCOL_VERSION`", + "apiSymbol": "ERR_TLS_INVALID_PROTOCOL_VERSION", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_tls_invalid_protocol_version", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:de0012d185d6", + "chapter": "errors", + "label": "ERR_TLS_INVALID_STATE", + "signature": "`ERR_TLS_INVALID_STATE`", + "apiSymbol": "ERR_TLS_INVALID_STATE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_tls_invalid_state", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:f8422050d68c", + "chapter": "errors", + "label": "ERR_TLS_PROTOCOL_VERSION_CONFLICT", + "signature": "`ERR_TLS_PROTOCOL_VERSION_CONFLICT`", + "apiSymbol": "ERR_TLS_PROTOCOL_VERSION_CONFLICT", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_tls_protocol_version_conflict", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:07a8f37ce38e", + "chapter": "errors", + "label": "ERR_TLS_PSK_SET_IDENTITY_HINT_FAILED", + "signature": "`ERR_TLS_PSK_SET_IDENTITY_HINT_FAILED`", + "apiSymbol": "ERR_TLS_PSK_SET_IDENTITY_HINT_FAILED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_tls_psk_set_identity_hint_failed", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:408088d73814", + "chapter": "errors", + "label": "ERR_TLS_RENEGOTIATION_DISABLED", + "signature": "`ERR_TLS_RENEGOTIATION_DISABLED`", + "apiSymbol": "ERR_TLS_RENEGOTIATION_DISABLED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_tls_renegotiation_disabled", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:ebb5c98b76d6", + "chapter": "errors", + "label": "ERR_TLS_REQUIRED_SERVER_NAME", + "signature": "`ERR_TLS_REQUIRED_SERVER_NAME`", + "apiSymbol": "ERR_TLS_REQUIRED_SERVER_NAME", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_tls_required_server_name", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:c17db8ddab2b", + "chapter": "errors", + "label": "ERR_TLS_SESSION_ATTACK", + "signature": "`ERR_TLS_SESSION_ATTACK`", + "apiSymbol": "ERR_TLS_SESSION_ATTACK", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_tls_session_attack", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:7f7a48296d51", + "chapter": "errors", + "label": "ERR_TLS_SNI_FROM_SERVER", + "signature": "`ERR_TLS_SNI_FROM_SERVER`", + "apiSymbol": "ERR_TLS_SNI_FROM_SERVER", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_tls_sni_from_server", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:f577301878e6", + "chapter": "errors", + "label": "ERR_TRACE_EVENTS_CATEGORY_REQUIRED", + "signature": "`ERR_TRACE_EVENTS_CATEGORY_REQUIRED`", + "apiSymbol": "ERR_TRACE_EVENTS_CATEGORY_REQUIRED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_trace_events_category_required", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:ceb683fe1aca", + "chapter": "errors", + "label": "ERR_TRACE_EVENTS_UNAVAILABLE", + "signature": "`ERR_TRACE_EVENTS_UNAVAILABLE`", + "apiSymbol": "ERR_TRACE_EVENTS_UNAVAILABLE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_trace_events_unavailable", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:a17fda337ebf", + "chapter": "errors", + "label": "ERR_TRAILING_JUNK_AFTER_STREAM_END", + "signature": "`ERR_TRAILING_JUNK_AFTER_STREAM_END`", + "apiSymbol": "ERR_TRAILING_JUNK_AFTER_STREAM_END", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_trailing_junk_after_stream_end", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:325ad59f0fc1", + "chapter": "errors", + "label": "ERR_TRANSFORM_ALREADY_TRANSFORMING", + "signature": "`ERR_TRANSFORM_ALREADY_TRANSFORMING`", + "apiSymbol": "ERR_TRANSFORM_ALREADY_TRANSFORMING", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_transform_already_transforming", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:4af3cc70a2ff", + "chapter": "errors", + "label": "ERR_TRANSFORM_WITH_LENGTH_0", + "signature": "`ERR_TRANSFORM_WITH_LENGTH_0`", + "apiSymbol": "ERR_TRANSFORM_WITH_LENGTH_0", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_transform_with_length_0", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:168d82885391", + "chapter": "errors", + "label": "ERR_TTY_INIT_FAILED", + "signature": "`ERR_TTY_INIT_FAILED`", + "apiSymbol": "ERR_TTY_INIT_FAILED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_tty_init_failed", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:a7299c1d8dc9", + "chapter": "errors", + "label": "ERR_UNAVAILABLE_DURING_EXIT", + "signature": "`ERR_UNAVAILABLE_DURING_EXIT`", + "apiSymbol": "ERR_UNAVAILABLE_DURING_EXIT", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_unavailable_during_exit", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:baf0b69b1860", + "chapter": "errors", + "label": "ERR_UNCAUGHT_EXCEPTION_CAPTURE_ALREADY_SET", + "signature": "`ERR_UNCAUGHT_EXCEPTION_CAPTURE_ALREADY_SET`", + "apiSymbol": "ERR_UNCAUGHT_EXCEPTION_CAPTURE_ALREADY_SET", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_uncaught_exception_capture_already_set", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:0da0d678a3b4", + "chapter": "errors", + "label": "ERR_UNESCAPED_CHARACTERS", + "signature": "`ERR_UNESCAPED_CHARACTERS`", + "apiSymbol": "ERR_UNESCAPED_CHARACTERS", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_unescaped_characters", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:b60477b88b97", + "chapter": "errors", + "label": "ERR_UNHANDLED_ERROR", + "signature": "`ERR_UNHANDLED_ERROR`", + "apiSymbol": "ERR_UNHANDLED_ERROR", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_unhandled_error", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:82ff14d4a596", + "chapter": "errors", + "label": "ERR_UNKNOWN_BUILTIN_MODULE", + "signature": "`ERR_UNKNOWN_BUILTIN_MODULE`", + "apiSymbol": "ERR_UNKNOWN_BUILTIN_MODULE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_unknown_builtin_module", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:94f4cb656785", + "chapter": "errors", + "label": "ERR_UNKNOWN_CREDENTIAL", + "signature": "`ERR_UNKNOWN_CREDENTIAL`", + "apiSymbol": "ERR_UNKNOWN_CREDENTIAL", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_unknown_credential", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:7551352d64f6", + "chapter": "errors", + "label": "ERR_UNKNOWN_ENCODING", + "signature": "`ERR_UNKNOWN_ENCODING`", + "apiSymbol": "ERR_UNKNOWN_ENCODING", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_unknown_encoding", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:c5681463fa48", + "chapter": "errors", + "label": "ERR_UNKNOWN_FILE_EXTENSION", + "signature": "`ERR_UNKNOWN_FILE_EXTENSION`", + "apiSymbol": "ERR_UNKNOWN_FILE_EXTENSION", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_unknown_file_extension", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:87f7527b64e4", + "chapter": "errors", + "label": "ERR_UNKNOWN_MODULE_FORMAT", + "signature": "`ERR_UNKNOWN_MODULE_FORMAT`", + "apiSymbol": "ERR_UNKNOWN_MODULE_FORMAT", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_unknown_module_format", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:d87cae35000d", + "chapter": "errors", + "label": "ERR_UNKNOWN_SIGNAL", + "signature": "`ERR_UNKNOWN_SIGNAL`", + "apiSymbol": "ERR_UNKNOWN_SIGNAL", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_unknown_signal", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:954eabb9bc32", + "chapter": "errors", + "label": "ERR_UNSUPPORTED_DIR_IMPORT", + "signature": "`ERR_UNSUPPORTED_DIR_IMPORT`", + "apiSymbol": "ERR_UNSUPPORTED_DIR_IMPORT", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_unsupported_dir_import", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:e214d4aa9618", + "chapter": "errors", + "label": "ERR_UNSUPPORTED_ESM_URL_SCHEME", + "signature": "`ERR_UNSUPPORTED_ESM_URL_SCHEME`", + "apiSymbol": "ERR_UNSUPPORTED_ESM_URL_SCHEME", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_unsupported_esm_url_scheme", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:dcd1b99428b4", + "chapter": "errors", + "label": "ERR_UNSUPPORTED_NODE_MODULES_TYPE_STRIPPING", + "signature": "`ERR_UNSUPPORTED_NODE_MODULES_TYPE_STRIPPING`", + "apiSymbol": "ERR_UNSUPPORTED_NODE_MODULES_TYPE_STRIPPING", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_unsupported_node_modules_type_stripping", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:ad982710ceef", + "chapter": "errors", + "label": "ERR_UNSUPPORTED_RESOLVE_REQUEST", + "signature": "`ERR_UNSUPPORTED_RESOLVE_REQUEST`", + "apiSymbol": "ERR_UNSUPPORTED_RESOLVE_REQUEST", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_unsupported_resolve_request", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:29dfe11fa3a0", + "chapter": "errors", + "label": "ERR_UNSUPPORTED_TYPESCRIPT_SYNTAX", + "signature": "`ERR_UNSUPPORTED_TYPESCRIPT_SYNTAX`", + "apiSymbol": "ERR_UNSUPPORTED_TYPESCRIPT_SYNTAX", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_unsupported_typescript_syntax", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:7d418af1c733", + "chapter": "errors", + "label": "ERR_USE_AFTER_CLOSE", + "signature": "`ERR_USE_AFTER_CLOSE`", + "apiSymbol": "ERR_USE_AFTER_CLOSE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_use_after_close", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:6740f8efde1a", + "chapter": "errors", + "label": "ERR_VALID_PERFORMANCE_ENTRY_TYPE", + "signature": "`ERR_VALID_PERFORMANCE_ENTRY_TYPE`", + "apiSymbol": "ERR_VALID_PERFORMANCE_ENTRY_TYPE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_valid_performance_entry_type", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:c3428053070e", + "chapter": "errors", + "label": "ERR_VM_DYNAMIC_IMPORT_CALLBACK_MISSING", + "signature": "`ERR_VM_DYNAMIC_IMPORT_CALLBACK_MISSING`", + "apiSymbol": "ERR_VM_DYNAMIC_IMPORT_CALLBACK_MISSING", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_vm_dynamic_import_callback_missing", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:671ea036e292", + "chapter": "errors", + "label": "ERR_VM_DYNAMIC_IMPORT_CALLBACK_MISSING_FLAG", + "signature": "`ERR_VM_DYNAMIC_IMPORT_CALLBACK_MISSING_FLAG`", + "apiSymbol": "ERR_VM_DYNAMIC_IMPORT_CALLBACK_MISSING_FLAG", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_vm_dynamic_import_callback_missing_flag", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:5f845b9e8b2a", + "chapter": "errors", + "label": "ERR_VM_MODULE_ALREADY_LINKED", + "signature": "`ERR_VM_MODULE_ALREADY_LINKED`", + "apiSymbol": "ERR_VM_MODULE_ALREADY_LINKED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_vm_module_already_linked", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:c2846989ff9e", + "chapter": "errors", + "label": "ERR_VM_MODULE_CACHED_DATA_REJECTED", + "signature": "`ERR_VM_MODULE_CACHED_DATA_REJECTED`", + "apiSymbol": "ERR_VM_MODULE_CACHED_DATA_REJECTED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_vm_module_cached_data_rejected", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:079222dcd2ba", + "chapter": "errors", + "label": "ERR_VM_MODULE_CANNOT_CREATE_CACHED_DATA", + "signature": "`ERR_VM_MODULE_CANNOT_CREATE_CACHED_DATA`", + "apiSymbol": "ERR_VM_MODULE_CANNOT_CREATE_CACHED_DATA", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_vm_module_cannot_create_cached_data", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:6ea968ca12e8", + "chapter": "errors", + "label": "ERR_VM_MODULE_DIFFERENT_CONTEXT", + "signature": "`ERR_VM_MODULE_DIFFERENT_CONTEXT`", + "apiSymbol": "ERR_VM_MODULE_DIFFERENT_CONTEXT", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_vm_module_different_context", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:e0e6b5f418e8", + "chapter": "errors", + "label": "ERR_VM_MODULE_LINK_FAILURE", + "signature": "`ERR_VM_MODULE_LINK_FAILURE`", + "apiSymbol": "ERR_VM_MODULE_LINK_FAILURE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_vm_module_link_failure", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:8ee8e4ca79d2", + "chapter": "errors", + "label": "ERR_VM_MODULE_NOT_MODULE", + "signature": "`ERR_VM_MODULE_NOT_MODULE`", + "apiSymbol": "ERR_VM_MODULE_NOT_MODULE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_vm_module_not_module", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:ca92d1497275", + "chapter": "errors", + "label": "ERR_VM_MODULE_STATUS", + "signature": "`ERR_VM_MODULE_STATUS`", + "apiSymbol": "ERR_VM_MODULE_STATUS", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_vm_module_status", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:781c4df93738", + "chapter": "errors", + "label": "ERR_WASI_ALREADY_STARTED", + "signature": "`ERR_WASI_ALREADY_STARTED`", + "apiSymbol": "ERR_WASI_ALREADY_STARTED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_wasi_already_started", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:97f460bbd0b6", + "chapter": "errors", + "label": "ERR_WASI_NOT_STARTED", + "signature": "`ERR_WASI_NOT_STARTED`", + "apiSymbol": "ERR_WASI_NOT_STARTED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_wasi_not_started", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:a8cbde85cdb9", + "chapter": "errors", + "label": "ERR_WEBASSEMBLY_NOT_SUPPORTED", + "signature": "`ERR_WEBASSEMBLY_NOT_SUPPORTED`", + "apiSymbol": "ERR_WEBASSEMBLY_NOT_SUPPORTED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_webassembly_not_supported", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:87ff1721ed05", + "chapter": "errors", + "label": "ERR_WEBASSEMBLY_RESPONSE", + "signature": "`ERR_WEBASSEMBLY_RESPONSE`", + "apiSymbol": "ERR_WEBASSEMBLY_RESPONSE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_webassembly_response", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:75ec70605835", + "chapter": "errors", + "label": "ERR_WORKER_INIT_FAILED", + "signature": "`ERR_WORKER_INIT_FAILED`", + "apiSymbol": "ERR_WORKER_INIT_FAILED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_worker_init_failed", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:b015bae7ee07", + "chapter": "errors", + "label": "ERR_WORKER_INVALID_EXEC_ARGV", + "signature": "`ERR_WORKER_INVALID_EXEC_ARGV`", + "apiSymbol": "ERR_WORKER_INVALID_EXEC_ARGV", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_worker_invalid_exec_argv", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:2c78aa6542c4", + "chapter": "errors", + "label": "ERR_WORKER_MESSAGING_ERRORED", + "signature": "`ERR_WORKER_MESSAGING_ERRORED`", + "apiSymbol": "ERR_WORKER_MESSAGING_ERRORED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_worker_messaging_errored", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:da02d87c4ac3", + "chapter": "errors", + "label": "ERR_WORKER_MESSAGING_FAILED", + "signature": "`ERR_WORKER_MESSAGING_FAILED`", + "apiSymbol": "ERR_WORKER_MESSAGING_FAILED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_worker_messaging_failed", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:13fec05ffc9e", + "chapter": "errors", + "label": "ERR_WORKER_MESSAGING_SAME_THREAD", + "signature": "`ERR_WORKER_MESSAGING_SAME_THREAD`", + "apiSymbol": "ERR_WORKER_MESSAGING_SAME_THREAD", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_worker_messaging_same_thread", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:64f5f21e175e", + "chapter": "errors", + "label": "ERR_WORKER_MESSAGING_TIMEOUT", + "signature": "`ERR_WORKER_MESSAGING_TIMEOUT`", + "apiSymbol": "ERR_WORKER_MESSAGING_TIMEOUT", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_worker_messaging_timeout", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:2a75f29ed325", + "chapter": "errors", + "label": "ERR_WORKER_NOT_RUNNING", + "signature": "`ERR_WORKER_NOT_RUNNING`", + "apiSymbol": "ERR_WORKER_NOT_RUNNING", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_worker_not_running", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:b274b70ec8d4", + "chapter": "errors", + "label": "ERR_WORKER_OUT_OF_MEMORY", + "signature": "`ERR_WORKER_OUT_OF_MEMORY`", + "apiSymbol": "ERR_WORKER_OUT_OF_MEMORY", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_worker_out_of_memory", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:b2bc0c8cb1f7", + "chapter": "errors", + "label": "ERR_WORKER_PATH", + "signature": "`ERR_WORKER_PATH`", + "apiSymbol": "ERR_WORKER_PATH", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_worker_path", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:aa370a80f4b1", + "chapter": "errors", + "label": "ERR_WORKER_UNSERIALIZABLE_ERROR", + "signature": "`ERR_WORKER_UNSERIALIZABLE_ERROR`", + "apiSymbol": "ERR_WORKER_UNSERIALIZABLE_ERROR", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_worker_unserializable_error", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:e61ae498b366", + "chapter": "errors", + "label": "ERR_WORKER_UNSUPPORTED_OPERATION", + "signature": "`ERR_WORKER_UNSUPPORTED_OPERATION`", + "apiSymbol": "ERR_WORKER_UNSUPPORTED_OPERATION", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_worker_unsupported_operation", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:9deb6e3047fd", + "chapter": "errors", + "label": "ERR_ZLIB_INITIALIZATION_FAILED", + "signature": "`ERR_ZLIB_INITIALIZATION_FAILED`", + "apiSymbol": "ERR_ZLIB_INITIALIZATION_FAILED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_zlib_initialization_failed", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:fc5da7d1951e", + "chapter": "errors", + "label": "ERR_ZSTD_INVALID_PARAM", + "signature": "`ERR_ZSTD_INVALID_PARAM`", + "apiSymbol": "ERR_ZSTD_INVALID_PARAM", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_zstd_invalid_param", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:f090a6b81591", + "chapter": "errors", + "label": "HPE_CHUNK_EXTENSIONS_OVERFLOW", + "signature": "`HPE_CHUNK_EXTENSIONS_OVERFLOW`", + "apiSymbol": "HPE_CHUNK_EXTENSIONS_OVERFLOW", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#hpe_chunk_extensions_overflow", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:87c31df381d7", + "chapter": "errors", + "label": "HPE_HEADER_OVERFLOW", + "signature": "`HPE_HEADER_OVERFLOW`", + "apiSymbol": "HPE_HEADER_OVERFLOW", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#hpe_header_overflow", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:8da5f12840bc", + "chapter": "errors", + "label": "HPE_UNEXPECTED_CONTENT_LENGTH", + "signature": "`HPE_UNEXPECTED_CONTENT_LENGTH`", + "apiSymbol": "HPE_UNEXPECTED_CONTENT_LENGTH", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#hpe_unexpected_content_length", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:d160d0cdba1d", + "chapter": "errors", + "label": "MODULE_NOT_FOUND", + "signature": "`MODULE_NOT_FOUND`", + "apiSymbol": "MODULE_NOT_FOUND", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#module_not_found", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:439ad52bd8d8", + "chapter": "errors", + "label": "ERR_CANNOT_TRANSFER_OBJECT", + "signature": "`ERR_CANNOT_TRANSFER_OBJECT`", + "apiSymbol": "ERR_CANNOT_TRANSFER_OBJECT", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_cannot_transfer_object", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:c0a7823c7c67", + "chapter": "errors", + "label": "ERR_CPU_USAGE", + "signature": "`ERR_CPU_USAGE`", + "apiSymbol": "ERR_CPU_USAGE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_cpu_usage", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:4f1d4c79332c", + "chapter": "errors", + "label": "ERR_CRYPTO_HASH_DIGEST_NO_UTF16", + "signature": "`ERR_CRYPTO_HASH_DIGEST_NO_UTF16`", + "apiSymbol": "ERR_CRYPTO_HASH_DIGEST_NO_UTF16", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_crypto_hash_digest_no_utf16", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:0e98b56c97e8", + "chapter": "errors", + "label": "ERR_CRYPTO_SCRYPT_INVALID_PARAMETER", + "signature": "`ERR_CRYPTO_SCRYPT_INVALID_PARAMETER`", + "apiSymbol": "ERR_CRYPTO_SCRYPT_INVALID_PARAMETER", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_crypto_scrypt_invalid_parameter", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:0bb0b3213086", + "chapter": "errors", + "label": "ERR_FS_INVALID_SYMLINK_TYPE", + "signature": "`ERR_FS_INVALID_SYMLINK_TYPE`", + "apiSymbol": "ERR_FS_INVALID_SYMLINK_TYPE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_fs_invalid_symlink_type", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:f22975942220", + "chapter": "errors", + "label": "ERR_HTTP2_FRAME_ERROR", + "signature": "`ERR_HTTP2_FRAME_ERROR`", + "apiSymbol": "ERR_HTTP2_FRAME_ERROR", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http2_frame_error", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:d37ab7415eb1", + "chapter": "errors", + "label": "ERR_HTTP2_HEADERS_OBJECT", + "signature": "`ERR_HTTP2_HEADERS_OBJECT`", + "apiSymbol": "ERR_HTTP2_HEADERS_OBJECT", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http2_headers_object", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:82447626cae9", + "chapter": "errors", + "label": "ERR_HTTP2_HEADER_REQUIRED", + "signature": "`ERR_HTTP2_HEADER_REQUIRED`", + "apiSymbol": "ERR_HTTP2_HEADER_REQUIRED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http2_header_required", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:da8cf45429e4", + "chapter": "errors", + "label": "ERR_HTTP2_INFO_HEADERS_AFTER_RESPOND", + "signature": "`ERR_HTTP2_INFO_HEADERS_AFTER_RESPOND`", + "apiSymbol": "ERR_HTTP2_INFO_HEADERS_AFTER_RESPOND", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http2_info_headers_after_respond", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:f846d1688f40", + "chapter": "errors", + "label": "ERR_HTTP2_STREAM_CLOSED", + "signature": "`ERR_HTTP2_STREAM_CLOSED`", + "apiSymbol": "ERR_HTTP2_STREAM_CLOSED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http2_stream_closed", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:dbdb23ef8707", + "chapter": "errors", + "label": "ERR_HTTP_INVALID_CHAR", + "signature": "`ERR_HTTP_INVALID_CHAR`", + "apiSymbol": "ERR_HTTP_INVALID_CHAR", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_http_invalid_char", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:af06e0979e6f", + "chapter": "errors", + "label": "ERR_IMPORT_ASSERTION_TYPE_FAILED", + "signature": "`ERR_IMPORT_ASSERTION_TYPE_FAILED`", + "apiSymbol": "ERR_IMPORT_ASSERTION_TYPE_FAILED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_import_assertion_type_failed", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:43950d683294", + "chapter": "errors", + "label": "ERR_IMPORT_ASSERTION_TYPE_MISSING", + "signature": "`ERR_IMPORT_ASSERTION_TYPE_MISSING`", + "apiSymbol": "ERR_IMPORT_ASSERTION_TYPE_MISSING", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_import_assertion_type_missing", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:8d0d238ca2be", + "chapter": "errors", + "label": "ERR_IMPORT_ASSERTION_TYPE_UNSUPPORTED", + "signature": "`ERR_IMPORT_ASSERTION_TYPE_UNSUPPORTED`", + "apiSymbol": "ERR_IMPORT_ASSERTION_TYPE_UNSUPPORTED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_import_assertion_type_unsupported", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:d40a10834bde", + "chapter": "errors", + "label": "ERR_INDEX_OUT_OF_RANGE", + "signature": "`ERR_INDEX_OUT_OF_RANGE`", + "apiSymbol": "ERR_INDEX_OUT_OF_RANGE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_index_out_of_range", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:74df823db69b", + "chapter": "errors", + "label": "ERR_INVALID_OPT_VALUE", + "signature": "`ERR_INVALID_OPT_VALUE`", + "apiSymbol": "ERR_INVALID_OPT_VALUE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_invalid_opt_value", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:d5e7a70605a9", + "chapter": "errors", + "label": "ERR_INVALID_OPT_VALUE_ENCODING", + "signature": "`ERR_INVALID_OPT_VALUE_ENCODING`", + "apiSymbol": "ERR_INVALID_OPT_VALUE_ENCODING", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_invalid_opt_value_encoding", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:380651a487d3", + "chapter": "errors", + "label": "ERR_INVALID_PERFORMANCE_MARK", + "signature": "`ERR_INVALID_PERFORMANCE_MARK`", + "apiSymbol": "ERR_INVALID_PERFORMANCE_MARK", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_invalid_performance_mark", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:b2cf2dee707f", + "chapter": "errors", + "label": "ERR_INVALID_TRANSFER_OBJECT", + "signature": "`ERR_INVALID_TRANSFER_OBJECT`", + "apiSymbol": "ERR_INVALID_TRANSFER_OBJECT", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_invalid_transfer_object", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:390eb0517f49", + "chapter": "errors", + "label": "ERR_MANIFEST_ASSERT_INTEGRITY", + "signature": "`ERR_MANIFEST_ASSERT_INTEGRITY`", + "apiSymbol": "ERR_MANIFEST_ASSERT_INTEGRITY", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_manifest_assert_integrity", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:f9f70133d0d3", + "chapter": "errors", + "label": "ERR_MANIFEST_DEPENDENCY_MISSING", + "signature": "`ERR_MANIFEST_DEPENDENCY_MISSING`", + "apiSymbol": "ERR_MANIFEST_DEPENDENCY_MISSING", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_manifest_dependency_missing", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:4096c4d31809", + "chapter": "errors", + "label": "ERR_MANIFEST_INTEGRITY_MISMATCH", + "signature": "`ERR_MANIFEST_INTEGRITY_MISMATCH`", + "apiSymbol": "ERR_MANIFEST_INTEGRITY_MISMATCH", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_manifest_integrity_mismatch", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:d85a9bba8d33", + "chapter": "errors", + "label": "ERR_MANIFEST_INVALID_RESOURCE_FIELD", + "signature": "`ERR_MANIFEST_INVALID_RESOURCE_FIELD`", + "apiSymbol": "ERR_MANIFEST_INVALID_RESOURCE_FIELD", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_manifest_invalid_resource_field", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:4d6e41331130", + "chapter": "errors", + "label": "ERR_MANIFEST_INVALID_SPECIFIER", + "signature": "`ERR_MANIFEST_INVALID_SPECIFIER`", + "apiSymbol": "ERR_MANIFEST_INVALID_SPECIFIER", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_manifest_invalid_specifier", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:0549a7ac0837", + "chapter": "errors", + "label": "ERR_MANIFEST_PARSE_POLICY", + "signature": "`ERR_MANIFEST_PARSE_POLICY`", + "apiSymbol": "ERR_MANIFEST_PARSE_POLICY", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_manifest_parse_policy", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:2cf2e8e964aa", + "chapter": "errors", + "label": "ERR_MANIFEST_TDZ", + "signature": "`ERR_MANIFEST_TDZ`", + "apiSymbol": "ERR_MANIFEST_TDZ", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_manifest_tdz", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:2fdc4ffb3667", + "chapter": "errors", + "label": "ERR_MANIFEST_UNKNOWN_ONERROR", + "signature": "`ERR_MANIFEST_UNKNOWN_ONERROR`", + "apiSymbol": "ERR_MANIFEST_UNKNOWN_ONERROR", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_manifest_unknown_onerror", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:27bcb9745c97", + "chapter": "errors", + "label": "ERR_MISSING_MESSAGE_PORT_IN_TRANSFER_LIST", + "signature": "`ERR_MISSING_MESSAGE_PORT_IN_TRANSFER_LIST`", + "apiSymbol": "ERR_MISSING_MESSAGE_PORT_IN_TRANSFER_LIST", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_missing_message_port_in_transfer_list", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:09f8cac35b41", + "chapter": "errors", + "label": "ERR_MISSING_TRANSFERABLE_IN_TRANSFER_LIST", + "signature": "`ERR_MISSING_TRANSFERABLE_IN_TRANSFER_LIST`", + "apiSymbol": "ERR_MISSING_TRANSFERABLE_IN_TRANSFER_LIST", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_missing_transferable_in_transfer_list", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:c8a4f1e72052", + "chapter": "errors", + "label": "ERR_NAPI_CONS_PROTOTYPE_OBJECT", + "signature": "`ERR_NAPI_CONS_PROTOTYPE_OBJECT`", + "apiSymbol": "ERR_NAPI_CONS_PROTOTYPE_OBJECT", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_napi_cons_prototype_object", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:c5fe6f0c53b0", + "chapter": "errors", + "label": "ERR_NAPI_TSFN_START_IDLE_LOOP", + "signature": "`ERR_NAPI_TSFN_START_IDLE_LOOP`", + "apiSymbol": "ERR_NAPI_TSFN_START_IDLE_LOOP", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_napi_tsfn_start_idle_loop", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:8ad60b8eafcc", + "chapter": "errors", + "label": "ERR_NAPI_TSFN_STOP_IDLE_LOOP", + "signature": "`ERR_NAPI_TSFN_STOP_IDLE_LOOP`", + "apiSymbol": "ERR_NAPI_TSFN_STOP_IDLE_LOOP", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_napi_tsfn_stop_idle_loop", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:245e851177d7", + "chapter": "errors", + "label": "ERR_NO_LONGER_SUPPORTED", + "signature": "`ERR_NO_LONGER_SUPPORTED`", + "apiSymbol": "ERR_NO_LONGER_SUPPORTED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_no_longer_supported", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:84dd75ef7a58", + "chapter": "errors", + "label": "ERR_OUTOFMEMORY", + "signature": "`ERR_OUTOFMEMORY`", + "apiSymbol": "ERR_OUTOFMEMORY", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_outofmemory", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:6af35b4b138c", + "chapter": "errors", + "label": "ERR_PARSE_HISTORY_DATA", + "signature": "`ERR_PARSE_HISTORY_DATA`", + "apiSymbol": "ERR_PARSE_HISTORY_DATA", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_parse_history_data", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:945f9d5653be", + "chapter": "errors", + "label": "ERR_SOCKET_CANNOT_SEND", + "signature": "`ERR_SOCKET_CANNOT_SEND`", + "apiSymbol": "ERR_SOCKET_CANNOT_SEND", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_socket_cannot_send", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:56a2687d7785", + "chapter": "errors", + "label": "ERR_STDERR_CLOSE", + "signature": "`ERR_STDERR_CLOSE`", + "apiSymbol": "ERR_STDERR_CLOSE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_stderr_close", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:d366ab4d6a93", + "chapter": "errors", + "label": "ERR_STDOUT_CLOSE", + "signature": "`ERR_STDOUT_CLOSE`", + "apiSymbol": "ERR_STDOUT_CLOSE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_stdout_close", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:eb156aa35a3f", + "chapter": "errors", + "label": "ERR_STREAM_READ_NOT_IMPLEMENTED", + "signature": "`ERR_STREAM_READ_NOT_IMPLEMENTED`", + "apiSymbol": "ERR_STREAM_READ_NOT_IMPLEMENTED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_stream_read_not_implemented", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:a8caf4be8238", + "chapter": "errors", + "label": "ERR_TAP_LEXER_ERROR", + "signature": "`ERR_TAP_LEXER_ERROR`", + "apiSymbol": "ERR_TAP_LEXER_ERROR", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_tap_lexer_error", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:41036708462f", + "chapter": "errors", + "label": "ERR_TAP_PARSER_ERROR", + "signature": "`ERR_TAP_PARSER_ERROR`", + "apiSymbol": "ERR_TAP_PARSER_ERROR", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_tap_parser_error", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:617359cbc761", + "chapter": "errors", + "label": "ERR_TAP_VALIDATION_ERROR", + "signature": "`ERR_TAP_VALIDATION_ERROR`", + "apiSymbol": "ERR_TAP_VALIDATION_ERROR", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_tap_validation_error", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:e2b537b9cf81", + "chapter": "errors", + "label": "ERR_TLS_RENEGOTIATION_FAILED", + "signature": "`ERR_TLS_RENEGOTIATION_FAILED`", + "apiSymbol": "ERR_TLS_RENEGOTIATION_FAILED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_tls_renegotiation_failed", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:aa08fb64ea29", + "chapter": "errors", + "label": "ERR_TRANSFERRING_EXTERNALIZED_SHAREDARRAYBUFFER", + "signature": "`ERR_TRANSFERRING_EXTERNALIZED_SHAREDARRAYBUFFER`", + "apiSymbol": "ERR_TRANSFERRING_EXTERNALIZED_SHAREDARRAYBUFFER", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_transferring_externalized_sharedarraybuffer", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:2885aac07c34", + "chapter": "errors", + "label": "ERR_UNKNOWN_STDIN_TYPE", + "signature": "`ERR_UNKNOWN_STDIN_TYPE`", + "apiSymbol": "ERR_UNKNOWN_STDIN_TYPE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_unknown_stdin_type", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:3002db6010f3", + "chapter": "errors", + "label": "ERR_UNKNOWN_STREAM_TYPE", + "signature": "`ERR_UNKNOWN_STREAM_TYPE`", + "apiSymbol": "ERR_UNKNOWN_STREAM_TYPE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_unknown_stream_type", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:c42be6185200", + "chapter": "errors", + "label": "ERR_V8BREAKITERATOR", + "signature": "`ERR_V8BREAKITERATOR`", + "apiSymbol": "ERR_V8BREAKITERATOR", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_v8breakiterator", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:576989a96e5f", + "chapter": "errors", + "label": "ERR_VALUE_OUT_OF_RANGE", + "signature": "`ERR_VALUE_OUT_OF_RANGE`", + "apiSymbol": "ERR_VALUE_OUT_OF_RANGE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_value_out_of_range", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:2a75e3b52031", + "chapter": "errors", + "label": "ERR_VM_MODULE_LINKING_ERRORED", + "signature": "`ERR_VM_MODULE_LINKING_ERRORED`", + "apiSymbol": "ERR_VM_MODULE_LINKING_ERRORED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_vm_module_linking_errored", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:d35cd312d972", + "chapter": "errors", + "label": "ERR_VM_MODULE_NOT_LINKED", + "signature": "`ERR_VM_MODULE_NOT_LINKED`", + "apiSymbol": "ERR_VM_MODULE_NOT_LINKED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_vm_module_not_linked", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:7eba9487bb7b", + "chapter": "errors", + "label": "ERR_WORKER_UNSUPPORTED_EXTENSION", + "signature": "`ERR_WORKER_UNSUPPORTED_EXTENSION`", + "apiSymbol": "ERR_WORKER_UNSUPPORTED_EXTENSION", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_worker_unsupported_extension", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:b626bda0cacd", + "chapter": "errors", + "label": "ERR_ZLIB_BINDING_CLOSED", + "signature": "`ERR_ZLIB_BINDING_CLOSED`", + "apiSymbol": "ERR_ZLIB_BINDING_CLOSED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#err_zlib_binding_closed", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:bb4a4ed9b300", + "chapter": "errors", + "label": "CERT_NOT_YET_VALID", + "signature": "`CERT_NOT_YET_VALID`", + "apiSymbol": "CERT_NOT_YET_VALID", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#cert_not_yet_valid", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:c1b582bc3c62", + "chapter": "errors", + "label": "CERT_HAS_EXPIRED", + "signature": "`CERT_HAS_EXPIRED`", + "apiSymbol": "CERT_HAS_EXPIRED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#cert_has_expired", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:d14dbc9c6b0e", + "chapter": "errors", + "label": "CRL_NOT_YET_VALID", + "signature": "`CRL_NOT_YET_VALID`", + "apiSymbol": "CRL_NOT_YET_VALID", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#crl_not_yet_valid", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:ad88307c3bdd", + "chapter": "errors", + "label": "CRL_HAS_EXPIRED", + "signature": "`CRL_HAS_EXPIRED`", + "apiSymbol": "CRL_HAS_EXPIRED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#crl_has_expired", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:423605b68df8", + "chapter": "errors", + "label": "CERT_REVOKED", + "signature": "`CERT_REVOKED`", + "apiSymbol": "CERT_REVOKED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#cert_revoked", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:4ee21bb0a84c", + "chapter": "errors", + "label": "UNABLE_TO_GET_ISSUER_CERT", + "signature": "`UNABLE_TO_GET_ISSUER_CERT`", + "apiSymbol": "UNABLE_TO_GET_ISSUER_CERT", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#unable_to_get_issuer_cert", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:49b99782ac4c", + "chapter": "errors", + "label": "UNABLE_TO_GET_ISSUER_CERT_LOCALLY", + "signature": "`UNABLE_TO_GET_ISSUER_CERT_LOCALLY`", + "apiSymbol": "UNABLE_TO_GET_ISSUER_CERT_LOCALLY", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#unable_to_get_issuer_cert_locally", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:5b8761425770", + "chapter": "errors", + "label": "DEPTH_ZERO_SELF_SIGNED_CERT", + "signature": "`DEPTH_ZERO_SELF_SIGNED_CERT`", + "apiSymbol": "DEPTH_ZERO_SELF_SIGNED_CERT", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#depth_zero_self_signed_cert", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:6e2c3b93610c", + "chapter": "errors", + "label": "SELF_SIGNED_CERT_IN_CHAIN", + "signature": "`SELF_SIGNED_CERT_IN_CHAIN`", + "apiSymbol": "SELF_SIGNED_CERT_IN_CHAIN", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#self_signed_cert_in_chain", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:2a650eb60ec1", + "chapter": "errors", + "label": "CERT_CHAIN_TOO_LONG", + "signature": "`CERT_CHAIN_TOO_LONG`", + "apiSymbol": "CERT_CHAIN_TOO_LONG", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#cert_chain_too_long", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:ba46bbc95aff", + "chapter": "errors", + "label": "UNABLE_TO_GET_CRL", + "signature": "`UNABLE_TO_GET_CRL`", + "apiSymbol": "UNABLE_TO_GET_CRL", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#unable_to_get_crl", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:d1075014869e", + "chapter": "errors", + "label": "UNABLE_TO_VERIFY_LEAF_SIGNATURE", + "signature": "`UNABLE_TO_VERIFY_LEAF_SIGNATURE`", + "apiSymbol": "UNABLE_TO_VERIFY_LEAF_SIGNATURE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#unable_to_verify_leaf_signature", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:375e514bbc69", + "chapter": "errors", + "label": "CERT_UNTRUSTED", + "signature": "`CERT_UNTRUSTED`", + "apiSymbol": "CERT_UNTRUSTED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#cert_untrusted", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:467693e29391", + "chapter": "errors", + "label": "INVALID_CA", + "signature": "`INVALID_CA`", + "apiSymbol": "INVALID_CA", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#invalid_ca", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:95a9de1e5fcf", + "chapter": "errors", + "label": "PATH_LENGTH_EXCEEDED", + "signature": "`PATH_LENGTH_EXCEEDED`", + "apiSymbol": "PATH_LENGTH_EXCEEDED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#path_length_exceeded", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:d72801142ee6", + "chapter": "errors", + "label": "HOSTNAME_MISMATCH", + "signature": "`HOSTNAME_MISMATCH`", + "apiSymbol": "HOSTNAME_MISMATCH", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#hostname_mismatch", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:75d9c5d34364", + "chapter": "errors", + "label": "INVALID_PURPOSE", + "signature": "`INVALID_PURPOSE`", + "apiSymbol": "INVALID_PURPOSE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#invalid_purpose", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:7e32fb96f849", + "chapter": "errors", + "label": "CERT_REJECTED", + "signature": "`CERT_REJECTED`", + "apiSymbol": "CERT_REJECTED", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#cert_rejected", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:113869e011dd", + "chapter": "errors", + "label": "CERT_SIGNATURE_FAILURE", + "signature": "`CERT_SIGNATURE_FAILURE`", + "apiSymbol": "CERT_SIGNATURE_FAILURE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#cert_signature_failure", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:202d15146717", + "chapter": "errors", + "label": "CRL_SIGNATURE_FAILURE", + "signature": "`CRL_SIGNATURE_FAILURE`", + "apiSymbol": "CRL_SIGNATURE_FAILURE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#crl_signature_failure", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:346d669692ba", + "chapter": "errors", + "label": "ERROR_IN_CERT_NOT_BEFORE_FIELD", + "signature": "`ERROR_IN_CERT_NOT_BEFORE_FIELD`", + "apiSymbol": "ERROR_IN_CERT_NOT_BEFORE_FIELD", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#error_in_cert_not_before_field", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:f2bba73f3c9d", + "chapter": "errors", + "label": "ERROR_IN_CERT_NOT_AFTER_FIELD", + "signature": "`ERROR_IN_CERT_NOT_AFTER_FIELD`", + "apiSymbol": "ERROR_IN_CERT_NOT_AFTER_FIELD", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#error_in_cert_not_after_field", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:b47afd067f88", + "chapter": "errors", + "label": "ERROR_IN_CRL_LAST_UPDATE_FIELD", + "signature": "`ERROR_IN_CRL_LAST_UPDATE_FIELD`", + "apiSymbol": "ERROR_IN_CRL_LAST_UPDATE_FIELD", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#error_in_crl_last_update_field", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:db9b24b9c765", + "chapter": "errors", + "label": "ERROR_IN_CRL_NEXT_UPDATE_FIELD", + "signature": "`ERROR_IN_CRL_NEXT_UPDATE_FIELD`", + "apiSymbol": "ERROR_IN_CRL_NEXT_UPDATE_FIELD", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#error_in_crl_next_update_field", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:5cc3d7507fd1", + "chapter": "errors", + "label": "UNABLE_TO_DECRYPT_CERT_SIGNATURE", + "signature": "`UNABLE_TO_DECRYPT_CERT_SIGNATURE`", + "apiSymbol": "UNABLE_TO_DECRYPT_CERT_SIGNATURE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#unable_to_decrypt_cert_signature", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:9327a0a0138f", + "chapter": "errors", + "label": "UNABLE_TO_DECRYPT_CRL_SIGNATURE", + "signature": "`UNABLE_TO_DECRYPT_CRL_SIGNATURE`", + "apiSymbol": "UNABLE_TO_DECRYPT_CRL_SIGNATURE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#unable_to_decrypt_crl_signature", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:9003e1f604af", + "chapter": "errors", + "label": "UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY", + "signature": "`UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY`", + "apiSymbol": "UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#unable_to_decode_issuer_public_key", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "errors:c19451db58d6", + "chapter": "errors", + "label": "OUT_OF_MEM", + "signature": "`OUT_OF_MEM`", + "apiSymbol": "OUT_OF_MEM", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/errors.html#out_of_mem", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:errors", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:errors", + "tests": [] + } + } + }, + { + "id": "events:95ba58ddaa1b", + "chapter": "events", + "label": "Passing arguments and this to listeners", + "signature": "Passing arguments and `this` to listeners", + "apiSymbol": "this", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#passing-arguments-and-this-to-listeners", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:events", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:events", + "tests": [] + } + } + }, + { + "id": "events:a24d4325b57d", + "chapter": "events", + "label": "EventTarget", + "signature": "`EventTarget` and `Event` API", + "apiSymbol": "EventTarget", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#eventtarget-and-event-api", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:events", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:events", + "tests": [] + } + } + }, + { + "id": "events:5ec1a270a500", + "chapter": "events", + "label": "Node.js EventTarget vs. DOM EventTarget", + "signature": "Node.js `EventTarget` vs. DOM `EventTarget`", + "apiSymbol": "EventTarget", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#nodejs-eventtarget-vs-dom-eventtarget", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:events", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:events", + "tests": [] + } + } + }, + { + "id": "events:7f27ccc79a12", + "chapter": "events", + "label": "NodeEventTarget", + "signature": "`NodeEventTarget` vs. `EventEmitter`", + "apiSymbol": "NodeEventTarget", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#nodeeventtarget-vs-eventemitter", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:events", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:events", + "tests": [] + } + } + }, + { + "id": "events:4b769414ea5e", + "chapter": "events", + "label": "EventTarget", + "signature": "`EventTarget` error handling", + "apiSymbol": "EventTarget", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#eventtarget-error-handling", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:events", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:events", + "tests": [] + } + } + }, + { + "id": "events:e4c8500e4b93", + "chapter": "events", + "label": "Event", + "signature": "Class: `Event`", + "apiSymbol": "Event", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#class-event", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:events", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:events", + "tests": [] + } + } + }, + { + "id": "events:e5c069095e5c", + "chapter": "events", + "label": "event.composedPath()", + "signature": "`event.composedPath()`", + "apiSymbol": "event.composedPath", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#eventcomposedpath", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:events", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:events", + "tests": [] + } + } + }, + { + "id": "events:85436cb5ea2b", + "chapter": "events", + "label": "event.initEvent(type[, bubbles[, cancelable]])", + "signature": "`event.initEvent(type[, bubbles[, cancelable]])`", + "apiSymbol": "event.initEvent", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#eventiniteventtype-bubbles-cancelable", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: The WHATWG spec considers it deprecated and users shouldn't use it at all.", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:events", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:events", + "tests": [] + } + } + }, + { + "id": "events:5848ab30b2e5", + "chapter": "events", + "label": "event.preventDefault()", + "signature": "`event.preventDefault()`", + "apiSymbol": "event.preventDefault", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#eventpreventdefault", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:events", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:events", + "tests": [] + } + } + }, + { + "id": "events:c16743d778c4", + "chapter": "events", + "label": "event.stopImmediatePropagation()", + "signature": "`event.stopImmediatePropagation()`", + "apiSymbol": "event.stopImmediatePropagation", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#eventstopimmediatepropagation", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:events", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:events", + "tests": [] + } + } + }, + { + "id": "events:9bab844aa1c2", + "chapter": "events", + "label": "event.stopPropagation()", + "signature": "`event.stopPropagation()`", + "apiSymbol": "event.stopPropagation", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#eventstoppropagation", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:events", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:events", + "tests": [] + } + } + }, + { + "id": "events:abe0ea02a52c", + "chapter": "events", + "label": "bubbles", + "signature": "`bubbles` Type: {boolean} Always returns `false`.", + "apiSymbol": "bubbles", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#class-event", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:events", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:events", + "tests": [] + } + } + }, + { + "id": "events:44e2dc361428", + "chapter": "events", + "label": "cancelBubble", + "signature": "`cancelBubble` Type: {boolean}", + "apiSymbol": "cancelBubble", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#class-event", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use [`event.stopPropagation()`][] instead.", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:events", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:events", + "tests": [] + } + } + }, + { + "id": "events:51ee094d86d3", + "chapter": "events", + "label": "cancelable", + "signature": "`cancelable` Type: {boolean} True if the event was created with the `cancelable` option.", + "apiSymbol": "cancelable", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#class-event", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:events", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:events", + "tests": [] + } + } + }, + { + "id": "events:369be877d737", + "chapter": "events", + "label": "composed", + "signature": "`composed` Type: {boolean} Always returns `false`.", + "apiSymbol": "composed", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#class-event", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:events", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:events", + "tests": [] + } + } + }, + { + "id": "events:4e0c88e53f49", + "chapter": "events", + "label": "currentTarget", + "signature": "`currentTarget` Type: {EventTarget} The `EventTarget` dispatching the event.", + "apiSymbol": "currentTarget", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#class-event", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:events", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:events", + "tests": [] + } + } + }, + { + "id": "events:1e8421d3cc04", + "chapter": "events", + "label": "defaultPrevented", + "signature": "`defaultPrevented` Type: {boolean}", + "apiSymbol": "defaultPrevented", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#class-event", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:events", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:events", + "tests": [] + } + } + }, + { + "id": "events:602700d21dcf", + "chapter": "events", + "label": "eventPhase", + "signature": "`eventPhase` Type: {number} Returns `0` while an event is not being dispatched, `2` while it is being dispatched.", + "apiSymbol": "eventPhase", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#class-event", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:events", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:events", + "tests": [] + } + } + }, + { + "id": "events:4e83ca3c5e4c", + "chapter": "events", + "label": "isTrusted", + "signature": "`isTrusted` Type: {boolean}", + "apiSymbol": "isTrusted", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#class-event", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:events", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:events", + "tests": [] + } + } + }, + { + "id": "events:100e8d286de2", + "chapter": "events", + "label": "returnValue", + "signature": "`returnValue` Type: {boolean} True if the event has not been canceled.", + "apiSymbol": "returnValue", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#class-event", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use [`event.defaultPrevented`][] instead.", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:events", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:events", + "tests": [] + } + } + }, + { + "id": "events:3d3da3858847", + "chapter": "events", + "label": "srcElement", + "signature": "`srcElement` Type: {EventTarget} The `EventTarget` dispatching the event.", + "apiSymbol": "srcElement", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#class-event", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use [`event.target`][] instead.", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:events", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:events", + "tests": [] + } + } + }, + { + "id": "events:fdfee26f8c22", + "chapter": "events", + "label": "target", + "signature": "`target` Type: {EventTarget} The `EventTarget` dispatching the event.", + "apiSymbol": "target", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#class-event", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:events", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:events", + "tests": [] + } + } + }, + { + "id": "events:051e03ef86de", + "chapter": "events", + "label": "timeStamp", + "signature": "`timeStamp` Type: {number}", + "apiSymbol": "timeStamp", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#class-event", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:events", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:events", + "tests": [] + } + } + }, + { + "id": "events:88b512802b39", + "chapter": "events", + "label": "type", + "signature": "`type` Type: {string}", + "apiSymbol": "type", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#class-event", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:events", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:events", + "tests": [] + } + } + }, + { + "id": "events:0e6d48a3f20d", + "chapter": "events", + "label": "EventTarget", + "signature": "Class: `EventTarget`", + "apiSymbol": "EventTarget", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#class-eventtarget", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:events", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:events", + "tests": [] + } + } + }, + { + "id": "events:42fba62569dd", + "chapter": "events", + "label": "eventTarget.addEventListener(type, listener[, options])", + "signature": "`eventTarget.addEventListener(type, listener[, options])`", + "apiSymbol": "eventTarget.addEventListener", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#eventtargetaddeventlistenertype-listener-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:events", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:events", + "tests": [] + } + } + }, + { + "id": "events:74e10bac2937", + "chapter": "events", + "label": "eventTarget.dispatchEvent(event)", + "signature": "`eventTarget.dispatchEvent(event)`", + "apiSymbol": "eventTarget.dispatchEvent", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#eventtargetdispatcheventevent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:events", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:events", + "tests": [] + } + } + }, + { + "id": "events:105a39bcbc8b", + "chapter": "events", + "label": "eventTarget.removeEventListener(type, listener[, options])", + "signature": "`eventTarget.removeEventListener(type, listener[, options])`", + "apiSymbol": "eventTarget.removeEventListener", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#eventtargetremoveeventlistenertype-listener-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:events", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:events", + "tests": [] + } + } + }, + { + "id": "events:ca3c02a8aed0", + "chapter": "events", + "label": "CustomEvent", + "signature": "Class: `CustomEvent`", + "apiSymbol": "CustomEvent", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#class-customevent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:events", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:events", + "tests": [] + } + } + }, + { + "id": "events:5720c4b3c9cf", + "chapter": "events", + "label": "detail", + "signature": "`detail` Type: {any} Returns custom data passed when initializing.", + "apiSymbol": "detail", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#class-customevent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:events", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:events", + "tests": [] + } + } + }, + { + "id": "events:2d04eeb1c58c", + "chapter": "events", + "label": "NodeEventTarget", + "signature": "Class: `NodeEventTarget`", + "apiSymbol": "NodeEventTarget", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#class-nodeeventtarget", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:events", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:events", + "tests": [] + } + } + }, + { + "id": "events:202a497f7819", + "chapter": "events", + "label": "nodeEventTarget.addListener(type, listener)", + "signature": "`nodeEventTarget.addListener(type, listener)`", + "apiSymbol": "nodeEventTarget.addListener", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#nodeeventtargetaddlistenertype-listener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:events", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:events", + "tests": [] + } + } + }, + { + "id": "events:87cb9007c53c", + "chapter": "events", + "label": "nodeEventTarget.emit(type, arg)", + "signature": "`nodeEventTarget.emit(type, arg)`", + "apiSymbol": "nodeEventTarget.emit", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#nodeeventtargetemittype-arg", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:events", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:events", + "tests": [] + } + } + }, + { + "id": "events:e669c515fb3f", + "chapter": "events", + "label": "nodeEventTarget.eventNames()", + "signature": "`nodeEventTarget.eventNames()`", + "apiSymbol": "nodeEventTarget.eventNames", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#nodeeventtargeteventnames", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:events", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:events", + "tests": [] + } + } + }, + { + "id": "events:8b06a2b39407", + "chapter": "events", + "label": "nodeEventTarget.listenerCount(type)", + "signature": "`nodeEventTarget.listenerCount(type)`", + "apiSymbol": "nodeEventTarget.listenerCount", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#nodeeventtargetlistenercounttype", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:events", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:events", + "tests": [] + } + } + }, + { + "id": "events:607c57aa8216", + "chapter": "events", + "label": "nodeEventTarget.setMaxListeners(n)", + "signature": "`nodeEventTarget.setMaxListeners(n)`", + "apiSymbol": "nodeEventTarget.setMaxListeners", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#nodeeventtargetsetmaxlistenersn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:events", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:events", + "tests": [] + } + } + }, + { + "id": "events:edb66e151544", + "chapter": "events", + "label": "nodeEventTarget.getMaxListeners()", + "signature": "`nodeEventTarget.getMaxListeners()`", + "apiSymbol": "nodeEventTarget.getMaxListeners", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#nodeeventtargetgetmaxlisteners", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:events", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:events", + "tests": [] + } + } + }, + { + "id": "events:8e9dac2c393a", + "chapter": "events", + "label": "nodeEventTarget.off(type, listener[, options])", + "signature": "`nodeEventTarget.off(type, listener[, options])`", + "apiSymbol": "nodeEventTarget.off", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#nodeeventtargetofftype-listener-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:events", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:events", + "tests": [] + } + } + }, + { + "id": "events:760f784ab4d9", + "chapter": "events", + "label": "nodeEventTarget.on(type, listener)", + "signature": "`nodeEventTarget.on(type, listener)`", + "apiSymbol": "nodeEventTarget.on", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#nodeeventtargetontype-listener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:events", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:events", + "tests": [] + } + } + }, + { + "id": "events:f12a1d36b009", + "chapter": "events", + "label": "nodeEventTarget.once(type, listener)", + "signature": "`nodeEventTarget.once(type, listener)`", + "apiSymbol": "nodeEventTarget.once", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#nodeeventtargetoncetype-listener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:events", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:events", + "tests": [] + } + } + }, + { + "id": "events:5966abd22448", + "chapter": "events", + "label": "nodeEventTarget.removeAllListeners([type])", + "signature": "`nodeEventTarget.removeAllListeners([type])`", + "apiSymbol": "nodeEventTarget.removeAllListeners", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#nodeeventtargetremovealllistenerstype", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:events", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:events", + "tests": [] + } + } + }, + { + "id": "events:3d4545e78514", + "chapter": "events", + "label": "nodeEventTarget.removeListener(type, listener[, options])", + "signature": "`nodeEventTarget.removeListener(type, listener[, options])`", + "apiSymbol": "nodeEventTarget.removeListener", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#nodeeventtargetremovelistenertype-listener-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:events", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:events", + "tests": [] + } + } + }, + { + "id": "events:910527a05b92", + "chapter": "events", + "label": "EventEmitter", + "signature": "Class: `EventEmitter`", + "apiSymbol": "EventEmitter", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#class-eventemitter", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:EventEmitter", + "tests": [ + "tests/corpus/1677-emitter-listeners.ts", + "tests/corpus/2620-ee-override-once-order.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:events.EventEmitter", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "events:edad59305c20", + "chapter": "events", + "label": "emitter[Symbol.for('nodejs.rejection')](err, eventName[, ...args])", + "signature": "`emitter[Symbol.for('nodejs.rejection')](err, eventName[, ...args])`", + "apiSymbol": "emitter", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#emittersymbolfornodejsrejectionerr-eventname-args", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:events", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:events", + "tests": [] + } + } + }, + { + "id": "events:ade9c05cb8a6", + "chapter": "events", + "label": "emitter.addListener(eventName, listener)", + "signature": "`emitter.addListener(eventName, listener)`", + "apiSymbol": "emitter.addListener", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#emitteraddlistenereventname-listener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:emitter.addListener", + "tests": [ + "tests/corpus/1677-emitter-listeners.ts", + "tests/corpus/2620-ee-override-once-order.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:events.emitter.addListener", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "events:4480339d71a7", + "chapter": "events", + "label": "emitter.emit(eventName[, ...args])", + "signature": "`emitter.emit(eventName[, ...args])`", + "apiSymbol": "emitter.emit", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#emitteremiteventname-args", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:emitter.emit", + "tests": [ + "tests/corpus/1677-emitter-listeners.ts", + "tests/corpus/2620-ee-override-once-order.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:events.emitter.emit", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "events:1141f56c5e25", + "chapter": "events", + "label": "emitter.eventNames()", + "signature": "`emitter.eventNames()`", + "apiSymbol": "emitter.eventNames", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#emittereventnames", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:emitter.eventNames", + "tests": [ + "tests/corpus/1677-emitter-listeners.ts", + "tests/corpus/2620-ee-override-once-order.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:events.emitter.eventNames", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "events:a11da766dad1", + "chapter": "events", + "label": "emitter.getMaxListeners()", + "signature": "`emitter.getMaxListeners()`", + "apiSymbol": "emitter.getMaxListeners", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#emittergetmaxlisteners", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:emitter.getMaxListeners", + "tests": [ + "tests/corpus/1677-emitter-listeners.ts", + "tests/corpus/2620-ee-override-once-order.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:events.emitter.getMaxListeners", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "events:8c21cb9ee7a9", + "chapter": "events", + "label": "emitter.listenerCount(eventName[, listener])", + "signature": "`emitter.listenerCount(eventName[, listener])`", + "apiSymbol": "emitter.listenerCount", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#emitterlistenercounteventname-listener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:emitter.listenerCount", + "tests": [ + "tests/corpus/1677-emitter-listeners.ts", + "tests/corpus/2620-ee-override-once-order.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:events.emitter.listenerCount", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "events:a016b013db5e", + "chapter": "events", + "label": "emitter.listeners(eventName)", + "signature": "`emitter.listeners(eventName)`", + "apiSymbol": "emitter.listeners", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#emitterlistenerseventname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:emitter.listeners", + "tests": [ + "tests/corpus/1677-emitter-listeners.ts", + "tests/corpus/2620-ee-override-once-order.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:events.emitter.listeners", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "events:57657668f95c", + "chapter": "events", + "label": "emitter.off(eventName, listener)", + "signature": "`emitter.off(eventName, listener)`", + "apiSymbol": "emitter.off", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#emitteroffeventname-listener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:emitter.off", + "tests": [ + "tests/corpus/1677-emitter-listeners.ts", + "tests/corpus/2620-ee-override-once-order.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:events.emitter.off", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "events:ca3ee0bd3471", + "chapter": "events", + "label": "emitter.on(eventName, listener)", + "signature": "`emitter.on(eventName, listener)`", + "apiSymbol": "emitter.on", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#emitteroneventname-listener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:emitter.on", + "tests": [ + "tests/corpus/1677-emitter-listeners.ts", + "tests/corpus/2620-ee-override-once-order.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:events.emitter.on", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "events:fc1100224d9e", + "chapter": "events", + "label": "emitter.once(eventName, listener)", + "signature": "`emitter.once(eventName, listener)`", + "apiSymbol": "emitter.once", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#emitteronceeventname-listener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:emitter.once", + "tests": [ + "tests/corpus/1677-emitter-listeners.ts", + "tests/corpus/2620-ee-override-once-order.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:events.emitter.once", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "events:c48f9e75b5cb", + "chapter": "events", + "label": "emitter.prependListener(eventName, listener)", + "signature": "`emitter.prependListener(eventName, listener)`", + "apiSymbol": "emitter.prependListener", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#emitterprependlistenereventname-listener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:emitter.prependListener", + "tests": [ + "tests/corpus/1677-emitter-listeners.ts", + "tests/corpus/2620-ee-override-once-order.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:events.emitter.prependListener", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "events:159633e9f978", + "chapter": "events", + "label": "emitter.prependOnceListener(eventName, listener)", + "signature": "`emitter.prependOnceListener(eventName, listener)`", + "apiSymbol": "emitter.prependOnceListener", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#emitterprependoncelistenereventname-listener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:emitter.prependOnceListener", + "tests": [ + "tests/corpus/1677-emitter-listeners.ts", + "tests/corpus/2620-ee-override-once-order.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:events.emitter.prependOnceListener", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "events:4d2830e25fd6", + "chapter": "events", + "label": "emitter.removeAllListeners([eventName])", + "signature": "`emitter.removeAllListeners([eventName])`", + "apiSymbol": "emitter.removeAllListeners", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#emitterremovealllistenerseventname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:emitter.removeAllListeners", + "tests": [ + "tests/corpus/1677-emitter-listeners.ts", + "tests/corpus/2620-ee-override-once-order.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:events.emitter.removeAllListeners", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "events:8d46803d9907", + "chapter": "events", + "label": "emitter.removeListener(eventName, listener)", + "signature": "`emitter.removeListener(eventName, listener)`", + "apiSymbol": "emitter.removeListener", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#emitterremovelistenereventname-listener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:emitter.removeListener", + "tests": [ + "tests/corpus/1677-emitter-listeners.ts", + "tests/corpus/2620-ee-override-once-order.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:events.emitter.removeListener", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "events:0794dd94e66f", + "chapter": "events", + "label": "emitter.setMaxListeners(n)", + "signature": "`emitter.setMaxListeners(n)`", + "apiSymbol": "emitter.setMaxListeners", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#emittersetmaxlistenersn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:emitter.setMaxListeners", + "tests": [ + "tests/corpus/1677-emitter-listeners.ts", + "tests/corpus/2620-ee-override-once-order.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:events.emitter.setMaxListeners", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "events:c637289e49fa", + "chapter": "events", + "label": "emitter.rawListeners(eventName)", + "signature": "`emitter.rawListeners(eventName)`", + "apiSymbol": "emitter.rawListeners", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#emitterrawlistenerseventname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:emitter.rawListeners", + "tests": [ + "tests/corpus/1677-emitter-listeners.ts", + "tests/corpus/2620-ee-override-once-order.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:events.emitter.rawListeners", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "events:84d12b6b46e2", + "chapter": "events", + "label": "'newListener'", + "signature": "Event: `'newListener'`", + "apiSymbol": "'newListener'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#event-newlistener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:events", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:events", + "tests": [] + } + } + }, + { + "id": "events:049cbb50dc90", + "chapter": "events", + "label": "'removeListener'", + "signature": "Event: `'removeListener'`", + "apiSymbol": "'removeListener'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#event-removelistener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:events", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:events", + "tests": [] + } + } + }, + { + "id": "events:4e0415c297c2", + "chapter": "events", + "label": "events.EventEmitterAsyncResource extends EventEmitter", + "signature": "Class: `events.EventEmitterAsyncResource extends EventEmitter`", + "apiSymbol": "events.EventEmitterAsyncResource extends EventEmitter", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#class-eventseventemitterasyncresource-extends-eventemitter", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:events", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:events", + "tests": [] + } + } + }, + { + "id": "events:58455d496767", + "chapter": "events", + "label": "eventemitterasyncresource.emitDestroy()", + "signature": "`eventemitterasyncresource.emitDestroy()`", + "apiSymbol": "eventemitterasyncresource.emitDestroy", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#eventemitterasyncresourceemitdestroy", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:events", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:events", + "tests": [] + } + } + }, + { + "id": "events:d6c6ff6963c2", + "chapter": "events", + "label": "asyncId", + "signature": "`asyncId` Type: {number} The unique `asyncId` assigned to the resource.", + "apiSymbol": "asyncId", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#class-eventseventemitterasyncresource-extends-eventemitter", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:events", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:events", + "tests": [] + } + } + }, + { + "id": "events:74987fd6d95e", + "chapter": "events", + "label": "asyncResource", + "signature": "`asyncResource` Type: {AsyncResource} The underlying {AsyncResource}.", + "apiSymbol": "asyncResource", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#class-eventseventemitterasyncresource-extends-eventemitter", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:events", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:events", + "tests": [] + } + } + }, + { + "id": "events:75764554b08f", + "chapter": "events", + "label": "triggerAsyncId", + "signature": "`triggerAsyncId` Type: {number} The same `triggerAsyncId` that is passed to the `AsyncResource` constructor.", + "apiSymbol": "triggerAsyncId", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#class-eventseventemitterasyncresource-extends-eventemitter", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:events", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:events", + "tests": [] + } + } + }, + { + "id": "events:27495381c85e", + "chapter": "events", + "label": "events.getEventListeners(emitterOrTarget, eventName)", + "signature": "`events.getEventListeners(emitterOrTarget, eventName)`", + "apiSymbol": "events.getEventListeners", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#eventsgeteventlistenersemitterortarget-eventname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:events.getEventListeners", + "tests": [ + "tests/corpus/1677-emitter-listeners.ts", + "tests/corpus/2620-ee-override-once-order.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:events.events.getEventListeners", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "events:3153e3fd08ef", + "chapter": "events", + "label": "events.getMaxListeners(emitterOrTarget)", + "signature": "`events.getMaxListeners(emitterOrTarget)`", + "apiSymbol": "events.getMaxListeners", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#eventsgetmaxlistenersemitterortarget", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:events", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:events", + "tests": [] + } + } + }, + { + "id": "events:4bdb581b643c", + "chapter": "events", + "label": "events.once(emitter, name[, options])", + "signature": "`events.once(emitter, name[, options])`", + "apiSymbol": "events.once", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#eventsonceemitter-name-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:events.once", + "tests": [ + "tests/corpus/1677-emitter-listeners.ts", + "tests/corpus/2620-ee-override-once-order.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:events.events.once", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "events:08926d83c96e", + "chapter": "events", + "label": "events.listenerCount(emitterOrTarget, eventName)", + "signature": "`events.listenerCount(emitterOrTarget, eventName)`", + "apiSymbol": "events.listenerCount", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#eventslistenercountemitterortarget-eventname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:events.listenerCount", + "tests": [ + "tests/corpus/1677-emitter-listeners.ts", + "tests/corpus/2620-ee-override-once-order.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:events.events.listenerCount", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "events:782b53b53732", + "chapter": "events", + "label": "events.on(emitter, eventName[, options])", + "signature": "`events.on(emitter, eventName[, options])`", + "apiSymbol": "events.on", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#eventsonemitter-eventname-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:events.on", + "tests": [ + "tests/corpus/1677-emitter-listeners.ts", + "tests/corpus/2620-ee-override-once-order.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:events.events.on", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "events:df4c2bafb91c", + "chapter": "events", + "label": "events.setMaxListeners(n[, ...eventTargets])", + "signature": "`events.setMaxListeners(n[, ...eventTargets])`", + "apiSymbol": "events.setMaxListeners", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#eventssetmaxlistenersn-eventtargets", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:events.setMaxListeners", + "tests": [ + "tests/corpus/1677-emitter-listeners.ts", + "tests/corpus/2620-ee-override-once-order.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:events.events.setMaxListeners", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "events:e933c2fc3385", + "chapter": "events", + "label": "events.addAbortListener(signal, listener)", + "signature": "`events.addAbortListener(signal, listener)`", + "apiSymbol": "events.addAbortListener", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#eventsaddabortlistenersignal-listener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:events", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:events", + "tests": [] + } + } + }, + { + "id": "events:e65e73570ff0", + "chapter": "events", + "label": "events.defaultMaxListeners", + "signature": "`events.defaultMaxListeners`", + "apiSymbol": "events.defaultMaxListeners", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#eventsdefaultmaxlisteners", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:events", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:events.defaultMaxListeners", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "events:bb35aa562dcf", + "chapter": "events", + "label": "events.errorMonitor", + "signature": "`events.errorMonitor`", + "apiSymbol": "events.errorMonitor", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html#eventserrormonitor", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:events", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:events.errorMonitor", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "events:6e0a1c15f17b", + "chapter": "events", + "label": "captureRejections", + "signature": "`captureRejections` Type: {boolean}", + "apiSymbol": "captureRejections", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:events", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:events", + "tests": [] + } + } + }, + { + "id": "events:29b4e47b3232", + "chapter": "events", + "label": "captureRejectionSymbol", + "signature": "`captureRejectionSymbol` Type: {symbol} `Symbol.for('nodejs.rejection')`", + "apiSymbol": "captureRejectionSymbol", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/events.html", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:events", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:events.captureRejectionSymbol", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "fs:886837078c6b", + "chapter": "fs", + "label": "FileHandle", + "signature": "Class: `FileHandle`", + "apiSymbol": "FileHandle", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-filehandle", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:7509ca034d96", + "chapter": "fs", + "label": "filehandle.appendFile(data[, options])", + "signature": "`filehandle.appendFile(data[, options])`", + "apiSymbol": "filehandle.appendFile", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#filehandleappendfiledata-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:77606e74b3ec", + "chapter": "fs", + "label": "filehandle.chmod(mode)", + "signature": "`filehandle.chmod(mode)`", + "apiSymbol": "filehandle.chmod", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#filehandlechmodmode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:2ffdbc463a9c", + "chapter": "fs", + "label": "filehandle.chown(uid, gid)", + "signature": "`filehandle.chown(uid, gid)`", + "apiSymbol": "filehandle.chown", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#filehandlechownuid-gid", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:93dbe7301528", + "chapter": "fs", + "label": "filehandle.close()", + "signature": "`filehandle.close()`", + "apiSymbol": "filehandle.close", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#filehandleclose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:ee271c8ef141", + "chapter": "fs", + "label": "filehandle.createReadStream([options])", + "signature": "`filehandle.createReadStream([options])`", + "apiSymbol": "filehandle.createReadStream", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#filehandlecreatereadstreamoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:a1fc413410dc", + "chapter": "fs", + "label": "filehandle.createWriteStream([options])", + "signature": "`filehandle.createWriteStream([options])`", + "apiSymbol": "filehandle.createWriteStream", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#filehandlecreatewritestreamoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:d33d57b92a1d", + "chapter": "fs", + "label": "filehandle.datasync()", + "signature": "`filehandle.datasync()`", + "apiSymbol": "filehandle.datasync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#filehandledatasync", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:8bff339d602d", + "chapter": "fs", + "label": "filehandle.read(buffer, offset, length, position)", + "signature": "`filehandle.read(buffer, offset, length, position)`", + "apiSymbol": "filehandle.read", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#filehandlereadbuffer-offset-length-position", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:c40bb4ebc6e0", + "chapter": "fs", + "label": "filehandle.read([options])", + "signature": "`filehandle.read([options])`", + "apiSymbol": "filehandle.read", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#filehandlereadoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:37b9ee6911bc", + "chapter": "fs", + "label": "filehandle.read(buffer[, options])", + "signature": "`filehandle.read(buffer[, options])`", + "apiSymbol": "filehandle.read", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#filehandlereadbuffer-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:5e79e4419ef8", + "chapter": "fs", + "label": "filehandle.readableWebStream([options])", + "signature": "`filehandle.readableWebStream([options])`", + "apiSymbol": "filehandle.readableWebStream", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#filehandlereadablewebstreamoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:bd80d74b4184", + "chapter": "fs", + "label": "filehandle.readFile(options)", + "signature": "`filehandle.readFile(options)`", + "apiSymbol": "filehandle.readFile", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#filehandlereadfileoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:0c4448395482", + "chapter": "fs", + "label": "filehandle.readLines([options])", + "signature": "`filehandle.readLines([options])`", + "apiSymbol": "filehandle.readLines", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#filehandlereadlinesoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:9a3fa1465bad", + "chapter": "fs", + "label": "filehandle.readv(buffers[, position])", + "signature": "`filehandle.readv(buffers[, position])`", + "apiSymbol": "filehandle.readv", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#filehandlereadvbuffers-position", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:1cf4b859f9c4", + "chapter": "fs", + "label": "filehandle.stat([options])", + "signature": "`filehandle.stat([options])`", + "apiSymbol": "filehandle.stat", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#filehandlestatoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:59ec45ce6f17", + "chapter": "fs", + "label": "filehandle.sync()", + "signature": "`filehandle.sync()`", + "apiSymbol": "filehandle.sync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#filehandlesync", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:690d17d26e1b", + "chapter": "fs", + "label": "filehandle.truncate(len)", + "signature": "`filehandle.truncate(len)`", + "apiSymbol": "filehandle.truncate", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#filehandletruncatelen", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:bf3f2dc9d161", + "chapter": "fs", + "label": "filehandle.utimes(atime, mtime)", + "signature": "`filehandle.utimes(atime, mtime)`", + "apiSymbol": "filehandle.utimes", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#filehandleutimesatime-mtime", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:d365e35631b7", + "chapter": "fs", + "label": "filehandle.write(buffer, offset[, length[, position]])", + "signature": "`filehandle.write(buffer, offset[, length[, position]])`", + "apiSymbol": "filehandle.write", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#filehandlewritebuffer-offset-length-position", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:e0274f1c227a", + "chapter": "fs", + "label": "filehandle.write(buffer[, options])", + "signature": "`filehandle.write(buffer[, options])`", + "apiSymbol": "filehandle.write", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#filehandlewritebuffer-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:c9a5ba4ae462", + "chapter": "fs", + "label": "filehandle.write(string[, position[, encoding]])", + "signature": "`filehandle.write(string[, position[, encoding]])`", + "apiSymbol": "filehandle.write", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#filehandlewritestring-position-encoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:f6da97a332b4", + "chapter": "fs", + "label": "filehandle.writeFile(data, options)", + "signature": "`filehandle.writeFile(data, options)`", + "apiSymbol": "filehandle.writeFile", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#filehandlewritefiledata-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:f899b0e9d2d5", + "chapter": "fs", + "label": "filehandle.writev(buffers[, position])", + "signature": "`filehandle.writev(buffers[, position])`", + "apiSymbol": "filehandle.writev", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#filehandlewritevbuffers-position", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:0eb79d089322", + "chapter": "fs", + "label": "filehandle[Symbol.asyncDispose]()", + "signature": "`filehandle[Symbol.asyncDispose]()`", + "apiSymbol": "filehandle", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#filehandlesymbolasyncdispose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:b74d8861c127", + "chapter": "fs", + "label": "fd", + "signature": "`fd` Type: {number} The numeric file descriptor managed by the {FileHandle} object.", + "apiSymbol": "fd", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-filehandle", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:af2edb1e0be6", + "chapter": "fs", + "label": "'close'", + "signature": "Event: `'close'`", + "apiSymbol": "'close'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#event-close", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:3d973ff903be", + "chapter": "fs", + "label": "fsPromises.access(path[, mode])", + "signature": "`fsPromises.access(path[, mode])`", + "apiSymbol": "fsPromises.access", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fspromisesaccesspath-mode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs/promises.access", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:17685599d9fc", + "chapter": "fs", + "label": "fsPromises.appendFile(path, data[, options])", + "signature": "`fsPromises.appendFile(path, data[, options])`", + "apiSymbol": "fsPromises.appendFile", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fspromisesappendfilepath-data-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs/promises.appendFile", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:852bcffe0f7e", + "chapter": "fs", + "label": "fsPromises.chmod(path, mode)", + "signature": "`fsPromises.chmod(path, mode)`", + "apiSymbol": "fsPromises.chmod", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fspromiseschmodpath-mode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.fs.promises.chmod", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs/promises.chmod", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:79eab8c996ec", + "chapter": "fs", + "label": "fsPromises.chown(path, uid, gid)", + "signature": "`fsPromises.chown(path, uid, gid)`", + "apiSymbol": "fsPromises.chown", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fspromiseschownpath-uid-gid", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:e09abb45a683", + "chapter": "fs", + "label": "fsPromises.copyFile(src, dest[, mode])", + "signature": "`fsPromises.copyFile(src, dest[, mode])`", + "apiSymbol": "fsPromises.copyFile", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fspromisescopyfilesrc-dest-mode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs/promises.copyFile", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:019fe8b5ce02", + "chapter": "fs", + "label": "fsPromises.cp(src, dest[, options])", + "signature": "`fsPromises.cp(src, dest[, options])`", + "apiSymbol": "fsPromises.cp", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fspromisescpsrc-dest-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:084655a174d5", + "chapter": "fs", + "label": "fsPromises.glob(pattern[, options])", + "signature": "`fsPromises.glob(pattern[, options])`", + "apiSymbol": "fsPromises.glob", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fspromisesglobpattern-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:e765ff651d7e", + "chapter": "fs", + "label": "fsPromises.lchmod(path, mode)", + "signature": "`fsPromises.lchmod(path, mode)`", + "apiSymbol": "fsPromises.lchmod", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fspromiseslchmodpath-mode", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:3d5d09fa720a", + "chapter": "fs", + "label": "fsPromises.lchown(path, uid, gid)", + "signature": "`fsPromises.lchown(path, uid, gid)`", + "apiSymbol": "fsPromises.lchown", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fspromiseslchownpath-uid-gid", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:b7964602601d", + "chapter": "fs", + "label": "fsPromises.lutimes(path, atime, mtime)", + "signature": "`fsPromises.lutimes(path, atime, mtime)`", + "apiSymbol": "fsPromises.lutimes", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fspromiseslutimespath-atime-mtime", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:5f8f56d83683", + "chapter": "fs", + "label": "fsPromises.link(existingPath, newPath)", + "signature": "`fsPromises.link(existingPath, newPath)`", + "apiSymbol": "fsPromises.link", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fspromiseslinkexistingpath-newpath", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:63d5aa86a256", + "chapter": "fs", + "label": "fsPromises.lstat(path[, options])", + "signature": "`fsPromises.lstat(path[, options])`", + "apiSymbol": "fsPromises.lstat", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fspromiseslstatpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs/promises.lstat", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:3e37853853bb", + "chapter": "fs", + "label": "fsPromises.mkdir(path[, options])", + "signature": "`fsPromises.mkdir(path[, options])`", + "apiSymbol": "fsPromises.mkdir", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fspromisesmkdirpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.fs.promises.mkdir", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs/promises.mkdir", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:8242dab7a908", + "chapter": "fs", + "label": "fsPromises.mkdtemp(prefix[, options])", + "signature": "`fsPromises.mkdtemp(prefix[, options])`", + "apiSymbol": "fsPromises.mkdtemp", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fspromisesmkdtempprefix-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs/promises.mkdtemp", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:0e654a55b6d2", + "chapter": "fs", + "label": "fsPromises.mkdtempDisposable(prefix[, options])", + "signature": "`fsPromises.mkdtempDisposable(prefix[, options])`", + "apiSymbol": "fsPromises.mkdtempDisposable", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fspromisesmkdtempdisposableprefix-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:68bb2c683fe8", + "chapter": "fs", + "label": "fsPromises.open(path, flags[, mode])", + "signature": "`fsPromises.open(path, flags[, mode])`", + "apiSymbol": "fsPromises.open", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fspromisesopenpath-flags-mode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.fs.promises.open", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:fs/promises.open", + "tests": [] + } + } + }, + { + "id": "fs:8563d45bd004", + "chapter": "fs", + "label": "fsPromises.opendir(path[, options])", + "signature": "`fsPromises.opendir(path[, options])`", + "apiSymbol": "fsPromises.opendir", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fspromisesopendirpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:8a231443d661", + "chapter": "fs", + "label": "fsPromises.readdir(path[, options])", + "signature": "`fsPromises.readdir(path[, options])`", + "apiSymbol": "fsPromises.readdir", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fspromisesreaddirpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.fs.promises.readdir", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs/promises.readdir", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:ef0a02a312c6", + "chapter": "fs", + "label": "fsPromises.readFile(path[, options])", + "signature": "`fsPromises.readFile(path[, options])`", + "apiSymbol": "fsPromises.readFile", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fspromisesreadfilepath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.fs.promises.readFile", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs/promises.readFile", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:93a29ff17149", + "chapter": "fs", + "label": "fsPromises.readlink(path[, options])", + "signature": "`fsPromises.readlink(path[, options])`", + "apiSymbol": "fsPromises.readlink", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fspromisesreadlinkpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs/promises.readlink", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:12f426a57f3b", + "chapter": "fs", + "label": "fsPromises.realpath(path[, options])", + "signature": "`fsPromises.realpath(path[, options])`", + "apiSymbol": "fsPromises.realpath", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fspromisesrealpathpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs/promises.realpath", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:c5038ffe7911", + "chapter": "fs", + "label": "fsPromises.rename(oldPath, newPath)", + "signature": "`fsPromises.rename(oldPath, newPath)`", + "apiSymbol": "fsPromises.rename", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fspromisesrenameoldpath-newpath", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.fs.promises.rename", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs/promises.rename", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:83ef26dac93c", + "chapter": "fs", + "label": "fsPromises.rmdir(path[, options])", + "signature": "`fsPromises.rmdir(path[, options])`", + "apiSymbol": "fsPromises.rmdir", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fspromisesrmdirpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs/promises.rmdir", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:5c4b25e4d096", + "chapter": "fs", + "label": "fsPromises.rm(path[, options])", + "signature": "`fsPromises.rm(path[, options])`", + "apiSymbol": "fsPromises.rm", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fspromisesrmpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.fs.promises.rm", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs/promises.rm", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:d3c8cf7953c1", + "chapter": "fs", + "label": "fsPromises.stat(path[, options])", + "signature": "`fsPromises.stat(path[, options])`", + "apiSymbol": "fsPromises.stat", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fspromisesstatpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.fs.promises.stat", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs/promises.stat", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:960828f4ffd4", + "chapter": "fs", + "label": "fsPromises.statfs(path[, options])", + "signature": "`fsPromises.statfs(path[, options])`", + "apiSymbol": "fsPromises.statfs", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fspromisesstatfspath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:05d3e62c35e0", + "chapter": "fs", + "label": "fsPromises.symlink(target, path[, type])", + "signature": "`fsPromises.symlink(target, path[, type])`", + "apiSymbol": "fsPromises.symlink", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fspromisessymlinktarget-path-type", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:d4caa86ff798", + "chapter": "fs", + "label": "fsPromises.truncate(path[, len])", + "signature": "`fsPromises.truncate(path[, len])`", + "apiSymbol": "fsPromises.truncate", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fspromisestruncatepath-len", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:e8db56a75ff7", + "chapter": "fs", + "label": "fsPromises.unlink(path)", + "signature": "`fsPromises.unlink(path)`", + "apiSymbol": "fsPromises.unlink", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fspromisesunlinkpath", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.fs.promises.unlink", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs/promises.unlink", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:9b3b9e66a980", + "chapter": "fs", + "label": "fsPromises.utimes(path, atime, mtime)", + "signature": "`fsPromises.utimes(path, atime, mtime)`", + "apiSymbol": "fsPromises.utimes", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fspromisesutimespath-atime-mtime", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:bceba6835a61", + "chapter": "fs", + "label": "fsPromises.watch(filename[, options])", + "signature": "`fsPromises.watch(filename[, options])`", + "apiSymbol": "fsPromises.watch", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fspromiseswatchfilename-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:f5f4b8c936d2", + "chapter": "fs", + "label": "fsPromises.writeFile(file, data[, options])", + "signature": "`fsPromises.writeFile(file, data[, options])`", + "apiSymbol": "fsPromises.writeFile", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fspromiseswritefilefile-data-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.fs.promises.writeFile", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs/promises.writeFile", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:4d881cd0aae2", + "chapter": "fs", + "label": "constants", + "signature": "`constants` Type: {Object}", + "apiSymbol": "constants", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#promises-api", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs.constants", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:fd95b2c5a3ed", + "chapter": "fs", + "label": "fs.access(path[, mode], callback)", + "signature": "`fs.access(path[, mode], callback)`", + "apiSymbol": "fs.access", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsaccesspath-mode-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs.access", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:28a70e885ff1", + "chapter": "fs", + "label": "fs.appendFile(path, data[, options], callback)", + "signature": "`fs.appendFile(path, data[, options], callback)`", + "apiSymbol": "fs.appendFile", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsappendfilepath-data-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs.appendFile", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:c6a516fe59c7", + "chapter": "fs", + "label": "fs.chmod(path, mode, callback)", + "signature": "`fs.chmod(path, mode, callback)`", + "apiSymbol": "fs.chmod", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fschmodpath-mode-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs.chmod", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:a6d6fed05cfc", + "chapter": "fs", + "label": "fs.chown(path, uid, gid, callback)", + "signature": "`fs.chown(path, uid, gid, callback)`", + "apiSymbol": "fs.chown", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fschownpath-uid-gid-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:0fe4a0d570f8", + "chapter": "fs", + "label": "fs.close(fd[, callback])", + "signature": "`fs.close(fd[, callback])`", + "apiSymbol": "fs.close", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsclosefd-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:3b06da9a0b11", + "chapter": "fs", + "label": "fs.copyFile(src, dest[, mode], callback)", + "signature": "`fs.copyFile(src, dest[, mode], callback)`", + "apiSymbol": "fs.copyFile", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fscopyfilesrc-dest-mode-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs.copyFile", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:f37f56fb0b74", + "chapter": "fs", + "label": "fs.cp(src, dest[, options], callback)", + "signature": "`fs.cp(src, dest[, options], callback)`", + "apiSymbol": "fs.cp", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fscpsrc-dest-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:548d1b5dd782", + "chapter": "fs", + "label": "fs.createReadStream(path[, options])", + "signature": "`fs.createReadStream(path[, options])`", + "apiSymbol": "fs.createReadStream", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fscreatereadstreampath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs.createReadStream", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:19d2dc1dc519", + "chapter": "fs", + "label": "fs.createWriteStream(path[, options])", + "signature": "`fs.createWriteStream(path[, options])`", + "apiSymbol": "fs.createWriteStream", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fscreatewritestreampath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs.createWriteStream", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:0e4c1681decb", + "chapter": "fs", + "label": "fs.exists(path, callback)", + "signature": "`fs.exists(path, callback)`", + "apiSymbol": "fs.exists", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsexistspath-callback", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Use [`fs.stat()`][] or [`fs.access()`][] instead.", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs.exists", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:baf47a394061", + "chapter": "fs", + "label": "fs.fchmod(fd, mode, callback)", + "signature": "`fs.fchmod(fd, mode, callback)`", + "apiSymbol": "fs.fchmod", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsfchmodfd-mode-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:48a029856149", + "chapter": "fs", + "label": "fs.fchown(fd, uid, gid, callback)", + "signature": "`fs.fchown(fd, uid, gid, callback)`", + "apiSymbol": "fs.fchown", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsfchownfd-uid-gid-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:206d5374b53a", + "chapter": "fs", + "label": "fs.fdatasync(fd, callback)", + "signature": "`fs.fdatasync(fd, callback)`", + "apiSymbol": "fs.fdatasync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsfdatasyncfd-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:8e9ad0f9a747", + "chapter": "fs", + "label": "fs.fstat(fd[, options], callback)", + "signature": "`fs.fstat(fd[, options], callback)`", + "apiSymbol": "fs.fstat", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsfstatfd-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:7cb76319539f", + "chapter": "fs", + "label": "fs.fsync(fd, callback)", + "signature": "`fs.fsync(fd, callback)`", + "apiSymbol": "fs.fsync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsfsyncfd-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:3c941bdf13aa", + "chapter": "fs", + "label": "fs.ftruncate(fd[, len], callback)", + "signature": "`fs.ftruncate(fd[, len], callback)`", + "apiSymbol": "fs.ftruncate", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsftruncatefd-len-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:a2fa1a24c69f", + "chapter": "fs", + "label": "fs.futimes(fd, atime, mtime, callback)", + "signature": "`fs.futimes(fd, atime, mtime, callback)`", + "apiSymbol": "fs.futimes", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsfutimesfd-atime-mtime-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:8ff5599d8054", + "chapter": "fs", + "label": "fs.glob(pattern[, options], callback)", + "signature": "`fs.glob(pattern[, options], callback)`", + "apiSymbol": "fs.glob", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsglobpattern-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:8174d132eb09", + "chapter": "fs", + "label": "fs.lchmod(path, mode, callback)", + "signature": "`fs.lchmod(path, mode, callback)`", + "apiSymbol": "fs.lchmod", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fslchmodpath-mode-callback", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:2208c40ffa47", + "chapter": "fs", + "label": "fs.lchown(path, uid, gid, callback)", + "signature": "`fs.lchown(path, uid, gid, callback)`", + "apiSymbol": "fs.lchown", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fslchownpath-uid-gid-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:519f0d0d19f1", + "chapter": "fs", + "label": "fs.lutimes(path, atime, mtime, callback)", + "signature": "`fs.lutimes(path, atime, mtime, callback)`", + "apiSymbol": "fs.lutimes", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fslutimespath-atime-mtime-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:e2db9794ebe6", + "chapter": "fs", + "label": "fs.link(existingPath, newPath, callback)", + "signature": "`fs.link(existingPath, newPath, callback)`", + "apiSymbol": "fs.link", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fslinkexistingpath-newpath-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:4ec2291f9f00", + "chapter": "fs", + "label": "fs.lstat(path[, options], callback)", + "signature": "`fs.lstat(path[, options], callback)`", + "apiSymbol": "fs.lstat", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fslstatpath-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs.lstat", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:f45f74c7f851", + "chapter": "fs", + "label": "fs.mkdir(path[, options], callback)", + "signature": "`fs.mkdir(path[, options], callback)`", + "apiSymbol": "fs.mkdir", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsmkdirpath-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs.mkdir", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:594c52282a1f", + "chapter": "fs", + "label": "fs.mkdtemp(prefix[, options], callback)", + "signature": "`fs.mkdtemp(prefix[, options], callback)`", + "apiSymbol": "fs.mkdtemp", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsmkdtempprefix-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs.mkdtemp", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:ca642ebd75ed", + "chapter": "fs", + "label": "fs.open(path[, flags[, mode]], callback)", + "signature": "`fs.open(path[, flags[, mode]], callback)`", + "apiSymbol": "fs.open", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsopenpath-flags-mode-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:fs.open", + "tests": [] + } + } + }, + { + "id": "fs:74a01715d6fb", + "chapter": "fs", + "label": "fs.openAsBlob(path[, options])", + "signature": "`fs.openAsBlob(path[, options])`", + "apiSymbol": "fs.openAsBlob", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsopenasblobpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:f76a977aa3de", + "chapter": "fs", + "label": "fs.opendir(path[, options], callback)", + "signature": "`fs.opendir(path[, options], callback)`", + "apiSymbol": "fs.opendir", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsopendirpath-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:31eaa3759828", + "chapter": "fs", + "label": "fs.read(fd, buffer, offset, length, position, callback)", + "signature": "`fs.read(fd, buffer, offset, length, position, callback)`", + "apiSymbol": "fs.read", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsreadfd-buffer-offset-length-position-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:fs.read", + "tests": [] + } + } + }, + { + "id": "fs:1bc9450beba6", + "chapter": "fs", + "label": "fs.read(fd[, options], callback)", + "signature": "`fs.read(fd[, options], callback)`", + "apiSymbol": "fs.read", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsreadfd-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:fs.read", + "tests": [] + } + } + }, + { + "id": "fs:8cc1038c772b", + "chapter": "fs", + "label": "fs.read(fd, buffer[, options], callback)", + "signature": "`fs.read(fd, buffer[, options], callback)`", + "apiSymbol": "fs.read", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsreadfd-buffer-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:fs.read", + "tests": [] + } + } + }, + { + "id": "fs:796f1de63ebe", + "chapter": "fs", + "label": "fs.readdir(path[, options], callback)", + "signature": "`fs.readdir(path[, options], callback)`", + "apiSymbol": "fs.readdir", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsreaddirpath-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs.readdir", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:1cfdfacd0fb8", + "chapter": "fs", + "label": "fs.readFile(path[, options], callback)", + "signature": "`fs.readFile(path[, options], callback)`", + "apiSymbol": "fs.readFile", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsreadfilepath-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs.readFile", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:b7685deab3a4", + "chapter": "fs", + "label": "fs.readlink(path[, options], callback)", + "signature": "`fs.readlink(path[, options], callback)`", + "apiSymbol": "fs.readlink", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsreadlinkpath-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs.readlink", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:ce49c205ed1a", + "chapter": "fs", + "label": "fs.readv(fd, buffers[, position], callback)", + "signature": "`fs.readv(fd, buffers[, position], callback)`", + "apiSymbol": "fs.readv", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsreadvfd-buffers-position-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:174236a7164e", + "chapter": "fs", + "label": "fs.realpath(path[, options], callback)", + "signature": "`fs.realpath(path[, options], callback)`", + "apiSymbol": "fs.realpath", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsrealpathpath-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs.realpath", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:224d2fd78095", + "chapter": "fs", + "label": "fs.realpath.native(path[, options], callback)", + "signature": "`fs.realpath.native(path[, options], callback)`", + "apiSymbol": "fs.realpath.native", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsrealpathnativepath-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:feb6e3f8c110", + "chapter": "fs", + "label": "fs.rename(oldPath, newPath, callback)", + "signature": "`fs.rename(oldPath, newPath, callback)`", + "apiSymbol": "fs.rename", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsrenameoldpath-newpath-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.fs.rename", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs.rename", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:a78c8968eb96", + "chapter": "fs", + "label": "fs.rmdir(path[, options], callback)", + "signature": "`fs.rmdir(path[, options], callback)`", + "apiSymbol": "fs.rmdir", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsrmdirpath-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs.rmdir", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:c56caf8603fa", + "chapter": "fs", + "label": "fs.rm(path[, options], callback)", + "signature": "`fs.rm(path[, options], callback)`", + "apiSymbol": "fs.rm", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsrmpath-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs.rm", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:cef2a7909fea", + "chapter": "fs", + "label": "fs.stat(path[, options], callback)", + "signature": "`fs.stat(path[, options], callback)`", + "apiSymbol": "fs.stat", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsstatpath-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs.stat", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:4cbe28958d33", + "chapter": "fs", + "label": "fs.statfs(path[, options], callback)", + "signature": "`fs.statfs(path[, options], callback)`", + "apiSymbol": "fs.statfs", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsstatfspath-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:54947f60eb11", + "chapter": "fs", + "label": "fs.symlink(target, path[, type], callback)", + "signature": "`fs.symlink(target, path[, type], callback)`", + "apiSymbol": "fs.symlink", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fssymlinktarget-path-type-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:a79415f54c1b", + "chapter": "fs", + "label": "fs.truncate(path[, len], callback)", + "signature": "`fs.truncate(path[, len], callback)`", + "apiSymbol": "fs.truncate", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fstruncatepath-len-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:0a5baf6dc3b7", + "chapter": "fs", + "label": "fs.unlink(path, callback)", + "signature": "`fs.unlink(path, callback)`", + "apiSymbol": "fs.unlink", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsunlinkpath-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs.unlink", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:3f00663153e5", + "chapter": "fs", + "label": "fs.unwatchFile(filename[, listener])", + "signature": "`fs.unwatchFile(filename[, listener])`", + "apiSymbol": "fs.unwatchFile", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsunwatchfilefilename-listener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs.unwatchFile", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:ac0ad1c75019", + "chapter": "fs", + "label": "fs.utimes(path, atime, mtime, callback)", + "signature": "`fs.utimes(path, atime, mtime, callback)`", + "apiSymbol": "fs.utimes", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsutimespath-atime-mtime-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:6bc85cd68c24", + "chapter": "fs", + "label": "fs.watch(filename[, options][, listener])", + "signature": "`fs.watch(filename[, options][, listener])`", + "apiSymbol": "fs.watch", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fswatchfilename-options-listener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.fs.watch", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:fs.watch", + "tests": [] + } + } + }, + { + "id": "fs:895ff71e97dc", + "chapter": "fs", + "label": "fs.watchFile(filename[, options], listener)", + "signature": "`fs.watchFile(filename[, options], listener)`", + "apiSymbol": "fs.watchFile", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fswatchfilefilename-options-listener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:fs.watchFile", + "tests": [] + } + } + }, + { + "id": "fs:0a51ef35e48e", + "chapter": "fs", + "label": "fs.write(fd, buffer, offset[, length[, position]], callback)", + "signature": "`fs.write(fd, buffer, offset[, length[, position]], callback)`", + "apiSymbol": "fs.write", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fswritefd-buffer-offset-length-position-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:8f388a1342de", + "chapter": "fs", + "label": "fs.write(fd, buffer[, options], callback)", + "signature": "`fs.write(fd, buffer[, options], callback)`", + "apiSymbol": "fs.write", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fswritefd-buffer-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:cf574f056f38", + "chapter": "fs", + "label": "fs.write(fd, string[, position[, encoding]], callback)", + "signature": "`fs.write(fd, string[, position[, encoding]], callback)`", + "apiSymbol": "fs.write", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fswritefd-string-position-encoding-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:d836c3d9ad11", + "chapter": "fs", + "label": "fs.writeFile(file, data[, options], callback)", + "signature": "`fs.writeFile(file, data[, options], callback)`", + "apiSymbol": "fs.writeFile", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fswritefilefile-data-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs.writeFile", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:1b4fcde3d80f", + "chapter": "fs", + "label": "Using fs.writeFile() with file descriptors", + "signature": "Using `fs.writeFile()` with file descriptors", + "apiSymbol": "fs.writeFile", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#using-fswritefile-with-file-descriptors", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs.writeFile", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:b0472d4ad2d1", + "chapter": "fs", + "label": "fs.writev(fd, buffers[, position], callback)", + "signature": "`fs.writev(fd, buffers[, position], callback)`", + "apiSymbol": "fs.writev", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fswritevfd-buffers-position-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:bb014e8c9326", + "chapter": "fs", + "label": "fs.accessSync(path[, mode])", + "signature": "`fs.accessSync(path[, mode])`", + "apiSymbol": "fs.accessSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsaccesssyncpath-mode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.fs.accessSync", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs.accessSync", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:e2ea9dde15f4", + "chapter": "fs", + "label": "fs.appendFileSync(path, data[, options])", + "signature": "`fs.appendFileSync(path, data[, options])`", + "apiSymbol": "fs.appendFileSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsappendfilesyncpath-data-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.fs.appendFileSync", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs.appendFileSync", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:dac71a8b3dc1", + "chapter": "fs", + "label": "fs.chmodSync(path, mode)", + "signature": "`fs.chmodSync(path, mode)`", + "apiSymbol": "fs.chmodSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fschmodsyncpath-mode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.fs.chmodSync", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs.chmodSync", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:3c5a54b5045a", + "chapter": "fs", + "label": "fs.chownSync(path, uid, gid)", + "signature": "`fs.chownSync(path, uid, gid)`", + "apiSymbol": "fs.chownSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fschownsyncpath-uid-gid", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.fs.chownSync", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:fbdeeb96f11f", + "chapter": "fs", + "label": "fs.closeSync(fd)", + "signature": "`fs.closeSync(fd)`", + "apiSymbol": "fs.closeSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsclosesyncfd", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.fs.closeSync", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs.closeSync", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:f6e89df9976d", + "chapter": "fs", + "label": "fs.copyFileSync(src, dest[, mode])", + "signature": "`fs.copyFileSync(src, dest[, mode])`", + "apiSymbol": "fs.copyFileSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fscopyfilesyncsrc-dest-mode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.fs.copyFileSync", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs.copyFileSync", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:bb1248bb82ed", + "chapter": "fs", + "label": "fs.cpSync(src, dest[, options])", + "signature": "`fs.cpSync(src, dest[, options])`", + "apiSymbol": "fs.cpSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fscpsyncsrc-dest-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:fca100ee30a2", + "chapter": "fs", + "label": "fs.existsSync(path)", + "signature": "`fs.existsSync(path)`", + "apiSymbol": "fs.existsSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsexistssyncpath", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.fs.existsSync", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs.existsSync", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:b9851094b62a", + "chapter": "fs", + "label": "fs.fchmodSync(fd, mode)", + "signature": "`fs.fchmodSync(fd, mode)`", + "apiSymbol": "fs.fchmodSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsfchmodsyncfd-mode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:2d46f6d5ae28", + "chapter": "fs", + "label": "fs.fchownSync(fd, uid, gid)", + "signature": "`fs.fchownSync(fd, uid, gid)`", + "apiSymbol": "fs.fchownSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsfchownsyncfd-uid-gid", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:281e942abda9", + "chapter": "fs", + "label": "fs.fdatasyncSync(fd)", + "signature": "`fs.fdatasyncSync(fd)`", + "apiSymbol": "fs.fdatasyncSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsfdatasyncsyncfd", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:b5516b093511", + "chapter": "fs", + "label": "fs.fstatSync(fd[, options])", + "signature": "`fs.fstatSync(fd[, options])`", + "apiSymbol": "fs.fstatSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsfstatsyncfd-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:25a81254454a", + "chapter": "fs", + "label": "fs.fsyncSync(fd)", + "signature": "`fs.fsyncSync(fd)`", + "apiSymbol": "fs.fsyncSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsfsyncsyncfd", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:8bca86083737", + "chapter": "fs", + "label": "fs.ftruncateSync(fd[, len])", + "signature": "`fs.ftruncateSync(fd[, len])`", + "apiSymbol": "fs.ftruncateSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsftruncatesyncfd-len", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:9c37915c5845", + "chapter": "fs", + "label": "fs.futimesSync(fd, atime, mtime)", + "signature": "`fs.futimesSync(fd, atime, mtime)`", + "apiSymbol": "fs.futimesSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsfutimessyncfd-atime-mtime", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:e0baabf8ecf5", + "chapter": "fs", + "label": "fs.globSync(pattern[, options])", + "signature": "`fs.globSync(pattern[, options])`", + "apiSymbol": "fs.globSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsglobsyncpattern-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:66fc8542076e", + "chapter": "fs", + "label": "fs.lchmodSync(path, mode)", + "signature": "`fs.lchmodSync(path, mode)`", + "apiSymbol": "fs.lchmodSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fslchmodsyncpath-mode", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:745b97380b35", + "chapter": "fs", + "label": "fs.lchownSync(path, uid, gid)", + "signature": "`fs.lchownSync(path, uid, gid)`", + "apiSymbol": "fs.lchownSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fslchownsyncpath-uid-gid", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:bda1971bbc1e", + "chapter": "fs", + "label": "fs.lutimesSync(path, atime, mtime)", + "signature": "`fs.lutimesSync(path, atime, mtime)`", + "apiSymbol": "fs.lutimesSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fslutimessyncpath-atime-mtime", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:0365aee0e526", + "chapter": "fs", + "label": "fs.linkSync(existingPath, newPath)", + "signature": "`fs.linkSync(existingPath, newPath)`", + "apiSymbol": "fs.linkSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fslinksyncexistingpath-newpath", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:83917862164f", + "chapter": "fs", + "label": "fs.lstatSync(path[, options])", + "signature": "`fs.lstatSync(path[, options])`", + "apiSymbol": "fs.lstatSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fslstatsyncpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.fs.lstatSync", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs.lstatSync", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:ba4f446256a8", + "chapter": "fs", + "label": "fs.mkdirSync(path[, options])", + "signature": "`fs.mkdirSync(path[, options])`", + "apiSymbol": "fs.mkdirSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsmkdirsyncpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.fs.mkdirSync", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs.mkdirSync", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:676cb0d7a016", + "chapter": "fs", + "label": "fs.mkdtempSync(prefix[, options])", + "signature": "`fs.mkdtempSync(prefix[, options])`", + "apiSymbol": "fs.mkdtempSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsmkdtempsyncprefix-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.fs.mkdtempSync", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs.mkdtempSync", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:df150721a7eb", + "chapter": "fs", + "label": "fs.mkdtempDisposableSync(prefix[, options])", + "signature": "`fs.mkdtempDisposableSync(prefix[, options])`", + "apiSymbol": "fs.mkdtempDisposableSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsmkdtempdisposablesyncprefix-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:6c7d156d5e06", + "chapter": "fs", + "label": "fs.opendirSync(path[, options])", + "signature": "`fs.opendirSync(path[, options])`", + "apiSymbol": "fs.opendirSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsopendirsyncpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:3eff976b63c2", + "chapter": "fs", + "label": "fs.openSync(path[, flags[, mode]])", + "signature": "`fs.openSync(path[, flags[, mode]])`", + "apiSymbol": "fs.openSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsopensyncpath-flags-mode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.fs.openSync", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:fs.openSync", + "tests": [] + } + } + }, + { + "id": "fs:4ab10f30ecd4", + "chapter": "fs", + "label": "fs.readdirSync(path[, options])", + "signature": "`fs.readdirSync(path[, options])`", + "apiSymbol": "fs.readdirSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsreaddirsyncpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.fs.readdirSync", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs.readdirSync", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:59635a07942b", + "chapter": "fs", + "label": "fs.readFileSync(path[, options])", + "signature": "`fs.readFileSync(path[, options])`", + "apiSymbol": "fs.readFileSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsreadfilesyncpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.fs.readFileSync", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs.readFileSync", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:05cb88c2c56a", + "chapter": "fs", + "label": "fs.readlinkSync(path[, options])", + "signature": "`fs.readlinkSync(path[, options])`", + "apiSymbol": "fs.readlinkSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsreadlinksyncpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs.readlinkSync", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:d3c7d391185a", + "chapter": "fs", + "label": "fs.readSync(fd, buffer, offset, length[, position])", + "signature": "`fs.readSync(fd, buffer, offset, length[, position])`", + "apiSymbol": "fs.readSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsreadsyncfd-buffer-offset-length-position", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.fs.readSync", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:fs.readSync", + "tests": [] + } + } + }, + { + "id": "fs:2b9d0635ca32", + "chapter": "fs", + "label": "fs.readSync(fd, buffer[, options])", + "signature": "`fs.readSync(fd, buffer[, options])`", + "apiSymbol": "fs.readSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsreadsyncfd-buffer-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.fs.readSync", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:fs.readSync", + "tests": [] + } + } + }, + { + "id": "fs:9b90630d0b0b", + "chapter": "fs", + "label": "fs.readvSync(fd, buffers[, position])", + "signature": "`fs.readvSync(fd, buffers[, position])`", + "apiSymbol": "fs.readvSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsreadvsyncfd-buffers-position", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:46f75099c37b", + "chapter": "fs", + "label": "fs.realpathSync(path[, options])", + "signature": "`fs.realpathSync(path[, options])`", + "apiSymbol": "fs.realpathSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsrealpathsyncpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.fs.realpathSync", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs.realpathSync", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:efbc61051a14", + "chapter": "fs", + "label": "fs.realpathSync.native(path[, options])", + "signature": "`fs.realpathSync.native(path[, options])`", + "apiSymbol": "fs.realpathSync.native", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsrealpathsyncnativepath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:ba7d747a4147", + "chapter": "fs", + "label": "fs.renameSync(oldPath, newPath)", + "signature": "`fs.renameSync(oldPath, newPath)`", + "apiSymbol": "fs.renameSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsrenamesyncoldpath-newpath", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.fs.renameSync", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs.renameSync", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:29cf0a7eb183", + "chapter": "fs", + "label": "fs.rmdirSync(path[, options])", + "signature": "`fs.rmdirSync(path[, options])`", + "apiSymbol": "fs.rmdirSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsrmdirsyncpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.fs.rmdirSync", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs.rmdirSync", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:9de63e7e0c60", + "chapter": "fs", + "label": "fs.rmSync(path[, options])", + "signature": "`fs.rmSync(path[, options])`", + "apiSymbol": "fs.rmSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsrmsyncpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.fs.rmSync", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs.rmSync", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:fa16474796d3", + "chapter": "fs", + "label": "fs.statSync(path[, options])", + "signature": "`fs.statSync(path[, options])`", + "apiSymbol": "fs.statSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsstatsyncpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.fs.statSync", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs.statSync", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:8d2b6228554c", + "chapter": "fs", + "label": "fs.statfsSync(path[, options])", + "signature": "`fs.statfsSync(path[, options])`", + "apiSymbol": "fs.statfsSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsstatfssyncpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:d0d7735d797c", + "chapter": "fs", + "label": "fs.symlinkSync(target, path[, type])", + "signature": "`fs.symlinkSync(target, path[, type])`", + "apiSymbol": "fs.symlinkSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fssymlinksynctarget-path-type", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:49bc5269b6ff", + "chapter": "fs", + "label": "fs.truncateSync(path[, len])", + "signature": "`fs.truncateSync(path[, len])`", + "apiSymbol": "fs.truncateSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fstruncatesyncpath-len", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:00f9a3c9a960", + "chapter": "fs", + "label": "fs.unlinkSync(path)", + "signature": "`fs.unlinkSync(path)`", + "apiSymbol": "fs.unlinkSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsunlinksyncpath", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.fs.unlinkSync", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs.unlinkSync", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:ad5262f4704b", + "chapter": "fs", + "label": "fs.utimesSync(path, atime, mtime)", + "signature": "`fs.utimesSync(path, atime, mtime)`", + "apiSymbol": "fs.utimesSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fsutimessyncpath-atime-mtime", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:668889893efc", + "chapter": "fs", + "label": "fs.writeFileSync(file, data[, options])", + "signature": "`fs.writeFileSync(file, data[, options])`", + "apiSymbol": "fs.writeFileSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fswritefilesyncfile-data-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.fs.writeFileSync", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs.writeFileSync", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:ecd038299cfd", + "chapter": "fs", + "label": "fs.writeSync(fd, buffer, offset[, length[, position]])", + "signature": "`fs.writeSync(fd, buffer, offset[, length[, position]])`", + "apiSymbol": "fs.writeSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fswritesyncfd-buffer-offset-length-position", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.fs.writeSync", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:5069083736b9", + "chapter": "fs", + "label": "fs.writeSync(fd, buffer[, options])", + "signature": "`fs.writeSync(fd, buffer[, options])`", + "apiSymbol": "fs.writeSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fswritesyncfd-buffer-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.fs.writeSync", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:09de5457a74e", + "chapter": "fs", + "label": "fs.writeSync(fd, string[, position[, encoding]])", + "signature": "`fs.writeSync(fd, string[, position[, encoding]])`", + "apiSymbol": "fs.writeSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fswritesyncfd-string-position-encoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.fs.writeSync", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:4b70362ca185", + "chapter": "fs", + "label": "fs.writevSync(fd, buffers[, position])", + "signature": "`fs.writevSync(fd, buffers[, position])`", + "apiSymbol": "fs.writevSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#fswritevsyncfd-buffers-position", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:0700728ff82b", + "chapter": "fs", + "label": "fs.Dir", + "signature": "Class: `fs.Dir`", + "apiSymbol": "fs.Dir", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-fsdir", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:8f0992fd2676", + "chapter": "fs", + "label": "dir.close()", + "signature": "`dir.close()`", + "apiSymbol": "dir.close", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#dirclose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:dafe70445346", + "chapter": "fs", + "label": "dir.close(callback)", + "signature": "`dir.close(callback)`", + "apiSymbol": "dir.close", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#dirclosecallback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:ab1eb3512a46", + "chapter": "fs", + "label": "dir.closeSync()", + "signature": "`dir.closeSync()`", + "apiSymbol": "dir.closeSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#dirclosesync", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:1237c8f2cdaf", + "chapter": "fs", + "label": "dir.read()", + "signature": "`dir.read()`", + "apiSymbol": "dir.read", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#dirread", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:9a4bb9761d36", + "chapter": "fs", + "label": "dir.read(callback)", + "signature": "`dir.read(callback)`", + "apiSymbol": "dir.read", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#dirreadcallback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:1fdce227cd9a", + "chapter": "fs", + "label": "dir.readSync()", + "signature": "`dir.readSync()`", + "apiSymbol": "dir.readSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#dirreadsync", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:1d0eaa01f1be", + "chapter": "fs", + "label": "dir[Symbol.asyncIterator]()", + "signature": "`dir[Symbol.asyncIterator]()`", + "apiSymbol": "dir", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#dirsymbolasynciterator", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:4966ee8cacca", + "chapter": "fs", + "label": "dir[Symbol.asyncDispose]()", + "signature": "`dir[Symbol.asyncDispose]()`", + "apiSymbol": "dir", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#dirsymbolasyncdispose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:c1769a18ab33", + "chapter": "fs", + "label": "dir[Symbol.dispose]()", + "signature": "`dir[Symbol.dispose]()`", + "apiSymbol": "dir", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#dirsymboldispose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:87ae9b6e5321", + "chapter": "fs", + "label": "path", + "signature": "`path` Type: {string}", + "apiSymbol": "path", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-fsdir", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:6ba1f059c061", + "chapter": "fs", + "label": "fs.Dirent", + "signature": "Class: `fs.Dirent`", + "apiSymbol": "fs.Dirent", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-fsdirent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs.Dirent", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:1f335191caec", + "chapter": "fs", + "label": "dirent.isBlockDevice()", + "signature": "`dirent.isBlockDevice()`", + "apiSymbol": "dirent.isBlockDevice", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#direntisblockdevice", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:fs.dirent.isBlockDevice", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:6f67bd847cb5", + "chapter": "fs", + "label": "dirent.isCharacterDevice()", + "signature": "`dirent.isCharacterDevice()`", + "apiSymbol": "dirent.isCharacterDevice", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#direntischaracterdevice", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:fs.dirent.isCharacterDevice", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:9a775bd97bf2", + "chapter": "fs", + "label": "dirent.isDirectory()", + "signature": "`dirent.isDirectory()`", + "apiSymbol": "dirent.isDirectory", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#direntisdirectory", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:fs.dirent.isDirectory", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:118f97cef6a1", + "chapter": "fs", + "label": "dirent.isFIFO()", + "signature": "`dirent.isFIFO()`", + "apiSymbol": "dirent.isFIFO", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#direntisfifo", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:fs.dirent.isFIFO", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:2dfaea02ec63", + "chapter": "fs", + "label": "dirent.isFile()", + "signature": "`dirent.isFile()`", + "apiSymbol": "dirent.isFile", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#direntisfile", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:fs.dirent.isFile", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:62ecccf02d3b", + "chapter": "fs", + "label": "dirent.isSocket()", + "signature": "`dirent.isSocket()`", + "apiSymbol": "dirent.isSocket", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#direntissocket", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:fs.dirent.isSocket", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:925fe5a4413e", + "chapter": "fs", + "label": "dirent.isSymbolicLink()", + "signature": "`dirent.isSymbolicLink()`", + "apiSymbol": "dirent.isSymbolicLink", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#direntissymboliclink", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:fs.dirent.isSymbolicLink", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:0996e04aa348", + "chapter": "fs", + "label": "name", + "signature": "`name` Type: {string|Buffer}", + "apiSymbol": "name", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-fsdirent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:7c31ccd9e935", + "chapter": "fs", + "label": "parentPath", + "signature": "`parentPath` Type: {string}", + "apiSymbol": "parentPath", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-fsdirent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:b32d5f6a7bd6", + "chapter": "fs", + "label": "fs.FSWatcher", + "signature": "Class: `fs.FSWatcher`", + "apiSymbol": "fs.FSWatcher", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-fsfswatcher", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:5ac07bccf3dd", + "chapter": "fs", + "label": "watcher.close()", + "signature": "`watcher.close()`", + "apiSymbol": "watcher.close", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#watcherclose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:cf1e24d2cfc9", + "chapter": "fs", + "label": "watcher.ref()", + "signature": "`watcher.ref()`", + "apiSymbol": "watcher.ref", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#watcherref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:f1d34ce9ba28", + "chapter": "fs", + "label": "watcher.unref()", + "signature": "`watcher.unref()`", + "apiSymbol": "watcher.unref", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#watcherunref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:b79e3f76cb72", + "chapter": "fs", + "label": "'change'", + "signature": "Event: `'change'`", + "apiSymbol": "'change'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#event-change", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:7364d8aee5ea", + "chapter": "fs", + "label": "'close'", + "signature": "Event: `'close'`", + "apiSymbol": "'close'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#event-close_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:031d6b41d802", + "chapter": "fs", + "label": "'error'", + "signature": "Event: `'error'`", + "apiSymbol": "'error'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#event-error", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:d51e95ac7f61", + "chapter": "fs", + "label": "fs.StatWatcher", + "signature": "Class: `fs.StatWatcher`", + "apiSymbol": "fs.StatWatcher", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-fsstatwatcher", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:988f90491829", + "chapter": "fs", + "label": "watcher.ref()", + "signature": "`watcher.ref()`", + "apiSymbol": "watcher.ref", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#watcherref_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:034365c650a1", + "chapter": "fs", + "label": "watcher.unref()", + "signature": "`watcher.unref()`", + "apiSymbol": "watcher.unref", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#watcherunref_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:70a17bd2bec1", + "chapter": "fs", + "label": "fs.ReadStream", + "signature": "Class: `fs.ReadStream`", + "apiSymbol": "fs.ReadStream", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-fsreadstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:89e032fbc073", + "chapter": "fs", + "label": "bytesRead", + "signature": "`bytesRead` Type: {number}", + "apiSymbol": "bytesRead", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-fsreadstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:1097ed6f3550", + "chapter": "fs", + "label": "path", + "signature": "`path` Type: {string|Buffer}", + "apiSymbol": "path", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-fsreadstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:e94276a4f603", + "chapter": "fs", + "label": "pending", + "signature": "`pending` Type: {boolean}", + "apiSymbol": "pending", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-fsreadstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:fc9d5f0bd4ef", + "chapter": "fs", + "label": "'close'", + "signature": "Event: `'close'`", + "apiSymbol": "'close'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#event-close_2", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:8048afed7bb3", + "chapter": "fs", + "label": "'open'", + "signature": "Event: `'open'`", + "apiSymbol": "'open'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#event-open", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:b01db8ac01c6", + "chapter": "fs", + "label": "'ready'", + "signature": "Event: `'ready'`", + "apiSymbol": "'ready'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#event-ready", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:9e2d6b3a74c4", + "chapter": "fs", + "label": "fs.Stats", + "signature": "Class: `fs.Stats`", + "apiSymbol": "fs.Stats", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs.Stats", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:18959c24e4e7", + "chapter": "fs", + "label": "stats.isBlockDevice()", + "signature": "`stats.isBlockDevice()`", + "apiSymbol": "stats.isBlockDevice", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#statsisblockdevice", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:fs.stats.isBlockDevice", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:8b5f86ca00da", + "chapter": "fs", + "label": "stats.isCharacterDevice()", + "signature": "`stats.isCharacterDevice()`", + "apiSymbol": "stats.isCharacterDevice", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#statsischaracterdevice", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:fs.stats.isCharacterDevice", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:be43482bd90b", + "chapter": "fs", + "label": "stats.isDirectory()", + "signature": "`stats.isDirectory()`", + "apiSymbol": "stats.isDirectory", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#statsisdirectory", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:fs.stats.isDirectory", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:2729abbbdfe6", + "chapter": "fs", + "label": "stats.isFIFO()", + "signature": "`stats.isFIFO()`", + "apiSymbol": "stats.isFIFO", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#statsisfifo", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:fs.stats.isFIFO", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:e065a4e22ea2", + "chapter": "fs", + "label": "stats.isFile()", + "signature": "`stats.isFile()`", + "apiSymbol": "stats.isFile", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#statsisfile", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:fs.stats.isFile", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:8860f69477be", + "chapter": "fs", + "label": "stats.isSocket()", + "signature": "`stats.isSocket()`", + "apiSymbol": "stats.isSocket", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#statsissocket", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:fs.stats.isSocket", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:e83ef70b61dc", + "chapter": "fs", + "label": "stats.isSymbolicLink()", + "signature": "`stats.isSymbolicLink()`", + "apiSymbol": "stats.isSymbolicLink", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#statsissymboliclink", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:fs.stats.isSymbolicLink", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:20786cc9ebdf", + "chapter": "fs", + "label": "dev", + "signature": "`dev` Type: {number|bigint}", + "apiSymbol": "dev", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:1f3f0c9b2b31", + "chapter": "fs", + "label": "ino", + "signature": "`ino` Type: {number|bigint}", + "apiSymbol": "ino", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:e6f5dffde66b", + "chapter": "fs", + "label": "mode", + "signature": "`mode` Type: {number|bigint}", + "apiSymbol": "mode", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:5809098972ff", + "chapter": "fs", + "label": "nlink", + "signature": "`nlink` Type: {number|bigint}", + "apiSymbol": "nlink", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:d7ac2147678c", + "chapter": "fs", + "label": "uid", + "signature": "`uid` Type: {number|bigint}", + "apiSymbol": "uid", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:3b127ccf2d6e", + "chapter": "fs", + "label": "gid", + "signature": "`gid` Type: {number|bigint}", + "apiSymbol": "gid", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:2965d137edaf", + "chapter": "fs", + "label": "rdev", + "signature": "`rdev` Type: {number|bigint}", + "apiSymbol": "rdev", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:8afaf1066b78", + "chapter": "fs", + "label": "size", + "signature": "`size` Type: {number|bigint}", + "apiSymbol": "size", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:c639785e166d", + "chapter": "fs", + "label": "blksize", + "signature": "`blksize` Type: {number|bigint}", + "apiSymbol": "blksize", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:a679ec1055f9", + "chapter": "fs", + "label": "blocks", + "signature": "`blocks` Type: {number|bigint}", + "apiSymbol": "blocks", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:a5eb34c0428f", + "chapter": "fs", + "label": "atimeMs", + "signature": "`atimeMs` Type: {number|bigint}", + "apiSymbol": "atimeMs", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:51681a49aa5b", + "chapter": "fs", + "label": "mtimeMs", + "signature": "`mtimeMs` Type: {number|bigint}", + "apiSymbol": "mtimeMs", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:c28b6f8896c7", + "chapter": "fs", + "label": "ctimeMs", + "signature": "`ctimeMs` Type: {number|bigint}", + "apiSymbol": "ctimeMs", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:02f8cefc6a0f", + "chapter": "fs", + "label": "birthtimeMs", + "signature": "`birthtimeMs` Type: {number|bigint}", + "apiSymbol": "birthtimeMs", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:8643d6850d73", + "chapter": "fs", + "label": "atimeNs", + "signature": "`atimeNs` Type: {bigint}", + "apiSymbol": "atimeNs", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:16813488e5d1", + "chapter": "fs", + "label": "mtimeNs", + "signature": "`mtimeNs` Type: {bigint}", + "apiSymbol": "mtimeNs", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:42515e76deed", + "chapter": "fs", + "label": "ctimeNs", + "signature": "`ctimeNs` Type: {bigint}", + "apiSymbol": "ctimeNs", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:3270d8cad8fc", + "chapter": "fs", + "label": "birthtimeNs", + "signature": "`birthtimeNs` Type: {bigint}", + "apiSymbol": "birthtimeNs", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:a967f5c6b78e", + "chapter": "fs", + "label": "atime", + "signature": "`atime` Type: {Date}", + "apiSymbol": "atime", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:f7513d4484b9", + "chapter": "fs", + "label": "mtime", + "signature": "`mtime` Type: {Date}", + "apiSymbol": "mtime", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:cfeab88f962f", + "chapter": "fs", + "label": "ctime", + "signature": "`ctime` Type: {Date}", + "apiSymbol": "ctime", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:1e32671123c6", + "chapter": "fs", + "label": "birthtime", + "signature": "`birthtime` Type: {Date}", + "apiSymbol": "birthtime", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:2da67f34e84e", + "chapter": "fs", + "label": "fs.StatFs", + "signature": "Class: `fs.StatFs`", + "apiSymbol": "fs.StatFs", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-fsstatfs", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:eb5d75d27df4", + "chapter": "fs", + "label": "bavail", + "signature": "`bavail` Type: {number|bigint}", + "apiSymbol": "bavail", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-fsstatfs", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:bce506d811f8", + "chapter": "fs", + "label": "bfree", + "signature": "`bfree` Type: {number|bigint}", + "apiSymbol": "bfree", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-fsstatfs", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:fcd0f2b57d05", + "chapter": "fs", + "label": "blocks", + "signature": "`blocks` Type: {number|bigint}", + "apiSymbol": "blocks", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-fsstatfs", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:8f9cdecf8983", + "chapter": "fs", + "label": "bsize", + "signature": "`bsize` Type: {number|bigint}", + "apiSymbol": "bsize", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-fsstatfs", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:4d046e9b2b75", + "chapter": "fs", + "label": "ffree", + "signature": "`ffree` Type: {number|bigint}", + "apiSymbol": "ffree", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-fsstatfs", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:d056678eaa8f", + "chapter": "fs", + "label": "files", + "signature": "`files` Type: {number|bigint}", + "apiSymbol": "files", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-fsstatfs", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:50b1621ed254", + "chapter": "fs", + "label": "type", + "signature": "`type` Type: {number|bigint}", + "apiSymbol": "type", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-fsstatfs", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:3616aeebdd25", + "chapter": "fs", + "label": "fs.Utf8Stream", + "signature": "Class: `fs.Utf8Stream`", + "apiSymbol": "fs.Utf8Stream", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-fsutf8stream", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:4fa376d6e25e", + "chapter": "fs", + "label": "utf8Stream.destroy()", + "signature": "`utf8Stream.destroy()`", + "apiSymbol": "utf8Stream.destroy", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#utf8streamdestroy", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:8365aa7a5edc", + "chapter": "fs", + "label": "utf8Stream.end()", + "signature": "`utf8Stream.end()`", + "apiSymbol": "utf8Stream.end", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#utf8streamend", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:51c873b34d16", + "chapter": "fs", + "label": "utf8Stream.flush(callback)", + "signature": "`utf8Stream.flush(callback)`", + "apiSymbol": "utf8Stream.flush", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#utf8streamflushcallback", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:0b12b89d6c24", + "chapter": "fs", + "label": "utf8Stream.flushSync()", + "signature": "`utf8Stream.flushSync()`", + "apiSymbol": "utf8Stream.flushSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#utf8streamflushsync", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:8703035de37d", + "chapter": "fs", + "label": "utf8Stream.reopen(file)", + "signature": "`utf8Stream.reopen(file)`", + "apiSymbol": "utf8Stream.reopen", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#utf8streamreopenfile", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:9d047ff0985c", + "chapter": "fs", + "label": "utf8Stream.write(data)", + "signature": "`utf8Stream.write(data)`", + "apiSymbol": "utf8Stream.write", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#utf8streamwritedata", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:42a6ccd98a72", + "chapter": "fs", + "label": "utf8Stream[Symbol.dispose]()", + "signature": "`utf8Stream[Symbol.dispose]()`", + "apiSymbol": "utf8Stream", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#utf8streamsymboldispose", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:1a0626006251", + "chapter": "fs", + "label": "append", + "signature": "`append` {boolean} Whether the stream is appending to the file or truncating it.", + "apiSymbol": "append", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-fsutf8stream", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:a0001f699ad9", + "chapter": "fs", + "label": "contentMode", + "signature": "`contentMode` {string} The type of data that can be written to the stream. Supported values are `'utf8'` or `'buffer'`. **Default**: `'utf8'`.", + "apiSymbol": "contentMode", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-fsutf8stream", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:d988344f328a", + "chapter": "fs", + "label": "fd", + "signature": "`fd` {number} The file descriptor that is being written to.", + "apiSymbol": "fd", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-fsutf8stream", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:536f95ee41e6", + "chapter": "fs", + "label": "file", + "signature": "`file` {string} The file that is being written to.", + "apiSymbol": "file", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-fsutf8stream", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:e09fb5743c13", + "chapter": "fs", + "label": "fsync", + "signature": "`fsync` {boolean} Whether the stream is performing a `fs.fsyncSync()` after every write operation.", + "apiSymbol": "fsync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-fsutf8stream", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:344c32326cd9", + "chapter": "fs", + "label": "maxLength", + "signature": "`maxLength` {number} The maximum length of the internal buffer. If a write operation would cause the buffer to exceed `maxLength`, the data written is dropped and a drop event is emitted with the dropped data.", + "apiSymbol": "maxLength", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-fsutf8stream", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:c19423abd2a5", + "chapter": "fs", + "label": "minLength", + "signature": "`minLength` {number} The minimum length of the internal buffer that is required to be full before flushing.", + "apiSymbol": "minLength", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-fsutf8stream", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:e26282630600", + "chapter": "fs", + "label": "mkdir", + "signature": "`mkdir` {boolean} Whether the stream should ensure that the directory for the `dest` file exists. If `true`, it will create the directory if it does not exist. **Default**: `false`.", + "apiSymbol": "mkdir", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-fsutf8stream", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs.mkdir", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "fs:624d89bc3819", + "chapter": "fs", + "label": "mode", + "signature": "`mode` {number|string} The mode of the file that is being written to.", + "apiSymbol": "mode", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-fsutf8stream", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:e1fb24c528b9", + "chapter": "fs", + "label": "periodicFlush", + "signature": "`periodicFlush` {number} The number of milliseconds between flushes. If set to `0`, no periodic flushes will be performed.", + "apiSymbol": "periodicFlush", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-fsutf8stream", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:eacd2bd696a7", + "chapter": "fs", + "label": "sync", + "signature": "`sync` {boolean} Whether the stream is writing synchronously or asynchronously.", + "apiSymbol": "sync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-fsutf8stream", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:e4987ee88b62", + "chapter": "fs", + "label": "writing", + "signature": "`writing` {boolean} Whether the stream is currently writing data to the file.", + "apiSymbol": "writing", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-fsutf8stream", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:0d8a4cfae207", + "chapter": "fs", + "label": "'close'", + "signature": "Event: `'close'`", + "apiSymbol": "'close'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#event-close_3", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:34975f29786a", + "chapter": "fs", + "label": "'drain'", + "signature": "Event: `'drain'`", + "apiSymbol": "'drain'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#event-drain", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:01ad890e8ab9", + "chapter": "fs", + "label": "'drop'", + "signature": "Event: `'drop'`", + "apiSymbol": "'drop'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#event-drop", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:c65cbc52a2c8", + "chapter": "fs", + "label": "'error'", + "signature": "Event: `'error'`", + "apiSymbol": "'error'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#event-error_1", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:82ec7e5fdd12", + "chapter": "fs", + "label": "'finish'", + "signature": "Event: `'finish'`", + "apiSymbol": "'finish'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#event-finish", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:76e97a63153b", + "chapter": "fs", + "label": "'ready'", + "signature": "Event: `'ready'`", + "apiSymbol": "'ready'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#event-ready_1", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:721e22645a92", + "chapter": "fs", + "label": "'write'", + "signature": "Event: `'write'`", + "apiSymbol": "'write'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#event-write", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:a3a6d2b82c48", + "chapter": "fs", + "label": "fs.WriteStream", + "signature": "Class: `fs.WriteStream`", + "apiSymbol": "fs.WriteStream", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-fswritestream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:f3d18d9a1560", + "chapter": "fs", + "label": "writeStream.close([callback])", + "signature": "`writeStream.close([callback])`", + "apiSymbol": "writeStream.close", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#writestreamclosecallback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:ff47fa09330e", + "chapter": "fs", + "label": "writeStream.bytesWritten", + "signature": "`writeStream.bytesWritten`", + "apiSymbol": "writeStream.bytesWritten", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#writestreambyteswritten", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:83ac087e7704", + "chapter": "fs", + "label": "writeStream.path", + "signature": "`writeStream.path`", + "apiSymbol": "writeStream.path", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#writestreampath", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:8b8084446f59", + "chapter": "fs", + "label": "pending", + "signature": "`pending` Type: {boolean}", + "apiSymbol": "pending", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#class-fswritestream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:2890c22679f2", + "chapter": "fs", + "label": "'close'", + "signature": "Event: `'close'`", + "apiSymbol": "'close'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#event-close_4", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:399c12e08dc7", + "chapter": "fs", + "label": "'open'", + "signature": "Event: `'open'`", + "apiSymbol": "'open'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#event-open_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:bd767ab89494", + "chapter": "fs", + "label": "'ready'", + "signature": "Event: `'ready'`", + "apiSymbol": "'ready'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#event-ready_2", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:fs", + "tests": [] + } + } + }, + { + "id": "fs:c6d54b148bca", + "chapter": "fs", + "label": "constants", + "signature": "`constants` Type: {Object}", + "apiSymbol": "constants", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/fs.html#common-objects", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:fs", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:fs.constants", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + } + } + }, + { + "id": "globals:86d4ea5a74c7", + "chapter": "globals", + "label": "AbortController", + "signature": "Class: `AbortController`", + "apiSymbol": "AbortController", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-abortcontroller", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-global:AbortController", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + } + } + }, + { + "id": "globals:a7652dabd314", + "chapter": "globals", + "label": "abortController.abort([reason])", + "signature": "`abortController.abort([reason])`", + "apiSymbol": "abortController.abort", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#abortcontrollerabortreason", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:globals", + "tests": [] + } + } + }, + { + "id": "globals:5cda665ef9c7", + "chapter": "globals", + "label": "signal", + "signature": "`signal` Type: {AbortSignal}", + "apiSymbol": "signal", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-abortcontroller", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:globals", + "tests": [] + } + } + }, + { + "id": "globals:cab94a87201e", + "chapter": "globals", + "label": "AbortSignal", + "signature": "Class: `AbortSignal`", + "apiSymbol": "AbortSignal", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-abortsignal", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-global:AbortSignal", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + } + } + }, + { + "id": "globals:127f66819ead", + "chapter": "globals", + "label": "abortSignal.throwIfAborted()", + "signature": "`abortSignal.throwIfAborted()`", + "apiSymbol": "abortSignal.throwIfAborted", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#abortsignalthrowifaborted", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:globals", + "tests": [] + } + } + }, + { + "id": "globals:672ac9138dd9", + "chapter": "globals", + "label": "aborted", + "signature": "`aborted` Type: {boolean}", + "apiSymbol": "aborted", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-abortsignal", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:globals", + "tests": [] + } + } + }, + { + "id": "globals:a09eb9b8d16e", + "chapter": "globals", + "label": "onabort", + "signature": "`onabort` Type: {Function}", + "apiSymbol": "onabort", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-abortsignal", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:globals", + "tests": [] + } + } + }, + { + "id": "globals:b7312ad84180", + "chapter": "globals", + "label": "reason", + "signature": "`reason` Type: {any}", + "apiSymbol": "reason", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-abortsignal", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:globals", + "tests": [] + } + } + }, + { + "id": "globals:5a696632369d", + "chapter": "globals", + "label": "'abort'", + "signature": "Event: `'abort'`", + "apiSymbol": "'abort'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#event-abort", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:globals", + "tests": [] + } + } + }, + { + "id": "globals:fedbef36d3c4", + "chapter": "globals", + "label": "Blob", + "signature": "Class: `Blob`", + "apiSymbol": "Blob", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-blob", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-global:Blob", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + } + } + }, + { + "id": "globals:037ae687e118", + "chapter": "globals", + "label": "BroadcastChannel", + "signature": "Class: `BroadcastChannel`", + "apiSymbol": "BroadcastChannel", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-broadcastchannel", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "verified-absence", + "confidence": "high", + "source": "island-global-absent:BroadcastChannel", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + } + } + }, + { + "id": "globals:eb29ec8d1737", + "chapter": "globals", + "label": "Buffer", + "signature": "Class: `Buffer`", + "apiSymbol": "Buffer", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-buffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-npm-global:Buffer", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + } + } + }, + { + "id": "globals:c9caa83b54e7", + "chapter": "globals", + "label": "ByteLengthQueuingStrategy", + "signature": "Class: `ByteLengthQueuingStrategy`", + "apiSymbol": "ByteLengthQueuingStrategy", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-bytelengthqueuingstrategy", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "verified-absence", + "confidence": "high", + "source": "island-global-absent:ByteLengthQueuingStrategy", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + } + } + }, + { + "id": "globals:32f1cce26e66", + "chapter": "globals", + "label": "CloseEvent", + "signature": "Class: `CloseEvent`", + "apiSymbol": "CloseEvent", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-closeevent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "verified-absence", + "confidence": "high", + "source": "island-global-absent:CloseEvent", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + } + } + }, + { + "id": "globals:f0bf30fb92df", + "chapter": "globals", + "label": "CompressionStream", + "signature": "Class: `CompressionStream`", + "apiSymbol": "CompressionStream", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-compressionstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "verified-absence", + "confidence": "high", + "source": "island-global-absent:CompressionStream", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + } + } + }, + { + "id": "globals:0c56fc210ea2", + "chapter": "globals", + "label": "CountQueuingStrategy", + "signature": "Class: `CountQueuingStrategy`", + "apiSymbol": "CountQueuingStrategy", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-countqueuingstrategy", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "verified-absence", + "confidence": "high", + "source": "island-global-absent:CountQueuingStrategy", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + } + } + }, + { + "id": "globals:51985f41d8af", + "chapter": "globals", + "label": "Crypto", + "signature": "Class: `Crypto`", + "apiSymbol": "Crypto", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-crypto", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:globals", + "tests": [] + } + } + }, + { + "id": "globals:60c93cf58364", + "chapter": "globals", + "label": "CryptoKey", + "signature": "Class: `CryptoKey`", + "apiSymbol": "CryptoKey", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-cryptokey", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "verified-absence", + "confidence": "high", + "source": "island-global-absent:CryptoKey", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + } + } + }, + { + "id": "globals:d03b17009dd3", + "chapter": "globals", + "label": "CustomEvent", + "signature": "Class: `CustomEvent`", + "apiSymbol": "CustomEvent", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-customevent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-global:CustomEvent", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + } + } + }, + { + "id": "globals:402cbed48ca0", + "chapter": "globals", + "label": "DecompressionStream", + "signature": "Class: `DecompressionStream`", + "apiSymbol": "DecompressionStream", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-decompressionstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "verified-absence", + "confidence": "high", + "source": "island-global-absent:DecompressionStream", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + } + } + }, + { + "id": "globals:6dd9e909552a", + "chapter": "globals", + "label": "DOMException", + "signature": "Class: `DOMException`", + "apiSymbol": "DOMException", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-domexception", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-global:DOMException", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + } + } + }, + { + "id": "globals:9e3f482c4c2d", + "chapter": "globals", + "label": "Event", + "signature": "Class: `Event`", + "apiSymbol": "Event", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-event", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-global:Event", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + } + } + }, + { + "id": "globals:3c623a789a40", + "chapter": "globals", + "label": "EventSource", + "signature": "Class: `EventSource`", + "apiSymbol": "EventSource", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-eventsource", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Enable this API with the [`--experimental-eventsource`][] CLI flag.", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "verified-absence", + "confidence": "high", + "source": "island-global-absent:EventSource", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + } + } + }, + { + "id": "globals:3e97945356cd", + "chapter": "globals", + "label": "EventTarget", + "signature": "Class: `EventTarget`", + "apiSymbol": "EventTarget", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-eventtarget", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-global:EventTarget", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + } + } + }, + { + "id": "globals:482351dc6f5f", + "chapter": "globals", + "label": "File", + "signature": "Class: `File`", + "apiSymbol": "File", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-file", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-global:File", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + } + } + }, + { + "id": "globals:12270865dff0", + "chapter": "globals", + "label": "FormData", + "signature": "Class: `FormData`", + "apiSymbol": "FormData", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-formdata", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "verified-absence", + "confidence": "high", + "source": "island-global-absent:FormData", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + } + } + }, + { + "id": "globals:5cc144620be0", + "chapter": "globals", + "label": "Headers", + "signature": "Class: `Headers`", + "apiSymbol": "Headers", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-headers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-global:Headers", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + } + } + }, + { + "id": "globals:c6a0ed20cb87", + "chapter": "globals", + "label": "MessageChannel", + "signature": "Class: `MessageChannel`", + "apiSymbol": "MessageChannel", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-messagechannel", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-global:MessageChannel", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + } + } + }, + { + "id": "globals:5ba72f5bdda8", + "chapter": "globals", + "label": "MessageEvent", + "signature": "Class: `MessageEvent`", + "apiSymbol": "MessageEvent", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-messageevent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-global:MessageEvent", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + } + } + }, + { + "id": "globals:ddbf8800228f", + "chapter": "globals", + "label": "MessagePort", + "signature": "Class: `MessagePort`", + "apiSymbol": "MessagePort", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-messageport", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-global:MessagePort", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + } + } + }, + { + "id": "globals:36fbe5411f99", + "chapter": "globals", + "label": "Navigator", + "signature": "Class: `Navigator`", + "apiSymbol": "Navigator", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-navigator", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development. Disable this API with the [`--no-experimental-global-navigator`][] CLI flag.", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "verified-absence", + "confidence": "high", + "source": "island-global-absent:Navigator", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + } + } + }, + { + "id": "globals:8be763f02225", + "chapter": "globals", + "label": "PerformanceEntry", + "signature": "Class: `PerformanceEntry`", + "apiSymbol": "PerformanceEntry", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-performanceentry", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:globals", + "tests": [] + } + } + }, + { + "id": "globals:2f72eee9b9c6", + "chapter": "globals", + "label": "PerformanceMark", + "signature": "Class: `PerformanceMark`", + "apiSymbol": "PerformanceMark", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-performancemark", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:globals", + "tests": [] + } + } + }, + { + "id": "globals:d5615d0cc57b", + "chapter": "globals", + "label": "PerformanceMeasure", + "signature": "Class: `PerformanceMeasure`", + "apiSymbol": "PerformanceMeasure", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-performancemeasure", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:globals", + "tests": [] + } + } + }, + { + "id": "globals:3e729822f63e", + "chapter": "globals", + "label": "PerformanceObserver", + "signature": "Class: `PerformanceObserver`", + "apiSymbol": "PerformanceObserver", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-performanceobserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:globals", + "tests": [] + } + } + }, + { + "id": "globals:5d3eb95faf5e", + "chapter": "globals", + "label": "PerformanceObserverEntryList", + "signature": "Class: `PerformanceObserverEntryList`", + "apiSymbol": "PerformanceObserverEntryList", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-performanceobserverentrylist", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:globals", + "tests": [] + } + } + }, + { + "id": "globals:ec94d1ae83f4", + "chapter": "globals", + "label": "PerformanceResourceTiming", + "signature": "Class: `PerformanceResourceTiming`", + "apiSymbol": "PerformanceResourceTiming", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-performanceresourcetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:globals", + "tests": [] + } + } + }, + { + "id": "globals:9912d590e3ea", + "chapter": "globals", + "label": "ReadableByteStreamController", + "signature": "Class: `ReadableByteStreamController`", + "apiSymbol": "ReadableByteStreamController", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-readablebytestreamcontroller", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "verified-absence", + "confidence": "high", + "source": "island-global-absent:ReadableByteStreamController", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + } + } + }, + { + "id": "globals:a0093dee34e6", + "chapter": "globals", + "label": "ReadableStream", + "signature": "Class: `ReadableStream`", + "apiSymbol": "ReadableStream", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-readablestream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-global:ReadableStream", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + } + } + }, + { + "id": "globals:ef8b2bcf314d", + "chapter": "globals", + "label": "ReadableStreamBYOBReader", + "signature": "Class: `ReadableStreamBYOBReader`", + "apiSymbol": "ReadableStreamBYOBReader", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-readablestreambyobreader", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "verified-absence", + "confidence": "high", + "source": "island-global-absent:ReadableStreamBYOBReader", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + } + } + }, + { + "id": "globals:6b66289d8518", + "chapter": "globals", + "label": "ReadableStreamBYOBRequest", + "signature": "Class: `ReadableStreamBYOBRequest`", + "apiSymbol": "ReadableStreamBYOBRequest", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-readablestreambyobrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "verified-absence", + "confidence": "high", + "source": "island-global-absent:ReadableStreamBYOBRequest", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + } + } + }, + { + "id": "globals:32c92edb2758", + "chapter": "globals", + "label": "ReadableStreamDefaultController", + "signature": "Class: `ReadableStreamDefaultController`", + "apiSymbol": "ReadableStreamDefaultController", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-readablestreamdefaultcontroller", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:globals", + "tests": [] + } + } + }, + { + "id": "globals:ce47d7157e8d", + "chapter": "globals", + "label": "ReadableStreamDefaultReader", + "signature": "Class: `ReadableStreamDefaultReader`", + "apiSymbol": "ReadableStreamDefaultReader", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-readablestreamdefaultreader", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:globals", + "tests": [] + } + } + }, + { + "id": "globals:800eead6fee7", + "chapter": "globals", + "label": "Request", + "signature": "Class: `Request`", + "apiSymbol": "Request", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-request", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-global:Request", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + } + } + }, + { + "id": "globals:f47460ff0212", + "chapter": "globals", + "label": "Response", + "signature": "Class: `Response`", + "apiSymbol": "Response", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-response", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-global:Response", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + } + } + }, + { + "id": "globals:4d2dccff54ef", + "chapter": "globals", + "label": "Storage", + "signature": "Class: `Storage`", + "apiSymbol": "Storage", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-storage", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate. Enable this API with [`--experimental-webstorage`][].", + "inherited": false + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "verified-absence", + "confidence": "high", + "source": "island-global-absent:Storage", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + } + } + }, + { + "id": "globals:075a2eb7d99b", + "chapter": "globals", + "label": "SubtleCrypto", + "signature": "Class: `SubtleCrypto`", + "apiSymbol": "SubtleCrypto", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-subtlecrypto", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "verified-absence", + "confidence": "high", + "source": "island-global-absent:SubtleCrypto", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + } + } + }, + { + "id": "globals:941a42dcbf77", + "chapter": "globals", + "label": "TextDecoder", + "signature": "Class: `TextDecoder`", + "apiSymbol": "TextDecoder", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-textdecoder", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-global:TextDecoder", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + } + } + }, + { + "id": "globals:e82968d70acf", + "chapter": "globals", + "label": "TextDecoderStream", + "signature": "Class: `TextDecoderStream`", + "apiSymbol": "TextDecoderStream", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-textdecoderstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-global:TextDecoderStream", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + } + } + }, + { + "id": "globals:7969459a50b1", + "chapter": "globals", + "label": "TextEncoder", + "signature": "Class: `TextEncoder`", + "apiSymbol": "TextEncoder", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-textencoder", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-global:TextEncoder", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + } + } + }, + { + "id": "globals:7666ae12389a", + "chapter": "globals", + "label": "TextEncoderStream", + "signature": "Class: `TextEncoderStream`", + "apiSymbol": "TextEncoderStream", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-textencoderstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "verified-absence", + "confidence": "high", + "source": "island-global-absent:TextEncoderStream", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + } + } + }, + { + "id": "globals:0aeef1233e72", + "chapter": "globals", + "label": "TransformStream", + "signature": "Class: `TransformStream`", + "apiSymbol": "TransformStream", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-transformstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-global:TransformStream", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + } + } + }, + { + "id": "globals:d452bfc1fa16", + "chapter": "globals", + "label": "TransformStreamDefaultController", + "signature": "Class: `TransformStreamDefaultController`", + "apiSymbol": "TransformStreamDefaultController", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-transformstreamdefaultcontroller", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "verified-absence", + "confidence": "high", + "source": "island-global-absent:TransformStreamDefaultController", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + } + } + }, + { + "id": "globals:b2bc5f93ed3e", + "chapter": "globals", + "label": "URL", + "signature": "Class: `URL`", + "apiSymbol": "URL", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-url", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-npm-global:URL", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + } + } + }, + { + "id": "globals:f3b0d8532129", + "chapter": "globals", + "label": "URLPattern", + "signature": "Class: `URLPattern`", + "apiSymbol": "URLPattern", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-urlpattern", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "verified-absence", + "confidence": "high", + "source": "island-global-absent:URLPattern", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + } + } + }, + { + "id": "globals:e4754b03b0a0", + "chapter": "globals", + "label": "URLSearchParams", + "signature": "Class: `URLSearchParams`", + "apiSymbol": "URLSearchParams", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-urlsearchparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-global:URLSearchParams", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + } + } + }, + { + "id": "globals:bb6a0ce7ccb5", + "chapter": "globals", + "label": "WebAssembly", + "signature": "Class: `WebAssembly`", + "apiSymbol": "WebAssembly", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-webassembly", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "verified-absence", + "confidence": "high", + "source": "island-global-absent:WebAssembly", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + } + } + }, + { + "id": "globals:0a9307472b31", + "chapter": "globals", + "label": "WebSocket", + "signature": "Class: `WebSocket`", + "apiSymbol": "WebSocket", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-websocket", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "verified-absence", + "confidence": "high", + "source": "island-global-absent:WebSocket", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + } + } + }, + { + "id": "globals:7243286a15c6", + "chapter": "globals", + "label": "WritableStream", + "signature": "Class: `WritableStream`", + "apiSymbol": "WritableStream", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-writablestream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "verified-absence", + "confidence": "high", + "source": "island-global-absent:WritableStream", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + } + } + }, + { + "id": "globals:f3b66cce64be", + "chapter": "globals", + "label": "WritableStreamDefaultController", + "signature": "Class: `WritableStreamDefaultController`", + "apiSymbol": "WritableStreamDefaultController", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-writablestreamdefaultcontroller", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "verified-absence", + "confidence": "high", + "source": "island-global-absent:WritableStreamDefaultController", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + } + } + }, + { + "id": "globals:168841134aee", + "chapter": "globals", + "label": "WritableStreamDefaultWriter", + "signature": "Class: `WritableStreamDefaultWriter`", + "apiSymbol": "WritableStreamDefaultWriter", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#class-writablestreamdefaultwriter", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "verified-absence", + "confidence": "high", + "source": "island-global-absent:WritableStreamDefaultWriter", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + } + } + }, + { + "id": "globals:12db26fa50a4", + "chapter": "globals", + "label": "atob(data)", + "signature": "`atob(data)`", + "apiSymbol": "atob", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#atobdata", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy. Use `Buffer.from(data, 'base64')` instead.", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-global:atob", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + } + } + }, + { + "id": "globals:492f9d1e6cda", + "chapter": "globals", + "label": "btoa(data)", + "signature": "`btoa(data)`", + "apiSymbol": "btoa", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#btoadata", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy. Use `buf.toString('base64')` instead.", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-global:btoa", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + } + } + }, + { + "id": "globals:b50c4cf7a87e", + "chapter": "globals", + "label": "clearImmediate(immediateObject)", + "signature": "`clearImmediate(immediateObject)`", + "apiSymbol": "clearImmediate", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#clearimmediateimmediateobject", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:clearImmediate", + "tests": [ + "tests/corpus/1804-timers-module.ts", + "tests/corpus/1805-timer-callback-args.ts", + "tests/corpus/2093-timers-promises.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-npm-global:clearImmediate", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + } + } + }, + { + "id": "globals:55a3655f45c6", + "chapter": "globals", + "label": "clearInterval(intervalObject)", + "signature": "`clearInterval(intervalObject)`", + "apiSymbol": "clearInterval", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#clearintervalintervalobject", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:clearInterval", + "tests": [ + "tests/corpus/1804-timers-module.ts", + "tests/corpus/1805-timer-callback-args.ts", + "tests/corpus/2093-timers-promises.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-global:clearInterval", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + } + } + }, + { + "id": "globals:2104fad64cb5", + "chapter": "globals", + "label": "clearTimeout(timeoutObject)", + "signature": "`clearTimeout(timeoutObject)`", + "apiSymbol": "clearTimeout", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#cleartimeouttimeoutobject", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:clearTimeout", + "tests": [ + "tests/corpus/1804-timers-module.ts", + "tests/corpus/1805-timer-callback-args.ts", + "tests/corpus/2093-timers-promises.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-global:clearTimeout", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + } + } + }, + { + "id": "globals:0899a0efb5bd", + "chapter": "globals", + "label": "queueMicrotask(callback)", + "signature": "`queueMicrotask(callback)`", + "apiSymbol": "queueMicrotask", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#queuemicrotaskcallback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-global:queueMicrotask", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + } + } + }, + { + "id": "globals:1b96b651b46c", + "chapter": "globals", + "label": "require()", + "signature": "`require()`", + "apiSymbol": "require", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#require", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:globals", + "tests": [] + } + } + }, + { + "id": "globals:482c12cf48d3", + "chapter": "globals", + "label": "setImmediate(callback[, ...args])", + "signature": "`setImmediate(callback[, ...args])`", + "apiSymbol": "setImmediate", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#setimmediatecallback-args", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:setImmediate", + "tests": [ + "tests/corpus/1804-timers-module.ts", + "tests/corpus/1805-timer-callback-args.ts", + "tests/corpus/2093-timers-promises.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-npm-global:setImmediate", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + } + } + }, + { + "id": "globals:e65f234079c9", + "chapter": "globals", + "label": "setInterval(callback, delay[, ...args])", + "signature": "`setInterval(callback, delay[, ...args])`", + "apiSymbol": "setInterval", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#setintervalcallback-delay-args", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:setInterval", + "tests": [ + "tests/corpus/1804-timers-module.ts", + "tests/corpus/1805-timer-callback-args.ts", + "tests/corpus/2093-timers-promises.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-global:setInterval", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + } + } + }, + { + "id": "globals:bed5b9832d30", + "chapter": "globals", + "label": "setTimeout(callback, delay[, ...args])", + "signature": "`setTimeout(callback, delay[, ...args])`", + "apiSymbol": "setTimeout", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#settimeoutcallback-delay-args", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:setTimeout", + "tests": [ + "tests/corpus/1804-timers-module.ts", + "tests/corpus/1805-timer-callback-args.ts", + "tests/corpus/2093-timers-promises.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-global:setTimeout", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + } + } + }, + { + "id": "globals:609a4c1f4306", + "chapter": "globals", + "label": "structuredClone(value[, options])", + "signature": "`structuredClone(value[, options])`", + "apiSymbol": "structuredClone", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#structuredclonevalue-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-global:structuredClone", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + } + } + }, + { + "id": "globals:64abdef12c10", + "chapter": "globals", + "label": "__dirname", + "signature": "`__dirname`", + "apiSymbol": "__dirname", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#__dirname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:globals", + "tests": [] + } + } + }, + { + "id": "globals:ae2fd91a032e", + "chapter": "globals", + "label": "__filename", + "signature": "`__filename`", + "apiSymbol": "__filename", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#__filename", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:globals", + "tests": [] + } + } + }, + { + "id": "globals:3e877d17013f", + "chapter": "globals", + "label": "console", + "signature": "`console`", + "apiSymbol": "console", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#console", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:globals", + "tests": [] + } + } + }, + { + "id": "globals:e589e2084522", + "chapter": "globals", + "label": "crypto", + "signature": "`crypto`", + "apiSymbol": "crypto", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#crypto", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:globals", + "tests": [] + } + } + }, + { + "id": "globals:21beec880090", + "chapter": "globals", + "label": "exports", + "signature": "`exports`", + "apiSymbol": "exports", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#exports", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:globals", + "tests": [] + } + } + }, + { + "id": "globals:f0011d8c00c8", + "chapter": "globals", + "label": "fetch", + "signature": "`fetch`", + "apiSymbol": "fetch", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#fetch", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-feature:globals.fetch", + "tests": [ + "tests/harness/fetch-conformance.test.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:globals", + "tests": [] + } + } + }, + { + "id": "globals:7631b7edee96", + "chapter": "globals", + "label": "global", + "signature": "`global`", + "apiSymbol": "global", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#global", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy. Use [`globalThis`][] instead.", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:globals", + "tests": [] + } + } + }, + { + "id": "globals:0a45bbc44df3", + "chapter": "globals", + "label": "localStorage", + "signature": "`localStorage`", + "apiSymbol": "localStorage", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#localstorage", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate. Enable this API with [`--experimental-webstorage`][].", + "inherited": false + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:globals", + "tests": [] + } + } + }, + { + "id": "globals:d7f1044c33e6", + "chapter": "globals", + "label": "module", + "signature": "`module`", + "apiSymbol": "module", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#module", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:globals", + "tests": [] + } + } + }, + { + "id": "globals:3386121a2393", + "chapter": "globals", + "label": "navigator", + "signature": "`navigator`", + "apiSymbol": "navigator", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#navigator", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development. Disable this API with the [`--no-experimental-global-navigator`][] CLI flag.", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:globals", + "tests": [] + } + } + }, + { + "id": "globals:7fb795acad1e", + "chapter": "globals", + "label": "hardwareConcurrency", + "signature": "`hardwareConcurrency` Type: {number}", + "apiSymbol": "hardwareConcurrency", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#navigator", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development. Disable this API with the [`--no-experimental-global-navigator`][] CLI flag.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:globals", + "tests": [] + } + } + }, + { + "id": "globals:a8d356fae78b", + "chapter": "globals", + "label": "language", + "signature": "`language` Type: {string}", + "apiSymbol": "language", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#navigator", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development. Disable this API with the [`--no-experimental-global-navigator`][] CLI flag.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:globals", + "tests": [] + } + } + }, + { + "id": "globals:0f132fcbba37", + "chapter": "globals", + "label": "languages", + "signature": "`languages` Type: {string\\[]}", + "apiSymbol": "languages", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#navigator", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development. Disable this API with the [`--no-experimental-global-navigator`][] CLI flag.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:globals", + "tests": [] + } + } + }, + { + "id": "globals:d2393015164b", + "chapter": "globals", + "label": "navigator.locks", + "signature": "`navigator.locks`", + "apiSymbol": "navigator.locks", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#navigatorlocks", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:globals", + "tests": [] + } + } + }, + { + "id": "globals:d386eaf756b4", + "chapter": "globals", + "label": "platform", + "signature": "`platform` Type: {string}", + "apiSymbol": "platform", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#navigator", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development. Disable this API with the [`--no-experimental-global-navigator`][] CLI flag.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:globals", + "tests": [] + } + } + }, + { + "id": "globals:fc0a32e8c26f", + "chapter": "globals", + "label": "userAgent", + "signature": "`userAgent` Type: {string}", + "apiSymbol": "userAgent", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#navigator", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development. Disable this API with the [`--no-experimental-global-navigator`][] CLI flag.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:globals", + "tests": [] + } + } + }, + { + "id": "globals:b412bf9a456d", + "chapter": "globals", + "label": "performance", + "signature": "`performance`", + "apiSymbol": "performance", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#performance", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:globals", + "tests": [] + } + } + }, + { + "id": "globals:2e74aa321feb", + "chapter": "globals", + "label": "process", + "signature": "`process`", + "apiSymbol": "process", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#process", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:globals", + "tests": [] + } + } + }, + { + "id": "globals:468e2e550926", + "chapter": "globals", + "label": "sessionStorage", + "signature": "`sessionStorage`", + "apiSymbol": "sessionStorage", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/globals.html#sessionstorage", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate. Enable this API with [`--experimental-webstorage`][].", + "inherited": false + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:globals", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:globals", + "tests": [] + } + } + }, + { + "id": "http:d88367cab5af", + "chapter": "http", + "label": "NO_PROXY", + "signature": "`NO_PROXY` Format", + "apiSymbol": "NO_PROXY", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#no_proxy-format", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:50e7b858b0c8", + "chapter": "http", + "label": "http.Agent", + "signature": "Class: `http.Agent`", + "apiSymbol": "http.Agent", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpagent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:http.Agent", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + } + } + }, + { + "id": "http:b54cc6bd538f", + "chapter": "http", + "label": "agent.createConnection(options[, callback])", + "signature": "`agent.createConnection(options[, callback])`", + "apiSymbol": "agent.createConnection", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#agentcreateconnectionoptions-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:4b8e229664ee", + "chapter": "http", + "label": "agent.keepSocketAlive(socket)", + "signature": "`agent.keepSocketAlive(socket)`", + "apiSymbol": "agent.keepSocketAlive", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#agentkeepsocketalivesocket", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:03f55f9e9545", + "chapter": "http", + "label": "agent.reuseSocket(socket, request)", + "signature": "`agent.reuseSocket(socket, request)`", + "apiSymbol": "agent.reuseSocket", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#agentreusesocketsocket-request", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:4412054a1c94", + "chapter": "http", + "label": "agent.destroy()", + "signature": "`agent.destroy()`", + "apiSymbol": "agent.destroy", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#agentdestroy", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:http.agent.destroy", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + } + } + }, + { + "id": "http:9dcbe1834859", + "chapter": "http", + "label": "agent.getName([options])", + "signature": "`agent.getName([options])`", + "apiSymbol": "agent.getName", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#agentgetnameoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:f893782f02ad", + "chapter": "http", + "label": "freeSockets", + "signature": "`freeSockets` Type: {Object}", + "apiSymbol": "freeSockets", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpagent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:633e1b32c473", + "chapter": "http", + "label": "maxFreeSockets", + "signature": "`maxFreeSockets` Type: {number}", + "apiSymbol": "maxFreeSockets", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpagent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:d7fccee3bcd1", + "chapter": "http", + "label": "maxSockets", + "signature": "`maxSockets` Type: {number}", + "apiSymbol": "maxSockets", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpagent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:4465848a997b", + "chapter": "http", + "label": "maxTotalSockets", + "signature": "`maxTotalSockets` Type: {number}", + "apiSymbol": "maxTotalSockets", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpagent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:08e346d54bbd", + "chapter": "http", + "label": "requests", + "signature": "`requests` Type: {Object}", + "apiSymbol": "requests", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpagent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:83aa2fca28da", + "chapter": "http", + "label": "sockets", + "signature": "`sockets` Type: {Object}", + "apiSymbol": "sockets", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpagent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:508791d1190a", + "chapter": "http", + "label": "http.ClientRequest", + "signature": "Class: `http.ClientRequest`", + "apiSymbol": "http.ClientRequest", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpclientrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:http.ClientRequest", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + } + } + }, + { + "id": "http:699bd7ca4c9d", + "chapter": "http", + "label": "request.abort()", + "signature": "`request.abort()`", + "apiSymbol": "request.abort", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#requestabort", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Use [`request.destroy()`][] instead.", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:http.request.abort", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + } + } + }, + { + "id": "http:d887741bdc1c", + "chapter": "http", + "label": "request.cork()", + "signature": "`request.cork()`", + "apiSymbol": "request.cork", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#requestcork", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:341fa63e40e0", + "chapter": "http", + "label": "request.end([data[, encoding]][, callback])", + "signature": "`request.end([data[, encoding]][, callback])`", + "apiSymbol": "request.end", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#requestenddata-encoding-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:request.end", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:http.request.end", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + } + } + }, + { + "id": "http:e1e900929f5e", + "chapter": "http", + "label": "request.destroy([error])", + "signature": "`request.destroy([error])`", + "apiSymbol": "request.destroy", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#requestdestroyerror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:request.destroy", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:http.request.destroy", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + } + } + }, + { + "id": "http:c97b29ba514a", + "chapter": "http", + "label": "destroyed", + "signature": "`destroyed` Type: {boolean}", + "apiSymbol": "destroyed", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#requestdestroyerror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:74853b35d31e", + "chapter": "http", + "label": "request.flushHeaders()", + "signature": "`request.flushHeaders()`", + "apiSymbol": "request.flushHeaders", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#requestflushheaders", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:http.request.flushHeaders", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + } + } + }, + { + "id": "http:86b569e78a9d", + "chapter": "http", + "label": "request.getHeader(name)", + "signature": "`request.getHeader(name)`", + "apiSymbol": "request.getHeader", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#requestgetheadername", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:http.request.getHeader", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + } + } + }, + { + "id": "http:25809046eb60", + "chapter": "http", + "label": "request.getHeaderNames()", + "signature": "`request.getHeaderNames()`", + "apiSymbol": "request.getHeaderNames", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#requestgetheadernames", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:f9b09cd05350", + "chapter": "http", + "label": "request.getHeaders()", + "signature": "`request.getHeaders()`", + "apiSymbol": "request.getHeaders", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#requestgetheaders", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:cc38a70a8c04", + "chapter": "http", + "label": "request.getRawHeaderNames()", + "signature": "`request.getRawHeaderNames()`", + "apiSymbol": "request.getRawHeaderNames", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#requestgetrawheadernames", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:bc74800d10ed", + "chapter": "http", + "label": "request.hasHeader(name)", + "signature": "`request.hasHeader(name)`", + "apiSymbol": "request.hasHeader", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#requesthasheadername", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:b8ffaf5d1736", + "chapter": "http", + "label": "request.removeHeader(name)", + "signature": "`request.removeHeader(name)`", + "apiSymbol": "request.removeHeader", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#requestremoveheadername", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:http.request.removeHeader", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + } + } + }, + { + "id": "http:81ce1c376f47", + "chapter": "http", + "label": "request.setHeader(name, value)", + "signature": "`request.setHeader(name, value)`", + "apiSymbol": "request.setHeader", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#requestsetheadername-value", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:http.request.setHeader", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + } + } + }, + { + "id": "http:c0e36f818882", + "chapter": "http", + "label": "request.setNoDelay([noDelay])", + "signature": "`request.setNoDelay([noDelay])`", + "apiSymbol": "request.setNoDelay", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#requestsetnodelaynodelay", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:68a58047a546", + "chapter": "http", + "label": "request.setSocketKeepAlive([enable][, initialDelay])", + "signature": "`request.setSocketKeepAlive([enable][, initialDelay])`", + "apiSymbol": "request.setSocketKeepAlive", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#requestsetsocketkeepaliveenable-initialdelay", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:25eed7e38e70", + "chapter": "http", + "label": "request.setTimeout(timeout[, callback])", + "signature": "`request.setTimeout(timeout[, callback])`", + "apiSymbol": "request.setTimeout", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#requestsettimeouttimeout-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:request.setTimeout", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:http.request.setTimeout", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + } + } + }, + { + "id": "http:5dda2e8e4c17", + "chapter": "http", + "label": "request.uncork()", + "signature": "`request.uncork()`", + "apiSymbol": "request.uncork", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#requestuncork", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:e37d891a9deb", + "chapter": "http", + "label": "request.write(chunk[, encoding][, callback])", + "signature": "`request.write(chunk[, encoding][, callback])`", + "apiSymbol": "request.write", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#requestwritechunk-encoding-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:request.write", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:http.request.write", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + } + } + }, + { + "id": "http:e59b03f6f36f", + "chapter": "http", + "label": "aborted", + "signature": "`aborted` Type: {boolean}", + "apiSymbol": "aborted", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpclientrequest", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. Check [`request.destroyed`][] instead.", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:3faa2253d444", + "chapter": "http", + "label": "connection", + "signature": "`connection` Type: {stream.Duplex}", + "apiSymbol": "connection", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpclientrequest", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. Use [`request.socket`][].", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:5615544092c0", + "chapter": "http", + "label": "finished", + "signature": "`finished` Type: {boolean}", + "apiSymbol": "finished", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpclientrequest", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. Use [`request.writableEnded`][].", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:faf8578bc834", + "chapter": "http", + "label": "maxHeadersCount", + "signature": "`maxHeadersCount` Type: {number} **Default:** `2000`", + "apiSymbol": "maxHeadersCount", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpclientrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:a0535d8905bf", + "chapter": "http", + "label": "path", + "signature": "`path` Type: {string} The request path.", + "apiSymbol": "path", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpclientrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:7b4e9ea6e7a0", + "chapter": "http", + "label": "method", + "signature": "`method` Type: {string} The request method.", + "apiSymbol": "method", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpclientrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:2f11ef94eff8", + "chapter": "http", + "label": "host", + "signature": "`host` Type: {string} The request host.", + "apiSymbol": "host", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpclientrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:35955276d318", + "chapter": "http", + "label": "protocol", + "signature": "`protocol` Type: {string} The request protocol.", + "apiSymbol": "protocol", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpclientrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:9ca269feac75", + "chapter": "http", + "label": "reusedSocket", + "signature": "`reusedSocket` Type: {boolean} Whether the request is send through a reused socket.", + "apiSymbol": "reusedSocket", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpclientrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:96df713b3e0c", + "chapter": "http", + "label": "socket", + "signature": "`socket` Type: {stream.Duplex}", + "apiSymbol": "socket", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpclientrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:74c2bb983dc2", + "chapter": "http", + "label": "writableEnded", + "signature": "`writableEnded` Type: {boolean}", + "apiSymbol": "writableEnded", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpclientrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:fa5bc7118fe2", + "chapter": "http", + "label": "writableFinished", + "signature": "`writableFinished` Type: {boolean}", + "apiSymbol": "writableFinished", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpclientrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:ea5e122663f9", + "chapter": "http", + "label": "'abort'", + "signature": "Event: `'abort'`", + "apiSymbol": "'abort'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#event-abort", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. Listen for the `'close'` event instead.", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:35c1dba0105b", + "chapter": "http", + "label": "'close'", + "signature": "Event: `'close'`", + "apiSymbol": "'close'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#event-close", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:73b6cf571d34", + "chapter": "http", + "label": "'connect'", + "signature": "Event: `'connect'`", + "apiSymbol": "'connect'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#event-connect", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:38a9f64d7ac7", + "chapter": "http", + "label": "'continue'", + "signature": "Event: `'continue'`", + "apiSymbol": "'continue'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#event-continue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:9d0cbf420019", + "chapter": "http", + "label": "'finish'", + "signature": "Event: `'finish'`", + "apiSymbol": "'finish'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#event-finish", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:6fe7a6f0d989", + "chapter": "http", + "label": "'information'", + "signature": "Event: `'information'`", + "apiSymbol": "'information'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#event-information", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:320a817d6c5f", + "chapter": "http", + "label": "'response'", + "signature": "Event: `'response'`", + "apiSymbol": "'response'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#event-response", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:668a203db85a", + "chapter": "http", + "label": "'socket'", + "signature": "Event: `'socket'`", + "apiSymbol": "'socket'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#event-socket", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:9d754f9b95de", + "chapter": "http", + "label": "'timeout'", + "signature": "Event: `'timeout'`", + "apiSymbol": "'timeout'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#event-timeout", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:5427e767fb53", + "chapter": "http", + "label": "'upgrade'", + "signature": "Event: `'upgrade'`", + "apiSymbol": "'upgrade'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#event-upgrade", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:fba3d102ff13", + "chapter": "http", + "label": "http.Server", + "signature": "Class: `http.Server`", + "apiSymbol": "http.Server", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:http.Server", + "tests": [] + } + } + }, + { + "id": "http:82652eac4646", + "chapter": "http", + "label": "server.close([callback])", + "signature": "`server.close([callback])`", + "apiSymbol": "server.close", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#serverclosecallback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:server.close", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:8c58d9380210", + "chapter": "http", + "label": "server.closeAllConnections()", + "signature": "`server.closeAllConnections()`", + "apiSymbol": "server.closeAllConnections", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#servercloseallconnections", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:c09ff35929a5", + "chapter": "http", + "label": "server.closeIdleConnections()", + "signature": "`server.closeIdleConnections()`", + "apiSymbol": "server.closeIdleConnections", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#servercloseidleconnections", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:8fd12000bf0d", + "chapter": "http", + "label": "server.listen()", + "signature": "`server.listen()`", + "apiSymbol": "server.listen", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#serverlisten", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:server.listen", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:0b835344503f", + "chapter": "http", + "label": "server.setTimeout([msecs][, callback])", + "signature": "`server.setTimeout([msecs][, callback])`", + "apiSymbol": "server.setTimeout", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#serversettimeoutmsecs-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:bf7aa520d261", + "chapter": "http", + "label": "server[Symbol.asyncDispose]()", + "signature": "`server[Symbol.asyncDispose]()`", + "apiSymbol": "server", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#serversymbolasyncdispose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:fdb7ed8f0e78", + "chapter": "http", + "label": "headersTimeout", + "signature": "`headersTimeout` Type: {number} **Default:** The minimum between [`server.requestTimeout`][] or `60000`.", + "apiSymbol": "headersTimeout", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:headersTimeout", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:010bd8804efe", + "chapter": "http", + "label": "listening", + "signature": "`listening` Type: {boolean} Indicates whether or not the server is listening for connections.", + "apiSymbol": "listening", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:2b341e7f7ddb", + "chapter": "http", + "label": "maxHeadersCount", + "signature": "`maxHeadersCount` Type: {number} **Default:** `2000`", + "apiSymbol": "maxHeadersCount", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:ab29ce0fdbf0", + "chapter": "http", + "label": "requestTimeout", + "signature": "`requestTimeout` Type: {number} **Default:** `300000`", + "apiSymbol": "requestTimeout", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:requestTimeout", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:42c7fab8ca10", + "chapter": "http", + "label": "maxRequestsPerSocket", + "signature": "`maxRequestsPerSocket` Type: {number} Requests per socket. **Default:** 0 (no limit)", + "apiSymbol": "maxRequestsPerSocket", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:5346f7cf76ef", + "chapter": "http", + "label": "timeout", + "signature": "`timeout` Type: {number} Timeout in milliseconds. **Default:** 0 (no timeout)", + "apiSymbol": "timeout", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:timeout", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:9454e5061309", + "chapter": "http", + "label": "keepAliveTimeout", + "signature": "`keepAliveTimeout` Type: {number} Timeout in milliseconds. **Default:** `5000` (5 seconds).", + "apiSymbol": "keepAliveTimeout", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:keepAliveTimeout", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:dd7fc0b08678", + "chapter": "http", + "label": "keepAliveTimeoutBuffer", + "signature": "`keepAliveTimeoutBuffer` Type: {number} Timeout in milliseconds. **Default:** `1000` (1 second).", + "apiSymbol": "keepAliveTimeoutBuffer", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:keepAliveTimeoutBuffer", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:04e4c748e66c", + "chapter": "http", + "label": "'checkContinue'", + "signature": "Event: `'checkContinue'`", + "apiSymbol": "'checkContinue'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#event-checkcontinue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:94779f37e2b9", + "chapter": "http", + "label": "'checkExpectation'", + "signature": "Event: `'checkExpectation'`", + "apiSymbol": "'checkExpectation'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#event-checkexpectation", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:578453140bad", + "chapter": "http", + "label": "'clientError'", + "signature": "Event: `'clientError'`", + "apiSymbol": "'clientError'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#event-clienterror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:4f972cc3ace1", + "chapter": "http", + "label": "'close'", + "signature": "Event: `'close'`", + "apiSymbol": "'close'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#event-close_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:b8c1116474f8", + "chapter": "http", + "label": "'connect'", + "signature": "Event: `'connect'`", + "apiSymbol": "'connect'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#event-connect_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:b7cecdb6b204", + "chapter": "http", + "label": "'connection'", + "signature": "Event: `'connection'`", + "apiSymbol": "'connection'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#event-connection", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:c80ae5a2d83b", + "chapter": "http", + "label": "'dropRequest'", + "signature": "Event: `'dropRequest'`", + "apiSymbol": "'dropRequest'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#event-droprequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:339af3bba7c2", + "chapter": "http", + "label": "'request'", + "signature": "Event: `'request'`", + "apiSymbol": "'request'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#event-request", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:a2483d6ba775", + "chapter": "http", + "label": "'upgrade'", + "signature": "Event: `'upgrade'`", + "apiSymbol": "'upgrade'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#event-upgrade_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:6e7394163abe", + "chapter": "http", + "label": "http.ServerResponse", + "signature": "Class: `http.ServerResponse`", + "apiSymbol": "http.ServerResponse", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpserverresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:5d49a750aaa2", + "chapter": "http", + "label": "response.addTrailers(headers)", + "signature": "`response.addTrailers(headers)`", + "apiSymbol": "response.addTrailers", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#responseaddtrailersheaders", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:24f6cee09a10", + "chapter": "http", + "label": "response.cork()", + "signature": "`response.cork()`", + "apiSymbol": "response.cork", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#responsecork", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:dff9a3ca561c", + "chapter": "http", + "label": "response.end([data[, encoding]][, callback])", + "signature": "`response.end([data[, encoding]][, callback])`", + "apiSymbol": "response.end", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#responseenddata-encoding-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:response.end", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:a0ccf487a6bd", + "chapter": "http", + "label": "response.flushHeaders()", + "signature": "`response.flushHeaders()`", + "apiSymbol": "response.flushHeaders", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#responseflushheaders", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:aad2e291d9d6", + "chapter": "http", + "label": "response.getHeader(name)", + "signature": "`response.getHeader(name)`", + "apiSymbol": "response.getHeader", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#responsegetheadername", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:response.getHeader", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:b56d71384037", + "chapter": "http", + "label": "response.getHeaderNames()", + "signature": "`response.getHeaderNames()`", + "apiSymbol": "response.getHeaderNames", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#responsegetheadernames", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:96fd543306ea", + "chapter": "http", + "label": "response.getHeaders()", + "signature": "`response.getHeaders()`", + "apiSymbol": "response.getHeaders", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#responsegetheaders", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:c8a4bfdfc4d0", + "chapter": "http", + "label": "response.hasHeader(name)", + "signature": "`response.hasHeader(name)`", + "apiSymbol": "response.hasHeader", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#responsehasheadername", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:response.hasHeader", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:647c835d4451", + "chapter": "http", + "label": "response.removeHeader(name)", + "signature": "`response.removeHeader(name)`", + "apiSymbol": "response.removeHeader", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#responseremoveheadername", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:response.removeHeader", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:fdf576d37b29", + "chapter": "http", + "label": "response.setHeader(name, value)", + "signature": "`response.setHeader(name, value)`", + "apiSymbol": "response.setHeader", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#responsesetheadername-value", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:response.setHeader", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:9386b96109c1", + "chapter": "http", + "label": "response.setTimeout(msecs[, callback])", + "signature": "`response.setTimeout(msecs[, callback])`", + "apiSymbol": "response.setTimeout", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#responsesettimeoutmsecs-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:d3f843e2124c", + "chapter": "http", + "label": "response.uncork()", + "signature": "`response.uncork()`", + "apiSymbol": "response.uncork", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#responseuncork", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:c5cb551c2ee7", + "chapter": "http", + "label": "response.write(chunk[, encoding][, callback])", + "signature": "`response.write(chunk[, encoding][, callback])`", + "apiSymbol": "response.write", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#responsewritechunk-encoding-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:response.write", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:143590280ee6", + "chapter": "http", + "label": "response.writeContinue()", + "signature": "`response.writeContinue()`", + "apiSymbol": "response.writeContinue", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#responsewritecontinue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:57b2dd383796", + "chapter": "http", + "label": "response.writeEarlyHints(hints[, callback])", + "signature": "`response.writeEarlyHints(hints[, callback])`", + "apiSymbol": "response.writeEarlyHints", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#responsewriteearlyhintshints-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:4979906727da", + "chapter": "http", + "label": "response.writeHead(statusCode[, statusMessage][, headers])", + "signature": "`response.writeHead(statusCode[, statusMessage][, headers])`", + "apiSymbol": "response.writeHead", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#responsewriteheadstatuscode-statusmessage-headers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:response.writeHead", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:66f1ca12e0bb", + "chapter": "http", + "label": "response.writeProcessing()", + "signature": "`response.writeProcessing()`", + "apiSymbol": "response.writeProcessing", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#responsewriteprocessing", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:12beff0a3bb6", + "chapter": "http", + "label": "connection", + "signature": "`connection` Type: {stream.Duplex}", + "apiSymbol": "connection", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpserverresponse", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. Use [`response.socket`][].", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:38e3aac34721", + "chapter": "http", + "label": "finished", + "signature": "`finished` Type: {boolean}", + "apiSymbol": "finished", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpserverresponse", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. Use [`response.writableEnded`][].", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:7a94e9340df2", + "chapter": "http", + "label": "headersSent", + "signature": "`headersSent` Type: {boolean}", + "apiSymbol": "headersSent", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpserverresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:4a53204d9649", + "chapter": "http", + "label": "req", + "signature": "`req` Type: {http.IncomingMessage}", + "apiSymbol": "req", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpserverresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:fa11ab31f0e6", + "chapter": "http", + "label": "sendDate", + "signature": "`sendDate` Type: {boolean}", + "apiSymbol": "sendDate", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpserverresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:57050d6e0076", + "chapter": "http", + "label": "socket", + "signature": "`socket` Type: {stream.Duplex}", + "apiSymbol": "socket", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpserverresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:bc826f3bcd62", + "chapter": "http", + "label": "statusCode", + "signature": "`statusCode` Type: {number} **Default:** `200`", + "apiSymbol": "statusCode", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpserverresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:e00df4284589", + "chapter": "http", + "label": "statusMessage", + "signature": "`statusMessage` Type: {string}", + "apiSymbol": "statusMessage", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpserverresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:5cbc98eb7f57", + "chapter": "http", + "label": "strictContentLength", + "signature": "`strictContentLength` Type: {boolean} **Default:** `false`", + "apiSymbol": "strictContentLength", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpserverresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:be6478ef1ac5", + "chapter": "http", + "label": "writableEnded", + "signature": "`writableEnded` Type: {boolean}", + "apiSymbol": "writableEnded", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpserverresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:ed88fea9d382", + "chapter": "http", + "label": "writableFinished", + "signature": "`writableFinished` Type: {boolean}", + "apiSymbol": "writableFinished", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpserverresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:22adc7f45501", + "chapter": "http", + "label": "'close'", + "signature": "Event: `'close'`", + "apiSymbol": "'close'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#event-close_2", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:132a0664efe7", + "chapter": "http", + "label": "'finish'", + "signature": "Event: `'finish'`", + "apiSymbol": "'finish'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#event-finish_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:5551fd92152f", + "chapter": "http", + "label": "http.IncomingMessage", + "signature": "Class: `http.IncomingMessage`", + "apiSymbol": "http.IncomingMessage", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpincomingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:http.IncomingMessage", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + } + } + }, + { + "id": "http:6e8b5aa393f9", + "chapter": "http", + "label": "message.destroy([error])", + "signature": "`message.destroy([error])`", + "apiSymbol": "message.destroy", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#messagedestroyerror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:http.message.destroy", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + } + } + }, + { + "id": "http:12b0e718b202", + "chapter": "http", + "label": "message.setTimeout(msecs[, callback])", + "signature": "`message.setTimeout(msecs[, callback])`", + "apiSymbol": "message.setTimeout", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#messagesettimeoutmsecs-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:f3370b31b459", + "chapter": "http", + "label": "aborted", + "signature": "`aborted` Type: {boolean}", + "apiSymbol": "aborted", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpincomingmessage", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. Check `message.destroyed` from <stream.Readable>.", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:a6f5bff3bacd", + "chapter": "http", + "label": "complete", + "signature": "`complete` Type: {boolean}", + "apiSymbol": "complete", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpincomingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:161bfd79afc5", + "chapter": "http", + "label": "message.connection", + "signature": "`message.connection`", + "apiSymbol": "message.connection", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#messageconnection", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. Use [`message.socket`][].", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:6ea8d1d67963", + "chapter": "http", + "label": "headers", + "signature": "`headers` Type: {Object}", + "apiSymbol": "headers", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpincomingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:7a1651d7dcd8", + "chapter": "http", + "label": "headersDistinct", + "signature": "`headersDistinct` Type: {Object}", + "apiSymbol": "headersDistinct", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpincomingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:e8094e96df7a", + "chapter": "http", + "label": "httpVersion", + "signature": "`httpVersion` Type: {string}", + "apiSymbol": "httpVersion", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpincomingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:7fc5fcb57970", + "chapter": "http", + "label": "method", + "signature": "`method` Type: {string}", + "apiSymbol": "method", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpincomingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:c1409aafdd68", + "chapter": "http", + "label": "rawHeaders", + "signature": "`rawHeaders` Type: {string\\[]}", + "apiSymbol": "rawHeaders", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpincomingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:bf10950dea48", + "chapter": "http", + "label": "rawTrailers", + "signature": "`rawTrailers` Type: {string\\[]}", + "apiSymbol": "rawTrailers", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpincomingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:63ef1a2fb4c2", + "chapter": "http", + "label": "socket", + "signature": "`socket` Type: {stream.Duplex}", + "apiSymbol": "socket", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpincomingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:d11963648b05", + "chapter": "http", + "label": "statusCode", + "signature": "`statusCode` Type: {number}", + "apiSymbol": "statusCode", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpincomingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:86be6f46681e", + "chapter": "http", + "label": "statusMessage", + "signature": "`statusMessage` Type: {string}", + "apiSymbol": "statusMessage", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpincomingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:0a0f06df64f2", + "chapter": "http", + "label": "trailers", + "signature": "`trailers` Type: {Object}", + "apiSymbol": "trailers", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpincomingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:a28c536aa46c", + "chapter": "http", + "label": "trailersDistinct", + "signature": "`trailersDistinct` Type: {Object}", + "apiSymbol": "trailersDistinct", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpincomingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:2c7de66edc4c", + "chapter": "http", + "label": "url", + "signature": "`url` Type: {string}", + "apiSymbol": "url", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpincomingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:a0087d39beb4", + "chapter": "http", + "label": "'aborted'", + "signature": "Event: `'aborted'`", + "apiSymbol": "'aborted'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#event-aborted", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. Listen for `'close'` event instead.", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:56bfbfa42cb2", + "chapter": "http", + "label": "'close'", + "signature": "Event: `'close'`", + "apiSymbol": "'close'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#event-close_3", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:d8c91ef893fa", + "chapter": "http", + "label": "http.OutgoingMessage", + "signature": "Class: `http.OutgoingMessage`", + "apiSymbol": "http.OutgoingMessage", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpoutgoingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:613d68e8030b", + "chapter": "http", + "label": "outgoingMessage.addTrailers(headers)", + "signature": "`outgoingMessage.addTrailers(headers)`", + "apiSymbol": "outgoingMessage.addTrailers", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#outgoingmessageaddtrailersheaders", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:162aa5d0fb74", + "chapter": "http", + "label": "outgoingMessage.appendHeader(name, value)", + "signature": "`outgoingMessage.appendHeader(name, value)`", + "apiSymbol": "outgoingMessage.appendHeader", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#outgoingmessageappendheadername-value", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:ae27089d326b", + "chapter": "http", + "label": "outgoingMessage.cork()", + "signature": "`outgoingMessage.cork()`", + "apiSymbol": "outgoingMessage.cork", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#outgoingmessagecork", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:7bb2ca93136d", + "chapter": "http", + "label": "outgoingMessage.destroy([error])", + "signature": "`outgoingMessage.destroy([error])`", + "apiSymbol": "outgoingMessage.destroy", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#outgoingmessagedestroyerror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:f6cd0e4e4ab4", + "chapter": "http", + "label": "outgoingMessage.end(chunk[, encoding][, callback])", + "signature": "`outgoingMessage.end(chunk[, encoding][, callback])`", + "apiSymbol": "outgoingMessage.end", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#outgoingmessageendchunk-encoding-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:c570c0e57047", + "chapter": "http", + "label": "outgoingMessage.flushHeaders()", + "signature": "`outgoingMessage.flushHeaders()`", + "apiSymbol": "outgoingMessage.flushHeaders", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#outgoingmessageflushheaders", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:7fe945b2f992", + "chapter": "http", + "label": "outgoingMessage.getHeader(name)", + "signature": "`outgoingMessage.getHeader(name)`", + "apiSymbol": "outgoingMessage.getHeader", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#outgoingmessagegetheadername", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:a8b1da062d05", + "chapter": "http", + "label": "outgoingMessage.getHeaderNames()", + "signature": "`outgoingMessage.getHeaderNames()`", + "apiSymbol": "outgoingMessage.getHeaderNames", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#outgoingmessagegetheadernames", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:27f0008f0617", + "chapter": "http", + "label": "outgoingMessage.getHeaders()", + "signature": "`outgoingMessage.getHeaders()`", + "apiSymbol": "outgoingMessage.getHeaders", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#outgoingmessagegetheaders", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:08b63b7ee849", + "chapter": "http", + "label": "outgoingMessage.hasHeader(name)", + "signature": "`outgoingMessage.hasHeader(name)`", + "apiSymbol": "outgoingMessage.hasHeader", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#outgoingmessagehasheadername", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:ce45c25f3e5f", + "chapter": "http", + "label": "outgoingMessage.pipe()", + "signature": "`outgoingMessage.pipe()`", + "apiSymbol": "outgoingMessage.pipe", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#outgoingmessagepipe", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:cf7cc98750c4", + "chapter": "http", + "label": "outgoingMessage.removeHeader(name)", + "signature": "`outgoingMessage.removeHeader(name)`", + "apiSymbol": "outgoingMessage.removeHeader", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#outgoingmessageremoveheadername", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:25f35443d760", + "chapter": "http", + "label": "outgoingMessage.setHeader(name, value)", + "signature": "`outgoingMessage.setHeader(name, value)`", + "apiSymbol": "outgoingMessage.setHeader", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#outgoingmessagesetheadername-value", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:d3a5b2e0adb8", + "chapter": "http", + "label": "outgoingMessage.setHeaders(headers)", + "signature": "`outgoingMessage.setHeaders(headers)`", + "apiSymbol": "outgoingMessage.setHeaders", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#outgoingmessagesetheadersheaders", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:35c3b035a9c0", + "chapter": "http", + "label": "outgoingMessage.setTimeout(msecs[, callback])", + "signature": "`outgoingMessage.setTimeout(msecs[, callback])`", + "apiSymbol": "outgoingMessage.setTimeout", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#outgoingmessagesettimeoutmsecs-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:90c945912535", + "chapter": "http", + "label": "outgoingMessage.uncork()", + "signature": "`outgoingMessage.uncork()`", + "apiSymbol": "outgoingMessage.uncork", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#outgoingmessageuncork", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:8b618d8d7bd7", + "chapter": "http", + "label": "outgoingMessage.write(chunk[, encoding][, callback])", + "signature": "`outgoingMessage.write(chunk[, encoding][, callback])`", + "apiSymbol": "outgoingMessage.write", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#outgoingmessagewritechunk-encoding-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:c4e43e2764bf", + "chapter": "http", + "label": "outgoingMessage.connection", + "signature": "`outgoingMessage.connection`", + "apiSymbol": "outgoingMessage.connection", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#outgoingmessageconnection", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Use [`outgoingMessage.socket`][] instead.", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:85a27ee5cb25", + "chapter": "http", + "label": "headersSent", + "signature": "`headersSent` Type: {boolean}", + "apiSymbol": "headersSent", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpoutgoingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:fffe9369593f", + "chapter": "http", + "label": "socket", + "signature": "`socket` Type: {stream.Duplex}", + "apiSymbol": "socket", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpoutgoingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:6e147234a13d", + "chapter": "http", + "label": "writableCorked", + "signature": "`writableCorked` Type: {number}", + "apiSymbol": "writableCorked", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpoutgoingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:ad8f73a39719", + "chapter": "http", + "label": "writableEnded", + "signature": "`writableEnded` Type: {boolean}", + "apiSymbol": "writableEnded", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpoutgoingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:9a1edc22b0fc", + "chapter": "http", + "label": "writableFinished", + "signature": "`writableFinished` Type: {boolean}", + "apiSymbol": "writableFinished", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpoutgoingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:e50e0a0a819c", + "chapter": "http", + "label": "writableHighWaterMark", + "signature": "`writableHighWaterMark` Type: {number}", + "apiSymbol": "writableHighWaterMark", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpoutgoingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:04ff23acfecb", + "chapter": "http", + "label": "writableLength", + "signature": "`writableLength` Type: {number}", + "apiSymbol": "writableLength", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpoutgoingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:30eab20decda", + "chapter": "http", + "label": "writableObjectMode", + "signature": "`writableObjectMode` Type: {boolean}", + "apiSymbol": "writableObjectMode", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-httpoutgoingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:8edf4b5f7327", + "chapter": "http", + "label": "'drain'", + "signature": "Event: `'drain'`", + "apiSymbol": "'drain'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#event-drain", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:ea93acc37dc6", + "chapter": "http", + "label": "'finish'", + "signature": "Event: `'finish'`", + "apiSymbol": "'finish'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#event-finish_2", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:c3af63bc0c7f", + "chapter": "http", + "label": "'prefinish'", + "signature": "Event: `'prefinish'`", + "apiSymbol": "'prefinish'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#event-prefinish", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:76f05de80d85", + "chapter": "http", + "label": "WebSocket", + "signature": "Class: `WebSocket`", + "apiSymbol": "WebSocket", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#class-websocket", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:30aff27747f4", + "chapter": "http", + "label": "http.createServer([options][, requestListener])", + "signature": "`http.createServer([options][, requestListener])`", + "apiSymbol": "http.createServer", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#httpcreateserveroptions-requestlistener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:http.createServer", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:http.createServer", + "tests": [] + } + } + }, + { + "id": "http:7ea8ba3dee5b", + "chapter": "http", + "label": "http.get(options[, callback])", + "signature": "`http.get(options[, callback])`", + "apiSymbol": "http.get", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#httpgetoptions-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:http.get", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:http.get", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + } + } + }, + { + "id": "http:f811fa4ce2d6", + "chapter": "http", + "label": "http.get(url[, options][, callback])", + "signature": "`http.get(url[, options][, callback])`", + "apiSymbol": "http.get", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#httpgeturl-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:http.get", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:http.get", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + } + } + }, + { + "id": "http:32baf9e396dd", + "chapter": "http", + "label": "http.request(options[, callback])", + "signature": "`http.request(options[, callback])`", + "apiSymbol": "http.request", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#httprequestoptions-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:http.request", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:http.request", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + } + } + }, + { + "id": "http:e322a87c4c90", + "chapter": "http", + "label": "http.request(url[, options][, callback])", + "signature": "`http.request(url[, options][, callback])`", + "apiSymbol": "http.request", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#httprequesturl-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:http.request", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:http.request", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + } + } + }, + { + "id": "http:ffd08b3738f5", + "chapter": "http", + "label": "http.validateHeaderName(name[, label])", + "signature": "`http.validateHeaderName(name[, label])`", + "apiSymbol": "http.validateHeaderName", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#httpvalidateheadernamename-label", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:546a5b4ce764", + "chapter": "http", + "label": "http.validateHeaderValue(name, value)", + "signature": "`http.validateHeaderValue(name, value)`", + "apiSymbol": "http.validateHeaderValue", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#httpvalidateheadervaluename-value", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:af6c9693f43f", + "chapter": "http", + "label": "http.setMaxIdleHTTPParsers(max)", + "signature": "`http.setMaxIdleHTTPParsers(max)`", + "apiSymbol": "http.setMaxIdleHTTPParsers", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#httpsetmaxidlehttpparsersmax", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:8560905323e9", + "chapter": "http", + "label": "http.setGlobalProxyFromEnv([proxyEnv])", + "signature": "`http.setGlobalProxyFromEnv([proxyEnv])`", + "apiSymbol": "http.setGlobalProxyFromEnv", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html#httpsetglobalproxyfromenvproxyenv", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http:f66d2eaf2bc0", + "chapter": "http", + "label": "METHODS", + "signature": "`METHODS` Type: {string\\[]}", + "apiSymbol": "METHODS", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:http.METHODS", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + } + } + }, + { + "id": "http:6677a9ec0cc9", + "chapter": "http", + "label": "STATUS_CODES", + "signature": "`STATUS_CODES` Type: {Object}", + "apiSymbol": "STATUS_CODES", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:http.STATUS_CODES", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + } + } + }, + { + "id": "http:420a2f28f2fc", + "chapter": "http", + "label": "globalAgent", + "signature": "`globalAgent` Type: {http.Agent}", + "apiSymbol": "globalAgent", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:http.globalAgent", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + } + } + }, + { + "id": "http:8ee25cb4a690", + "chapter": "http", + "label": "maxHeaderSize", + "signature": "`maxHeaderSize` Type: {number}", + "apiSymbol": "maxHeaderSize", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http.html", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:http", + "tests": [] + } + } + }, + { + "id": "http2:6296dfa8e5d1", + "chapter": "http2", + "label": "Supporting the CONNECT method", + "signature": "Supporting the `CONNECT` method", + "apiSymbol": "CONNECT", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#supporting-the-connect-method", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:609e3d53a6b1", + "chapter": "http2", + "label": "The extended CONNECT protocol", + "signature": "The extended `CONNECT` protocol", + "apiSymbol": "CONNECT", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#the-extended-connect-protocol", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:8952daf4b40b", + "chapter": "http2", + "label": "Http2Session", + "signature": "Class: `Http2Session`", + "apiSymbol": "Http2Session", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-http2session", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:2823055151cf", + "chapter": "http2", + "label": "Http2Session", + "signature": "`Http2Session` and sockets", + "apiSymbol": "Http2Session", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#http2session-and-sockets", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:0ad816b9c85c", + "chapter": "http2", + "label": "http2session.close([callback])", + "signature": "`http2session.close([callback])`", + "apiSymbol": "http2session.close", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#http2sessionclosecallback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:f4b8c67ad381", + "chapter": "http2", + "label": "http2session.destroy([error][, code])", + "signature": "`http2session.destroy([error][, code])`", + "apiSymbol": "http2session.destroy", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#http2sessiondestroyerror-code", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:f4cbef218fa9", + "chapter": "http2", + "label": "http2session.goaway([code[, lastStreamID[, opaqueData]]])", + "signature": "`http2session.goaway([code[, lastStreamID[, opaqueData]]])`", + "apiSymbol": "http2session.goaway", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#http2sessiongoawaycode-laststreamid-opaquedata", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:cced6fa9ba62", + "chapter": "http2", + "label": "http2session.ping([payload, ]callback)", + "signature": "`http2session.ping([payload, ]callback)`", + "apiSymbol": "http2session.ping", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#http2sessionpingpayload-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:1f6c8cf81a35", + "chapter": "http2", + "label": "http2session.ref()", + "signature": "`http2session.ref()`", + "apiSymbol": "http2session.ref", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#http2sessionref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:725acf2f7140", + "chapter": "http2", + "label": "http2session.setLocalWindowSize(windowSize)", + "signature": "`http2session.setLocalWindowSize(windowSize)`", + "apiSymbol": "http2session.setLocalWindowSize", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#http2sessionsetlocalwindowsizewindowsize", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:0144a989d733", + "chapter": "http2", + "label": "http2session.setTimeout(msecs, callback)", + "signature": "`http2session.setTimeout(msecs, callback)`", + "apiSymbol": "http2session.setTimeout", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#http2sessionsettimeoutmsecs-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:92f25dc5bc9b", + "chapter": "http2", + "label": "http2session.settings([settings][, callback])", + "signature": "`http2session.settings([settings][, callback])`", + "apiSymbol": "http2session.settings", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#http2sessionsettingssettings-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:d63b0ac3df8b", + "chapter": "http2", + "label": "http2session.unref()", + "signature": "`http2session.unref()`", + "apiSymbol": "http2session.unref", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#http2sessionunref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:13821134cf25", + "chapter": "http2", + "label": "alpnProtocol", + "signature": "`alpnProtocol` Type: {string|undefined}", + "apiSymbol": "alpnProtocol", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-http2session", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:4fe09ce9cf4b", + "chapter": "http2", + "label": "closed", + "signature": "`closed` Type: {boolean}", + "apiSymbol": "closed", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-http2session", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:45446ad28641", + "chapter": "http2", + "label": "connecting", + "signature": "`connecting` Type: {boolean}", + "apiSymbol": "connecting", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-http2session", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:16fd13553e8b", + "chapter": "http2", + "label": "destroyed", + "signature": "`destroyed` Type: {boolean}", + "apiSymbol": "destroyed", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-http2session", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:bcc288bd6ac0", + "chapter": "http2", + "label": "encrypted", + "signature": "`encrypted` Type: {boolean|undefined}", + "apiSymbol": "encrypted", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-http2session", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:47cbe0a4952c", + "chapter": "http2", + "label": "localSettings", + "signature": "`localSettings` Type: {HTTP/2 Settings Object}", + "apiSymbol": "localSettings", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-http2session", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:8dd63a543d12", + "chapter": "http2", + "label": "originSet", + "signature": "`originSet` Type: {string\\[]|undefined}", + "apiSymbol": "originSet", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-http2session", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:5c51c1461256", + "chapter": "http2", + "label": "pendingSettingsAck", + "signature": "`pendingSettingsAck` Type: {boolean}", + "apiSymbol": "pendingSettingsAck", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-http2session", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:b2e54dd10443", + "chapter": "http2", + "label": "remoteSettings", + "signature": "`remoteSettings` Type: {HTTP/2 Settings Object}", + "apiSymbol": "remoteSettings", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-http2session", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:19707f39c6d0", + "chapter": "http2", + "label": "socket", + "signature": "`socket` Type: {net.Socket|tls.TLSSocket}", + "apiSymbol": "socket", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-http2session", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:df44dffba55a", + "chapter": "http2", + "label": "http2session.state", + "signature": "`http2session.state`", + "apiSymbol": "http2session.state", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#http2sessionstate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:c991e11e1d43", + "chapter": "http2", + "label": "type", + "signature": "`type` Type: {number}", + "apiSymbol": "type", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-http2session", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:965dc30fccc4", + "chapter": "http2", + "label": "'close'", + "signature": "Event: `'close'`", + "apiSymbol": "'close'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#event-close", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:90001eb58d9a", + "chapter": "http2", + "label": "'connect'", + "signature": "Event: `'connect'`", + "apiSymbol": "'connect'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#event-connect", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:8c37d6371554", + "chapter": "http2", + "label": "'error'", + "signature": "Event: `'error'`", + "apiSymbol": "'error'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#event-error", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:7dbc3d65db95", + "chapter": "http2", + "label": "'frameError'", + "signature": "Event: `'frameError'`", + "apiSymbol": "'frameError'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#event-frameerror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:2f060122a905", + "chapter": "http2", + "label": "'goaway'", + "signature": "Event: `'goaway'`", + "apiSymbol": "'goaway'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#event-goaway", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:4bef6d971dff", + "chapter": "http2", + "label": "'localSettings'", + "signature": "Event: `'localSettings'`", + "apiSymbol": "'localSettings'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#event-localsettings", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:2e38fa87d5df", + "chapter": "http2", + "label": "'ping'", + "signature": "Event: `'ping'`", + "apiSymbol": "'ping'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#event-ping", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:0eceeea2f0d2", + "chapter": "http2", + "label": "'remoteSettings'", + "signature": "Event: `'remoteSettings'`", + "apiSymbol": "'remoteSettings'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#event-remotesettings", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:8c2e3dfd9860", + "chapter": "http2", + "label": "'stream'", + "signature": "Event: `'stream'`", + "apiSymbol": "'stream'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#event-stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:35a3072bc370", + "chapter": "http2", + "label": "'timeout'", + "signature": "Event: `'timeout'`", + "apiSymbol": "'timeout'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#event-timeout", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:76a1fc4fed90", + "chapter": "http2", + "label": "ServerHttp2Session", + "signature": "Class: `ServerHttp2Session`", + "apiSymbol": "ServerHttp2Session", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-serverhttp2session", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:6d2f4096de0f", + "chapter": "http2", + "label": "serverhttp2session.altsvc(alt, originOrStream)", + "signature": "`serverhttp2session.altsvc(alt, originOrStream)`", + "apiSymbol": "serverhttp2session.altsvc", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#serverhttp2sessionaltsvcalt-originorstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:d37741190d5b", + "chapter": "http2", + "label": "serverhttp2session.origin(...origins)", + "signature": "`serverhttp2session.origin(...origins)`", + "apiSymbol": "serverhttp2session.origin", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#serverhttp2sessionoriginorigins", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:49ddba896033", + "chapter": "http2", + "label": "ClientHttp2Session", + "signature": "Class: `ClientHttp2Session`", + "apiSymbol": "ClientHttp2Session", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-clienthttp2session", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:2229531783ce", + "chapter": "http2", + "label": "clienthttp2session.request(headers[, options])", + "signature": "`clienthttp2session.request(headers[, options])`", + "apiSymbol": "clienthttp2session.request", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#clienthttp2sessionrequestheaders-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:896fbb1fa2f7", + "chapter": "http2", + "label": "'altsvc'", + "signature": "Event: `'altsvc'`", + "apiSymbol": "'altsvc'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#event-altsvc", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:153d1dfdcfaf", + "chapter": "http2", + "label": "'origin'", + "signature": "Event: `'origin'`", + "apiSymbol": "'origin'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#event-origin", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:a2f001035565", + "chapter": "http2", + "label": "Http2Stream", + "signature": "Class: `Http2Stream`", + "apiSymbol": "Http2Stream", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-http2stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:811c732a98da", + "chapter": "http2", + "label": "Http2Stream", + "signature": "`Http2Stream` Lifecycle", + "apiSymbol": "Http2Stream", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#http2stream-lifecycle", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:5802396b25c4", + "chapter": "http2", + "label": "http2stream.close(code[, callback])", + "signature": "`http2stream.close(code[, callback])`", + "apiSymbol": "http2stream.close", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#http2streamclosecode-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:087f4039376e", + "chapter": "http2", + "label": "http2stream.priority(options)", + "signature": "`http2stream.priority(options)`", + "apiSymbol": "http2stream.priority", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#http2streampriorityoptions", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: support for priority signaling has been deprecated in the [RFC 9113][] and is no longer supported in Node.js.", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:12ed0a4b3b64", + "chapter": "http2", + "label": "http2stream.setTimeout(msecs, callback)", + "signature": "`http2stream.setTimeout(msecs, callback)`", + "apiSymbol": "http2stream.setTimeout", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#http2streamsettimeoutmsecs-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:c1274ca65fc2", + "chapter": "http2", + "label": "http2stream.sendTrailers(headers)", + "signature": "`http2stream.sendTrailers(headers)`", + "apiSymbol": "http2stream.sendTrailers", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#http2streamsendtrailersheaders", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:f2e5b1cace83", + "chapter": "http2", + "label": "aborted", + "signature": "`aborted` Type: {boolean}", + "apiSymbol": "aborted", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-http2stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:40c49fe9397d", + "chapter": "http2", + "label": "bufferSize", + "signature": "`bufferSize` Type: {number}", + "apiSymbol": "bufferSize", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-http2stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:d56e207a8736", + "chapter": "http2", + "label": "closed", + "signature": "`closed` Type: {boolean}", + "apiSymbol": "closed", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-http2stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:93885dd8d07f", + "chapter": "http2", + "label": "destroyed", + "signature": "`destroyed` Type: {boolean}", + "apiSymbol": "destroyed", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-http2stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:dae5d4dade50", + "chapter": "http2", + "label": "endAfterHeaders", + "signature": "`endAfterHeaders` Type: {boolean}", + "apiSymbol": "endAfterHeaders", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-http2stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:941027bf4ad0", + "chapter": "http2", + "label": "id", + "signature": "`id` Type: {number|undefined}", + "apiSymbol": "id", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-http2stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:959528914ba6", + "chapter": "http2", + "label": "pending", + "signature": "`pending` Type: {boolean}", + "apiSymbol": "pending", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-http2stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:1d6d4fae17c4", + "chapter": "http2", + "label": "rstCode", + "signature": "`rstCode` Type: {number}", + "apiSymbol": "rstCode", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-http2stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:734f8d3605fd", + "chapter": "http2", + "label": "sentHeaders", + "signature": "`sentHeaders` Type: {HTTP/2 Headers Object}", + "apiSymbol": "sentHeaders", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-http2stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:8a4c9b51dbf0", + "chapter": "http2", + "label": "sentInfoHeaders", + "signature": "`sentInfoHeaders` Type: {HTTP/2 Headers Object\\[]}", + "apiSymbol": "sentInfoHeaders", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-http2stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:c18a72edad22", + "chapter": "http2", + "label": "sentTrailers", + "signature": "`sentTrailers` Type: {HTTP/2 Headers Object}", + "apiSymbol": "sentTrailers", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-http2stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:f91b46f2a6e4", + "chapter": "http2", + "label": "session", + "signature": "`session` Type: {Http2Session}", + "apiSymbol": "session", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-http2stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:2339e8707e12", + "chapter": "http2", + "label": "http2stream.state", + "signature": "`http2stream.state`", + "apiSymbol": "http2stream.state", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#http2streamstate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:044b0bda4bf7", + "chapter": "http2", + "label": "'aborted'", + "signature": "Event: `'aborted'`", + "apiSymbol": "'aborted'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#event-aborted", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:dcdf1e2bf173", + "chapter": "http2", + "label": "'close'", + "signature": "Event: `'close'`", + "apiSymbol": "'close'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#event-close_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:1368bf1cf6a3", + "chapter": "http2", + "label": "'error'", + "signature": "Event: `'error'`", + "apiSymbol": "'error'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#event-error_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:cfdf361f7c14", + "chapter": "http2", + "label": "'frameError'", + "signature": "Event: `'frameError'`", + "apiSymbol": "'frameError'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#event-frameerror_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:bc852715b7a7", + "chapter": "http2", + "label": "'ready'", + "signature": "Event: `'ready'`", + "apiSymbol": "'ready'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#event-ready", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:001f8780d406", + "chapter": "http2", + "label": "'timeout'", + "signature": "Event: `'timeout'`", + "apiSymbol": "'timeout'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#event-timeout_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:0d9fd2ecbc59", + "chapter": "http2", + "label": "'trailers'", + "signature": "Event: `'trailers'`", + "apiSymbol": "'trailers'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#event-trailers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:78e226961cb6", + "chapter": "http2", + "label": "'wantTrailers'", + "signature": "Event: `'wantTrailers'`", + "apiSymbol": "'wantTrailers'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#event-wanttrailers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:d9c0bcef72b7", + "chapter": "http2", + "label": "ClientHttp2Stream", + "signature": "Class: `ClientHttp2Stream`", + "apiSymbol": "ClientHttp2Stream", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-clienthttp2stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:f3e1632653dd", + "chapter": "http2", + "label": "'continue'", + "signature": "Event: `'continue'`", + "apiSymbol": "'continue'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#event-continue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:f3358d38326c", + "chapter": "http2", + "label": "'headers'", + "signature": "Event: `'headers'`", + "apiSymbol": "'headers'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#event-headers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:76248374e016", + "chapter": "http2", + "label": "'push'", + "signature": "Event: `'push'`", + "apiSymbol": "'push'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#event-push", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:a18d6a44e906", + "chapter": "http2", + "label": "'response'", + "signature": "Event: `'response'`", + "apiSymbol": "'response'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#event-response", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:29d7675853c3", + "chapter": "http2", + "label": "ServerHttp2Stream", + "signature": "Class: `ServerHttp2Stream`", + "apiSymbol": "ServerHttp2Stream", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-serverhttp2stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:5bce6633446f", + "chapter": "http2", + "label": "http2stream.additionalHeaders(headers)", + "signature": "`http2stream.additionalHeaders(headers)`", + "apiSymbol": "http2stream.additionalHeaders", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#http2streamadditionalheadersheaders", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:a8c46c9885ff", + "chapter": "http2", + "label": "http2stream.pushStream(headers[, options], callback)", + "signature": "`http2stream.pushStream(headers[, options], callback)`", + "apiSymbol": "http2stream.pushStream", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#http2streampushstreamheaders-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:71946ea781a1", + "chapter": "http2", + "label": "http2stream.respond([headers[, options]])", + "signature": "`http2stream.respond([headers[, options]])`", + "apiSymbol": "http2stream.respond", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#http2streamrespondheaders-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:c0353b97f605", + "chapter": "http2", + "label": "http2stream.respondWithFD(fd[, headers[, options]])", + "signature": "`http2stream.respondWithFD(fd[, headers[, options]])`", + "apiSymbol": "http2stream.respondWithFD", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#http2streamrespondwithfdfd-headers-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:da9bbbdbdff5", + "chapter": "http2", + "label": "http2stream.respondWithFile(path[, headers[, options]])", + "signature": "`http2stream.respondWithFile(path[, headers[, options]])`", + "apiSymbol": "http2stream.respondWithFile", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#http2streamrespondwithfilepath-headers-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:8d1372e69d84", + "chapter": "http2", + "label": "headersSent", + "signature": "`headersSent` Type: {boolean}", + "apiSymbol": "headersSent", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-serverhttp2stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:a7d245bee40d", + "chapter": "http2", + "label": "pushAllowed", + "signature": "`pushAllowed` Type: {boolean}", + "apiSymbol": "pushAllowed", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-serverhttp2stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:ae0a8c606d68", + "chapter": "http2", + "label": "Http2Server", + "signature": "Class: `Http2Server`", + "apiSymbol": "Http2Server", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-http2server", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:3dbe6bfc4025", + "chapter": "http2", + "label": "server.close([callback])", + "signature": "`server.close([callback])`", + "apiSymbol": "server.close", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#serverclosecallback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:server.close", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:c2faceee804f", + "chapter": "http2", + "label": "server[Symbol.asyncDispose]()", + "signature": "`server[Symbol.asyncDispose]()`", + "apiSymbol": "server", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#serversymbolasyncdispose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:402d7d59733c", + "chapter": "http2", + "label": "server.setTimeout([msecs][, callback])", + "signature": "`server.setTimeout([msecs][, callback])`", + "apiSymbol": "server.setTimeout", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#serversettimeoutmsecs-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:a2a774ceb90d", + "chapter": "http2", + "label": "server.updateSettings([settings])", + "signature": "`server.updateSettings([settings])`", + "apiSymbol": "server.updateSettings", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#serverupdatesettingssettings", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:2503e492d8e1", + "chapter": "http2", + "label": "timeout", + "signature": "`timeout` Type: {number} Timeout in milliseconds. **Default:** 0 (no timeout)", + "apiSymbol": "timeout", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-http2server", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:timeout", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:5ebd83633c9b", + "chapter": "http2", + "label": "'checkContinue'", + "signature": "Event: `'checkContinue'`", + "apiSymbol": "'checkContinue'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#event-checkcontinue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:f6fcaf096c2f", + "chapter": "http2", + "label": "'connection'", + "signature": "Event: `'connection'`", + "apiSymbol": "'connection'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#event-connection", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:2e51051fb44a", + "chapter": "http2", + "label": "'request'", + "signature": "Event: `'request'`", + "apiSymbol": "'request'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#event-request", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:6a175b99924a", + "chapter": "http2", + "label": "'session'", + "signature": "Event: `'session'`", + "apiSymbol": "'session'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#event-session", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:1de30d5f99ae", + "chapter": "http2", + "label": "'sessionError'", + "signature": "Event: `'sessionError'`", + "apiSymbol": "'sessionError'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#event-sessionerror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:bf8d98873d12", + "chapter": "http2", + "label": "'stream'", + "signature": "Event: `'stream'`", + "apiSymbol": "'stream'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#event-stream_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:8115b797b787", + "chapter": "http2", + "label": "'timeout'", + "signature": "Event: `'timeout'`", + "apiSymbol": "'timeout'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#event-timeout_2", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:7c85961a699d", + "chapter": "http2", + "label": "Http2SecureServer", + "signature": "Class: `Http2SecureServer`", + "apiSymbol": "Http2SecureServer", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-http2secureserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:bb509dd4ad74", + "chapter": "http2", + "label": "server.close([callback])", + "signature": "`server.close([callback])`", + "apiSymbol": "server.close", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#serverclosecallback_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:server.close", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:163ebea6b827", + "chapter": "http2", + "label": "server.setTimeout([msecs][, callback])", + "signature": "`server.setTimeout([msecs][, callback])`", + "apiSymbol": "server.setTimeout", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#serversettimeoutmsecs-callback_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:66add03fb1b6", + "chapter": "http2", + "label": "server.updateSettings([settings])", + "signature": "`server.updateSettings([settings])`", + "apiSymbol": "server.updateSettings", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#serverupdatesettingssettings_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:1b49792fd8a8", + "chapter": "http2", + "label": "timeout", + "signature": "`timeout` Type: {number} Timeout in milliseconds. **Default:** 0 (no timeout)", + "apiSymbol": "timeout", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-http2secureserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:timeout", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:86d09445edd3", + "chapter": "http2", + "label": "'checkContinue'", + "signature": "Event: `'checkContinue'`", + "apiSymbol": "'checkContinue'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#event-checkcontinue_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:79c7b1e06d72", + "chapter": "http2", + "label": "'connection'", + "signature": "Event: `'connection'`", + "apiSymbol": "'connection'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#event-connection_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:71af92ed7b0f", + "chapter": "http2", + "label": "'request'", + "signature": "Event: `'request'`", + "apiSymbol": "'request'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#event-request_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:26ce5ba2d4d9", + "chapter": "http2", + "label": "'session'", + "signature": "Event: `'session'`", + "apiSymbol": "'session'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#event-session_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:161153d15286", + "chapter": "http2", + "label": "'sessionError'", + "signature": "Event: `'sessionError'`", + "apiSymbol": "'sessionError'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#event-sessionerror_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:1a27855c8a25", + "chapter": "http2", + "label": "'stream'", + "signature": "Event: `'stream'`", + "apiSymbol": "'stream'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#event-stream_2", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:6229a5081a27", + "chapter": "http2", + "label": "'timeout'", + "signature": "Event: `'timeout'`", + "apiSymbol": "'timeout'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#event-timeout_3", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:7a07cce491a7", + "chapter": "http2", + "label": "'unknownProtocol'", + "signature": "Event: `'unknownProtocol'`", + "apiSymbol": "'unknownProtocol'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#event-unknownprotocol", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:c6359f9afccf", + "chapter": "http2", + "label": "http2.createServer([options][, onRequestHandler])", + "signature": "`http2.createServer([options][, onRequestHandler])`", + "apiSymbol": "http2.createServer", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#http2createserveroptions-onrequesthandler", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.http2.createServer", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:242e1cb51c75", + "chapter": "http2", + "label": "http2.createSecureServer(options[, onRequestHandler])", + "signature": "`http2.createSecureServer(options[, onRequestHandler])`", + "apiSymbol": "http2.createSecureServer", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#http2createsecureserveroptions-onrequesthandler", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:680716981c63", + "chapter": "http2", + "label": "http2.connect(authority[, options][, listener])", + "signature": "`http2.connect(authority[, options][, listener])`", + "apiSymbol": "http2.connect", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#http2connectauthority-options-listener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.http2.connect", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:e379aa61a461", + "chapter": "http2", + "label": "http2.getDefaultSettings()", + "signature": "`http2.getDefaultSettings()`", + "apiSymbol": "http2.getDefaultSettings", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#http2getdefaultsettings", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:06a55a7b8ea7", + "chapter": "http2", + "label": "http2.getPackedSettings([settings])", + "signature": "`http2.getPackedSettings([settings])`", + "apiSymbol": "http2.getPackedSettings", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#http2getpackedsettingssettings", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:74bbd922d21b", + "chapter": "http2", + "label": "http2.getUnpackedSettings(buf)", + "signature": "`http2.getUnpackedSettings(buf)`", + "apiSymbol": "http2.getUnpackedSettings", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#http2getunpackedsettingsbuf", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:bb79e3765b91", + "chapter": "http2", + "label": "http2.performServerHandshake(socket[, options])", + "signature": "`http2.performServerHandshake(socket[, options])`", + "apiSymbol": "http2.performServerHandshake", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#http2performserverhandshakesocket-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:cf84bcf149a1", + "chapter": "http2", + "label": "http2.constants", + "signature": "`http2.constants`", + "apiSymbol": "http2.constants", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#http2constants", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:3686f80264d2", + "chapter": "http2", + "label": "Error codes for RST_STREAM and GOAWAY", + "signature": "Error codes for `RST_STREAM` and `GOAWAY`", + "apiSymbol": "RST_STREAM", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#error-codes-for-rst_stream-and-goaway", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:f4e11c45f3f3", + "chapter": "http2", + "label": "sensitiveHeaders", + "signature": "`sensitiveHeaders` Type: {symbol}", + "apiSymbol": "sensitiveHeaders", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#core-api", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:eb9e125f0e4f", + "chapter": "http2", + "label": "http2.Http2ServerRequest", + "signature": "Class: `http2.Http2ServerRequest`", + "apiSymbol": "http2.Http2ServerRequest", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-http2http2serverrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:ec664bd1b54e", + "chapter": "http2", + "label": "request.destroy([error])", + "signature": "`request.destroy([error])`", + "apiSymbol": "request.destroy", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#requestdestroyerror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:request.destroy", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:e7b7e6caa073", + "chapter": "http2", + "label": "request.setTimeout(msecs, callback)", + "signature": "`request.setTimeout(msecs, callback)`", + "apiSymbol": "request.setTimeout", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#requestsettimeoutmsecs-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:request.setTimeout", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:bf1c565acb31", + "chapter": "http2", + "label": "aborted", + "signature": "`aborted` Type: {boolean}", + "apiSymbol": "aborted", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-http2http2serverrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:eabf9c3e27e6", + "chapter": "http2", + "label": "authority", + "signature": "`authority` Type: {string}", + "apiSymbol": "authority", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-http2http2serverrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:e348f998e755", + "chapter": "http2", + "label": "complete", + "signature": "`complete` Type: {boolean}", + "apiSymbol": "complete", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-http2http2serverrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:622ff72078b1", + "chapter": "http2", + "label": "connection", + "signature": "`connection` Type: {net.Socket|tls.TLSSocket}", + "apiSymbol": "connection", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-http2http2serverrequest", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. Use [`request.socket`][].", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:e3bca47a3a84", + "chapter": "http2", + "label": "headers", + "signature": "`headers` Type: {Object}", + "apiSymbol": "headers", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-http2http2serverrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:6f500d89c819", + "chapter": "http2", + "label": "httpVersion", + "signature": "`httpVersion` Type: {string}", + "apiSymbol": "httpVersion", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-http2http2serverrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:756fb6a7298f", + "chapter": "http2", + "label": "method", + "signature": "`method` Type: {string}", + "apiSymbol": "method", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-http2http2serverrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:2c3b46e3d2e2", + "chapter": "http2", + "label": "rawHeaders", + "signature": "`rawHeaders` Type: {HTTP/2 Raw Headers}", + "apiSymbol": "rawHeaders", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-http2http2serverrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:91a2937e1252", + "chapter": "http2", + "label": "rawTrailers", + "signature": "`rawTrailers` Type: {string\\[]}", + "apiSymbol": "rawTrailers", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-http2http2serverrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:409442c3d132", + "chapter": "http2", + "label": "scheme", + "signature": "`scheme` Type: {string}", + "apiSymbol": "scheme", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-http2http2serverrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:5c266757bc0c", + "chapter": "http2", + "label": "socket", + "signature": "`socket` Type: {net.Socket|tls.TLSSocket}", + "apiSymbol": "socket", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-http2http2serverrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:55bbe07e47aa", + "chapter": "http2", + "label": "stream", + "signature": "`stream` Type: {Http2Stream}", + "apiSymbol": "stream", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-http2http2serverrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:9788bf31c26e", + "chapter": "http2", + "label": "trailers", + "signature": "`trailers` Type: {Object}", + "apiSymbol": "trailers", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-http2http2serverrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:78cb12766f93", + "chapter": "http2", + "label": "url", + "signature": "`url` Type: {string}", + "apiSymbol": "url", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-http2http2serverrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:a5d565d32ad8", + "chapter": "http2", + "label": "'aborted'", + "signature": "Event: `'aborted'`", + "apiSymbol": "'aborted'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#event-aborted_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:052c6a11243c", + "chapter": "http2", + "label": "'close'", + "signature": "Event: `'close'`", + "apiSymbol": "'close'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#event-close_2", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:8e4623c9bee8", + "chapter": "http2", + "label": "http2.Http2ServerResponse", + "signature": "Class: `http2.Http2ServerResponse`", + "apiSymbol": "http2.Http2ServerResponse", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-http2http2serverresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:2dddf8716f12", + "chapter": "http2", + "label": "response.addTrailers(headers)", + "signature": "`response.addTrailers(headers)`", + "apiSymbol": "response.addTrailers", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#responseaddtrailersheaders", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:ccf6193b4c76", + "chapter": "http2", + "label": "response.appendHeader(name, value)", + "signature": "`response.appendHeader(name, value)`", + "apiSymbol": "response.appendHeader", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#responseappendheadername-value", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:2cd90631110d", + "chapter": "http2", + "label": "response.createPushResponse(headers, callback)", + "signature": "`response.createPushResponse(headers, callback)`", + "apiSymbol": "response.createPushResponse", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#responsecreatepushresponseheaders-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:389de6adb8e2", + "chapter": "http2", + "label": "response.end([data[, encoding]][, callback])", + "signature": "`response.end([data[, encoding]][, callback])`", + "apiSymbol": "response.end", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#responseenddata-encoding-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:response.end", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:02f00d298856", + "chapter": "http2", + "label": "response.getHeader(name)", + "signature": "`response.getHeader(name)`", + "apiSymbol": "response.getHeader", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#responsegetheadername", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:response.getHeader", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:90e7c1967850", + "chapter": "http2", + "label": "response.getHeaderNames()", + "signature": "`response.getHeaderNames()`", + "apiSymbol": "response.getHeaderNames", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#responsegetheadernames", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:0870e5404508", + "chapter": "http2", + "label": "response.getHeaders()", + "signature": "`response.getHeaders()`", + "apiSymbol": "response.getHeaders", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#responsegetheaders", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:6a7c0e7f4b3e", + "chapter": "http2", + "label": "response.hasHeader(name)", + "signature": "`response.hasHeader(name)`", + "apiSymbol": "response.hasHeader", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#responsehasheadername", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:response.hasHeader", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:3c0929523f76", + "chapter": "http2", + "label": "response.removeHeader(name)", + "signature": "`response.removeHeader(name)`", + "apiSymbol": "response.removeHeader", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#responseremoveheadername", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:response.removeHeader", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:8a0628bc7af4", + "chapter": "http2", + "label": "response.setHeader(name, value)", + "signature": "`response.setHeader(name, value)`", + "apiSymbol": "response.setHeader", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#responsesetheadername-value", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:response.setHeader", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:8c76c08fe197", + "chapter": "http2", + "label": "response.setTimeout(msecs[, callback])", + "signature": "`response.setTimeout(msecs[, callback])`", + "apiSymbol": "response.setTimeout", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#responsesettimeoutmsecs-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:9417df303cd3", + "chapter": "http2", + "label": "response.write(chunk[, encoding][, callback])", + "signature": "`response.write(chunk[, encoding][, callback])`", + "apiSymbol": "response.write", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#responsewritechunk-encoding-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:response.write", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:b2265ee703a4", + "chapter": "http2", + "label": "response.writeContinue()", + "signature": "`response.writeContinue()`", + "apiSymbol": "response.writeContinue", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#responsewritecontinue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:d1481ac6ad80", + "chapter": "http2", + "label": "response.writeEarlyHints(hints)", + "signature": "`response.writeEarlyHints(hints)`", + "apiSymbol": "response.writeEarlyHints", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#responsewriteearlyhintshints", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:b551a5ca3a62", + "chapter": "http2", + "label": "response.writeHead(statusCode[, statusMessage][, headers])", + "signature": "`response.writeHead(statusCode[, statusMessage][, headers])`", + "apiSymbol": "response.writeHead", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#responsewriteheadstatuscode-statusmessage-headers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:response.writeHead", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:ae9b6a1ea75e", + "chapter": "http2", + "label": "connection", + "signature": "`connection` Type: {net.Socket|tls.TLSSocket}", + "apiSymbol": "connection", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-http2http2serverresponse", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. Use [`response.socket`][].", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:5dd06d15a6f6", + "chapter": "http2", + "label": "finished", + "signature": "`finished` Type: {boolean}", + "apiSymbol": "finished", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-http2http2serverresponse", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. Use [`response.writableEnded`][].", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:769f28a2ad9b", + "chapter": "http2", + "label": "headersSent", + "signature": "`headersSent` Type: {boolean}", + "apiSymbol": "headersSent", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-http2http2serverresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:e5da26d368f8", + "chapter": "http2", + "label": "req", + "signature": "`req` Type: {http2.Http2ServerRequest}", + "apiSymbol": "req", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-http2http2serverresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:6ee664a5a21b", + "chapter": "http2", + "label": "sendDate", + "signature": "`sendDate` Type: {boolean}", + "apiSymbol": "sendDate", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-http2http2serverresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:cd987e511544", + "chapter": "http2", + "label": "socket", + "signature": "`socket` Type: {net.Socket|tls.TLSSocket}", + "apiSymbol": "socket", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-http2http2serverresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:ce3de195f200", + "chapter": "http2", + "label": "statusCode", + "signature": "`statusCode` Type: {number}", + "apiSymbol": "statusCode", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-http2http2serverresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:dc8b64206bbd", + "chapter": "http2", + "label": "statusMessage", + "signature": "`statusMessage` Type: {string}", + "apiSymbol": "statusMessage", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-http2http2serverresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:3bc6917ba9ea", + "chapter": "http2", + "label": "stream", + "signature": "`stream` Type: {Http2Stream}", + "apiSymbol": "stream", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-http2http2serverresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:001356307366", + "chapter": "http2", + "label": "writableEnded", + "signature": "`writableEnded` Type: {boolean}", + "apiSymbol": "writableEnded", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#class-http2http2serverresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:ff3b0bf7f43d", + "chapter": "http2", + "label": "'close'", + "signature": "Event: `'close'`", + "apiSymbol": "'close'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#event-close_3", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:67d56ddf01e4", + "chapter": "http2", + "label": "'finish'", + "signature": "Event: `'finish'`", + "apiSymbol": "'finish'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#event-finish", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "http2:c262b200b595", + "chapter": "http2", + "label": "Note on :authority and host", + "signature": "Note on `:authority` and `host`", + "apiSymbol": ":authority", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/http2.html#note-on-authority-and-host", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:http2", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:http2", + "tests": [] + } + } + }, + { + "id": "https:7c1063eafcf3", + "chapter": "https", + "label": "https.Agent", + "signature": "Class: `https.Agent`", + "apiSymbol": "https.Agent", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/https.html#class-httpsagent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:https", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:https.Agent", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + } + } + }, + { + "id": "https:f180dfed7707", + "chapter": "https", + "label": "https.Server", + "signature": "Class: `https.Server`", + "apiSymbol": "https.Server", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/https.html#class-httpsserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:https", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:https.Server", + "tests": [] + } + } + }, + { + "id": "https:2c15a6b7a66d", + "chapter": "https", + "label": "server.close([callback])", + "signature": "`server.close([callback])`", + "apiSymbol": "server.close", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/https.html#serverclosecallback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:server.close", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:https", + "tests": [] + } + } + }, + { + "id": "https:3aa494c7e94b", + "chapter": "https", + "label": "server[Symbol.asyncDispose]()", + "signature": "`server[Symbol.asyncDispose]()`", + "apiSymbol": "server", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/https.html#serversymbolasyncdispose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:https", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:https", + "tests": [] + } + } + }, + { + "id": "https:e549c5016960", + "chapter": "https", + "label": "server.closeAllConnections()", + "signature": "`server.closeAllConnections()`", + "apiSymbol": "server.closeAllConnections", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/https.html#servercloseallconnections", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:https", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:https", + "tests": [] + } + } + }, + { + "id": "https:b7235bc8bef3", + "chapter": "https", + "label": "server.closeIdleConnections()", + "signature": "`server.closeIdleConnections()`", + "apiSymbol": "server.closeIdleConnections", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/https.html#servercloseidleconnections", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:https", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:https", + "tests": [] + } + } + }, + { + "id": "https:2bb41f479711", + "chapter": "https", + "label": "server.listen()", + "signature": "`server.listen()`", + "apiSymbol": "server.listen", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/https.html#serverlisten", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:server.listen", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:https", + "tests": [] + } + } + }, + { + "id": "https:238525ea3743", + "chapter": "https", + "label": "server.setTimeout([msecs][, callback])", + "signature": "`server.setTimeout([msecs][, callback])`", + "apiSymbol": "server.setTimeout", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/https.html#serversettimeoutmsecs-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:https", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:https", + "tests": [] + } + } + }, + { + "id": "https:79d27bbfc81c", + "chapter": "https", + "label": "headersTimeout", + "signature": "`headersTimeout` Type: {number} **Default:** `60000`", + "apiSymbol": "headersTimeout", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/https.html#class-httpsserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:headersTimeout", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:https", + "tests": [] + } + } + }, + { + "id": "https:705c007905d2", + "chapter": "https", + "label": "maxHeadersCount", + "signature": "`maxHeadersCount` Type: {number} **Default:** `2000`", + "apiSymbol": "maxHeadersCount", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/https.html#class-httpsserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:https", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:https", + "tests": [] + } + } + }, + { + "id": "https:d3f2bf1b271e", + "chapter": "https", + "label": "requestTimeout", + "signature": "`requestTimeout` Type: {number} **Default:** `300000`", + "apiSymbol": "requestTimeout", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/https.html#class-httpsserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:requestTimeout", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:https", + "tests": [] + } + } + }, + { + "id": "https:b0a22c39ef5b", + "chapter": "https", + "label": "timeout", + "signature": "`timeout` Type: {number} **Default:** 0 (no timeout)", + "apiSymbol": "timeout", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/https.html#class-httpsserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:timeout", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:https", + "tests": [] + } + } + }, + { + "id": "https:dd64c534c494", + "chapter": "https", + "label": "keepAliveTimeout", + "signature": "`keepAliveTimeout` Type: {number} **Default:** `5000` (5 seconds)", + "apiSymbol": "keepAliveTimeout", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/https.html#class-httpsserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:keepAliveTimeout", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:https", + "tests": [] + } + } + }, + { + "id": "https:19a8c08fbe38", + "chapter": "https", + "label": "https.createServer([options][, requestListener])", + "signature": "`https.createServer([options][, requestListener])`", + "apiSymbol": "https.createServer", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/https.html#httpscreateserveroptions-requestlistener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:https.createServer", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:https.createServer", + "tests": [] + } + } + }, + { + "id": "https:e6e6ab3162b3", + "chapter": "https", + "label": "https.get(options[, callback])", + "signature": "`https.get(options[, callback])`", + "apiSymbol": "https.get", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/https.html#httpsgetoptions-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:https.get", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:https.get", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + } + } + }, + { + "id": "https:5dfd4dcbf840", + "chapter": "https", + "label": "https.get(url[, options][, callback])", + "signature": "`https.get(url[, options][, callback])`", + "apiSymbol": "https.get", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/https.html#httpsgeturl-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:https.get", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:https.get", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + } + } + }, + { + "id": "https:4495f7d7245b", + "chapter": "https", + "label": "https.request(options[, callback])", + "signature": "`https.request(options[, callback])`", + "apiSymbol": "https.request", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/https.html#httpsrequestoptions-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:https.request", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:https.request", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + } + } + }, + { + "id": "https:90a745bc6f83", + "chapter": "https", + "label": "https.request(url[, options][, callback])", + "signature": "`https.request(url[, options][, callback])`", + "apiSymbol": "https.request", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/https.html#httpsrequesturl-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:https.request", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:https.request", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + } + } + }, + { + "id": "https:411d4901404d", + "chapter": "https", + "label": "https.globalAgent", + "signature": "`https.globalAgent`", + "apiSymbol": "https.globalAgent", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/https.html#httpsglobalagent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:https", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:https.globalAgent", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + } + } + }, + { + "id": "inspector:7e98f25e350f", + "chapter": "inspector", + "label": "inspector.Session", + "signature": "Class: `inspector.Session`", + "apiSymbol": "inspector.Session", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/inspector.html#class-inspectorsession", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:inspector", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:inspector,node:inspector/promises", + "tests": [] + } + } + }, + { + "id": "inspector:da810b155bf9", + "chapter": "inspector", + "label": "session.connect()", + "signature": "`session.connect()`", + "apiSymbol": "session.connect", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/inspector.html#sessionconnect", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:inspector", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:inspector,node:inspector/promises", + "tests": [] + } + } + }, + { + "id": "inspector:2fbe3854b786", + "chapter": "inspector", + "label": "session.connectToMainThread()", + "signature": "`session.connectToMainThread()`", + "apiSymbol": "session.connectToMainThread", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/inspector.html#sessionconnecttomainthread", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:inspector", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:inspector,node:inspector/promises", + "tests": [] + } + } + }, + { + "id": "inspector:0f46763d8dcd", + "chapter": "inspector", + "label": "session.disconnect()", + "signature": "`session.disconnect()`", + "apiSymbol": "session.disconnect", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/inspector.html#sessiondisconnect", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:inspector", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:inspector,node:inspector/promises", + "tests": [] + } + } + }, + { + "id": "inspector:8e69ad0e666b", + "chapter": "inspector", + "label": "session.post(method[, params])", + "signature": "`session.post(method[, params])`", + "apiSymbol": "session.post", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/inspector.html#sessionpostmethod-params", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:inspector", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:inspector,node:inspector/promises", + "tests": [] + } + } + }, + { + "id": "inspector:b8dd22ac0374", + "chapter": "inspector", + "label": "'inspectorNotification'", + "signature": "Event: `'inspectorNotification'`", + "apiSymbol": "'inspectorNotification'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/inspector.html#event-inspectornotification", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:inspector", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:inspector,node:inspector/promises", + "tests": [] + } + } + }, + { + "id": "inspector:a4eb954ec85d", + "chapter": "inspector", + "label": "", + "signature": "Event: ``", + "apiSymbol": "", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/inspector.html#event-inspector-protocol-method", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:inspector", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:inspector,node:inspector/promises", + "tests": [] + } + } + }, + { + "id": "inspector:144b7c164639", + "chapter": "inspector", + "label": "inspector.Session", + "signature": "Class: `inspector.Session`", + "apiSymbol": "inspector.Session", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/inspector.html#class-inspectorsession_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:inspector", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:inspector,node:inspector/promises", + "tests": [] + } + } + }, + { + "id": "inspector:11f760f5ac88", + "chapter": "inspector", + "label": "session.connect()", + "signature": "`session.connect()`", + "apiSymbol": "session.connect", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/inspector.html#sessionconnect_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:inspector", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:inspector,node:inspector/promises", + "tests": [] + } + } + }, + { + "id": "inspector:6a4172b0db63", + "chapter": "inspector", + "label": "session.connectToMainThread()", + "signature": "`session.connectToMainThread()`", + "apiSymbol": "session.connectToMainThread", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/inspector.html#sessionconnecttomainthread_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:inspector", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:inspector,node:inspector/promises", + "tests": [] + } + } + }, + { + "id": "inspector:07954dae5df5", + "chapter": "inspector", + "label": "session.disconnect()", + "signature": "`session.disconnect()`", + "apiSymbol": "session.disconnect", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/inspector.html#sessiondisconnect_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:inspector", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:inspector,node:inspector/promises", + "tests": [] + } + } + }, + { + "id": "inspector:8a9096e0d872", + "chapter": "inspector", + "label": "session.post(method[, params][, callback])", + "signature": "`session.post(method[, params][, callback])`", + "apiSymbol": "session.post", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/inspector.html#sessionpostmethod-params-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:inspector", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:inspector,node:inspector/promises", + "tests": [] + } + } + }, + { + "id": "inspector:f429a2197858", + "chapter": "inspector", + "label": "'inspectorNotification'", + "signature": "Event: `'inspectorNotification'`", + "apiSymbol": "'inspectorNotification'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/inspector.html#event-inspectornotification_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:inspector", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:inspector,node:inspector/promises", + "tests": [] + } + } + }, + { + "id": "inspector:11fb65d02d7f", + "chapter": "inspector", + "label": ";", + "signature": "Event: ``;", + "apiSymbol": "", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/inspector.html#event-inspector-protocol-method_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:inspector", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:inspector,node:inspector/promises", + "tests": [] + } + } + }, + { + "id": "inspector:495a3305b81e", + "chapter": "inspector", + "label": "inspector.close()", + "signature": "`inspector.close()`", + "apiSymbol": "inspector.close", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/inspector.html#inspectorclose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:inspector", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:inspector,node:inspector/promises", + "tests": [] + } + } + }, + { + "id": "inspector:36b6a1d4187f", + "chapter": "inspector", + "label": "inspector.open([port[, host[, wait]]])", + "signature": "`inspector.open([port[, host[, wait]]])`", + "apiSymbol": "inspector.open", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/inspector.html#inspectoropenport-host-wait", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:inspector", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:inspector,node:inspector/promises", + "tests": [] + } + } + }, + { + "id": "inspector:c2b9b25f44d8", + "chapter": "inspector", + "label": "inspector.url()", + "signature": "`inspector.url()`", + "apiSymbol": "inspector.url", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/inspector.html#inspectorurl", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:inspector", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:inspector,node:inspector/promises", + "tests": [] + } + } + }, + { + "id": "inspector:ac0af066a800", + "chapter": "inspector", + "label": "inspector.waitForDebugger()", + "signature": "`inspector.waitForDebugger()`", + "apiSymbol": "inspector.waitForDebugger", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/inspector.html#inspectorwaitfordebugger", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:inspector", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:inspector,node:inspector/promises", + "tests": [] + } + } + }, + { + "id": "inspector:eeb4613729c7", + "chapter": "inspector", + "label": "console", + "signature": "`console` Type: {Object} An object to send messages to the remote inspector console.", + "apiSymbol": "console", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/inspector.html#common-objects", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:inspector", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:inspector,node:inspector/promises", + "tests": [] + } + } + }, + { + "id": "inspector:daecf7c2a28f", + "chapter": "inspector", + "label": "inspector.Network.dataReceived([params])", + "signature": "`inspector.Network.dataReceived([params])`", + "apiSymbol": "inspector.Network.dataReceived", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/inspector.html#inspectornetworkdatareceivedparams", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:inspector", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:inspector,node:inspector/promises", + "tests": [] + } + } + }, + { + "id": "inspector:9923d95e16ba", + "chapter": "inspector", + "label": "inspector.Network.dataSent([params])", + "signature": "`inspector.Network.dataSent([params])`", + "apiSymbol": "inspector.Network.dataSent", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/inspector.html#inspectornetworkdatasentparams", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:inspector", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:inspector,node:inspector/promises", + "tests": [] + } + } + }, + { + "id": "inspector:782080f91c05", + "chapter": "inspector", + "label": "inspector.Network.requestWillBeSent([params])", + "signature": "`inspector.Network.requestWillBeSent([params])`", + "apiSymbol": "inspector.Network.requestWillBeSent", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/inspector.html#inspectornetworkrequestwillbesentparams", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:inspector", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:inspector,node:inspector/promises", + "tests": [] + } + } + }, + { + "id": "inspector:9849da6fbbfb", + "chapter": "inspector", + "label": "inspector.Network.responseReceived([params])", + "signature": "`inspector.Network.responseReceived([params])`", + "apiSymbol": "inspector.Network.responseReceived", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/inspector.html#inspectornetworkresponsereceivedparams", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:inspector", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:inspector,node:inspector/promises", + "tests": [] + } + } + }, + { + "id": "inspector:31d03ff45321", + "chapter": "inspector", + "label": "inspector.Network.loadingFinished([params])", + "signature": "`inspector.Network.loadingFinished([params])`", + "apiSymbol": "inspector.Network.loadingFinished", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/inspector.html#inspectornetworkloadingfinishedparams", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:inspector", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:inspector,node:inspector/promises", + "tests": [] + } + } + }, + { + "id": "inspector:283d5981db84", + "chapter": "inspector", + "label": "inspector.Network.loadingFailed([params])", + "signature": "`inspector.Network.loadingFailed([params])`", + "apiSymbol": "inspector.Network.loadingFailed", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/inspector.html#inspectornetworkloadingfailedparams", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:inspector", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:inspector,node:inspector/promises", + "tests": [] + } + } + }, + { + "id": "inspector:8194789fc3ed", + "chapter": "inspector", + "label": "inspector.Network.webSocketCreated([params])", + "signature": "`inspector.Network.webSocketCreated([params])`", + "apiSymbol": "inspector.Network.webSocketCreated", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/inspector.html#inspectornetworkwebsocketcreatedparams", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:inspector", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:inspector,node:inspector/promises", + "tests": [] + } + } + }, + { + "id": "inspector:073a58206ebd", + "chapter": "inspector", + "label": "inspector.Network.webSocketHandshakeResponseReceived([params])", + "signature": "`inspector.Network.webSocketHandshakeResponseReceived([params])`", + "apiSymbol": "inspector.Network.webSocketHandshakeResponseReceived", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/inspector.html#inspectornetworkwebsockethandshakeresponsereceivedparams", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:inspector", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:inspector,node:inspector/promises", + "tests": [] + } + } + }, + { + "id": "inspector:e32f46ffbe49", + "chapter": "inspector", + "label": "inspector.Network.webSocketClosed([params])", + "signature": "`inspector.Network.webSocketClosed([params])`", + "apiSymbol": "inspector.Network.webSocketClosed", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/inspector.html#inspectornetworkwebsocketclosedparams", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:inspector", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:inspector,node:inspector/promises", + "tests": [] + } + } + }, + { + "id": "inspector:754fde4d242c", + "chapter": "inspector", + "label": "inspector.NetworkResources.put", + "signature": "`inspector.NetworkResources.put`", + "apiSymbol": "inspector.NetworkResources.put", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/inspector.html#inspectornetworkresourcesput", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active Development", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:inspector", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:inspector,node:inspector/promises", + "tests": [] + } + } + }, + { + "id": "modules:748c4e009d36", + "chapter": "modules", + "label": "Loading ECMAScript modules using require()", + "signature": "Loading ECMAScript modules using `require()`", + "apiSymbol": "require", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/modules.html#loading-ecmascript-modules-using-require", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-feature:modules.require", + "tests": [ + "tests/corpus/1612-cjs-module-globals.cjs", + "tests/corpus/1596-cjs-modules/main.js", + "tests/corpus/1629-require-main-filename.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-feature:modules.require", + "tests": [ + "tests/fixtures/npm/cases/create-require/main.ts", + "tests/fixtures/npm/cases/dynamic-import/main.ts" + ] + } + } + }, + { + "id": "modules:b261076c9f37", + "chapter": "modules", + "label": "__dirname", + "signature": "`__dirname`", + "apiSymbol": "__dirname", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/modules.html#__dirname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-feature:modules.__dirname", + "tests": [ + "tests/corpus/1612-cjs-module-globals.cjs", + "tests/corpus/1596-cjs-modules/main.js", + "tests/corpus/1629-require-main-filename.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-feature:modules.__dirname", + "tests": [ + "tests/fixtures/npm/cases/create-require/main.ts", + "tests/fixtures/npm/cases/dynamic-import/main.ts" + ] + } + } + }, + { + "id": "modules:e625dd8580d1", + "chapter": "modules", + "label": "__filename", + "signature": "`__filename`", + "apiSymbol": "__filename", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/modules.html#__filename", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-feature:modules.__filename", + "tests": [ + "tests/corpus/1612-cjs-module-globals.cjs", + "tests/corpus/1596-cjs-modules/main.js", + "tests/corpus/1629-require-main-filename.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-feature:modules.__filename", + "tests": [ + "tests/fixtures/npm/cases/create-require/main.ts", + "tests/fixtures/npm/cases/dynamic-import/main.ts" + ] + } + } + }, + { + "id": "modules:d5b495045982", + "chapter": "modules", + "label": "exports", + "signature": "`exports`", + "apiSymbol": "exports", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/modules.html#exports", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-feature:modules.exports", + "tests": [ + "tests/corpus/1612-cjs-module-globals.cjs", + "tests/corpus/1596-cjs-modules/main.js", + "tests/corpus/1629-require-main-filename.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-feature:modules.exports", + "tests": [ + "tests/fixtures/npm/cases/create-require/main.ts", + "tests/fixtures/npm/cases/dynamic-import/main.ts" + ] + } + } + }, + { + "id": "modules:5a5f51b4fc3e", + "chapter": "modules", + "label": "module", + "signature": "`module`", + "apiSymbol": "module", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/modules.html#module", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "unreviewed", + "action": "classify", + "verification": "unreviewed", + "confidence": "low", + "source": null, + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-feature:modules.module", + "tests": [ + "tests/fixtures/npm/cases/create-require/main.ts", + "tests/fixtures/npm/cases/dynamic-import/main.ts" + ] + } + } + }, + { + "id": "modules:056495e043c6", + "chapter": "modules", + "label": "require(id)", + "signature": "`require(id)`", + "apiSymbol": "require", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/modules.html#requireid", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-feature:modules.require", + "tests": [ + "tests/corpus/1612-cjs-module-globals.cjs", + "tests/corpus/1596-cjs-modules/main.js", + "tests/corpus/1629-require-main-filename.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-feature:modules.require", + "tests": [ + "tests/fixtures/npm/cases/create-require/main.ts", + "tests/fixtures/npm/cases/dynamic-import/main.ts" + ] + } + } + }, + { + "id": "modules:954d775e870c", + "chapter": "modules", + "label": "require.resolve(request[, options])", + "signature": "`require.resolve(request[, options])`", + "apiSymbol": "require.resolve", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/modules.html#requireresolverequest-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-feature:modules.require.resolve", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-feature:modules.require.resolve", + "tests": [] + } + } + }, + { + "id": "modules:249279b983c4", + "chapter": "modules", + "label": "require.resolve.paths(request)", + "signature": "`require.resolve.paths(request)`", + "apiSymbol": "require.resolve.paths", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/modules.html#requireresolvepathsrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-feature:modules.require.resolve.paths", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-feature:modules.require.resolve.paths", + "tests": [] + } + } + }, + { + "id": "modules:be556cbed19e", + "chapter": "modules", + "label": "cache", + "signature": "`cache` Type: {Object}", + "apiSymbol": "cache", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/modules.html#requireid", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-feature:modules.cache", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-feature:modules.cache", + "tests": [ + "tests/fixtures/npm/cases/create-require/main.ts", + "tests/fixtures/npm/cases/dynamic-import/main.ts" + ] + } + } + }, + { + "id": "modules:48aa32b742d7", + "chapter": "modules", + "label": "extensions", + "signature": "`extensions` Type: {Object}", + "apiSymbol": "extensions", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/modules.html#requireid", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-feature:modules.extensions", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-feature:modules.extensions", + "tests": [] + } + } + }, + { + "id": "modules:3b647f98c57f", + "chapter": "modules", + "label": "main", + "signature": "`main` Type: {module | undefined}", + "apiSymbol": "main", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/modules.html#requireid", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-feature:modules.main", + "tests": [ + "tests/corpus/1612-cjs-module-globals.cjs", + "tests/corpus/1596-cjs-modules/main.js", + "tests/corpus/1629-require-main-filename.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-feature:modules.main", + "tests": [] + } + } + }, + { + "id": "modules:09f0d43f4cd8", + "chapter": "modules", + "label": "The module object", + "signature": "The `module` object", + "apiSymbol": "module", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/modules.html#the-module-object", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "unreviewed", + "action": "classify", + "verification": "unreviewed", + "confidence": "low", + "source": null, + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-feature:modules.module", + "tests": [ + "tests/fixtures/npm/cases/create-require/main.ts", + "tests/fixtures/npm/cases/dynamic-import/main.ts" + ] + } + } + }, + { + "id": "modules:43f2429babdc", + "chapter": "modules", + "label": "module.require(id)", + "signature": "`module.require(id)`", + "apiSymbol": "module.require", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/modules.html#modulerequireid", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-feature:modules.module.require", + "tests": [ + "tests/corpus/1612-cjs-module-globals.cjs", + "tests/corpus/1596-cjs-modules/main.js", + "tests/corpus/1629-require-main-filename.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-feature:modules.module.require", + "tests": [] + } + } + }, + { + "id": "modules:6da2d3248165", + "chapter": "modules", + "label": "children", + "signature": "`children` Type: {module\\[]}", + "apiSymbol": "children", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/modules.html#the-module-object", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-feature:modules.children", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-feature:modules.children", + "tests": [] + } + } + }, + { + "id": "modules:e063afa1f252", + "chapter": "modules", + "label": "exports", + "signature": "`exports` Type: {Object}", + "apiSymbol": "exports", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/modules.html#the-module-object", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-feature:modules.exports", + "tests": [ + "tests/corpus/1612-cjs-module-globals.cjs", + "tests/corpus/1596-cjs-modules/main.js", + "tests/corpus/1629-require-main-filename.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-feature:modules.exports", + "tests": [ + "tests/fixtures/npm/cases/create-require/main.ts", + "tests/fixtures/npm/cases/dynamic-import/main.ts" + ] + } + } + }, + { + "id": "modules:478c1a7222f7", + "chapter": "modules", + "label": "exports", + "signature": "`exports` shortcut", + "apiSymbol": "exports", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/modules.html#exports-shortcut", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-feature:modules.exports", + "tests": [ + "tests/corpus/1612-cjs-module-globals.cjs", + "tests/corpus/1596-cjs-modules/main.js", + "tests/corpus/1629-require-main-filename.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-feature:modules.exports", + "tests": [ + "tests/fixtures/npm/cases/create-require/main.ts", + "tests/fixtures/npm/cases/dynamic-import/main.ts" + ] + } + } + }, + { + "id": "modules:d075de97814c", + "chapter": "modules", + "label": "filename", + "signature": "`filename` Type: {string}", + "apiSymbol": "filename", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/modules.html#the-module-object", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-feature:modules.filename", + "tests": [ + "tests/corpus/1612-cjs-module-globals.cjs", + "tests/corpus/1596-cjs-modules/main.js", + "tests/corpus/1629-require-main-filename.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-feature:modules.filename", + "tests": [ + "tests/fixtures/npm/cases/create-require/main.ts", + "tests/fixtures/npm/cases/dynamic-import/main.ts" + ] + } + } + }, + { + "id": "modules:a9747d3ba468", + "chapter": "modules", + "label": "id", + "signature": "`id` Type: {string}", + "apiSymbol": "id", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/modules.html#the-module-object", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-feature:modules.id", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-feature:modules.id", + "tests": [ + "tests/fixtures/npm/cases/create-require/main.ts", + "tests/fixtures/npm/cases/dynamic-import/main.ts" + ] + } + } + }, + { + "id": "modules:da6596907e16", + "chapter": "modules", + "label": "isPreloading", + "signature": "`isPreloading` Type: {boolean} `true` if the module is running during the Node.js preload phase.", + "apiSymbol": "isPreloading", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/modules.html#the-module-object", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-feature:modules.isPreloading", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-feature:modules.isPreloading", + "tests": [] + } + } + }, + { + "id": "modules:e6ff44b0445e", + "chapter": "modules", + "label": "loaded", + "signature": "`loaded` Type: {boolean}", + "apiSymbol": "loaded", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/modules.html#the-module-object", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-feature:modules.loaded", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-feature:modules.loaded", + "tests": [ + "tests/fixtures/npm/cases/create-require/main.ts", + "tests/fixtures/npm/cases/dynamic-import/main.ts" + ] + } + } + }, + { + "id": "modules:a6403934f0b5", + "chapter": "modules", + "label": "parent", + "signature": "`parent` Type: {module | null | undefined}", + "apiSymbol": "parent", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/modules.html#the-module-object", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Please use [`require.main`][] and [`module.children`][] instead.", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-feature:modules.parent", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-feature:modules.parent", + "tests": [ + "tests/fixtures/npm/cases/create-require/main.ts", + "tests/fixtures/npm/cases/dynamic-import/main.ts" + ] + } + } + }, + { + "id": "modules:8093a07cb637", + "chapter": "modules", + "label": "path", + "signature": "`path` Type: {string}", + "apiSymbol": "path", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/modules.html#the-module-object", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "unreviewed", + "action": "classify", + "verification": "unreviewed", + "confidence": "low", + "source": null, + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-feature:modules.path", + "tests": [ + "tests/fixtures/npm/cases/create-require/main.ts", + "tests/fixtures/npm/cases/dynamic-import/main.ts" + ] + } + } + }, + { + "id": "modules:06d390012d4d", + "chapter": "modules", + "label": "paths", + "signature": "`paths` Type: {string\\[]}", + "apiSymbol": "paths", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/modules.html#the-module-object", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-feature:modules.paths", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-feature:modules.paths", + "tests": [] + } + } + }, + { + "id": "modules:9500e0c7ec5b", + "chapter": "modules", + "label": "The Module object", + "signature": "The `Module` object", + "apiSymbol": "Module", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/modules.html#the-module-object_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-feature:modules.Module", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-feature:modules.Module", + "tests": [] + } + } + }, + { + "id": "modules:b7b296f1ef44", + "chapter": "modules", + "label": "Built-in modules with mandatory node: prefix", + "signature": "Built-in modules with mandatory `node:` prefix", + "apiSymbol": "node:", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/modules.html#built-in-modules-with-mandatory-node-prefix", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-feature:modules.node:", + "tests": [ + "tests/corpus/1598-cjs-builtin-require/main.js", + "tests/corpus/1596-cjs-modules/main.js" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-feature:modules.node:", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts", + "tests/fixtures/npm/cases/create-require/main.ts" + ] + } + } + }, + { + "id": "modules:3b9ec73acaba", + "chapter": "modules", + "label": "Loading from node_modules folders", + "signature": "Loading from `node_modules` folders", + "apiSymbol": "node_modules", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/modules.html#loading-from-node_modules-folders", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-feature:modules.node_modules", + "tests": [ + "tests/corpus/1598-cjs-builtin-require/main.js", + "tests/corpus/1596-cjs-modules/main.js" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-feature:modules.node_modules", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts", + "tests/fixtures/npm/cases/create-require/main.ts" + ] + } + } + }, + { + "id": "esm:398729f00331", + "chapter": "esm", + "label": "meta", + "signature": "`meta` Type: {Object}", + "apiSymbol": "meta", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/esm.html", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-feature:esm.meta", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-feature:esm.meta", + "tests": [] + } + } + }, + { + "id": "esm:770cc3feb10f", + "chapter": "esm", + "label": "import.meta.resolve(specifier)", + "signature": "`import.meta.resolve(specifier)`", + "apiSymbol": "import.meta.resolve", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/esm.html#importmetaresolvespecifier", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate", + "inherited": false + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-feature:esm.import.meta.resolve", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-feature:esm.import.meta.resolve", + "tests": [] + } + } + }, + { + "id": "esm:3d34d71eee99", + "chapter": "esm", + "label": "dirname", + "signature": "`dirname` Type: {string} The directory name of the current module.", + "apiSymbol": "dirname", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/esm.html", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-feature:esm.dirname", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-feature:esm.dirname", + "tests": [] + } + } + }, + { + "id": "esm:a5296bf4d3c8", + "chapter": "esm", + "label": "filename", + "signature": "`filename` Type: {string} The full absolute path and filename of the current module, with symlinks resolved.", + "apiSymbol": "filename", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/esm.html", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-feature:esm.filename", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-feature:esm.filename", + "tests": [] + } + } + }, + { + "id": "esm:da8d4c5ee6d4", + "chapter": "esm", + "label": "url", + "signature": "`url` Type: {string} The absolute `file:` URL of the module.", + "apiSymbol": "url", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/esm.html", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "unreviewed", + "action": "classify", + "verification": "unreviewed", + "confidence": "low", + "source": null, + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-feature:esm.url", + "tests": [ + "tests/fixtures/npm/cases/dynamic-import/main.ts", + "tests/corpus/2646-top-level-await.ts" + ] + } + } + }, + { + "id": "esm:f3967e55a1b9", + "chapter": "esm", + "label": "main", + "signature": "`main` Type: {boolean} `true` when the current module is the entry point of the current process; `false` otherwise.", + "apiSymbol": "main", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/esm.html", + "nodeStability": { + "index": "1.0", + "level": 1, + "text": "Early development", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-feature:esm.main", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-feature:esm.main", + "tests": [] + } + } + }, + { + "id": "esm:6c87e539e091", + "chapter": "esm", + "label": "import", + "signature": "`import` Specifiers", + "apiSymbol": "import", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/esm.html#import-specifiers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-feature:esm.import", + "tests": [ + "tests/corpus/950-modules-basic/main.ts", + "tests/corpus/2646-top-level-await.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-feature:esm.import", + "tests": [ + "tests/fixtures/npm/cases/dynamic-import/main.ts", + "tests/corpus/2646-top-level-await.ts" + ] + } + } + }, + { + "id": "esm:2a244b54b925", + "chapter": "esm", + "label": "file:", + "signature": "`file:` URLs", + "apiSymbol": "file:", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/esm.html#file-urls", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-feature:esm.file:", + "tests": [ + "tests/corpus/950-modules-basic/main.ts", + "tests/corpus/2646-top-level-await.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-feature:esm.file:", + "tests": [ + "tests/fixtures/npm/cases/dynamic-import/main.ts", + "tests/corpus/2646-top-level-await.ts" + ] + } + } + }, + { + "id": "esm:9822dee686fe", + "chapter": "esm", + "label": "data:", + "signature": "`data:` imports", + "apiSymbol": "data:", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/esm.html#data-imports", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-feature:esm.data:", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-feature:esm.data:", + "tests": [] + } + } + }, + { + "id": "esm:be988d8c5641", + "chapter": "esm", + "label": "node:", + "signature": "`node:` imports", + "apiSymbol": "node:", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/esm.html#node-imports", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-feature:esm.node:", + "tests": [ + "tests/corpus/950-modules-basic/main.ts", + "tests/corpus/2646-top-level-await.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-feature:esm.node:", + "tests": [ + "tests/fixtures/npm/cases/dynamic-import/main.ts", + "tests/corpus/2646-top-level-await.ts" + ] + } + } + }, + { + "id": "esm:42b89f19c721", + "chapter": "esm", + "label": "import()", + "signature": "`import()` expressions", + "apiSymbol": "import", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/esm.html#import-expressions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-feature:esm.import", + "tests": [ + "tests/corpus/950-modules-basic/main.ts", + "tests/corpus/2646-top-level-await.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-feature:esm.import", + "tests": [ + "tests/fixtures/npm/cases/dynamic-import/main.ts", + "tests/corpus/2646-top-level-await.ts" + ] + } + } + }, + { + "id": "esm:1cd65a249eb8", + "chapter": "esm", + "label": "import", + "signature": "`import` statements", + "apiSymbol": "import", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/esm.html#import-statements", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-feature:esm.import", + "tests": [ + "tests/corpus/950-modules-basic/main.ts", + "tests/corpus/2646-top-level-await.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-feature:esm.import", + "tests": [ + "tests/fixtures/npm/cases/dynamic-import/main.ts", + "tests/corpus/2646-top-level-await.ts" + ] + } + } + }, + { + "id": "esm:2ea8c24c8d10", + "chapter": "esm", + "label": "require", + "signature": "`require`", + "apiSymbol": "require", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/esm.html#require", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-feature:esm.require", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-feature:esm.require", + "tests": [] + } + } + }, + { + "id": "esm:d2f2039bf558", + "chapter": "esm", + "label": "No require, exports, or module.exports", + "signature": "No `require`, `exports`, or `module.exports`", + "apiSymbol": "require", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/esm.html#no-require-exports-or-moduleexports", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-feature:esm.require", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-feature:esm.require", + "tests": [] + } + } + }, + { + "id": "esm:42a5ef0b1e3a", + "chapter": "esm", + "label": "No __filename or __dirname", + "signature": "No `__filename` or `__dirname`", + "apiSymbol": "__filename", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/esm.html#no-__filename-or-__dirname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-feature:esm.__filename", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-feature:esm.__filename", + "tests": [] + } + } + }, + { + "id": "esm:f13c9567bec7", + "chapter": "esm", + "label": "No require.main", + "signature": "No `require.main`", + "apiSymbol": "require.main", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/esm.html#no-requiremain", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-feature:esm.require.main", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-feature:esm.require.main", + "tests": [] + } + } + }, + { + "id": "esm:d161faeca501", + "chapter": "esm", + "label": "No require.resolve", + "signature": "No `require.resolve`", + "apiSymbol": "require.resolve", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/esm.html#no-requireresolve", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-feature:esm.require.resolve", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-feature:esm.require.resolve", + "tests": [] + } + } + }, + { + "id": "esm:915bca871ae7", + "chapter": "esm", + "label": "No NODE_PATH", + "signature": "No `NODE_PATH`", + "apiSymbol": "NODE_PATH", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/esm.html#no-node_path", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-feature:esm.NODE_PATH", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-feature:esm.NODE_PATH", + "tests": [] + } + } + }, + { + "id": "esm:a2d3948d79c1", + "chapter": "esm", + "label": "No require.extensions", + "signature": "No `require.extensions`", + "apiSymbol": "require.extensions", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/esm.html#no-requireextensions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-feature:esm.require.extensions", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-feature:esm.require.extensions", + "tests": [] + } + } + }, + { + "id": "esm:b26a1a3160c5", + "chapter": "esm", + "label": "No require.cache", + "signature": "No `require.cache`", + "apiSymbol": "require.cache", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/esm.html#no-requirecache", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-feature:esm.require.cache", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-feature:esm.require.cache", + "tests": [] + } + } + }, + { + "id": "esm:5fac97cf09fd", + "chapter": "esm", + "label": "Top-level await", + "signature": "Top-level `await`", + "apiSymbol": "await", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/esm.html#top-level-await", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-feature:esm.await", + "tests": [ + "tests/corpus/950-modules-basic/main.ts", + "tests/corpus/2646-top-level-await.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-feature:esm.await", + "tests": [ + "tests/fixtures/npm/cases/dynamic-import/main.ts", + "tests/corpus/2646-top-level-await.ts" + ] + } + } + }, + { + "id": "module:c350c12559fe", + "chapter": "module", + "label": "The Module object", + "signature": "The `Module` object", + "apiSymbol": "Module", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/module.html#the-module-object", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:module", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:module", + "tests": [] + } + } + }, + { + "id": "module:9d8908f53c16", + "chapter": "module", + "label": "module.createRequire(filename)", + "signature": "`module.createRequire(filename)`", + "apiSymbol": "module.createRequire", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/module.html#modulecreaterequirefilename", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.module.createRequire", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:module.createRequire", + "tests": [ + "tests/fixtures/npm/cases/create-require/main.ts", + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "module:94dee3eb15e0", + "chapter": "module", + "label": "module.findPackageJSON(specifier[, base])", + "signature": "`module.findPackageJSON(specifier[, base])`", + "apiSymbol": "module.findPackageJSON", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/module.html#modulefindpackagejsonspecifier-base", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active Development", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:module", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:module", + "tests": [] + } + } + }, + { + "id": "module:f6fbd730ec50", + "chapter": "module", + "label": "module.isBuiltin(moduleName)", + "signature": "`module.isBuiltin(moduleName)`", + "apiSymbol": "module.isBuiltin", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/module.html#moduleisbuiltinmodulename", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.module.isBuiltin", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:module.isBuiltin", + "tests": [ + "tests/fixtures/npm/cases/create-require/main.ts", + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "module:3d54b9c0e7c7", + "chapter": "module", + "label": "module.register(specifier[, parentURL][, options])", + "signature": "`module.register(specifier[, parentURL][, options])`", + "apiSymbol": "module.register", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/module.html#moduleregisterspecifier-parenturl-options", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Use [`module.registerHooks()`][] instead.", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:module", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:module.register", + "tests": [] + } + } + }, + { + "id": "module:8ff8dc23b804", + "chapter": "module", + "label": "module.registerHooks(options)", + "signature": "`module.registerHooks(options)`", + "apiSymbol": "module.registerHooks", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/module.html#moduleregisterhooksoptions", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate", + "inherited": false + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:module", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:module", + "tests": [] + } + } + }, + { + "id": "module:aa4c3c8d7c9a", + "chapter": "module", + "label": "module.stripTypeScriptTypes(code[, options])", + "signature": "`module.stripTypeScriptTypes(code[, options])`", + "apiSymbol": "module.stripTypeScriptTypes", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/module.html#modulestriptypescripttypescode-options", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate", + "inherited": false + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:module", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:module", + "tests": [] + } + } + }, + { + "id": "module:85115e1e8511", + "chapter": "module", + "label": "module.syncBuiltinESMExports()", + "signature": "`module.syncBuiltinESMExports()`", + "apiSymbol": "module.syncBuiltinESMExports", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/module.html#modulesyncbuiltinesmexports", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.module.syncBuiltinESMExports", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:module.syncBuiltinESMExports", + "tests": [ + "tests/fixtures/npm/cases/create-require/main.ts", + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "module:15fffe123676", + "chapter": "module", + "label": "builtinModules", + "signature": "`builtinModules` Type: {string\\[]}", + "apiSymbol": "builtinModules", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/module.html#the-module-object", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:module", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:module.builtinModules", + "tests": [ + "tests/fixtures/npm/cases/create-require/main.ts", + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "module:7e2798ff7fc1", + "chapter": "module", + "label": "module.enableCompileCache([options])", + "signature": "`module.enableCompileCache([options])`", + "apiSymbol": "module.enableCompileCache", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/module.html#moduleenablecompilecacheoptions", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:module", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:module", + "tests": [] + } + } + }, + { + "id": "module:5bd39a385e2c", + "chapter": "module", + "label": "module.flushCompileCache()", + "signature": "`module.flushCompileCache()`", + "apiSymbol": "module.flushCompileCache", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/module.html#moduleflushcompilecache", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:module", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:module", + "tests": [] + } + } + }, + { + "id": "module:aeb80bcfec08", + "chapter": "module", + "label": "module.getCompileCacheDir()", + "signature": "`module.getCompileCacheDir()`", + "apiSymbol": "module.getCompileCacheDir", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/module.html#modulegetcompilecachedir", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:module", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:module", + "tests": [] + } + } + }, + { + "id": "module:e163ffeb7c47", + "chapter": "module", + "label": "module.constants.compileCacheStatus", + "signature": "`module.constants.compileCacheStatus`", + "apiSymbol": "module.constants.compileCacheStatus", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/module.html#moduleconstantscompilecachestatus", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:module", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:module", + "tests": [] + } + } + }, + { + "id": "module:c94ee6d8a102", + "chapter": "module", + "label": "module.SourceMap", + "signature": "Class: `module.SourceMap`", + "apiSymbol": "module.SourceMap", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/module.html#class-modulesourcemap", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:module", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:module", + "tests": [] + } + } + }, + { + "id": "module:112bfcb4f027", + "chapter": "module", + "label": "sourceMap.findEntry(lineOffset, columnOffset)", + "signature": "`sourceMap.findEntry(lineOffset, columnOffset)`", + "apiSymbol": "sourceMap.findEntry", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/module.html#sourcemapfindentrylineoffset-columnoffset", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:module", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:module", + "tests": [] + } + } + }, + { + "id": "module:34ac288a1e43", + "chapter": "module", + "label": "sourceMap.findOrigin(lineNumber, columnNumber)", + "signature": "`sourceMap.findOrigin(lineNumber, columnNumber)`", + "apiSymbol": "sourceMap.findOrigin", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/module.html#sourcemapfindoriginlinenumber-columnnumber", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:module", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:module", + "tests": [] + } + } + }, + { + "id": "module:ae3d77ef4af2", + "chapter": "module", + "label": "payload", + "signature": "`payload` Returns: {Object}", + "apiSymbol": "payload", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/module.html#class-modulesourcemap", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:module", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:module", + "tests": [] + } + } + }, + { + "id": "module:98f96a7a43aa", + "chapter": "module", + "label": "module.getSourceMapsSupport()", + "signature": "`module.getSourceMapsSupport()`", + "apiSymbol": "module.getSourceMapsSupport", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/module.html#modulegetsourcemapssupport", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:module", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:module", + "tests": [] + } + } + }, + { + "id": "module:ccc5785834c2", + "chapter": "module", + "label": "module.findSourceMap(path)", + "signature": "`module.findSourceMap(path)`", + "apiSymbol": "module.findSourceMap", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/module.html#modulefindsourcemappath", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:module", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:module.findSourceMap", + "tests": [ + "tests/fixtures/npm/cases/create-require/main.ts", + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "module:1a931cc1687d", + "chapter": "module", + "label": "module.setSourceMapsSupport(enabled[, options])", + "signature": "`module.setSourceMapsSupport(enabled[, options])`", + "apiSymbol": "module.setSourceMapsSupport", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/module.html#modulesetsourcemapssupportenabled-options", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:module", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:module", + "tests": [] + } + } + }, + { + "id": "module:3e194cae16a0", + "chapter": "module", + "label": "Registering hooks before application code runs with a data: URL", + "signature": "Registering hooks before application code runs with a `data:` URL", + "apiSymbol": "data:", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/module.html#registering-hooks-before-application-code-runs-with-a-data-url", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate", + "inherited": true + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:module", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:module", + "tests": [] + } + } + }, + { + "id": "module:40fc43ea4dff", + "chapter": "module", + "label": "Hook functions accepted by module.registerHooks()", + "signature": "Hook functions accepted by `module.registerHooks()`", + "apiSymbol": "module.registerHooks", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/module.html#hook-functions-accepted-by-moduleregisterhooks", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate", + "inherited": true + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:module", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:module", + "tests": [] + } + } + }, + { + "id": "module:6adb33d3a573", + "chapter": "module", + "label": "Synchronous resolve(specifier, context, nextResolve)", + "signature": "Synchronous `resolve(specifier, context, nextResolve)`", + "apiSymbol": "resolve", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/module.html#synchronous-resolvespecifier-context-nextresolve", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate", + "inherited": true + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:module", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:module", + "tests": [] + } + } + }, + { + "id": "module:5e3f1bc1c4c1", + "chapter": "module", + "label": "Synchronous load(url, context, nextLoad)", + "signature": "Synchronous `load(url, context, nextLoad)`", + "apiSymbol": "load", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/module.html#synchronous-loadurl-context-nextload", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate", + "inherited": true + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:module", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:module", + "tests": [] + } + } + }, + { + "id": "module:5af285eecd9c", + "chapter": "module", + "label": "Accepted final formats returned by load", + "signature": "Accepted final formats returned by `load`", + "apiSymbol": "load", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/module.html#accepted-final-formats-returned-by-load", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate", + "inherited": true + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:module", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:module", + "tests": [] + } + } + }, + { + "id": "module:45b84dcd4cb5", + "chapter": "module", + "label": "Asynchronous hooks accepted by module.register()", + "signature": "Asynchronous hooks accepted by `module.register()`", + "apiSymbol": "module.register", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/module.html#asynchronous-hooks-accepted-by-moduleregister", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active Development", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:module", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:module.register", + "tests": [] + } + } + }, + { + "id": "module:4446fe337c1f", + "chapter": "module", + "label": "Asynchronous resolve(specifier, context, nextResolve)", + "signature": "Asynchronous `resolve(specifier, context, nextResolve)`", + "apiSymbol": "resolve", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/module.html#asynchronous-resolvespecifier-context-nextresolve", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active Development", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:module", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:module", + "tests": [] + } + } + }, + { + "id": "module:0567054ffe29", + "chapter": "module", + "label": "Asynchronous load(url, context, nextLoad)", + "signature": "Asynchronous `load(url, context, nextLoad)`", + "apiSymbol": "load", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/module.html#asynchronous-loadurl-context-nextload", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active Development", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:module", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:module", + "tests": [] + } + } + }, + { + "id": "module:ef9f58bf7f69", + "chapter": "module", + "label": "initialize()", + "signature": "`initialize()`", + "apiSymbol": "initialize", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/module.html#initialize", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active Development", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:module", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:module", + "tests": [] + } + } + }, + { + "id": "packages:e4e12db6fba6", + "chapter": "packages", + "label": "package.json", + "signature": "`package.json` and file extensions", + "apiSymbol": "package.json", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/packages.html#packagejson-and-file-extensions", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-feature:packages.package.json", + "tests": [ + "tests/corpus/2092-package-imports/main.ts", + "tests/corpus/2120-package-self-import/main.ts", + "tests/corpus/2124-imports-field-wildcard/main.ts", + "tests/corpus/2390-dot-requires/main.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-feature:packages.package.json", + "tests": [ + "tests/fixtures/npm/cases/dual-entry/main.ts", + "tests/fixtures/npm/cases/self-name/main.ts", + "tests/fixtures/npm/cases/scoped-nested/main.ts" + ] + } + } + }, + { + "id": "packages:e3b770c4d8b1", + "chapter": "packages", + "label": "Node.js package.json field definitions", + "signature": "Node.js `package.json` field definitions", + "apiSymbol": "package.json", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/packages.html#nodejs-packagejson-field-definitions", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-feature:packages.package.json", + "tests": [ + "tests/corpus/2092-package-imports/main.ts", + "tests/corpus/2120-package-self-import/main.ts", + "tests/corpus/2124-imports-field-wildcard/main.ts", + "tests/corpus/2390-dot-requires/main.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-feature:packages.package.json", + "tests": [ + "tests/fixtures/npm/cases/dual-entry/main.ts", + "tests/fixtures/npm/cases/self-name/main.ts", + "tests/fixtures/npm/cases/scoped-nested/main.ts" + ] + } + } + }, + { + "id": "packages:b6d20a843522", + "chapter": "packages", + "label": "\"name\"", + "signature": "`\"name\"`", + "apiSymbol": "\"name\"", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/packages.html#name", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-feature:packages.\"name\"", + "tests": [ + "tests/corpus/2092-package-imports/main.ts", + "tests/corpus/2120-package-self-import/main.ts", + "tests/corpus/2124-imports-field-wildcard/main.ts", + "tests/corpus/2390-dot-requires/main.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-feature:packages.\"name\"", + "tests": [ + "tests/fixtures/npm/cases/dual-entry/main.ts", + "tests/fixtures/npm/cases/self-name/main.ts", + "tests/fixtures/npm/cases/scoped-nested/main.ts" + ] + } + } + }, + { + "id": "packages:10cca2a3ef0e", + "chapter": "packages", + "label": "\"main\"", + "signature": "`\"main\"`", + "apiSymbol": "\"main\"", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/packages.html#main", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-feature:packages.\"main\"", + "tests": [ + "tests/corpus/2092-package-imports/main.ts", + "tests/corpus/2120-package-self-import/main.ts", + "tests/corpus/2124-imports-field-wildcard/main.ts", + "tests/corpus/2390-dot-requires/main.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-feature:packages.\"main\"", + "tests": [ + "tests/fixtures/npm/cases/dual-entry/main.ts", + "tests/fixtures/npm/cases/self-name/main.ts", + "tests/fixtures/npm/cases/scoped-nested/main.ts" + ] + } + } + }, + { + "id": "packages:bec1b7b9334b", + "chapter": "packages", + "label": "\"type\"", + "signature": "`\"type\"`", + "apiSymbol": "\"type\"", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/packages.html#type", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-feature:packages.\"type\"", + "tests": [ + "tests/corpus/2092-package-imports/main.ts", + "tests/corpus/2120-package-self-import/main.ts", + "tests/corpus/2124-imports-field-wildcard/main.ts", + "tests/corpus/2390-dot-requires/main.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-feature:packages.\"type\"", + "tests": [ + "tests/fixtures/npm/cases/dual-entry/main.ts", + "tests/fixtures/npm/cases/self-name/main.ts", + "tests/fixtures/npm/cases/scoped-nested/main.ts" + ] + } + } + }, + { + "id": "packages:1cb07d11fb3a", + "chapter": "packages", + "label": "\"exports\"", + "signature": "`\"exports\"`", + "apiSymbol": "\"exports\"", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/packages.html#exports", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-feature:packages.\"exports\"", + "tests": [ + "tests/corpus/2092-package-imports/main.ts", + "tests/corpus/2120-package-self-import/main.ts", + "tests/corpus/2124-imports-field-wildcard/main.ts", + "tests/corpus/2390-dot-requires/main.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-feature:packages.\"exports\"", + "tests": [ + "tests/fixtures/npm/cases/dual-entry/main.ts", + "tests/fixtures/npm/cases/self-name/main.ts", + "tests/fixtures/npm/cases/scoped-nested/main.ts" + ] + } + } + }, + { + "id": "packages:72775c823949", + "chapter": "packages", + "label": "\"imports\"", + "signature": "`\"imports\"`", + "apiSymbol": "\"imports\"", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/packages.html#imports", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-feature:packages.\"imports\"", + "tests": [ + "tests/corpus/2092-package-imports/main.ts", + "tests/corpus/2120-package-self-import/main.ts", + "tests/corpus/2124-imports-field-wildcard/main.ts", + "tests/corpus/2390-dot-requires/main.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-feature:packages.\"imports\"", + "tests": [ + "tests/fixtures/npm/cases/dual-entry/main.ts", + "tests/fixtures/npm/cases/self-name/main.ts", + "tests/fixtures/npm/cases/scoped-nested/main.ts" + ] + } + } + }, + { + "id": "typescript:e0b7094a6baa", + "chapter": "typescript", + "label": "Importing types without type keyword", + "signature": "Importing types without `type` keyword", + "apiSymbol": "type", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/typescript.html#importing-types-without-type-keyword", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-feature:typescript.type", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-feature:typescript.type", + "tests": [] + } + } + }, + { + "id": "net:a4534171f578", + "chapter": "net", + "label": "net.BlockList", + "signature": "Class: `net.BlockList`", + "apiSymbol": "net.BlockList", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#class-netblocklist", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:aa4d5d08e9a5", + "chapter": "net", + "label": "blockList.addAddress(address[, type])", + "signature": "`blockList.addAddress(address[, type])`", + "apiSymbol": "blockList.addAddress", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#blocklistaddaddressaddress-type", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:035828cd10e1", + "chapter": "net", + "label": "blockList.addRange(start, end[, type])", + "signature": "`blockList.addRange(start, end[, type])`", + "apiSymbol": "blockList.addRange", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#blocklistaddrangestart-end-type", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:a2c2a1e796ad", + "chapter": "net", + "label": "blockList.addSubnet(net, prefix[, type])", + "signature": "`blockList.addSubnet(net, prefix[, type])`", + "apiSymbol": "blockList.addSubnet", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#blocklistaddsubnetnet-prefix-type", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:278a3ce510c8", + "chapter": "net", + "label": "blockList.check(address[, type])", + "signature": "`blockList.check(address[, type])`", + "apiSymbol": "blockList.check", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#blocklistcheckaddress-type", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:4ff6a4c12f52", + "chapter": "net", + "label": "BlockList.isBlockList(value)", + "signature": "`BlockList.isBlockList(value)`", + "apiSymbol": "BlockList.isBlockList", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#blocklistisblocklistvalue", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:07e5de315d95", + "chapter": "net", + "label": "blockList.fromJSON(value)", + "signature": "`blockList.fromJSON(value)`", + "apiSymbol": "blockList.fromJSON", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#blocklistfromjsonvalue", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:fb2019fd5533", + "chapter": "net", + "label": "blockList.toJSON()", + "signature": "`blockList.toJSON()`", + "apiSymbol": "blockList.toJSON", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#blocklisttojson", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:044763579a8b", + "chapter": "net", + "label": "rules", + "signature": "`rules` Type: {string\\[]}", + "apiSymbol": "rules", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#class-netblocklist", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:89343bd5aaf9", + "chapter": "net", + "label": "net.SocketAddress", + "signature": "Class: `net.SocketAddress`", + "apiSymbol": "net.SocketAddress", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#class-netsocketaddress", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:d8b7ddef1a9e", + "chapter": "net", + "label": "SocketAddress.parse(input)", + "signature": "`SocketAddress.parse(input)`", + "apiSymbol": "SocketAddress.parse", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#socketaddressparseinput", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:ecb37fc5e10a", + "chapter": "net", + "label": "address", + "signature": "`address` Type: {string}", + "apiSymbol": "address", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#class-netsocketaddress", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:700645a75b6d", + "chapter": "net", + "label": "family", + "signature": "`family` Type: {string} Either `'ipv4'` or `'ipv6'`.", + "apiSymbol": "family", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#class-netsocketaddress", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:edb24548b5ad", + "chapter": "net", + "label": "flowlabel", + "signature": "`flowlabel` Type: {number}", + "apiSymbol": "flowlabel", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#class-netsocketaddress", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:d3fe623d8a5d", + "chapter": "net", + "label": "port", + "signature": "`port` Type: {number}", + "apiSymbol": "port", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#class-netsocketaddress", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:9cc05694ab6f", + "chapter": "net", + "label": "net.Server", + "signature": "Class: `net.Server`", + "apiSymbol": "net.Server", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#class-netserver", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:net.Server", + "tests": [] + } + } + }, + { + "id": "net:e4829b616e5e", + "chapter": "net", + "label": "server.address()", + "signature": "`server.address()`", + "apiSymbol": "server.address", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#serveraddress", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:server.address", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:8b0b6930cf28", + "chapter": "net", + "label": "server.close([callback])", + "signature": "`server.close([callback])`", + "apiSymbol": "server.close", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#serverclosecallback", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:server.close", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:cb8af1f3e96e", + "chapter": "net", + "label": "server[Symbol.asyncDispose]()", + "signature": "`server[Symbol.asyncDispose]()`", + "apiSymbol": "server", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#serversymbolasyncdispose", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:d771bbf766b3", + "chapter": "net", + "label": "server.getConnections(callback)", + "signature": "`server.getConnections(callback)`", + "apiSymbol": "server.getConnections", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#servergetconnectionscallback", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:46c3dc88f874", + "chapter": "net", + "label": "server.listen()", + "signature": "`server.listen()`", + "apiSymbol": "server.listen", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#serverlisten", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:server.listen", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:641706b9cde1", + "chapter": "net", + "label": "server.listen(handle[, backlog][, callback])", + "signature": "`server.listen(handle[, backlog][, callback])`", + "apiSymbol": "server.listen", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#serverlistenhandle-backlog-callback", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:server.listen", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:69ae5c16ea9b", + "chapter": "net", + "label": "server.listen(options[, callback])", + "signature": "`server.listen(options[, callback])`", + "apiSymbol": "server.listen", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#serverlistenoptions-callback", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:server.listen", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:8db90e9d7226", + "chapter": "net", + "label": "server.listen(path[, backlog][, callback])", + "signature": "`server.listen(path[, backlog][, callback])`", + "apiSymbol": "server.listen", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#serverlistenpath-backlog-callback", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:server.listen", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:3f2a5a150495", + "chapter": "net", + "label": "server.listen([port[, host[, backlog]]][, callback])", + "signature": "`server.listen([port[, host[, backlog]]][, callback])`", + "apiSymbol": "server.listen", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#serverlistenport-host-backlog-callback", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:server.listen", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:bfc1c02de603", + "chapter": "net", + "label": "server.ref()", + "signature": "`server.ref()`", + "apiSymbol": "server.ref", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#serverref", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:e8c45031923b", + "chapter": "net", + "label": "server.unref()", + "signature": "`server.unref()`", + "apiSymbol": "server.unref", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#serverunref", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:f512fa4d215e", + "chapter": "net", + "label": "listening", + "signature": "`listening` Type: {boolean} Indicates whether or not the server is listening for connections.", + "apiSymbol": "listening", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#class-netserver", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:9bdb0c5b0e96", + "chapter": "net", + "label": "maxConnections", + "signature": "`maxConnections` Type: {integer}", + "apiSymbol": "maxConnections", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#class-netserver", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:5067a03de492", + "chapter": "net", + "label": "dropMaxConnection", + "signature": "`dropMaxConnection` Type: {boolean}", + "apiSymbol": "dropMaxConnection", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#class-netserver", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:992edf208e3d", + "chapter": "net", + "label": "'close'", + "signature": "Event: `'close'`", + "apiSymbol": "'close'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#event-close", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:3bcc9da04a85", + "chapter": "net", + "label": "'connection'", + "signature": "Event: `'connection'`", + "apiSymbol": "'connection'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#event-connection", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:88491a799abc", + "chapter": "net", + "label": "'error'", + "signature": "Event: `'error'`", + "apiSymbol": "'error'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#event-error", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:e0948c09f069", + "chapter": "net", + "label": "'listening'", + "signature": "Event: `'listening'`", + "apiSymbol": "'listening'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#event-listening", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:1b50e0231816", + "chapter": "net", + "label": "'drop'", + "signature": "Event: `'drop'`", + "apiSymbol": "'drop'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#event-drop", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:9296e277bdec", + "chapter": "net", + "label": "net.Socket", + "signature": "Class: `net.Socket`", + "apiSymbol": "net.Socket", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#class-netsocket", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:net.Socket", + "tests": [] + } + } + }, + { + "id": "net:0acfadfa8cd9", + "chapter": "net", + "label": "socket.address()", + "signature": "`socket.address()`", + "apiSymbol": "socket.address", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#socketaddress", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:socket.address", + "tests": [ + "tests/corpus/2597-dgram-send-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:1a257d617710", + "chapter": "net", + "label": "socket.connect()", + "signature": "`socket.connect()`", + "apiSymbol": "socket.connect", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#socketconnect", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:socket.connect", + "tests": [ + "tests/corpus/2597-dgram-send-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:a2a9cd13141f", + "chapter": "net", + "label": "socket.connect(options[, connectListener])", + "signature": "`socket.connect(options[, connectListener])`", + "apiSymbol": "socket.connect", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#socketconnectoptions-connectlistener", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:socket.connect", + "tests": [ + "tests/corpus/2597-dgram-send-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:1e2bef4908f3", + "chapter": "net", + "label": "socket.connect(path[, connectListener])", + "signature": "`socket.connect(path[, connectListener])`", + "apiSymbol": "socket.connect", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#socketconnectpath-connectlistener", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:socket.connect", + "tests": [ + "tests/corpus/2597-dgram-send-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:f1b87f136bfb", + "chapter": "net", + "label": "socket.connect(port[, host][, connectListener])", + "signature": "`socket.connect(port[, host][, connectListener])`", + "apiSymbol": "socket.connect", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#socketconnectport-host-connectlistener", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:socket.connect", + "tests": [ + "tests/corpus/2597-dgram-send-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:e61cf2d7869b", + "chapter": "net", + "label": "socket.destroy([error])", + "signature": "`socket.destroy([error])`", + "apiSymbol": "socket.destroy", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#socketdestroyerror", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:socket.destroy", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:cdaa141289fd", + "chapter": "net", + "label": "socket.destroySoon()", + "signature": "`socket.destroySoon()`", + "apiSymbol": "socket.destroySoon", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#socketdestroysoon", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:0522326138b8", + "chapter": "net", + "label": "socket.end([data[, encoding]][, callback])", + "signature": "`socket.end([data[, encoding]][, callback])`", + "apiSymbol": "socket.end", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#socketenddata-encoding-callback", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:socket.end", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:75d839acf1ae", + "chapter": "net", + "label": "socket.pause()", + "signature": "`socket.pause()`", + "apiSymbol": "socket.pause", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#socketpause", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:socket.pause", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:a7ef1c528048", + "chapter": "net", + "label": "socket.ref()", + "signature": "`socket.ref()`", + "apiSymbol": "socket.ref", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#socketref", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:socket.ref", + "tests": [ + "tests/corpus/2597-dgram-send-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:64f5c6c21ebb", + "chapter": "net", + "label": "socket.resetAndDestroy()", + "signature": "`socket.resetAndDestroy()`", + "apiSymbol": "socket.resetAndDestroy", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#socketresetanddestroy", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:2ff2d2f7acc7", + "chapter": "net", + "label": "socket.resume()", + "signature": "`socket.resume()`", + "apiSymbol": "socket.resume", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#socketresume", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:socket.resume", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:14a0fb92fa7b", + "chapter": "net", + "label": "socket.setEncoding([encoding])", + "signature": "`socket.setEncoding([encoding])`", + "apiSymbol": "socket.setEncoding", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#socketsetencodingencoding", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:socket.setEncoding", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:7412f0f2828d", + "chapter": "net", + "label": "socket.setKeepAlive([enable][, initialDelay])", + "signature": "`socket.setKeepAlive([enable][, initialDelay])`", + "apiSymbol": "socket.setKeepAlive", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#socketsetkeepaliveenable-initialdelay", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:b6764f532190", + "chapter": "net", + "label": "socket.setNoDelay([noDelay])", + "signature": "`socket.setNoDelay([noDelay])`", + "apiSymbol": "socket.setNoDelay", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#socketsetnodelaynodelay", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:84001187a222", + "chapter": "net", + "label": "socket.setTimeout(timeout[, callback])", + "signature": "`socket.setTimeout(timeout[, callback])`", + "apiSymbol": "socket.setTimeout", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#socketsettimeouttimeout-callback", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:socket.setTimeout", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:7fc21d77580a", + "chapter": "net", + "label": "socket.getTypeOfService()", + "signature": "`socket.getTypeOfService()`", + "apiSymbol": "socket.getTypeOfService", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#socketgettypeofservice", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:2b2ff106a8d7", + "chapter": "net", + "label": "socket.setTypeOfService(tos)", + "signature": "`socket.setTypeOfService(tos)`", + "apiSymbol": "socket.setTypeOfService", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#socketsettypeofservicetos", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:6e2b583dea69", + "chapter": "net", + "label": "socket.unref()", + "signature": "`socket.unref()`", + "apiSymbol": "socket.unref", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#socketunref", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:socket.unref", + "tests": [ + "tests/corpus/2597-dgram-send-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:8c0698d22ee6", + "chapter": "net", + "label": "socket.write(data[, encoding][, callback])", + "signature": "`socket.write(data[, encoding][, callback])`", + "apiSymbol": "socket.write", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#socketwritedata-encoding-callback", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:socket.write", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:d41cbd39c438", + "chapter": "net", + "label": "autoSelectFamilyAttemptedAddresses", + "signature": "`autoSelectFamilyAttemptedAddresses` Type: {string\\[]}", + "apiSymbol": "autoSelectFamilyAttemptedAddresses", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#class-netsocket", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:52afe2bd1f88", + "chapter": "net", + "label": "bufferSize", + "signature": "`bufferSize` Type: {integer}", + "apiSymbol": "bufferSize", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#class-netsocket", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Use [`writable.writableLength`][] instead.", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:e095ee43b02e", + "chapter": "net", + "label": "bytesRead", + "signature": "`bytesRead` Type: {integer}", + "apiSymbol": "bytesRead", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#class-netsocket", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:98bf772b3f15", + "chapter": "net", + "label": "bytesWritten", + "signature": "`bytesWritten` Type: {integer}", + "apiSymbol": "bytesWritten", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#class-netsocket", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:5c9c48be12d3", + "chapter": "net", + "label": "connecting", + "signature": "`connecting` Type: {boolean}", + "apiSymbol": "connecting", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#class-netsocket", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:606071fbf392", + "chapter": "net", + "label": "destroyed", + "signature": "`destroyed` Type: {boolean} Indicates if the connection is destroyed or not. Once a connection is destroyed no further data can be transferred using it.", + "apiSymbol": "destroyed", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#class-netsocket", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:c2ef3c0f5e17", + "chapter": "net", + "label": "localAddress", + "signature": "`localAddress` Type: {string}", + "apiSymbol": "localAddress", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#class-netsocket", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:6da396af94a6", + "chapter": "net", + "label": "localPort", + "signature": "`localPort` Type: {integer}", + "apiSymbol": "localPort", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#class-netsocket", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:c792f6ed2d9c", + "chapter": "net", + "label": "localFamily", + "signature": "`localFamily` Type: {string}", + "apiSymbol": "localFamily", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#class-netsocket", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:fb343fc72ba2", + "chapter": "net", + "label": "pending", + "signature": "`pending` Type: {boolean}", + "apiSymbol": "pending", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#class-netsocket", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:cb5514a7fed1", + "chapter": "net", + "label": "remoteAddress", + "signature": "`remoteAddress` Type: {string}", + "apiSymbol": "remoteAddress", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#class-netsocket", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:10f734f083d2", + "chapter": "net", + "label": "remoteFamily", + "signature": "`remoteFamily` Type: {string}", + "apiSymbol": "remoteFamily", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#class-netsocket", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:9f91bb06165a", + "chapter": "net", + "label": "remotePort", + "signature": "`remotePort` Type: {integer}", + "apiSymbol": "remotePort", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#class-netsocket", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:f96568725a94", + "chapter": "net", + "label": "timeout", + "signature": "`timeout` Type: {number|undefined}", + "apiSymbol": "timeout", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#class-netsocket", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:timeout", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:f73b745b326e", + "chapter": "net", + "label": "readyState", + "signature": "`readyState` Type: {string}", + "apiSymbol": "readyState", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#class-netsocket", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:b2599fa8371a", + "chapter": "net", + "label": "'close'", + "signature": "Event: `'close'`", + "apiSymbol": "'close'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#event-close_1", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:0a8cc1336b80", + "chapter": "net", + "label": "'connect'", + "signature": "Event: `'connect'`", + "apiSymbol": "'connect'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#event-connect", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:5d2419fc5afe", + "chapter": "net", + "label": "'connectionAttempt'", + "signature": "Event: `'connectionAttempt'`", + "apiSymbol": "'connectionAttempt'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#event-connectionattempt", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:7909ab428071", + "chapter": "net", + "label": "'connectionAttemptFailed'", + "signature": "Event: `'connectionAttemptFailed'`", + "apiSymbol": "'connectionAttemptFailed'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#event-connectionattemptfailed", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:ae5ce3686340", + "chapter": "net", + "label": "'connectionAttemptTimeout'", + "signature": "Event: `'connectionAttemptTimeout'`", + "apiSymbol": "'connectionAttemptTimeout'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#event-connectionattempttimeout", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:4478488608ba", + "chapter": "net", + "label": "'data'", + "signature": "Event: `'data'`", + "apiSymbol": "'data'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#event-data", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:06034dedc39f", + "chapter": "net", + "label": "'drain'", + "signature": "Event: `'drain'`", + "apiSymbol": "'drain'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#event-drain", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:59e69be71236", + "chapter": "net", + "label": "'end'", + "signature": "Event: `'end'`", + "apiSymbol": "'end'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#event-end", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:5c5069a07554", + "chapter": "net", + "label": "'error'", + "signature": "Event: `'error'`", + "apiSymbol": "'error'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#event-error_1", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:03d3f8746cb8", + "chapter": "net", + "label": "'lookup'", + "signature": "Event: `'lookup'`", + "apiSymbol": "'lookup'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#event-lookup", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:fafd8bcda5fe", + "chapter": "net", + "label": "'ready'", + "signature": "Event: `'ready'`", + "apiSymbol": "'ready'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#event-ready", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:bd336464f782", + "chapter": "net", + "label": "'timeout'", + "signature": "Event: `'timeout'`", + "apiSymbol": "'timeout'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#event-timeout", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:2d7b6dbbbe2c", + "chapter": "net", + "label": "net.connect()", + "signature": "`net.connect()`", + "apiSymbol": "net.connect", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#netconnect", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:net.connect", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:net.connect", + "tests": [] + } + } + }, + { + "id": "net:12d18d57ece0", + "chapter": "net", + "label": "net.connect(options[, connectListener])", + "signature": "`net.connect(options[, connectListener])`", + "apiSymbol": "net.connect", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#netconnectoptions-connectlistener", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:net.connect", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:net.connect", + "tests": [] + } + } + }, + { + "id": "net:40a2d79beab9", + "chapter": "net", + "label": "net.connect(path[, connectListener])", + "signature": "`net.connect(path[, connectListener])`", + "apiSymbol": "net.connect", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#netconnectpath-connectlistener", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:net.connect", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:net.connect", + "tests": [] + } + } + }, + { + "id": "net:ef1c5fc36ae5", + "chapter": "net", + "label": "net.connect(port[, host][, connectListener])", + "signature": "`net.connect(port[, host][, connectListener])`", + "apiSymbol": "net.connect", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#netconnectport-host-connectlistener", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:net.connect", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:net.connect", + "tests": [] + } + } + }, + { + "id": "net:fd4e1cf3dd55", + "chapter": "net", + "label": "net.createConnection()", + "signature": "`net.createConnection()`", + "apiSymbol": "net.createConnection", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#netcreateconnection", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:net.createConnection", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:net.createConnection", + "tests": [] + } + } + }, + { + "id": "net:0a914b7857cd", + "chapter": "net", + "label": "net.createConnection(options[, connectListener])", + "signature": "`net.createConnection(options[, connectListener])`", + "apiSymbol": "net.createConnection", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#netcreateconnectionoptions-connectlistener", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:net.createConnection", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:net.createConnection", + "tests": [] + } + } + }, + { + "id": "net:694a4f54a581", + "chapter": "net", + "label": "net.createConnection(path[, connectListener])", + "signature": "`net.createConnection(path[, connectListener])`", + "apiSymbol": "net.createConnection", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#netcreateconnectionpath-connectlistener", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:net.createConnection", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:net.createConnection", + "tests": [] + } + } + }, + { + "id": "net:5f8c1e35d1dd", + "chapter": "net", + "label": "net.createConnection(port[, host][, connectListener])", + "signature": "`net.createConnection(port[, host][, connectListener])`", + "apiSymbol": "net.createConnection", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#netcreateconnectionport-host-connectlistener", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:net.createConnection", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:net.createConnection", + "tests": [] + } + } + }, + { + "id": "net:6ac098125b16", + "chapter": "net", + "label": "net.createServer([options][, connectionListener])", + "signature": "`net.createServer([options][, connectionListener])`", + "apiSymbol": "net.createServer", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#netcreateserveroptions-connectionlistener", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:net.createServer", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:net.createServer", + "tests": [] + } + } + }, + { + "id": "net:5184a955728a", + "chapter": "net", + "label": "net.getDefaultAutoSelectFamily()", + "signature": "`net.getDefaultAutoSelectFamily()`", + "apiSymbol": "net.getDefaultAutoSelectFamily", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#netgetdefaultautoselectfamily", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:9f966c770cb2", + "chapter": "net", + "label": "net.setDefaultAutoSelectFamily(value)", + "signature": "`net.setDefaultAutoSelectFamily(value)`", + "apiSymbol": "net.setDefaultAutoSelectFamily", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#netsetdefaultautoselectfamilyvalue", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:87666547ae4b", + "chapter": "net", + "label": "net.getDefaultAutoSelectFamilyAttemptTimeout()", + "signature": "`net.getDefaultAutoSelectFamilyAttemptTimeout()`", + "apiSymbol": "net.getDefaultAutoSelectFamilyAttemptTimeout", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#netgetdefaultautoselectfamilyattempttimeout", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:net.getDefaultAutoSelectFamilyAttemptTimeout", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:fdd0fb27ee4b", + "chapter": "net", + "label": "net.setDefaultAutoSelectFamilyAttemptTimeout(value)", + "signature": "`net.setDefaultAutoSelectFamilyAttemptTimeout(value)`", + "apiSymbol": "net.setDefaultAutoSelectFamilyAttemptTimeout", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#netsetdefaultautoselectfamilyattempttimeoutvalue", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:net.setDefaultAutoSelectFamilyAttemptTimeout", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:net", + "tests": [] + } + } + }, + { + "id": "net:3bbf8fc6cea0", + "chapter": "net", + "label": "net.isIP(input)", + "signature": "`net.isIP(input)`", + "apiSymbol": "net.isIP", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#netisipinput", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:net.isIP", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + } + } + }, + { + "id": "net:4564b8a65ecf", + "chapter": "net", + "label": "net.isIPv4(input)", + "signature": "`net.isIPv4(input)`", + "apiSymbol": "net.isIPv4", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#netisipv4input", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:net.isIPv4", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + } + } + }, + { + "id": "net:a2c600b17356", + "chapter": "net", + "label": "net.isIPv6(input)", + "signature": "`net.isIPv6(input)`", + "apiSymbol": "net.isIPv6", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/net.html#netisipv6input", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:net", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:net.isIPv6", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + } + } + }, + { + "id": "os:a41e9446f2bf", + "chapter": "os", + "label": "os.availableParallelism()", + "signature": "`os.availableParallelism()`", + "apiSymbol": "os.availableParallelism", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/os.html#osavailableparallelism", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:os", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:os.availableParallelism", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + } + } + }, + { + "id": "os:08f3f4e35b71", + "chapter": "os", + "label": "os.arch()", + "signature": "`os.arch()`", + "apiSymbol": "os.arch", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/os.html#osarch", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:os", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:os.arch", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + } + } + }, + { + "id": "os:965cd78a7277", + "chapter": "os", + "label": "os.cpus()", + "signature": "`os.cpus()`", + "apiSymbol": "os.cpus", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/os.html#oscpus", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:os", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:os.cpus", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + } + } + }, + { + "id": "os:90f0b126f9dc", + "chapter": "os", + "label": "os.endianness()", + "signature": "`os.endianness()`", + "apiSymbol": "os.endianness", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/os.html#osendianness", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:os", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:os.endianness", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + } + } + }, + { + "id": "os:e5fbf9cf1d23", + "chapter": "os", + "label": "os.freemem()", + "signature": "`os.freemem()`", + "apiSymbol": "os.freemem", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/os.html#osfreemem", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:os", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:os.freemem", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + } + } + }, + { + "id": "os:4d66ebd23497", + "chapter": "os", + "label": "os.getPriority([pid])", + "signature": "`os.getPriority([pid])`", + "apiSymbol": "os.getPriority", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/os.html#osgetprioritypid", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:os", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:os", + "tests": [] + } + } + }, + { + "id": "os:eebf91f2cc0f", + "chapter": "os", + "label": "os.homedir()", + "signature": "`os.homedir()`", + "apiSymbol": "os.homedir", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/os.html#oshomedir", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.os.homedir", + "tests": [ + "tests/corpus/1480-os-network-interfaces.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:os.homedir", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + } + } + }, + { + "id": "os:7396ccfc37e3", + "chapter": "os", + "label": "os.hostname()", + "signature": "`os.hostname()`", + "apiSymbol": "os.hostname", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/os.html#oshostname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:os", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:os.hostname", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + } + } + }, + { + "id": "os:651b563fd52e", + "chapter": "os", + "label": "os.loadavg()", + "signature": "`os.loadavg()`", + "apiSymbol": "os.loadavg", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/os.html#osloadavg", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:os", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:os.loadavg", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + } + } + }, + { + "id": "os:78c2e69d1fdf", + "chapter": "os", + "label": "os.machine()", + "signature": "`os.machine()`", + "apiSymbol": "os.machine", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/os.html#osmachine", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:os", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:os.machine", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + } + } + }, + { + "id": "os:ad838ab2f7e3", + "chapter": "os", + "label": "os.networkInterfaces()", + "signature": "`os.networkInterfaces()`", + "apiSymbol": "os.networkInterfaces", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/os.html#osnetworkinterfaces", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.os.networkInterfaces", + "tests": [ + "tests/corpus/1480-os-network-interfaces.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:os.networkInterfaces", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + } + } + }, + { + "id": "os:435fc2fc08b1", + "chapter": "os", + "label": "os.platform()", + "signature": "`os.platform()`", + "apiSymbol": "os.platform", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/os.html#osplatform", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.os.platform", + "tests": [ + "tests/corpus/1480-os-network-interfaces.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:os.platform", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + } + } + }, + { + "id": "os:640dc7f343f4", + "chapter": "os", + "label": "os.release()", + "signature": "`os.release()`", + "apiSymbol": "os.release", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/os.html#osrelease", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.os.release", + "tests": [ + "tests/corpus/1480-os-network-interfaces.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:os.release", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + } + } + }, + { + "id": "os:e20aab5c65c1", + "chapter": "os", + "label": "os.setPriority([pid, ]priority)", + "signature": "`os.setPriority([pid, ]priority)`", + "apiSymbol": "os.setPriority", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/os.html#ossetprioritypid-priority", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:os", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:os", + "tests": [] + } + } + }, + { + "id": "os:a185533216ba", + "chapter": "os", + "label": "os.tmpdir()", + "signature": "`os.tmpdir()`", + "apiSymbol": "os.tmpdir", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/os.html#ostmpdir", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.os.tmpdir", + "tests": [ + "tests/corpus/1480-os-network-interfaces.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:os.tmpdir", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + } + } + }, + { + "id": "os:70f1fee74b86", + "chapter": "os", + "label": "os.totalmem()", + "signature": "`os.totalmem()`", + "apiSymbol": "os.totalmem", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/os.html#ostotalmem", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.os.totalmem", + "tests": [ + "tests/corpus/1480-os-network-interfaces.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:os.totalmem", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + } + } + }, + { + "id": "os:d6f6da48d880", + "chapter": "os", + "label": "os.type()", + "signature": "`os.type()`", + "apiSymbol": "os.type", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/os.html#ostype", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.os.type", + "tests": [ + "tests/corpus/1480-os-network-interfaces.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:os.type", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + } + } + }, + { + "id": "os:b9c93a734e8d", + "chapter": "os", + "label": "os.uptime()", + "signature": "`os.uptime()`", + "apiSymbol": "os.uptime", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/os.html#osuptime", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:os", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:os.uptime", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + } + } + }, + { + "id": "os:b4eedcce1580", + "chapter": "os", + "label": "os.userInfo([options])", + "signature": "`os.userInfo([options])`", + "apiSymbol": "os.userInfo", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/os.html#osuserinfooptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.os.userInfo", + "tests": [ + "tests/corpus/1480-os-network-interfaces.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:os.userInfo", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + } + } + }, + { + "id": "os:72f5b3f2ef64", + "chapter": "os", + "label": "os.version()", + "signature": "`os.version()`", + "apiSymbol": "os.version", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/os.html#osversion", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:os", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:os.version", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + } + } + }, + { + "id": "os:adc23f556640", + "chapter": "os", + "label": "EOL", + "signature": "`EOL` Type: {string}", + "apiSymbol": "EOL", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/os.html", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.os.EOL", + "tests": [ + "tests/corpus/1480-os-network-interfaces.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:os.EOL", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + } + } + }, + { + "id": "os:a5b9d352944f", + "chapter": "os", + "label": "constants", + "signature": "`constants` Type: {Object}", + "apiSymbol": "constants", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/os.html", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:os", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:os.constants", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + } + } + }, + { + "id": "os:c5e8d4dcf1db", + "chapter": "os", + "label": "devNull", + "signature": "`devNull` Type: {string}", + "apiSymbol": "devNull", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/os.html", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:os", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:os", + "tests": [] + } + } + }, + { + "id": "path:7250a15b94a7", + "chapter": "path", + "label": "path.basename(path[, suffix])", + "signature": "`path.basename(path[, suffix])`", + "apiSymbol": "path.basename", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/path.html#pathbasenamepath-suffix", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.path.basename", + "tests": [ + "tests/corpus/957-builtins-namespace.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:path.basename", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "path:1dcc51cfa0c5", + "chapter": "path", + "label": "path.dirname(path)", + "signature": "`path.dirname(path)`", + "apiSymbol": "path.dirname", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/path.html#pathdirnamepath", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.path.dirname", + "tests": [ + "tests/corpus/957-builtins-namespace.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:path.dirname", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "path:cc28b9b161db", + "chapter": "path", + "label": "path.extname(path)", + "signature": "`path.extname(path)`", + "apiSymbol": "path.extname", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/path.html#pathextnamepath", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.path.extname", + "tests": [ + "tests/corpus/957-builtins-namespace.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:path.extname", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "path:40e393d10f79", + "chapter": "path", + "label": "path.format(pathObject)", + "signature": "`path.format(pathObject)`", + "apiSymbol": "path.format", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/path.html#pathformatpathobject", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:path", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:path.format", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "path:625fe3d61e8d", + "chapter": "path", + "label": "path.matchesGlob(path, pattern)", + "signature": "`path.matchesGlob(path, pattern)`", + "apiSymbol": "path.matchesGlob", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/path.html#pathmatchesglobpath-pattern", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:path", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:path", + "tests": [] + } + } + }, + { + "id": "path:2a06aa5ac212", + "chapter": "path", + "label": "path.isAbsolute(path)", + "signature": "`path.isAbsolute(path)`", + "apiSymbol": "path.isAbsolute", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/path.html#pathisabsolutepath", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.path.isAbsolute", + "tests": [ + "tests/corpus/957-builtins-namespace.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:path.isAbsolute", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "path:964527f1583c", + "chapter": "path", + "label": "path.join([...paths])", + "signature": "`path.join([...paths])`", + "apiSymbol": "path.join", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/path.html#pathjoinpaths", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.path.join", + "tests": [ + "tests/corpus/957-builtins-namespace.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:path.join", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "path:0eea52505737", + "chapter": "path", + "label": "path.normalize(path)", + "signature": "`path.normalize(path)`", + "apiSymbol": "path.normalize", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/path.html#pathnormalizepath", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.path.normalize", + "tests": [ + "tests/corpus/957-builtins-namespace.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:path.normalize", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "path:d07cbf8afc37", + "chapter": "path", + "label": "path.parse(path)", + "signature": "`path.parse(path)`", + "apiSymbol": "path.parse", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/path.html#pathparsepath", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:path", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:path.parse", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "path:20c9b0419eed", + "chapter": "path", + "label": "path.relative(from, to)", + "signature": "`path.relative(from, to)`", + "apiSymbol": "path.relative", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/path.html#pathrelativefrom-to", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.path.relative", + "tests": [ + "tests/corpus/957-builtins-namespace.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:path.relative", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "path:99d3d3f8bb3b", + "chapter": "path", + "label": "path.resolve([...paths])", + "signature": "`path.resolve([...paths])`", + "apiSymbol": "path.resolve", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/path.html#pathresolvepaths", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.path.resolve", + "tests": [ + "tests/corpus/957-builtins-namespace.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:path.resolve", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "path:e0956b791e31", + "chapter": "path", + "label": "path.toNamespacedPath(path)", + "signature": "`path.toNamespacedPath(path)`", + "apiSymbol": "path.toNamespacedPath", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/path.html#pathtonamespacedpathpath", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.path.toNamespacedPath", + "tests": [ + "tests/corpus/957-builtins-namespace.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:path.toNamespacedPath", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "path:5b4c30163bb7", + "chapter": "path", + "label": "delimiter", + "signature": "`delimiter` Type: {string}", + "apiSymbol": "delimiter", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/path.html", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.path.delimiter", + "tests": [ + "tests/corpus/957-builtins-namespace.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:path.delimiter", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "path:77c7f6b48cd0", + "chapter": "path", + "label": "posix", + "signature": "`posix` Type: {Object}", + "apiSymbol": "posix", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/path.html", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.path.posix", + "tests": [ + "tests/corpus/957-builtins-namespace.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:path.posix", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "path:3c7f767f0a27", + "chapter": "path", + "label": "sep", + "signature": "`sep` Type: {string}", + "apiSymbol": "sep", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/path.html", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.path.sep", + "tests": [ + "tests/corpus/957-builtins-namespace.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:path.sep", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "path:a61594579213", + "chapter": "path", + "label": "win32", + "signature": "`win32` Type: {Object}", + "apiSymbol": "win32", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/path.html", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.path.win32", + "tests": [ + "tests/corpus/957-builtins-namespace.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:path.win32", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "perf_hooks:4191f3d1f637", + "chapter": "perf_hooks", + "label": "PerformanceEntry", + "signature": "Class: `PerformanceEntry`", + "apiSymbol": "PerformanceEntry", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#class-performanceentry", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:1f9a6cb25ceb", + "chapter": "perf_hooks", + "label": "duration", + "signature": "`duration` Type: {number}", + "apiSymbol": "duration", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#class-performanceentry", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:e8061026c790", + "chapter": "perf_hooks", + "label": "entryType", + "signature": "`entryType` Type: {string}", + "apiSymbol": "entryType", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#class-performanceentry", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:ae280bad5340", + "chapter": "perf_hooks", + "label": "name", + "signature": "`name` Type: {string}", + "apiSymbol": "name", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#class-performanceentry", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:28d0ce9a33a8", + "chapter": "perf_hooks", + "label": "startTime", + "signature": "`startTime` Type: {number}", + "apiSymbol": "startTime", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#class-performanceentry", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:62dc8fa6e93a", + "chapter": "perf_hooks", + "label": "PerformanceMark", + "signature": "Class: `PerformanceMark`", + "apiSymbol": "PerformanceMark", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#class-performancemark", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:8f11d66797d1", + "chapter": "perf_hooks", + "label": "detail", + "signature": "`detail` Type: {any}", + "apiSymbol": "detail", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#class-performancemark", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:7e01593bf814", + "chapter": "perf_hooks", + "label": "PerformanceMeasure", + "signature": "Class: `PerformanceMeasure`", + "apiSymbol": "PerformanceMeasure", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#class-performancemeasure", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:ee5e4e453e50", + "chapter": "perf_hooks", + "label": "detail", + "signature": "`detail` Type: {any}", + "apiSymbol": "detail", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#class-performancemeasure", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:256ac7cefb1f", + "chapter": "perf_hooks", + "label": "PerformanceNodeEntry", + "signature": "Class: `PerformanceNodeEntry`", + "apiSymbol": "PerformanceNodeEntry", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#class-performancenodeentry", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:4933cefedc94", + "chapter": "perf_hooks", + "label": "detail", + "signature": "`detail` Type: {any}", + "apiSymbol": "detail", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#class-performancenodeentry", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:bae3522825d6", + "chapter": "perf_hooks", + "label": "flags", + "signature": "`flags` Type: {number}", + "apiSymbol": "flags", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#class-performancenodeentry", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Use `performanceNodeEntry.detail` instead.", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:d3e6477c485c", + "chapter": "perf_hooks", + "label": "kind", + "signature": "`kind` Type: {number}", + "apiSymbol": "kind", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#class-performancenodeentry", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Use `performanceNodeEntry.detail` instead.", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:8ecb3ea14374", + "chapter": "perf_hooks", + "label": "PerformanceNodeTiming", + "signature": "Class: `PerformanceNodeTiming`", + "apiSymbol": "PerformanceNodeTiming", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#class-performancenodetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:bfb3b0423504", + "chapter": "perf_hooks", + "label": "bootstrapComplete", + "signature": "`bootstrapComplete` Type: {number}", + "apiSymbol": "bootstrapComplete", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#class-performancenodetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:16945a6825e2", + "chapter": "perf_hooks", + "label": "environment", + "signature": "`environment` Type: {number}", + "apiSymbol": "environment", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#class-performancenodetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:bfbbcd095905", + "chapter": "perf_hooks", + "label": "idleTime", + "signature": "`idleTime` Type: {number}", + "apiSymbol": "idleTime", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#class-performancenodetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:57152874e4b6", + "chapter": "perf_hooks", + "label": "loopExit", + "signature": "`loopExit` Type: {number}", + "apiSymbol": "loopExit", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#class-performancenodetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:b1b6fa495b7f", + "chapter": "perf_hooks", + "label": "loopStart", + "signature": "`loopStart` Type: {number}", + "apiSymbol": "loopStart", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#class-performancenodetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:dd3625440326", + "chapter": "perf_hooks", + "label": "nodeStart", + "signature": "`nodeStart` Type: {number}", + "apiSymbol": "nodeStart", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#class-performancenodetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:840d8edbb58f", + "chapter": "perf_hooks", + "label": "uvMetricsInfo", + "signature": "`uvMetricsInfo` Returns: {Object}", + "apiSymbol": "uvMetricsInfo", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#class-performancenodetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:926aff9758da", + "chapter": "perf_hooks", + "label": "v8Start", + "signature": "`v8Start` Type: {number}", + "apiSymbol": "v8Start", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#class-performancenodetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:d50415882b98", + "chapter": "perf_hooks", + "label": "PerformanceResourceTiming", + "signature": "Class: `PerformanceResourceTiming`", + "apiSymbol": "PerformanceResourceTiming", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#class-performanceresourcetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:feadabc65ca1", + "chapter": "perf_hooks", + "label": "performanceResourceTiming.toJSON()", + "signature": "`performanceResourceTiming.toJSON()`", + "apiSymbol": "performanceResourceTiming.toJSON", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#performanceresourcetimingtojson", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:4168e62b4adc", + "chapter": "perf_hooks", + "label": "workerStart", + "signature": "`workerStart` Type: {number}", + "apiSymbol": "workerStart", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#class-performanceresourcetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:3d9e8927f421", + "chapter": "perf_hooks", + "label": "redirectStart", + "signature": "`redirectStart` Type: {number}", + "apiSymbol": "redirectStart", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#class-performanceresourcetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:d8b317438a96", + "chapter": "perf_hooks", + "label": "redirectEnd", + "signature": "`redirectEnd` Type: {number}", + "apiSymbol": "redirectEnd", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#class-performanceresourcetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:4ee0cb7dda90", + "chapter": "perf_hooks", + "label": "fetchStart", + "signature": "`fetchStart` Type: {number}", + "apiSymbol": "fetchStart", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#class-performanceresourcetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:9f8fac595e48", + "chapter": "perf_hooks", + "label": "domainLookupStart", + "signature": "`domainLookupStart` Type: {number}", + "apiSymbol": "domainLookupStart", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#class-performanceresourcetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:bef659cad139", + "chapter": "perf_hooks", + "label": "domainLookupEnd", + "signature": "`domainLookupEnd` Type: {number}", + "apiSymbol": "domainLookupEnd", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#class-performanceresourcetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:6f0d699a309d", + "chapter": "perf_hooks", + "label": "connectStart", + "signature": "`connectStart` Type: {number}", + "apiSymbol": "connectStart", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#class-performanceresourcetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:34d282ce7bd9", + "chapter": "perf_hooks", + "label": "connectEnd", + "signature": "`connectEnd` Type: {number}", + "apiSymbol": "connectEnd", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#class-performanceresourcetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:75a534e90bcc", + "chapter": "perf_hooks", + "label": "secureConnectionStart", + "signature": "`secureConnectionStart` Type: {number}", + "apiSymbol": "secureConnectionStart", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#class-performanceresourcetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:565b8a46a863", + "chapter": "perf_hooks", + "label": "requestStart", + "signature": "`requestStart` Type: {number}", + "apiSymbol": "requestStart", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#class-performanceresourcetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:19c7eaa1d601", + "chapter": "perf_hooks", + "label": "responseEnd", + "signature": "`responseEnd` Type: {number}", + "apiSymbol": "responseEnd", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#class-performanceresourcetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:3213a0efd304", + "chapter": "perf_hooks", + "label": "transferSize", + "signature": "`transferSize` Type: {number}", + "apiSymbol": "transferSize", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#class-performanceresourcetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:335771789b02", + "chapter": "perf_hooks", + "label": "encodedBodySize", + "signature": "`encodedBodySize` Type: {number}", + "apiSymbol": "encodedBodySize", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#class-performanceresourcetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:8e4482fb7bc1", + "chapter": "perf_hooks", + "label": "decodedBodySize", + "signature": "`decodedBodySize` Type: {number}", + "apiSymbol": "decodedBodySize", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#class-performanceresourcetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:44c5636e6a4c", + "chapter": "perf_hooks", + "label": "PerformanceObserver", + "signature": "Class: `PerformanceObserver`", + "apiSymbol": "PerformanceObserver", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#class-performanceobserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:perf_hooks.PerformanceObserver", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "perf_hooks:e5c8c6842247", + "chapter": "perf_hooks", + "label": "performanceObserver.disconnect()", + "signature": "`performanceObserver.disconnect()`", + "apiSymbol": "performanceObserver.disconnect", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#performanceobserverdisconnect", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:perf_hooks.performanceObserver.disconnect", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "perf_hooks:93192ffccbf3", + "chapter": "perf_hooks", + "label": "performanceObserver.observe(options)", + "signature": "`performanceObserver.observe(options)`", + "apiSymbol": "performanceObserver.observe", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#performanceobserverobserveoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:perf_hooks.performanceObserver.observe", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "perf_hooks:d8f9b6391e2a", + "chapter": "perf_hooks", + "label": "performanceObserver.takeRecords()", + "signature": "`performanceObserver.takeRecords()`", + "apiSymbol": "performanceObserver.takeRecords", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#performanceobservertakerecords", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:perf_hooks.performanceObserver.takeRecords", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "perf_hooks:2beb3bfd5ecc", + "chapter": "perf_hooks", + "label": "supportedEntryTypes", + "signature": "`supportedEntryTypes` Type: {string\\[]}", + "apiSymbol": "supportedEntryTypes", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#class-performanceobserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:514d6e9cab8a", + "chapter": "perf_hooks", + "label": "PerformanceObserverEntryList", + "signature": "Class: `PerformanceObserverEntryList`", + "apiSymbol": "PerformanceObserverEntryList", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#class-performanceobserverentrylist", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:167fa4fe3132", + "chapter": "perf_hooks", + "label": "performanceObserverEntryList.getEntries()", + "signature": "`performanceObserverEntryList.getEntries()`", + "apiSymbol": "performanceObserverEntryList.getEntries", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#performanceobserverentrylistgetentries", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:ab6585b9639d", + "chapter": "perf_hooks", + "label": "performanceObserverEntryList.getEntriesByName(name[, type])", + "signature": "`performanceObserverEntryList.getEntriesByName(name[, type])`", + "apiSymbol": "performanceObserverEntryList.getEntriesByName", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#performanceobserverentrylistgetentriesbynamename-type", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:b1a056d5203a", + "chapter": "perf_hooks", + "label": "performanceObserverEntryList.getEntriesByType(type)", + "signature": "`performanceObserverEntryList.getEntriesByType(type)`", + "apiSymbol": "performanceObserverEntryList.getEntriesByType", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#performanceobserverentrylistgetentriesbytypetype", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:c89f0beb0e9f", + "chapter": "perf_hooks", + "label": "Histogram", + "signature": "Class: `Histogram`", + "apiSymbol": "Histogram", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#class-histogram", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:831e531b3964", + "chapter": "perf_hooks", + "label": "histogram.percentile(percentile)", + "signature": "`histogram.percentile(percentile)`", + "apiSymbol": "histogram.percentile", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#histogrampercentilepercentile", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:04cfc34bfc96", + "chapter": "perf_hooks", + "label": "histogram.percentileBigInt(percentile)", + "signature": "`histogram.percentileBigInt(percentile)`", + "apiSymbol": "histogram.percentileBigInt", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#histogrampercentilebigintpercentile", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:0c8a168f2d58", + "chapter": "perf_hooks", + "label": "histogram.reset()", + "signature": "`histogram.reset()`", + "apiSymbol": "histogram.reset", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#histogramreset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:c3ade18455b5", + "chapter": "perf_hooks", + "label": "count", + "signature": "`count` Type: {number}", + "apiSymbol": "count", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#class-histogram", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:6f617351e2f4", + "chapter": "perf_hooks", + "label": "countBigInt", + "signature": "`countBigInt` Type: {bigint}", + "apiSymbol": "countBigInt", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#class-histogram", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:a8fd32a72955", + "chapter": "perf_hooks", + "label": "exceeds", + "signature": "`exceeds` Type: {number}", + "apiSymbol": "exceeds", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#class-histogram", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:d3d141a0aafa", + "chapter": "perf_hooks", + "label": "exceedsBigInt", + "signature": "`exceedsBigInt` Type: {bigint}", + "apiSymbol": "exceedsBigInt", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#class-histogram", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:2a2f8716b952", + "chapter": "perf_hooks", + "label": "max", + "signature": "`max` Type: {number}", + "apiSymbol": "max", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#class-histogram", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:922693582449", + "chapter": "perf_hooks", + "label": "maxBigInt", + "signature": "`maxBigInt` Type: {bigint}", + "apiSymbol": "maxBigInt", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#class-histogram", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:5470f308346b", + "chapter": "perf_hooks", + "label": "mean", + "signature": "`mean` Type: {number}", + "apiSymbol": "mean", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#class-histogram", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:9eb490e3b5a0", + "chapter": "perf_hooks", + "label": "min", + "signature": "`min` Type: {number}", + "apiSymbol": "min", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#class-histogram", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:b98c4f4cb2a3", + "chapter": "perf_hooks", + "label": "minBigInt", + "signature": "`minBigInt` Type: {bigint}", + "apiSymbol": "minBigInt", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#class-histogram", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:049a2710663c", + "chapter": "perf_hooks", + "label": "percentiles", + "signature": "`percentiles` Type: {Map}", + "apiSymbol": "percentiles", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#class-histogram", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:977fe37cf714", + "chapter": "perf_hooks", + "label": "percentilesBigInt", + "signature": "`percentilesBigInt` Type: {Map}", + "apiSymbol": "percentilesBigInt", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#class-histogram", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:dcfa27e91fad", + "chapter": "perf_hooks", + "label": "stddev", + "signature": "`stddev` Type: {number}", + "apiSymbol": "stddev", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#class-histogram", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:d8033c297e16", + "chapter": "perf_hooks", + "label": "IntervalHistogram extends Histogram", + "signature": "Class: `IntervalHistogram extends Histogram`", + "apiSymbol": "IntervalHistogram extends Histogram", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#class-intervalhistogram-extends-histogram", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:22e7f3f19476", + "chapter": "perf_hooks", + "label": "Cloning an IntervalHistogram", + "signature": "Cloning an `IntervalHistogram`", + "apiSymbol": "IntervalHistogram", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#cloning-an-intervalhistogram", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:b164c7ab2b1f", + "chapter": "perf_hooks", + "label": "histogram.disable()", + "signature": "`histogram.disable()`", + "apiSymbol": "histogram.disable", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#histogramdisable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:651554deb586", + "chapter": "perf_hooks", + "label": "histogram.enable()", + "signature": "`histogram.enable()`", + "apiSymbol": "histogram.enable", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#histogramenable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:e996f640b593", + "chapter": "perf_hooks", + "label": "histogram[Symbol.dispose]()", + "signature": "`histogram[Symbol.dispose]()`", + "apiSymbol": "histogram", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#histogramsymboldispose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:4bc24e9a9db7", + "chapter": "perf_hooks", + "label": "RecordableHistogram extends Histogram", + "signature": "Class: `RecordableHistogram extends Histogram`", + "apiSymbol": "RecordableHistogram extends Histogram", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#class-recordablehistogram-extends-histogram", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:07074b77fe50", + "chapter": "perf_hooks", + "label": "Measuring how long the net.connect (only for TCP) takes when the connection is successful", + "signature": "Measuring how long the `net.connect` (only for TCP) takes when the connection is successful", + "apiSymbol": "net.connect", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#measuring-how-long-the-netconnect-only-for-tcp-takes-when-the-connection-is-successful", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:net.connect", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:30eb4343b866", + "chapter": "perf_hooks", + "label": "histogram.add(other)", + "signature": "`histogram.add(other)`", + "apiSymbol": "histogram.add", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#histogramaddother", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:267107123ca7", + "chapter": "perf_hooks", + "label": "histogram.record(val)", + "signature": "`histogram.record(val)`", + "apiSymbol": "histogram.record", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#histogramrecordval", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:f8d7c36f7da0", + "chapter": "perf_hooks", + "label": "histogram.recordDelta()", + "signature": "`histogram.recordDelta()`", + "apiSymbol": "histogram.recordDelta", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#histogramrecorddelta", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:5ac562207ef9", + "chapter": "perf_hooks", + "label": "perf_hooks.createHistogram([options])", + "signature": "`perf_hooks.createHistogram([options])`", + "apiSymbol": "perf_hooks.createHistogram", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#perf_hookscreatehistogramoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:0136161053c0", + "chapter": "perf_hooks", + "label": "perf_hooks.eventLoopUtilization([utilization1[, utilization2]])", + "signature": "`perf_hooks.eventLoopUtilization([utilization1[, utilization2]])`", + "apiSymbol": "perf_hooks.eventLoopUtilization", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#perf_hookseventlooputilizationutilization1-utilization2", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:27f1f7b9e14c", + "chapter": "perf_hooks", + "label": "perf_hooks.monitorEventLoopDelay([options])", + "signature": "`perf_hooks.monitorEventLoopDelay([options])`", + "apiSymbol": "perf_hooks.monitorEventLoopDelay", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#perf_hooksmonitoreventloopdelayoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:perf_hooks.monitorEventLoopDelay", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "perf_hooks:4206c46535f1", + "chapter": "perf_hooks", + "label": "perf_hooks.timerify(fn[, options])", + "signature": "`perf_hooks.timerify(fn[, options])`", + "apiSymbol": "perf_hooks.timerify", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#perf_hookstimerifyfn-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:365d16e00243", + "chapter": "perf_hooks", + "label": "perf_hooks.performance", + "signature": "`perf_hooks.performance`", + "apiSymbol": "perf_hooks.performance", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#perf_hooksperformance", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:perf_hooks.performance", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "perf_hooks:67ebe1e4ba9c", + "chapter": "perf_hooks", + "label": "performance.clearMarks([name])", + "signature": "`performance.clearMarks([name])`", + "apiSymbol": "performance.clearMarks", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#performanceclearmarksname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:perf_hooks.performance.clearMarks", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "perf_hooks:ca44c25d7a70", + "chapter": "perf_hooks", + "label": "performance.clearMeasures([name])", + "signature": "`performance.clearMeasures([name])`", + "apiSymbol": "performance.clearMeasures", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#performanceclearmeasuresname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:perf_hooks.performance.clearMeasures", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "perf_hooks:8f190a1347fe", + "chapter": "perf_hooks", + "label": "performance.clearResourceTimings([name])", + "signature": "`performance.clearResourceTimings([name])`", + "apiSymbol": "performance.clearResourceTimings", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#performanceclearresourcetimingsname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:735d19d562d1", + "chapter": "perf_hooks", + "label": "performance.eventLoopUtilization([utilization1[, utilization2]])", + "signature": "`performance.eventLoopUtilization([utilization1[, utilization2]])`", + "apiSymbol": "performance.eventLoopUtilization", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#performanceeventlooputilizationutilization1-utilization2", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:834e850aa638", + "chapter": "perf_hooks", + "label": "performance.getEntries()", + "signature": "`performance.getEntries()`", + "apiSymbol": "performance.getEntries", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#performancegetentries", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:perf_hooks.performance.getEntries", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "perf_hooks:adba0675b69d", + "chapter": "perf_hooks", + "label": "performance.getEntriesByName(name[, type])", + "signature": "`performance.getEntriesByName(name[, type])`", + "apiSymbol": "performance.getEntriesByName", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#performancegetentriesbynamename-type", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:perf_hooks.performance.getEntriesByName", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "perf_hooks:ca511f7b8904", + "chapter": "perf_hooks", + "label": "performance.getEntriesByType(type)", + "signature": "`performance.getEntriesByType(type)`", + "apiSymbol": "performance.getEntriesByType", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#performancegetentriesbytypetype", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:perf_hooks.performance.getEntriesByType", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "perf_hooks:6d1b45a380e6", + "chapter": "perf_hooks", + "label": "performance.mark(name[, options])", + "signature": "`performance.mark(name[, options])`", + "apiSymbol": "performance.mark", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#performancemarkname-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:perf_hooks.performance.mark", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "perf_hooks:15fb662408d8", + "chapter": "perf_hooks", + "label": "performance.markResourceTiming(timingInfo, requestedUrl, initiatorType, global, cacheMode, bodyInfo, responseStatus[, deliveryType])", + "signature": "`performance.markResourceTiming(timingInfo, requestedUrl, initiatorType, global, cacheMode, bodyInfo, responseStatus[, deliveryType])`", + "apiSymbol": "performance.markResourceTiming", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#performancemarkresourcetimingtiminginfo-requestedurl-initiatortype-global-cachemode-bodyinfo-responsestatus-deliverytype", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:e9b9911539c4", + "chapter": "perf_hooks", + "label": "performance.measure(name[, startMarkOrOptions[, endMark]])", + "signature": "`performance.measure(name[, startMarkOrOptions[, endMark]])`", + "apiSymbol": "performance.measure", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#performancemeasurename-startmarkoroptions-endmark", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:perf_hooks.performance.measure", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "perf_hooks:7ba42a060d45", + "chapter": "perf_hooks", + "label": "performance.now()", + "signature": "`performance.now()`", + "apiSymbol": "performance.now", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#performancenow", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:perf_hooks.performance.now", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "perf_hooks:0357d07f7536", + "chapter": "perf_hooks", + "label": "performance.setResourceTimingBufferSize(maxSize)", + "signature": "`performance.setResourceTimingBufferSize(maxSize)`", + "apiSymbol": "performance.setResourceTimingBufferSize", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#performancesetresourcetimingbuffersizemaxsize", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:0b0a81d5c467", + "chapter": "perf_hooks", + "label": "performance.timerify(fn[, options])", + "signature": "`performance.timerify(fn[, options])`", + "apiSymbol": "performance.timerify", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#performancetimerifyfn-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:d1920dadd6ca", + "chapter": "perf_hooks", + "label": "performance.toJSON()", + "signature": "`performance.toJSON()`", + "apiSymbol": "performance.toJSON", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#performancetojson", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:perf_hooks.performance.toJSON", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "perf_hooks:c71a0c677e9c", + "chapter": "perf_hooks", + "label": "'resourcetimingbufferfull'", + "signature": "Event: `'resourcetimingbufferfull'`", + "apiSymbol": "'resourcetimingbufferfull'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#event-resourcetimingbufferfull", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:a959c69d3aa6", + "chapter": "perf_hooks", + "label": "nodeTiming", + "signature": "`nodeTiming` Type: {PerformanceNodeTiming}", + "apiSymbol": "nodeTiming", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#perf_hooksperformance", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "perf_hooks:dd1c2a558f83", + "chapter": "perf_hooks", + "label": "timeOrigin", + "signature": "`timeOrigin` Type: {number}", + "apiSymbol": "timeOrigin", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/perf_hooks.html#perf_hooksperformance", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:perf_hooks", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:perf_hooks", + "tests": [] + } + } + }, + { + "id": "permissions:4dd8a89338eb", + "chapter": "permissions", + "label": "permission.has(scope[, reference])", + "signature": "`permission.has(scope[, reference])`", + "apiSymbol": "permission.has", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/permissions.html#permissionhasscope-reference", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:permissions", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:permissions", + "tests": [] + } + } + }, + { + "id": "permissions:bd6544e08561", + "chapter": "permissions", + "label": "Using the Permission Model with npx", + "signature": "Using the Permission Model with `npx`", + "apiSymbol": "npx", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/permissions.html#using-the-permission-model-with-npx", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:permissions", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:permissions", + "tests": [] + } + } + }, + { + "id": "process:35e516c63f70", + "chapter": "process", + "label": "'beforeExit'", + "signature": "Event: `'beforeExit'`", + "apiSymbol": "'beforeExit'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#event-beforeexit", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:b0f5287073cf", + "chapter": "process", + "label": "'disconnect'", + "signature": "Event: `'disconnect'`", + "apiSymbol": "'disconnect'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#event-disconnect", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:72cf959b8403", + "chapter": "process", + "label": "'exit'", + "signature": "Event: `'exit'`", + "apiSymbol": "'exit'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#event-exit", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:27fb6582a846", + "chapter": "process", + "label": "'message'", + "signature": "Event: `'message'`", + "apiSymbol": "'message'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#event-message", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:3b70d5c09855", + "chapter": "process", + "label": "'multipleResolves'", + "signature": "Event: `'multipleResolves'`", + "apiSymbol": "'multipleResolves'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#event-multipleresolves", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:69641ca3039c", + "chapter": "process", + "label": "'rejectionHandled'", + "signature": "Event: `'rejectionHandled'`", + "apiSymbol": "'rejectionHandled'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#event-rejectionhandled", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:62913d9ef0c3", + "chapter": "process", + "label": "'workerMessage'", + "signature": "Event: `'workerMessage'`", + "apiSymbol": "'workerMessage'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#event-workermessage", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:fe4823c86d0f", + "chapter": "process", + "label": "'uncaughtException'", + "signature": "Event: `'uncaughtException'`", + "apiSymbol": "'uncaughtException'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#event-uncaughtexception", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:4192abfa1680", + "chapter": "process", + "label": "Warning: Using 'uncaughtException' correctly", + "signature": "Warning: Using `'uncaughtException'` correctly", + "apiSymbol": "'uncaughtException'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#warning-using-uncaughtexception-correctly", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:24d8fbedbbf8", + "chapter": "process", + "label": "'uncaughtExceptionMonitor'", + "signature": "Event: `'uncaughtExceptionMonitor'`", + "apiSymbol": "'uncaughtExceptionMonitor'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#event-uncaughtexceptionmonitor", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:452b05938836", + "chapter": "process", + "label": "'unhandledRejection'", + "signature": "Event: `'unhandledRejection'`", + "apiSymbol": "'unhandledRejection'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#event-unhandledrejection", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:67c924429a6f", + "chapter": "process", + "label": "'warning'", + "signature": "Event: `'warning'`", + "apiSymbol": "'warning'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#event-warning", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:c506d49acae3", + "chapter": "process", + "label": "'worker'", + "signature": "Event: `'worker'`", + "apiSymbol": "'worker'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#event-worker", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:6fc19fe2dfff", + "chapter": "process", + "label": "Signal events", + "signature": "Signal events", + "apiSymbol": "SIGINT, SIGHUP, etc.", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#signal-events", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:8d640b9ad0b7", + "chapter": "process", + "label": "process.abort()", + "signature": "`process.abort()`", + "apiSymbol": "process.abort", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#processabort", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:7cba06bed67c", + "chapter": "process", + "label": "process.availableMemory()", + "signature": "`process.availableMemory()`", + "apiSymbol": "process.availableMemory", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#processavailablememory", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.process.availableMemory", + "tests": [ + "tests/corpus/990-process-basics.ts", + "tests/corpus/2314-process-introspection.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:eacade82f5f8", + "chapter": "process", + "label": "process.chdir(directory)", + "signature": "`process.chdir(directory)`", + "apiSymbol": "process.chdir", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#processchdirdirectory", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.process.chdir", + "tests": [ + "tests/corpus/990-process-basics.ts", + "tests/corpus/2314-process-introspection.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:0d24a9d09ee6", + "chapter": "process", + "label": "process.constrainedMemory()", + "signature": "`process.constrainedMemory()`", + "apiSymbol": "process.constrainedMemory", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#processconstrainedmemory", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.process.constrainedMemory", + "tests": [ + "tests/corpus/990-process-basics.ts", + "tests/corpus/2314-process-introspection.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:b1e81b4d41d4", + "chapter": "process", + "label": "process.cpuUsage([previousValue])", + "signature": "`process.cpuUsage([previousValue])`", + "apiSymbol": "process.cpuUsage", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#processcpuusagepreviousvalue", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.process.cpuUsage", + "tests": [ + "tests/corpus/990-process-basics.ts", + "tests/corpus/2314-process-introspection.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:836674d28ad5", + "chapter": "process", + "label": "process.cwd()", + "signature": "`process.cwd()`", + "apiSymbol": "process.cwd", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#processcwd", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.process.cwd", + "tests": [ + "tests/corpus/990-process-basics.ts", + "tests/corpus/2314-process-introspection.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:process.cwd", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "process:bf56eccae064", + "chapter": "process", + "label": "process.disconnect()", + "signature": "`process.disconnect()`", + "apiSymbol": "process.disconnect", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#processdisconnect", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:806e8042338f", + "chapter": "process", + "label": "process.dlopen(module, filename[, flags])", + "signature": "`process.dlopen(module, filename[, flags])`", + "apiSymbol": "process.dlopen", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#processdlopenmodule-filename-flags", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:1116fdf74cbe", + "chapter": "process", + "label": "process.emitWarning(warning[, options])", + "signature": "`process.emitWarning(warning[, options])`", + "apiSymbol": "process.emitWarning", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#processemitwarningwarning-options", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:process.emitWarning", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "process:bf6d1d5f3dd8", + "chapter": "process", + "label": "process.emitWarning(warning[, type[, code]][, ctor])", + "signature": "`process.emitWarning(warning[, type[, code]][, ctor])`", + "apiSymbol": "process.emitWarning", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#processemitwarningwarning-type-code-ctor", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:process.emitWarning", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "process:719a0ed0af87", + "chapter": "process", + "label": "process.execve(file[, args[, env]])", + "signature": "`process.execve(file[, args[, env]])`", + "apiSymbol": "process.execve", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#processexecvefile-args-env", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:e8f9659de16e", + "chapter": "process", + "label": "process.exit([code])", + "signature": "`process.exit([code])`", + "apiSymbol": "process.exit", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#processexitcode", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.process.exit", + "tests": [ + "tests/corpus/990-process-basics.ts", + "tests/corpus/2314-process-introspection.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:process.exit", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "process:a6f598a1c566", + "chapter": "process", + "label": "process.finalization.register(ref, callback)", + "signature": "`process.finalization.register(ref, callback)`", + "apiSymbol": "process.finalization.register", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#processfinalizationregisterref-callback", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active Development", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:4b498051c24f", + "chapter": "process", + "label": "process.finalization.registerBeforeExit(ref, callback)", + "signature": "`process.finalization.registerBeforeExit(ref, callback)`", + "apiSymbol": "process.finalization.registerBeforeExit", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#processfinalizationregisterbeforeexitref-callback", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active Development", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:fc35596874de", + "chapter": "process", + "label": "process.finalization.unregister(ref)", + "signature": "`process.finalization.unregister(ref)`", + "apiSymbol": "process.finalization.unregister", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#processfinalizationunregisterref", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active Development", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:b00f553355c5", + "chapter": "process", + "label": "process.getActiveResourcesInfo()", + "signature": "`process.getActiveResourcesInfo()`", + "apiSymbol": "process.getActiveResourcesInfo", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#processgetactiveresourcesinfo", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:02183ce5cd8f", + "chapter": "process", + "label": "process.getBuiltinModule(id)", + "signature": "`process.getBuiltinModule(id)`", + "apiSymbol": "process.getBuiltinModule", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#processgetbuiltinmoduleid", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:93f1bc4a95e7", + "chapter": "process", + "label": "process.getegid()", + "signature": "`process.getegid()`", + "apiSymbol": "process.getegid", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#processgetegid", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:ca846708fed7", + "chapter": "process", + "label": "process.geteuid()", + "signature": "`process.geteuid()`", + "apiSymbol": "process.geteuid", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#processgeteuid", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:1b4287e4083a", + "chapter": "process", + "label": "process.getgid()", + "signature": "`process.getgid()`", + "apiSymbol": "process.getgid", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#processgetgid", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.process.getgid", + "tests": [ + "tests/corpus/990-process-basics.ts", + "tests/corpus/2314-process-introspection.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:d29ab25c5c2e", + "chapter": "process", + "label": "process.getgroups()", + "signature": "`process.getgroups()`", + "apiSymbol": "process.getgroups", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#processgetgroups", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:6517dbbd362e", + "chapter": "process", + "label": "process.getuid()", + "signature": "`process.getuid()`", + "apiSymbol": "process.getuid", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#processgetuid", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.process.getuid", + "tests": [ + "tests/corpus/990-process-basics.ts", + "tests/corpus/2314-process-introspection.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:c223b1037286", + "chapter": "process", + "label": "process.hasUncaughtExceptionCaptureCallback()", + "signature": "`process.hasUncaughtExceptionCaptureCallback()`", + "apiSymbol": "process.hasUncaughtExceptionCaptureCallback", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#processhasuncaughtexceptioncapturecallback", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:edfbcd0bc504", + "chapter": "process", + "label": "process.hrtime([time])", + "signature": "`process.hrtime([time])`", + "apiSymbol": "process.hrtime", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#processhrtimetime", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy. Use [`process.hrtime.bigint()`][] instead.", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:process.hrtime", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "process:c80c699d0d2e", + "chapter": "process", + "label": "process.hrtime.bigint()", + "signature": "`process.hrtime.bigint()`", + "apiSymbol": "process.hrtime.bigint", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#processhrtimebigint", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:c00a10882035", + "chapter": "process", + "label": "process.initgroups(user, extraGroup)", + "signature": "`process.initgroups(user, extraGroup)`", + "apiSymbol": "process.initgroups", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#processinitgroupsuser-extragroup", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:927e53713d32", + "chapter": "process", + "label": "process.kill(pid[, signal])", + "signature": "`process.kill(pid[, signal])`", + "apiSymbol": "process.kill", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#processkillpid-signal", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.process.kill", + "tests": [ + "tests/corpus/990-process-basics.ts", + "tests/corpus/2314-process-introspection.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:488ec362cb48", + "chapter": "process", + "label": "process.loadEnvFile(path)", + "signature": "`process.loadEnvFile(path)`", + "apiSymbol": "process.loadEnvFile", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#processloadenvfilepath", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:1628d0513814", + "chapter": "process", + "label": "process.memoryUsage()", + "signature": "`process.memoryUsage()`", + "apiSymbol": "process.memoryUsage", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#processmemoryusage", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:process.memoryUsage", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "process:75d02abb6b3f", + "chapter": "process", + "label": "process.memoryUsage.rss()", + "signature": "`process.memoryUsage.rss()`", + "apiSymbol": "process.memoryUsage.rss", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#processmemoryusagerss", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:0339b6b70128", + "chapter": "process", + "label": "process.nextTick(callback[, ...args])", + "signature": "`process.nextTick(callback[, ...args])`", + "apiSymbol": "process.nextTick", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#processnexttickcallback-args", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use [`queueMicrotask()`][] instead.", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:process.nextTick", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "process:af246c4881bd", + "chapter": "process", + "label": "When to use queueMicrotask() vs. process.nextTick()", + "signature": "When to use `queueMicrotask()` vs. `process.nextTick()`", + "apiSymbol": "queueMicrotask", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#when-to-use-queuemicrotask-vs-processnexttick", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use [`queueMicrotask()`][] instead.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:7156b34d562d", + "chapter": "process", + "label": "process.ref(maybeRefable)", + "signature": "`process.ref(maybeRefable)`", + "apiSymbol": "process.ref", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#processrefmayberefable", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:b49c4a057d0f", + "chapter": "process", + "label": "process.resourceUsage()", + "signature": "`process.resourceUsage()`", + "apiSymbol": "process.resourceUsage", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#processresourceusage", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.process.resourceUsage", + "tests": [ + "tests/corpus/990-process-basics.ts", + "tests/corpus/2314-process-introspection.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:735851a82d2f", + "chapter": "process", + "label": "process.send(message[, sendHandle[, options]][, callback])", + "signature": "`process.send(message[, sendHandle[, options]][, callback])`", + "apiSymbol": "process.send", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#processsendmessage-sendhandle-options-callback", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:59962add91ed", + "chapter": "process", + "label": "process.setegid(id)", + "signature": "`process.setegid(id)`", + "apiSymbol": "process.setegid", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#processsetegidid", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:f90d2e42d287", + "chapter": "process", + "label": "process.seteuid(id)", + "signature": "`process.seteuid(id)`", + "apiSymbol": "process.seteuid", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#processseteuidid", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:0cf3ff25fa53", + "chapter": "process", + "label": "process.setgid(id)", + "signature": "`process.setgid(id)`", + "apiSymbol": "process.setgid", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#processsetgidid", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:e648a86675b4", + "chapter": "process", + "label": "process.setgroups(groups)", + "signature": "`process.setgroups(groups)`", + "apiSymbol": "process.setgroups", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#processsetgroupsgroups", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:907f567aa3c8", + "chapter": "process", + "label": "process.setuid(id)", + "signature": "`process.setuid(id)`", + "apiSymbol": "process.setuid", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#processsetuidid", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:4a17014e054c", + "chapter": "process", + "label": "process.setSourceMapsEnabled(val)", + "signature": "`process.setSourceMapsEnabled(val)`", + "apiSymbol": "process.setSourceMapsEnabled", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#processsetsourcemapsenabledval", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental: Use [`module.setSourceMapsSupport()`][] instead.", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:7ef00d9dc202", + "chapter": "process", + "label": "process.setUncaughtExceptionCaptureCallback(fn)", + "signature": "`process.setUncaughtExceptionCaptureCallback(fn)`", + "apiSymbol": "process.setUncaughtExceptionCaptureCallback", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#processsetuncaughtexceptioncapturecallbackfn", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:3253f599da6b", + "chapter": "process", + "label": "process.threadCpuUsage([previousValue])", + "signature": "`process.threadCpuUsage([previousValue])`", + "apiSymbol": "process.threadCpuUsage", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#processthreadcpuusagepreviousvalue", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.process.threadCpuUsage", + "tests": [ + "tests/corpus/990-process-basics.ts", + "tests/corpus/2314-process-introspection.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:d8423d1fb7be", + "chapter": "process", + "label": "process.umask()", + "signature": "`process.umask()`", + "apiSymbol": "process.umask", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#processumask", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. Calling `process.umask()` with no argument causes the process-wide umask to be written twice. This introduces a race condition between threads, and is a potential security vulnerability. There is no safe, cross-platform alternative API.", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.process.umask", + "tests": [ + "tests/corpus/990-process-basics.ts", + "tests/corpus/2314-process-introspection.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:process.umask", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "process:af23e255f9f6", + "chapter": "process", + "label": "process.umask(mask)", + "signature": "`process.umask(mask)`", + "apiSymbol": "process.umask", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#processumaskmask", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.process.umask", + "tests": [ + "tests/corpus/990-process-basics.ts", + "tests/corpus/2314-process-introspection.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:process.umask", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "process:d3ae54961935", + "chapter": "process", + "label": "process.unref(maybeRefable)", + "signature": "`process.unref(maybeRefable)`", + "apiSymbol": "process.unref", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#processunrefmayberefable", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:be357affe05a", + "chapter": "process", + "label": "process.uptime()", + "signature": "`process.uptime()`", + "apiSymbol": "process.uptime", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#processuptime", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.process.uptime", + "tests": [ + "tests/corpus/990-process-basics.ts", + "tests/corpus/2314-process-introspection.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:process.uptime", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "process:c6accb058068", + "chapter": "process", + "label": "allowedNodeEnvironmentFlags", + "signature": "`allowedNodeEnvironmentFlags` Type: {Set}", + "apiSymbol": "allowedNodeEnvironmentFlags", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:process.allowedNodeEnvironmentFlags", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "process:2063d6c1662d", + "chapter": "process", + "label": "arch", + "signature": "`arch` Type: {string}", + "apiSymbol": "arch", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:f0366557e058", + "chapter": "process", + "label": "argv", + "signature": "`argv` Type: {string\\[]}", + "apiSymbol": "argv", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.process.argv", + "tests": [ + "tests/corpus/990-process-basics.ts", + "tests/corpus/2314-process-introspection.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:process.argv", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "process:acc7519bee11", + "chapter": "process", + "label": "argv0", + "signature": "`argv0` Type: {string}", + "apiSymbol": "argv0", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:process.argv0", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "process:4ddaea2b8513", + "chapter": "process", + "label": "channel", + "signature": "`channel` Type: {Object}", + "apiSymbol": "channel", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:f4e71050f610", + "chapter": "process", + "label": "process.channel.ref()", + "signature": "`process.channel.ref()`", + "apiSymbol": "process.channel.ref", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#processchannelref", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:55afa1254a1f", + "chapter": "process", + "label": "process.channel.unref()", + "signature": "`process.channel.unref()`", + "apiSymbol": "process.channel.unref", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#processchannelunref", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:cfa31d3f878d", + "chapter": "process", + "label": "config", + "signature": "`config` Type: {Object}", + "apiSymbol": "config", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:process.config", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "process:d1c564e89314", + "chapter": "process", + "label": "connected", + "signature": "`connected` Type: {boolean}", + "apiSymbol": "connected", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:e8feb5eba4d8", + "chapter": "process", + "label": "debugPort", + "signature": "`debugPort` Type: {number}", + "apiSymbol": "debugPort", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:8a44c7d74c80", + "chapter": "process", + "label": "env", + "signature": "`env` Type: {Object}", + "apiSymbol": "env", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.process.env", + "tests": [ + "tests/corpus/990-process-basics.ts", + "tests/corpus/2314-process-introspection.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:process.env", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "process:c355c6919e2d", + "chapter": "process", + "label": "execArgv", + "signature": "`execArgv` Type: {string\\[]}", + "apiSymbol": "execArgv", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:process.execArgv", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "process:da12c880f318", + "chapter": "process", + "label": "execPath", + "signature": "`execPath` Type: {string}", + "apiSymbol": "execPath", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.process.execPath", + "tests": [ + "tests/corpus/990-process-basics.ts", + "tests/corpus/2314-process-introspection.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:process.execPath", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "process:9b2ad777201c", + "chapter": "process", + "label": "exitCode", + "signature": "`exitCode` Type: {integer|string|null|undefined} The exit code. For string type, only integer strings (e.g.,'1') are allowed. **Default:** `undefined`.", + "apiSymbol": "exitCode", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:process.exitCode", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "process:b8e0da5ae951", + "chapter": "process", + "label": "cached_builtins", + "signature": "`cached_builtins` Type: {boolean}", + "apiSymbol": "cached_builtins", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:9d635f1c82b0", + "chapter": "process", + "label": "debug", + "signature": "`debug` Type: {boolean}", + "apiSymbol": "debug", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:4190cdc13f5c", + "chapter": "process", + "label": "inspector", + "signature": "`inspector` Type: {boolean}", + "apiSymbol": "inspector", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:809a2c908877", + "chapter": "process", + "label": "ipv6", + "signature": "`ipv6` Type: {boolean}", + "apiSymbol": "ipv6", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. This property is always true, and any checks based on it are redundant.", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:7f4530bc2b2a", + "chapter": "process", + "label": "require_module", + "signature": "`require_module` Type: {boolean}", + "apiSymbol": "require_module", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:07dd979d3559", + "chapter": "process", + "label": "tls", + "signature": "`tls` Type: {boolean}", + "apiSymbol": "tls", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:6baf4965ec21", + "chapter": "process", + "label": "tls_alpn", + "signature": "`tls_alpn` Type: {boolean}", + "apiSymbol": "tls_alpn", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. Use `process.features.tls` instead.", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:db664d25fae7", + "chapter": "process", + "label": "tls_ocsp", + "signature": "`tls_ocsp` Type: {boolean}", + "apiSymbol": "tls_ocsp", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. Use `process.features.tls` instead.", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:b70cdad80190", + "chapter": "process", + "label": "tls_sni", + "signature": "`tls_sni` Type: {boolean}", + "apiSymbol": "tls_sni", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. Use `process.features.tls` instead.", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:6ecacf575a3a", + "chapter": "process", + "label": "typescript", + "signature": "`typescript` Type: {boolean|string}", + "apiSymbol": "typescript", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate", + "inherited": false + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:0a8e5d146af4", + "chapter": "process", + "label": "uv", + "signature": "`uv` Type: {boolean}", + "apiSymbol": "uv", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. This property is always true, and any checks based on it are redundant.", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:6f0743ca803a", + "chapter": "process", + "label": "mainModule", + "signature": "`mainModule` Type: {Object}", + "apiSymbol": "mainModule", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Use [`require.main`][] instead.", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:3f5ccb4aceaf", + "chapter": "process", + "label": "noDeprecation", + "signature": "`noDeprecation` Type: {boolean}", + "apiSymbol": "noDeprecation", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:4ff8994c4fb3", + "chapter": "process", + "label": "permission", + "signature": "`permission` Type: {Object}", + "apiSymbol": "permission", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:d7fdff6a41a9", + "chapter": "process", + "label": "process.permission.has(scope[, reference])", + "signature": "`process.permission.has(scope[, reference])`", + "apiSymbol": "process.permission.has", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#processpermissionhasscope-reference", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:0fbc1d44adb8", + "chapter": "process", + "label": "pid", + "signature": "`pid` Type: {integer}", + "apiSymbol": "pid", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.process.pid", + "tests": [ + "tests/corpus/990-process-basics.ts", + "tests/corpus/2314-process-introspection.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:process.pid", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "process:cd0885b5dab6", + "chapter": "process", + "label": "platform", + "signature": "`platform` Type: {string}", + "apiSymbol": "platform", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:process.platform", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "process:e999004ba6cc", + "chapter": "process", + "label": "ppid", + "signature": "`ppid` Type: {integer}", + "apiSymbol": "ppid", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:process.ppid", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "process:a4ee516257d8", + "chapter": "process", + "label": "release", + "signature": "`release` Type: {Object}", + "apiSymbol": "release", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:process.release", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "process:8f7cfb3c1938", + "chapter": "process", + "label": "report", + "signature": "`report` Type: {Object}", + "apiSymbol": "report", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:cce279ccf61c", + "chapter": "process", + "label": "process.report.getReport([err])", + "signature": "`process.report.getReport([err])`", + "apiSymbol": "process.report.getReport", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#processreportgetreporterr", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:c8884173e64e", + "chapter": "process", + "label": "process.report.writeReport([filename][, err])", + "signature": "`process.report.writeReport([filename][, err])`", + "apiSymbol": "process.report.writeReport", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html#processreportwritereportfilename-err", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:e0a42a44eb43", + "chapter": "process", + "label": "compact", + "signature": "`compact` Type: {boolean}", + "apiSymbol": "compact", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:2b76e23bd757", + "chapter": "process", + "label": "directory", + "signature": "`directory` Type: {string}", + "apiSymbol": "directory", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:e0ddf27fa39a", + "chapter": "process", + "label": "filename", + "signature": "`filename` Type: {string}", + "apiSymbol": "filename", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:f69cb0495e8f", + "chapter": "process", + "label": "reportOnFatalError", + "signature": "`reportOnFatalError` Type: {boolean}", + "apiSymbol": "reportOnFatalError", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:63758395b3f9", + "chapter": "process", + "label": "reportOnSignal", + "signature": "`reportOnSignal` Type: {boolean}", + "apiSymbol": "reportOnSignal", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:7fb3e0980e63", + "chapter": "process", + "label": "reportOnUncaughtException", + "signature": "`reportOnUncaughtException` Type: {boolean}", + "apiSymbol": "reportOnUncaughtException", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:4c2ef77e5295", + "chapter": "process", + "label": "excludeEnv", + "signature": "`excludeEnv` Type: {boolean}", + "apiSymbol": "excludeEnv", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:46cef7d9a40b", + "chapter": "process", + "label": "signal", + "signature": "`signal` Type: {string}", + "apiSymbol": "signal", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:a53b97f6fe5a", + "chapter": "process", + "label": "sourceMapsEnabled", + "signature": "`sourceMapsEnabled` Type: {boolean}", + "apiSymbol": "sourceMapsEnabled", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental: Use [`module.getSourceMapsSupport()`][] instead.", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:2974f8887c0b", + "chapter": "process", + "label": "stderr", + "signature": "`stderr` Type: {Stream}", + "apiSymbol": "stderr", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:process.stderr", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "process:5aa32000609d", + "chapter": "process", + "label": "fd", + "signature": "`fd` Type: {number}", + "apiSymbol": "fd", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:6309e297b84b", + "chapter": "process", + "label": "stdin", + "signature": "`stdin` Type: {Stream}", + "apiSymbol": "stdin", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:process.stdin", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "process:5aa32000609d:2", + "chapter": "process", + "label": "fd", + "signature": "`fd` Type: {number}", + "apiSymbol": "fd", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:6c129c448850", + "chapter": "process", + "label": "stdout", + "signature": "`stdout` Type: {Stream}", + "apiSymbol": "stdout", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:process.stdout", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "process:5aa32000609d:3", + "chapter": "process", + "label": "fd", + "signature": "`fd` Type: {number}", + "apiSymbol": "fd", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:bc98f8b642f1", + "chapter": "process", + "label": "throwDeprecation", + "signature": "`throwDeprecation` Type: {boolean}", + "apiSymbol": "throwDeprecation", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:7752db6a3c21", + "chapter": "process", + "label": "title", + "signature": "`title` Type: {string}", + "apiSymbol": "title", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:process.title", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "process:2536f074b319", + "chapter": "process", + "label": "traceDeprecation", + "signature": "`traceDeprecation` Type: {boolean}", + "apiSymbol": "traceDeprecation", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:e5725270a76a", + "chapter": "process", + "label": "traceProcessWarnings", + "signature": "`traceProcessWarnings` {boolean}", + "apiSymbol": "traceProcessWarnings", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:process", + "tests": [] + } + } + }, + { + "id": "process:06e71bed1fb2", + "chapter": "process", + "label": "version", + "signature": "`version` Type: {string}", + "apiSymbol": "version", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:process.version", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "process:902174dc5fb1", + "chapter": "process", + "label": "versions", + "signature": "`versions` Type: {Object}", + "apiSymbol": "versions", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/process.html", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:process", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:process.versions", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "punycode:a799f8d15dd0", + "chapter": "punycode", + "label": "punycode.decode(string)", + "signature": "`punycode.decode(string)`", + "apiSymbol": "punycode.decode", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/punycode.html#punycodedecodestring", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:punycode", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:punycode.decode", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "punycode:c4117618b851", + "chapter": "punycode", + "label": "punycode.encode(string)", + "signature": "`punycode.encode(string)`", + "apiSymbol": "punycode.encode", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/punycode.html#punycodeencodestring", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:punycode", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:punycode.encode", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "punycode:6eb8ba2fa294", + "chapter": "punycode", + "label": "punycode.toASCII(domain)", + "signature": "`punycode.toASCII(domain)`", + "apiSymbol": "punycode.toASCII", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/punycode.html#punycodetoasciidomain", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:punycode", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:punycode.toASCII", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "punycode:8f0a9f610831", + "chapter": "punycode", + "label": "punycode.toUnicode(domain)", + "signature": "`punycode.toUnicode(domain)`", + "apiSymbol": "punycode.toUnicode", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/punycode.html#punycodetounicodedomain", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:punycode", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:punycode.toUnicode", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "punycode:219a4fe955e9", + "chapter": "punycode", + "label": "punycode.ucs2", + "signature": "`punycode.ucs2`", + "apiSymbol": "punycode.ucs2", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/punycode.html#punycodeucs2", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:punycode", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:punycode.ucs2", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "punycode:71bbda2cf0e3", + "chapter": "punycode", + "label": "punycode.ucs2.decode(string)", + "signature": "`punycode.ucs2.decode(string)`", + "apiSymbol": "punycode.ucs2.decode", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/punycode.html#punycodeucs2decodestring", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:punycode", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:punycode", + "tests": [] + } + } + }, + { + "id": "punycode:f0a37edfde9c", + "chapter": "punycode", + "label": "punycode.ucs2.encode(codePoints)", + "signature": "`punycode.ucs2.encode(codePoints)`", + "apiSymbol": "punycode.ucs2.encode", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/punycode.html#punycodeucs2encodecodepoints", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:punycode", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:punycode", + "tests": [] + } + } + }, + { + "id": "punycode:8401b3810d6a", + "chapter": "punycode", + "label": "version", + "signature": "`version` Type: {string}", + "apiSymbol": "version", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/punycode.html", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:punycode", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:punycode.version", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "querystring:49c85da5a3aa", + "chapter": "querystring", + "label": "querystring.decode()", + "signature": "`querystring.decode()`", + "apiSymbol": "querystring.decode", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/querystring.html#querystringdecode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.querystring.decode", + "tests": [ + "tests/corpus/957-builtins-namespace.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:querystring.decode", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "querystring:5dae28cfd428", + "chapter": "querystring", + "label": "querystring.encode()", + "signature": "`querystring.encode()`", + "apiSymbol": "querystring.encode", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/querystring.html#querystringencode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.querystring.encode", + "tests": [ + "tests/corpus/957-builtins-namespace.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:querystring.encode", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "querystring:8a91837627cc", + "chapter": "querystring", + "label": "querystring.escape(str)", + "signature": "`querystring.escape(str)`", + "apiSymbol": "querystring.escape", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/querystring.html#querystringescapestr", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.querystring.escape", + "tests": [ + "tests/corpus/957-builtins-namespace.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:querystring.escape", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "querystring:9cbcedea5f3a", + "chapter": "querystring", + "label": "querystring.parse(str[, sep[, eq[, options]]])", + "signature": "`querystring.parse(str[, sep[, eq[, options]]])`", + "apiSymbol": "querystring.parse", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/querystring.html#querystringparsestr-sep-eq-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.querystring.parse", + "tests": [ + "tests/corpus/957-builtins-namespace.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:querystring.parse", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "querystring:0f8ec65246ae", + "chapter": "querystring", + "label": "querystring.stringify(obj[, sep[, eq[, options]]])", + "signature": "`querystring.stringify(obj[, sep[, eq[, options]]])`", + "apiSymbol": "querystring.stringify", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/querystring.html#querystringstringifyobj-sep-eq-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.querystring.stringify", + "tests": [ + "tests/corpus/957-builtins-namespace.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:querystring.stringify", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "querystring:5315956e9400", + "chapter": "querystring", + "label": "querystring.unescape(str)", + "signature": "`querystring.unescape(str)`", + "apiSymbol": "querystring.unescape", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/querystring.html#querystringunescapestr", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.querystring.unescape", + "tests": [ + "tests/corpus/957-builtins-namespace.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:querystring.unescape", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "readline:f6115aa98422", + "chapter": "readline", + "label": "readlinePromises.Interface", + "signature": "Class: `readlinePromises.Interface`", + "apiSymbol": "readlinePromises.Interface", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/readline.html#class-readlinepromisesinterface", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:readline", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:readline", + "tests": [] + } + } + }, + { + "id": "readline:93e8bfa7183b", + "chapter": "readline", + "label": "rl.question(query[, options])", + "signature": "`rl.question(query[, options])`", + "apiSymbol": "rl.question", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/readline.html#rlquestionquery-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:readline", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:readline.rl.question", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "readline:b031461adce4", + "chapter": "readline", + "label": "readlinePromises.Readline", + "signature": "Class: `readlinePromises.Readline`", + "apiSymbol": "readlinePromises.Readline", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/readline.html#class-readlinepromisesreadline", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:readline", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:readline", + "tests": [] + } + } + }, + { + "id": "readline:77225325910c", + "chapter": "readline", + "label": "rl.clearLine(dir)", + "signature": "`rl.clearLine(dir)`", + "apiSymbol": "rl.clearLine", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/readline.html#rlclearlinedir", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:readline", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:readline", + "tests": [] + } + } + }, + { + "id": "readline:c807d041da09", + "chapter": "readline", + "label": "rl.clearScreenDown()", + "signature": "`rl.clearScreenDown()`", + "apiSymbol": "rl.clearScreenDown", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/readline.html#rlclearscreendown", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:readline", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:readline", + "tests": [] + } + } + }, + { + "id": "readline:1f63fe751514", + "chapter": "readline", + "label": "rl.commit()", + "signature": "`rl.commit()`", + "apiSymbol": "rl.commit", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/readline.html#rlcommit", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:readline", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:readline", + "tests": [] + } + } + }, + { + "id": "readline:b972d74a14a6", + "chapter": "readline", + "label": "rl.cursorTo(x[, y])", + "signature": "`rl.cursorTo(x[, y])`", + "apiSymbol": "rl.cursorTo", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/readline.html#rlcursortox-y", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:readline", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:readline", + "tests": [] + } + } + }, + { + "id": "readline:0ad8def7aa46", + "chapter": "readline", + "label": "rl.moveCursor(dx, dy)", + "signature": "`rl.moveCursor(dx, dy)`", + "apiSymbol": "rl.moveCursor", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/readline.html#rlmovecursordx-dy", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:readline", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:readline", + "tests": [] + } + } + }, + { + "id": "readline:0e4972f76e11", + "chapter": "readline", + "label": "rl.rollback()", + "signature": "`rl.rollback()`", + "apiSymbol": "rl.rollback", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/readline.html#rlrollback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:readline", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:readline", + "tests": [] + } + } + }, + { + "id": "readline:c9f5e2431cf3", + "chapter": "readline", + "label": "readlinePromises.createInterface(options)", + "signature": "`readlinePromises.createInterface(options)`", + "apiSymbol": "readlinePromises.createInterface", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/readline.html#readlinepromisescreateinterfaceoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:readline", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:readline", + "tests": [] + } + } + }, + { + "id": "readline:f99a9215d7e8", + "chapter": "readline", + "label": "Use of the completer function", + "signature": "Use of the `completer` function", + "apiSymbol": "completer", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/readline.html#use-of-the-completer-function", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:readline", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:readline", + "tests": [] + } + } + }, + { + "id": "readline:119ae49a30d4", + "chapter": "readline", + "label": "readline.Interface", + "signature": "Class: `readline.Interface`", + "apiSymbol": "readline.Interface", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/readline.html#class-readlineinterface", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:readline", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:readline.Interface", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "readline:eddd243d9e88", + "chapter": "readline", + "label": "rl.question(query[, options], callback)", + "signature": "`rl.question(query[, options], callback)`", + "apiSymbol": "rl.question", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/readline.html#rlquestionquery-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:readline", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:readline.rl.question", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "readline:f904a5c5575e", + "chapter": "readline", + "label": "readline.clearLine(stream, dir[, callback])", + "signature": "`readline.clearLine(stream, dir[, callback])`", + "apiSymbol": "readline.clearLine", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/readline.html#readlineclearlinestream-dir-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:readline", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:readline.clearLine", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "readline:1ec0ef0a672e", + "chapter": "readline", + "label": "readline.clearScreenDown(stream[, callback])", + "signature": "`readline.clearScreenDown(stream[, callback])`", + "apiSymbol": "readline.clearScreenDown", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/readline.html#readlineclearscreendownstream-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:readline", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:readline.clearScreenDown", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "readline:e42fe9c65553", + "chapter": "readline", + "label": "readline.createInterface(options)", + "signature": "`readline.createInterface(options)`", + "apiSymbol": "readline.createInterface", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/readline.html#readlinecreateinterfaceoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:readline.createInterface", + "tests": [ + "tests/corpus/1475-readline-closed-stdin.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:readline.createInterface", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "readline:7406acc1f122", + "chapter": "readline", + "label": "Use of the completer function", + "signature": "Use of the `completer` function", + "apiSymbol": "completer", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/readline.html#use-of-the-completer-function_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:readline", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:readline", + "tests": [] + } + } + }, + { + "id": "readline:7c8b4b55c589", + "chapter": "readline", + "label": "readline.cursorTo(stream, x[, y][, callback])", + "signature": "`readline.cursorTo(stream, x[, y][, callback])`", + "apiSymbol": "readline.cursorTo", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/readline.html#readlinecursortostream-x-y-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:readline", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:readline.cursorTo", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "readline:c41448e7f6f3", + "chapter": "readline", + "label": "readline.moveCursor(stream, dx, dy[, callback])", + "signature": "`readline.moveCursor(stream, dx, dy[, callback])`", + "apiSymbol": "readline.moveCursor", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/readline.html#readlinemovecursorstream-dx-dy-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:readline", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:readline.moveCursor", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "readline:cdf3ee503158", + "chapter": "readline", + "label": "InterfaceConstructor", + "signature": "Class: `InterfaceConstructor`", + "apiSymbol": "InterfaceConstructor", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/readline.html#class-interfaceconstructor", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:readline", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:readline", + "tests": [] + } + } + }, + { + "id": "readline:7f16c47dd206", + "chapter": "readline", + "label": "rl.close()", + "signature": "`rl.close()`", + "apiSymbol": "rl.close", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/readline.html#rlclose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:rl.close", + "tests": [ + "tests/corpus/1475-readline-closed-stdin.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:readline.rl.close", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "readline:df8bde84f5e8", + "chapter": "readline", + "label": "rl[Symbol.dispose]()", + "signature": "`rl[Symbol.dispose]()`", + "apiSymbol": "rl", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/readline.html#rlsymboldispose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:readline", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:readline", + "tests": [] + } + } + }, + { + "id": "readline:b89bd225bf61", + "chapter": "readline", + "label": "rl.pause()", + "signature": "`rl.pause()`", + "apiSymbol": "rl.pause", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/readline.html#rlpause", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:readline", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:readline.rl.pause", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "readline:66d998cc034b", + "chapter": "readline", + "label": "rl.prompt([preserveCursor])", + "signature": "`rl.prompt([preserveCursor])`", + "apiSymbol": "rl.prompt", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/readline.html#rlpromptpreservecursor", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:readline", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:readline.rl.prompt", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "readline:601596706c1d", + "chapter": "readline", + "label": "rl.resume()", + "signature": "`rl.resume()`", + "apiSymbol": "rl.resume", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/readline.html#rlresume", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:readline", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:readline.rl.resume", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "readline:cb20a8dab59e", + "chapter": "readline", + "label": "rl.setPrompt(prompt)", + "signature": "`rl.setPrompt(prompt)`", + "apiSymbol": "rl.setPrompt", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/readline.html#rlsetpromptprompt", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:readline", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:readline.rl.setPrompt", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "readline:e905c7e5b602", + "chapter": "readline", + "label": "rl.getPrompt()", + "signature": "`rl.getPrompt()`", + "apiSymbol": "rl.getPrompt", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/readline.html#rlgetprompt", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:readline", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:readline.rl.getPrompt", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "readline:4784b2dfdd25", + "chapter": "readline", + "label": "rl.write(data[, key])", + "signature": "`rl.write(data[, key])`", + "apiSymbol": "rl.write", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/readline.html#rlwritedata-key", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:readline", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:readline.rl.write", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "readline:90b08a5cc645", + "chapter": "readline", + "label": "rl[Symbol.asyncIterator]()", + "signature": "`rl[Symbol.asyncIterator]()`", + "apiSymbol": "rl", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/readline.html#rlsymbolasynciterator", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:readline", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:readline", + "tests": [] + } + } + }, + { + "id": "readline:c3f5b7f0a365", + "chapter": "readline", + "label": "rl.getCursorPos()", + "signature": "`rl.getCursorPos()`", + "apiSymbol": "rl.getCursorPos", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/readline.html#rlgetcursorpos", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:readline", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:readline", + "tests": [] + } + } + }, + { + "id": "readline:7e67bfc5bded", + "chapter": "readline", + "label": "line", + "signature": "`line` Type: {string}", + "apiSymbol": "line", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/readline.html#class-interfaceconstructor", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:readline", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:readline", + "tests": [] + } + } + }, + { + "id": "readline:0ff5208c2947", + "chapter": "readline", + "label": "cursor", + "signature": "`cursor` Type: {number|undefined}", + "apiSymbol": "cursor", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/readline.html#class-interfaceconstructor", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:readline", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:readline", + "tests": [] + } + } + }, + { + "id": "readline:75a8f0db89ad", + "chapter": "readline", + "label": "'close'", + "signature": "Event: `'close'`", + "apiSymbol": "'close'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/readline.html#event-close", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:readline", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:readline", + "tests": [] + } + } + }, + { + "id": "readline:550124c72f08", + "chapter": "readline", + "label": "'error'", + "signature": "Event: `'error'`", + "apiSymbol": "'error'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/readline.html#event-error", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:readline", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:readline", + "tests": [] + } + } + }, + { + "id": "readline:7ccc87c378ac", + "chapter": "readline", + "label": "'line'", + "signature": "Event: `'line'`", + "apiSymbol": "'line'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/readline.html#event-line", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:readline", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:readline", + "tests": [] + } + } + }, + { + "id": "readline:0205bb428e81", + "chapter": "readline", + "label": "'history'", + "signature": "Event: `'history'`", + "apiSymbol": "'history'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/readline.html#event-history", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:readline", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:readline", + "tests": [] + } + } + }, + { + "id": "readline:5196c2bcbcb0", + "chapter": "readline", + "label": "'pause'", + "signature": "Event: `'pause'`", + "apiSymbol": "'pause'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/readline.html#event-pause", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:readline", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:readline", + "tests": [] + } + } + }, + { + "id": "readline:3ec6bba9a753", + "chapter": "readline", + "label": "'resume'", + "signature": "Event: `'resume'`", + "apiSymbol": "'resume'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/readline.html#event-resume", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:readline", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:readline", + "tests": [] + } + } + }, + { + "id": "readline:7afa8a8c9096", + "chapter": "readline", + "label": "'SIGCONT'", + "signature": "Event: `'SIGCONT'`", + "apiSymbol": "'SIGCONT'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/readline.html#event-sigcont", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:readline", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:readline", + "tests": [] + } + } + }, + { + "id": "readline:1299d94c162b", + "chapter": "readline", + "label": "'SIGINT'", + "signature": "Event: `'SIGINT'`", + "apiSymbol": "'SIGINT'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/readline.html#event-sigint", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:readline", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:readline", + "tests": [] + } + } + }, + { + "id": "readline:ccbf160aefe1", + "chapter": "readline", + "label": "'SIGTSTP'", + "signature": "Event: `'SIGTSTP'`", + "apiSymbol": "'SIGTSTP'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/readline.html#event-sigtstp", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:readline", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:readline", + "tests": [] + } + } + }, + { + "id": "readline:e368b2b8f4bb", + "chapter": "readline", + "label": "readline.emitKeypressEvents(stream[, interface])", + "signature": "`readline.emitKeypressEvents(stream[, interface])`", + "apiSymbol": "readline.emitKeypressEvents", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/readline.html#readlineemitkeypresseventsstream-interface", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:readline", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:readline.emitKeypressEvents", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "repl:6324ed248bee", + "chapter": "repl", + "label": "Assignment of the _ (underscore) variable", + "signature": "Assignment of the `_` (underscore) variable", + "apiSymbol": "_", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/repl.html#assignment-of-the-_-underscore-variable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:repl", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:repl", + "tests": [] + } + } + }, + { + "id": "repl:4246bc36ffa1", + "chapter": "repl", + "label": "await", + "signature": "`await` keyword", + "apiSymbol": "await", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/repl.html#await-keyword", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:repl", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:repl", + "tests": [] + } + } + }, + { + "id": "repl:83837e32e950", + "chapter": "repl", + "label": "Full-featured \"terminal\" REPL over net.Server and net.Socket", + "signature": "Full-featured \"terminal\" REPL over `net.Server` and `net.Socket`", + "apiSymbol": "net.Server", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/repl.html#full-featured-terminal-repl-over-netserver-and-netsocket", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:repl", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:repl", + "tests": [] + } + } + }, + { + "id": "repl:b82b0348ce62", + "chapter": "repl", + "label": "REPL over curl", + "signature": "REPL over `curl`", + "apiSymbol": "curl", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/repl.html#repl-over-curl", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:repl", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:repl", + "tests": [] + } + } + }, + { + "id": "repl:20b36f4d9bea", + "chapter": "repl", + "label": "REPLServer", + "signature": "Class: `REPLServer`", + "apiSymbol": "REPLServer", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/repl.html#class-replserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:repl", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:repl", + "tests": [] + } + } + }, + { + "id": "repl:3cee2cd101bb", + "chapter": "repl", + "label": "replServer.defineCommand(keyword, cmd)", + "signature": "`replServer.defineCommand(keyword, cmd)`", + "apiSymbol": "replServer.defineCommand", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/repl.html#replserverdefinecommandkeyword-cmd", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:repl", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:repl", + "tests": [] + } + } + }, + { + "id": "repl:6fe531f347f2", + "chapter": "repl", + "label": "replServer.displayPrompt([preserveCursor])", + "signature": "`replServer.displayPrompt([preserveCursor])`", + "apiSymbol": "replServer.displayPrompt", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/repl.html#replserverdisplaypromptpreservecursor", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:repl", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:repl", + "tests": [] + } + } + }, + { + "id": "repl:9289ede87520", + "chapter": "repl", + "label": "replServer.clearBufferedCommand()", + "signature": "`replServer.clearBufferedCommand()`", + "apiSymbol": "replServer.clearBufferedCommand", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/repl.html#replserverclearbufferedcommand", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:repl", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:repl", + "tests": [] + } + } + }, + { + "id": "repl:9368d832c17c", + "chapter": "repl", + "label": "replServer.setupHistory(historyConfig, callback)", + "signature": "`replServer.setupHistory(historyConfig, callback)`", + "apiSymbol": "replServer.setupHistory", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/repl.html#replserversetuphistoryhistoryconfig-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:repl", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:repl", + "tests": [] + } + } + }, + { + "id": "repl:5cb88b9773a5", + "chapter": "repl", + "label": "'exit'", + "signature": "Event: `'exit'`", + "apiSymbol": "'exit'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/repl.html#event-exit", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:repl", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:repl", + "tests": [] + } + } + }, + { + "id": "repl:ba5fc79eb080", + "chapter": "repl", + "label": "'reset'", + "signature": "Event: `'reset'`", + "apiSymbol": "'reset'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/repl.html#event-reset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:repl", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:repl", + "tests": [] + } + } + }, + { + "id": "repl:c87920abcd05", + "chapter": "repl", + "label": "repl.start([options])", + "signature": "`repl.start([options])`", + "apiSymbol": "repl.start", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/repl.html#replstartoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:repl", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:repl", + "tests": [] + } + } + }, + { + "id": "repl:d0a7039ec748", + "chapter": "repl", + "label": "builtinModules", + "signature": "`builtinModules` Type: {string\\[]}", + "apiSymbol": "builtinModules", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/repl.html", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. Use [`module.builtinModules`][] instead.", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:repl", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:repl", + "tests": [] + } + } + }, + { + "id": "sqlite:c3ba43816b9c", + "chapter": "sqlite", + "label": "DatabaseSync", + "signature": "Class: `DatabaseSync`", + "apiSymbol": "DatabaseSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/sqlite.html#class-databasesync", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:sqlite", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:sqlite", + "tests": [] + } + } + }, + { + "id": "sqlite:24851a2f2aa3", + "chapter": "sqlite", + "label": "database.aggregate(name, options)", + "signature": "`database.aggregate(name, options)`", + "apiSymbol": "database.aggregate", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/sqlite.html#databaseaggregatename-options", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:sqlite", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:sqlite", + "tests": [] + } + } + }, + { + "id": "sqlite:f4bf2db3cff6", + "chapter": "sqlite", + "label": "database.close()", + "signature": "`database.close()`", + "apiSymbol": "database.close", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/sqlite.html#databaseclose", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:sqlite", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:sqlite", + "tests": [] + } + } + }, + { + "id": "sqlite:bea9dd7076f9", + "chapter": "sqlite", + "label": "database.loadExtension(path)", + "signature": "`database.loadExtension(path)`", + "apiSymbol": "database.loadExtension", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/sqlite.html#databaseloadextensionpath", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:sqlite", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:sqlite", + "tests": [] + } + } + }, + { + "id": "sqlite:22683e746fb2", + "chapter": "sqlite", + "label": "database.enableLoadExtension(allow)", + "signature": "`database.enableLoadExtension(allow)`", + "apiSymbol": "database.enableLoadExtension", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/sqlite.html#databaseenableloadextensionallow", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:sqlite", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:sqlite", + "tests": [] + } + } + }, + { + "id": "sqlite:c1e30df24a81", + "chapter": "sqlite", + "label": "database.enableDefensive(active)", + "signature": "`database.enableDefensive(active)`", + "apiSymbol": "database.enableDefensive", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/sqlite.html#databaseenabledefensiveactive", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:sqlite", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:sqlite", + "tests": [] + } + } + }, + { + "id": "sqlite:edc3b92630cc", + "chapter": "sqlite", + "label": "database.location([dbName])", + "signature": "`database.location([dbName])`", + "apiSymbol": "database.location", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/sqlite.html#databaselocationdbname", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:sqlite", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:sqlite", + "tests": [] + } + } + }, + { + "id": "sqlite:316a738f96af", + "chapter": "sqlite", + "label": "database.exec(sql)", + "signature": "`database.exec(sql)`", + "apiSymbol": "database.exec", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/sqlite.html#databaseexecsql", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:sqlite", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:sqlite", + "tests": [] + } + } + }, + { + "id": "sqlite:65a8500327df", + "chapter": "sqlite", + "label": "database.function(name[, options], fn)", + "signature": "`database.function(name[, options], fn)`", + "apiSymbol": "database.function", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/sqlite.html#databasefunctionname-options-fn", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:sqlite", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:sqlite", + "tests": [] + } + } + }, + { + "id": "sqlite:5b55cb20bd3d", + "chapter": "sqlite", + "label": "database.setAuthorizer(callback)", + "signature": "`database.setAuthorizer(callback)`", + "apiSymbol": "database.setAuthorizer", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/sqlite.html#databasesetauthorizercallback", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:sqlite", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:sqlite", + "tests": [] + } + } + }, + { + "id": "sqlite:e53f27b171bc", + "chapter": "sqlite", + "label": "database.open()", + "signature": "`database.open()`", + "apiSymbol": "database.open", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/sqlite.html#databaseopen", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:sqlite", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:sqlite", + "tests": [] + } + } + }, + { + "id": "sqlite:29d553079aa0", + "chapter": "sqlite", + "label": "database.prepare(sql[, options])", + "signature": "`database.prepare(sql[, options])`", + "apiSymbol": "database.prepare", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/sqlite.html#databasepreparesql-options", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:sqlite", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:sqlite", + "tests": [] + } + } + }, + { + "id": "sqlite:8e700a40011c", + "chapter": "sqlite", + "label": "database.createTagStore([maxSize])", + "signature": "`database.createTagStore([maxSize])`", + "apiSymbol": "database.createTagStore", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/sqlite.html#databasecreatetagstoremaxsize", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:sqlite", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:sqlite", + "tests": [] + } + } + }, + { + "id": "sqlite:ea5d11eb89c3", + "chapter": "sqlite", + "label": "database.createSession([options])", + "signature": "`database.createSession([options])`", + "apiSymbol": "database.createSession", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/sqlite.html#databasecreatesessionoptions", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:sqlite", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:sqlite", + "tests": [] + } + } + }, + { + "id": "sqlite:1c1cf7b192cd", + "chapter": "sqlite", + "label": "database.applyChangeset(changeset[, options])", + "signature": "`database.applyChangeset(changeset[, options])`", + "apiSymbol": "database.applyChangeset", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/sqlite.html#databaseapplychangesetchangeset-options", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:sqlite", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:sqlite", + "tests": [] + } + } + }, + { + "id": "sqlite:3dc2e4a8707b", + "chapter": "sqlite", + "label": "database[Symbol.dispose]()", + "signature": "`database[Symbol.dispose]()`", + "apiSymbol": "database", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/sqlite.html#databasesymboldispose", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:sqlite", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:sqlite", + "tests": [] + } + } + }, + { + "id": "sqlite:6e154b54cdff", + "chapter": "sqlite", + "label": "isOpen", + "signature": "`isOpen` Type: {boolean} Whether the database is currently open or not.", + "apiSymbol": "isOpen", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/sqlite.html#class-databasesync", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:sqlite", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:sqlite", + "tests": [] + } + } + }, + { + "id": "sqlite:406106866022", + "chapter": "sqlite", + "label": "isTransaction", + "signature": "`isTransaction` Type: {boolean} Whether the database is currently within a transaction. This method is a wrapper around [`sqlite3_get_autocommit()`][].", + "apiSymbol": "isTransaction", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/sqlite.html#class-databasesync", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:sqlite", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:sqlite", + "tests": [] + } + } + }, + { + "id": "sqlite:c3dcacbf1225", + "chapter": "sqlite", + "label": "limits", + "signature": "`limits` Type: {Object}", + "apiSymbol": "limits", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/sqlite.html#class-databasesync", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:sqlite", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:sqlite", + "tests": [] + } + } + }, + { + "id": "sqlite:cbf075aaf14f", + "chapter": "sqlite", + "label": "Session", + "signature": "Class: `Session`", + "apiSymbol": "Session", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/sqlite.html#class-session", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:sqlite", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:sqlite", + "tests": [] + } + } + }, + { + "id": "sqlite:b6a334b49c5c", + "chapter": "sqlite", + "label": "session.changeset()", + "signature": "`session.changeset()`", + "apiSymbol": "session.changeset", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/sqlite.html#sessionchangeset", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:sqlite", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:sqlite", + "tests": [] + } + } + }, + { + "id": "sqlite:ac237d410857", + "chapter": "sqlite", + "label": "session.patchset()", + "signature": "`session.patchset()`", + "apiSymbol": "session.patchset", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/sqlite.html#sessionpatchset", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:sqlite", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:sqlite", + "tests": [] + } + } + }, + { + "id": "sqlite:825ce8aaf712", + "chapter": "sqlite", + "label": "session.close()", + "signature": "`session.close()`", + "apiSymbol": "session.close", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/sqlite.html#sessionclose", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:sqlite", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:sqlite", + "tests": [] + } + } + }, + { + "id": "sqlite:1b845f6b83df", + "chapter": "sqlite", + "label": "session[Symbol.dispose]()", + "signature": "`session[Symbol.dispose]()`", + "apiSymbol": "session", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/sqlite.html#sessionsymboldispose", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:sqlite", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:sqlite", + "tests": [] + } + } + }, + { + "id": "sqlite:23cd7cc41935", + "chapter": "sqlite", + "label": "StatementSync", + "signature": "Class: `StatementSync`", + "apiSymbol": "StatementSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/sqlite.html#class-statementsync", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:sqlite", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:sqlite", + "tests": [] + } + } + }, + { + "id": "sqlite:85b1aa8ba164", + "chapter": "sqlite", + "label": "statement.all([namedParameters][, ...anonymousParameters])", + "signature": "`statement.all([namedParameters][, ...anonymousParameters])`", + "apiSymbol": "statement.all", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/sqlite.html#statementallnamedparameters-anonymousparameters", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:sqlite", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:sqlite", + "tests": [] + } + } + }, + { + "id": "sqlite:8a2767b377e2", + "chapter": "sqlite", + "label": "statement.columns()", + "signature": "`statement.columns()`", + "apiSymbol": "statement.columns", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/sqlite.html#statementcolumns", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:sqlite", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:sqlite", + "tests": [] + } + } + }, + { + "id": "sqlite:feed1a095cfd", + "chapter": "sqlite", + "label": "statement.get([namedParameters][, ...anonymousParameters])", + "signature": "`statement.get([namedParameters][, ...anonymousParameters])`", + "apiSymbol": "statement.get", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/sqlite.html#statementgetnamedparameters-anonymousparameters", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:sqlite", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:sqlite", + "tests": [] + } + } + }, + { + "id": "sqlite:29a308f7f9d8", + "chapter": "sqlite", + "label": "statement.iterate([namedParameters][, ...anonymousParameters])", + "signature": "`statement.iterate([namedParameters][, ...anonymousParameters])`", + "apiSymbol": "statement.iterate", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/sqlite.html#statementiteratenamedparameters-anonymousparameters", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:sqlite", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:sqlite", + "tests": [] + } + } + }, + { + "id": "sqlite:694171d51eca", + "chapter": "sqlite", + "label": "statement.run([namedParameters][, ...anonymousParameters])", + "signature": "`statement.run([namedParameters][, ...anonymousParameters])`", + "apiSymbol": "statement.run", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/sqlite.html#statementrunnamedparameters-anonymousparameters", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:sqlite", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:sqlite", + "tests": [] + } + } + }, + { + "id": "sqlite:b39fd3b26704", + "chapter": "sqlite", + "label": "statement.setAllowBareNamedParameters(enabled)", + "signature": "`statement.setAllowBareNamedParameters(enabled)`", + "apiSymbol": "statement.setAllowBareNamedParameters", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/sqlite.html#statementsetallowbarenamedparametersenabled", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:sqlite", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:sqlite", + "tests": [] + } + } + }, + { + "id": "sqlite:4522a10b2421", + "chapter": "sqlite", + "label": "statement.setAllowUnknownNamedParameters(enabled)", + "signature": "`statement.setAllowUnknownNamedParameters(enabled)`", + "apiSymbol": "statement.setAllowUnknownNamedParameters", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/sqlite.html#statementsetallowunknownnamedparametersenabled", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:sqlite", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:sqlite", + "tests": [] + } + } + }, + { + "id": "sqlite:88a382984fe9", + "chapter": "sqlite", + "label": "statement.setReturnArrays(enabled)", + "signature": "`statement.setReturnArrays(enabled)`", + "apiSymbol": "statement.setReturnArrays", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/sqlite.html#statementsetreturnarraysenabled", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:sqlite", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:sqlite", + "tests": [] + } + } + }, + { + "id": "sqlite:4b6ece90e750", + "chapter": "sqlite", + "label": "statement.setReadBigInts(enabled)", + "signature": "`statement.setReadBigInts(enabled)`", + "apiSymbol": "statement.setReadBigInts", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/sqlite.html#statementsetreadbigintsenabled", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:sqlite", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:sqlite", + "tests": [] + } + } + }, + { + "id": "sqlite:9f7687fa081c", + "chapter": "sqlite", + "label": "expandedSQL", + "signature": "`expandedSQL` Type: {string} The source SQL expanded to include parameter values.", + "apiSymbol": "expandedSQL", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/sqlite.html#class-statementsync", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:sqlite", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:sqlite", + "tests": [] + } + } + }, + { + "id": "sqlite:006645605649", + "chapter": "sqlite", + "label": "sourceSQL", + "signature": "`sourceSQL` Type: {string} The source SQL used to create this prepared statement.", + "apiSymbol": "sourceSQL", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/sqlite.html#class-statementsync", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:sqlite", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:sqlite", + "tests": [] + } + } + }, + { + "id": "sqlite:c0b62c6551d4", + "chapter": "sqlite", + "label": "SQLTagStore", + "signature": "Class: `SQLTagStore`", + "apiSymbol": "SQLTagStore", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/sqlite.html#class-sqltagstore", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:sqlite", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:sqlite", + "tests": [] + } + } + }, + { + "id": "sqlite:89f460f74648", + "chapter": "sqlite", + "label": "sqlTagStore.all(stringElements[, ...boundParameters])", + "signature": "`sqlTagStore.all(stringElements[, ...boundParameters])`", + "apiSymbol": "sqlTagStore.all", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/sqlite.html#sqltagstoreallstringelements-boundparameters", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:sqlite", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:sqlite", + "tests": [] + } + } + }, + { + "id": "sqlite:14343192c373", + "chapter": "sqlite", + "label": "sqlTagStore.get(stringElements[, ...boundParameters])", + "signature": "`sqlTagStore.get(stringElements[, ...boundParameters])`", + "apiSymbol": "sqlTagStore.get", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/sqlite.html#sqltagstoregetstringelements-boundparameters", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:sqlite", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:sqlite", + "tests": [] + } + } + }, + { + "id": "sqlite:5f5771cf3fc9", + "chapter": "sqlite", + "label": "sqlTagStore.iterate(stringElements[, ...boundParameters])", + "signature": "`sqlTagStore.iterate(stringElements[, ...boundParameters])`", + "apiSymbol": "sqlTagStore.iterate", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/sqlite.html#sqltagstoreiteratestringelements-boundparameters", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:sqlite", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:sqlite", + "tests": [] + } + } + }, + { + "id": "sqlite:c6379eda1fb7", + "chapter": "sqlite", + "label": "sqlTagStore.run(stringElements[, ...boundParameters])", + "signature": "`sqlTagStore.run(stringElements[, ...boundParameters])`", + "apiSymbol": "sqlTagStore.run", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/sqlite.html#sqltagstorerunstringelements-boundparameters", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:sqlite", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:sqlite", + "tests": [] + } + } + }, + { + "id": "sqlite:7b0abbbb3e37", + "chapter": "sqlite", + "label": "sqlTagStore.clear()", + "signature": "`sqlTagStore.clear()`", + "apiSymbol": "sqlTagStore.clear", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/sqlite.html#sqltagstoreclear", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:sqlite", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:sqlite", + "tests": [] + } + } + }, + { + "id": "sqlite:f121de953827", + "chapter": "sqlite", + "label": "size", + "signature": "`size` Type: {integer}", + "apiSymbol": "size", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/sqlite.html#class-sqltagstore", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:sqlite", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:sqlite", + "tests": [] + } + } + }, + { + "id": "sqlite:52f97b02d838", + "chapter": "sqlite", + "label": "capacity", + "signature": "`capacity` Type: {integer}", + "apiSymbol": "capacity", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/sqlite.html#class-sqltagstore", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:sqlite", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:sqlite", + "tests": [] + } + } + }, + { + "id": "sqlite:f553db38de9e", + "chapter": "sqlite", + "label": "db", + "signature": "`db` Type: {DatabaseSync}", + "apiSymbol": "db", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/sqlite.html#class-sqltagstore", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:sqlite", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:sqlite", + "tests": [] + } + } + }, + { + "id": "sqlite:ca14dd3b8a2a", + "chapter": "sqlite", + "label": "sqlite.backup(sourceDb, path[, options])", + "signature": "`sqlite.backup(sourceDb, path[, options])`", + "apiSymbol": "sqlite.backup", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/sqlite.html#sqlitebackupsourcedb-path-options", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:sqlite", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:sqlite", + "tests": [] + } + } + }, + { + "id": "sqlite:1debc4ff3e3f", + "chapter": "sqlite", + "label": "constants", + "signature": "`constants` Type: {Object}", + "apiSymbol": "constants", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/sqlite.html", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "priority": "normal", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:sqlite", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:sqlite", + "tests": [] + } + } + }, + { + "id": "stream:407afe1fe8e6", + "chapter": "stream", + "label": "stream.pipeline(streams[, options])", + "signature": "`stream.pipeline(streams[, options])`", + "apiSymbol": "stream.pipeline", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#streampipelinestreams-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:stream.pipeline", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:stream.pipeline", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "stream:21d7b6531c4a", + "chapter": "stream", + "label": "stream.pipeline(source[, ...transforms], destination[, options])", + "signature": "`stream.pipeline(source[, ...transforms], destination[, options])`", + "apiSymbol": "stream.pipeline", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#streampipelinesource-transforms-destination-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:stream.pipeline", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:stream.pipeline", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "stream:f1bd2073f7db", + "chapter": "stream", + "label": "stream.finished(stream[, options])", + "signature": "`stream.finished(stream[, options])`", + "apiSymbol": "stream.finished", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#streamfinishedstream-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:stream.finished", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:stream.finished", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "stream:485a6b506ddf", + "chapter": "stream", + "label": "stream.finished(stream[, options], callback)", + "signature": "`stream.finished(stream[, options], callback)`", + "apiSymbol": "stream.finished", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#streamfinishedstream-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:stream.finished", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:stream.finished", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "stream:9b14f1783aac", + "chapter": "stream", + "label": "stream.pipeline(source[, ...transforms], destination, callback)", + "signature": "`stream.pipeline(source[, ...transforms], destination, callback)`", + "apiSymbol": "stream.pipeline", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#streampipelinesource-transforms-destination-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:stream.pipeline", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:stream.pipeline", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "stream:0f4f73c0781c", + "chapter": "stream", + "label": "stream.pipeline(streams, callback)", + "signature": "`stream.pipeline(streams, callback)`", + "apiSymbol": "stream.pipeline", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#streampipelinestreams-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:stream.pipeline", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:stream.pipeline", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "stream:2d17ae5de501", + "chapter": "stream", + "label": "stream.compose(...streams)", + "signature": "`stream.compose(...streams)`", + "apiSymbol": "stream.compose", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#streamcomposestreams", + "nodeStability": { + "index": "1", + "level": 1, + "text": "`stream.compose` is experimental.", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:022f59526ac3", + "chapter": "stream", + "label": "stream.isErrored(stream)", + "signature": "`stream.isErrored(stream)`", + "apiSymbol": "stream.isErrored", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#streamiserroredstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:stream.isErrored", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "stream:0fcf6da4d1d3", + "chapter": "stream", + "label": "stream.isReadable(stream)", + "signature": "`stream.isReadable(stream)`", + "apiSymbol": "stream.isReadable", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#streamisreadablestream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:stream.isReadable", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "stream:8a16f61859cf", + "chapter": "stream", + "label": "stream.isWritable(stream)", + "signature": "`stream.isWritable(stream)`", + "apiSymbol": "stream.isWritable", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#streamiswritablestream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:stream.isWritable", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "stream:c19bc2f232cc", + "chapter": "stream", + "label": "stream.Readable.from(iterable[, options])", + "signature": "`stream.Readable.from(iterable[, options])`", + "apiSymbol": "stream.Readable.from", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#streamreadablefromiterable-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:stream.stream.Readable.from", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "stream:2a1e2d54e06f", + "chapter": "stream", + "label": "stream.Readable.fromWeb(readableStream[, options])", + "signature": "`stream.Readable.fromWeb(readableStream[, options])`", + "apiSymbol": "stream.Readable.fromWeb", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#streamreadablefromwebreadablestream-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:c732a647de90", + "chapter": "stream", + "label": "stream.Readable.isDisturbed(stream)", + "signature": "`stream.Readable.isDisturbed(stream)`", + "apiSymbol": "stream.Readable.isDisturbed", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#streamreadableisdisturbedstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:23584927da54", + "chapter": "stream", + "label": "stream.Readable.toWeb(streamReadable[, options])", + "signature": "`stream.Readable.toWeb(streamReadable[, options])`", + "apiSymbol": "stream.Readable.toWeb", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#streamreadabletowebstreamreadable-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:22ddfdf92010", + "chapter": "stream", + "label": "stream.Writable.fromWeb(writableStream[, options])", + "signature": "`stream.Writable.fromWeb(writableStream[, options])`", + "apiSymbol": "stream.Writable.fromWeb", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#streamwritablefromwebwritablestream-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:fc5b70971d13", + "chapter": "stream", + "label": "stream.Writable.toWeb(streamWritable)", + "signature": "`stream.Writable.toWeb(streamWritable)`", + "apiSymbol": "stream.Writable.toWeb", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#streamwritabletowebstreamwritable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:98dd6283d3da", + "chapter": "stream", + "label": "stream.Duplex.from(src)", + "signature": "`stream.Duplex.from(src)`", + "apiSymbol": "stream.Duplex.from", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#streamduplexfromsrc", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:0aa7318990ec", + "chapter": "stream", + "label": "stream.Duplex.fromWeb(pair[, options])", + "signature": "`stream.Duplex.fromWeb(pair[, options])`", + "apiSymbol": "stream.Duplex.fromWeb", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#streamduplexfromwebpair-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:bf762361c16f", + "chapter": "stream", + "label": "stream.Duplex.toWeb(streamDuplex[, options])", + "signature": "`stream.Duplex.toWeb(streamDuplex[, options])`", + "apiSymbol": "stream.Duplex.toWeb", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#streamduplextowebstreamduplex-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:0912f0a45e59", + "chapter": "stream", + "label": "stream.addAbortSignal(signal, stream)", + "signature": "`stream.addAbortSignal(signal, stream)`", + "apiSymbol": "stream.addAbortSignal", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#streamaddabortsignalsignal-stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:stream.addAbortSignal", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "stream:35260256bedd", + "chapter": "stream", + "label": "stream.getDefaultHighWaterMark(objectMode)", + "signature": "`stream.getDefaultHighWaterMark(objectMode)`", + "apiSymbol": "stream.getDefaultHighWaterMark", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#streamgetdefaulthighwatermarkobjectmode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:stream.getDefaultHighWaterMark", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:c9100a8baecd", + "chapter": "stream", + "label": "stream.setDefaultHighWaterMark(objectMode, value)", + "signature": "`stream.setDefaultHighWaterMark(objectMode, value)`", + "apiSymbol": "stream.setDefaultHighWaterMark", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#streamsetdefaulthighwatermarkobjectmode-value", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:0ac302dc974f", + "chapter": "stream", + "label": "readable.read(0)", + "signature": "`readable.read(0)`", + "apiSymbol": "readable.read", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#readableread0", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:readable.read", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:stream.readable.read", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "stream:2abe83491f17", + "chapter": "stream", + "label": "readable.push('')", + "signature": "`readable.push('')`", + "apiSymbol": "readable.push", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#readablepush", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:readable.push", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:stream.readable.push", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "stream:26c888901d4d", + "chapter": "stream", + "label": "stream.finished(stream[, options], callback)", + "signature": "`stream.finished(stream[, options], callback)`", + "apiSymbol": "stream.finished", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#api-for-stream-consumers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:stream.finished", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:stream.finished", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "stream:84ff72680b34", + "chapter": "stream", + "label": "stream.pipeline(source[, ...transforms], destination, callback)", + "signature": "`stream.pipeline(source[, ...transforms], destination, callback)`", + "apiSymbol": "stream.pipeline", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#api-for-stream-consumers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:stream.pipeline", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:stream.pipeline", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "stream:d3255026d4d3", + "chapter": "stream", + "label": "stream.pipeline(streams, callback)", + "signature": "`stream.pipeline(streams, callback)`", + "apiSymbol": "stream.pipeline", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#api-for-stream-consumers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:stream.pipeline", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:stream.pipeline", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "stream:2c72c273fc9a", + "chapter": "stream", + "label": "stream.compose(...streams)", + "signature": "`stream.compose(...streams)`", + "apiSymbol": "stream.compose", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#api-for-stream-consumers", + "nodeStability": { + "index": "1", + "level": 1, + "text": "`stream.compose` is experimental.", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:c3b8a10f23ec", + "chapter": "stream", + "label": "stream.isErrored(stream)", + "signature": "`stream.isErrored(stream)`", + "apiSymbol": "stream.isErrored", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#api-for-stream-consumers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:stream.isErrored", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "stream:f9d462228935", + "chapter": "stream", + "label": "stream.isReadable(stream)", + "signature": "`stream.isReadable(stream)`", + "apiSymbol": "stream.isReadable", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#api-for-stream-consumers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:stream.isReadable", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "stream:9d74f7ae093e", + "chapter": "stream", + "label": "stream.isWritable(stream)", + "signature": "`stream.isWritable(stream)`", + "apiSymbol": "stream.isWritable", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#api-for-stream-consumers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:stream.isWritable", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "stream:00e24c72fe1c", + "chapter": "stream", + "label": "stream.Readable.from(iterable[, options])", + "signature": "`stream.Readable.from(iterable[, options])`", + "apiSymbol": "stream.Readable.from", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#api-for-stream-consumers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:stream.stream.Readable.from", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "stream:3c020795e7aa", + "chapter": "stream", + "label": "stream.Readable.fromWeb(readableStream[, options])", + "signature": "`stream.Readable.fromWeb(readableStream[, options])`", + "apiSymbol": "stream.Readable.fromWeb", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#api-for-stream-consumers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:0155ca859bba", + "chapter": "stream", + "label": "stream.Readable.isDisturbed(stream)", + "signature": "`stream.Readable.isDisturbed(stream)`", + "apiSymbol": "stream.Readable.isDisturbed", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#api-for-stream-consumers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:c869f74e7937", + "chapter": "stream", + "label": "stream.Readable.toWeb(streamReadable[, options])", + "signature": "`stream.Readable.toWeb(streamReadable[, options])`", + "apiSymbol": "stream.Readable.toWeb", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#api-for-stream-consumers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:ba1bd728f940", + "chapter": "stream", + "label": "stream.Writable.fromWeb(writableStream[, options])", + "signature": "`stream.Writable.fromWeb(writableStream[, options])`", + "apiSymbol": "stream.Writable.fromWeb", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#api-for-stream-consumers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:932946d3f1ea", + "chapter": "stream", + "label": "stream.Writable.toWeb(streamWritable)", + "signature": "`stream.Writable.toWeb(streamWritable)`", + "apiSymbol": "stream.Writable.toWeb", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#api-for-stream-consumers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:142509c44b7f", + "chapter": "stream", + "label": "stream.Duplex.from(src)", + "signature": "`stream.Duplex.from(src)`", + "apiSymbol": "stream.Duplex.from", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#api-for-stream-consumers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:4b92ba10d286", + "chapter": "stream", + "label": "stream.Duplex.fromWeb(pair[, options])", + "signature": "`stream.Duplex.fromWeb(pair[, options])`", + "apiSymbol": "stream.Duplex.fromWeb", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#api-for-stream-consumers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:94b26135dbcf", + "chapter": "stream", + "label": "stream.Duplex.toWeb(streamDuplex[, options])", + "signature": "`stream.Duplex.toWeb(streamDuplex[, options])`", + "apiSymbol": "stream.Duplex.toWeb", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#api-for-stream-consumers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:6368088aee30", + "chapter": "stream", + "label": "stream.addAbortSignal(signal, stream)", + "signature": "`stream.addAbortSignal(signal, stream)`", + "apiSymbol": "stream.addAbortSignal", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#api-for-stream-consumers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:stream.addAbortSignal", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "stream:0981a1dc3664", + "chapter": "stream", + "label": "stream.getDefaultHighWaterMark(objectMode)", + "signature": "`stream.getDefaultHighWaterMark(objectMode)`", + "apiSymbol": "stream.getDefaultHighWaterMark", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#api-for-stream-consumers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:stream.getDefaultHighWaterMark", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:631757278f80", + "chapter": "stream", + "label": "stream.setDefaultHighWaterMark(objectMode, value)", + "signature": "`stream.setDefaultHighWaterMark(objectMode, value)`", + "apiSymbol": "stream.setDefaultHighWaterMark", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#api-for-stream-consumers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:fb4f2232c3ed", + "chapter": "stream", + "label": "stream.Writable", + "signature": "Class: `stream.Writable`", + "apiSymbol": "stream.Writable", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#class-streamwritable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:stream.Writable", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "stream:c8fc702ba690", + "chapter": "stream", + "label": "writable.cork()", + "signature": "`writable.cork()`", + "apiSymbol": "writable.cork", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#writablecork", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:writable.cork", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:stream.writable.cork", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "stream:a7056020b081", + "chapter": "stream", + "label": "writable.destroy([error])", + "signature": "`writable.destroy([error])`", + "apiSymbol": "writable.destroy", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#writabledestroyerror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:stream.writable.destroy", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "stream:4788f330f734", + "chapter": "stream", + "label": "writable.end([chunk[, encoding]][, callback])", + "signature": "`writable.end([chunk[, encoding]][, callback])`", + "apiSymbol": "writable.end", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#writableendchunk-encoding-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:writable.end", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:stream.writable.end", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "stream:5aa4fbf448aa", + "chapter": "stream", + "label": "writable.setDefaultEncoding(encoding)", + "signature": "`writable.setDefaultEncoding(encoding)`", + "apiSymbol": "writable.setDefaultEncoding", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#writablesetdefaultencodingencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:writable.setDefaultEncoding", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:stream.writable.setDefaultEncoding", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "stream:0adb3fbabc38", + "chapter": "stream", + "label": "writable.uncork()", + "signature": "`writable.uncork()`", + "apiSymbol": "writable.uncork", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#writableuncork", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:writable.uncork", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:stream.writable.uncork", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "stream:65c4a59c0dc0", + "chapter": "stream", + "label": "writable[Symbol.asyncDispose]()", + "signature": "`writable[Symbol.asyncDispose]()`", + "apiSymbol": "writable", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#writablesymbolasyncdispose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:c6e22d9965fa", + "chapter": "stream", + "label": "writable.write(chunk[, encoding][, callback])", + "signature": "`writable.write(chunk[, encoding][, callback])`", + "apiSymbol": "writable.write", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#writablewritechunk-encoding-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:writable.write", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:stream.writable.write", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "stream:5b218d298213", + "chapter": "stream", + "label": "closed", + "signature": "`closed` Type: {boolean}", + "apiSymbol": "closed", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#class-streamwritable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:6b6d82823460", + "chapter": "stream", + "label": "destroyed", + "signature": "`destroyed` Type: {boolean}", + "apiSymbol": "destroyed", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#class-streamwritable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:79955b0367bd", + "chapter": "stream", + "label": "writable", + "signature": "`writable` Type: {boolean}", + "apiSymbol": "writable", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#class-streamwritable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:c2932a811dbd", + "chapter": "stream", + "label": "writableAborted", + "signature": "`writableAborted` Type: {boolean}", + "apiSymbol": "writableAborted", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#class-streamwritable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:773a067756c8", + "chapter": "stream", + "label": "writableEnded", + "signature": "`writableEnded` Type: {boolean}", + "apiSymbol": "writableEnded", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#class-streamwritable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:c498bc3c61ca", + "chapter": "stream", + "label": "writableCorked", + "signature": "`writableCorked` Type: {integer}", + "apiSymbol": "writableCorked", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#class-streamwritable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:21a878d50ea8", + "chapter": "stream", + "label": "errored", + "signature": "`errored` Type: {Error}", + "apiSymbol": "errored", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#class-streamwritable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:64b02fced7a9", + "chapter": "stream", + "label": "writableFinished", + "signature": "`writableFinished` Type: {boolean}", + "apiSymbol": "writableFinished", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#class-streamwritable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:44450c81e2bc", + "chapter": "stream", + "label": "writableHighWaterMark", + "signature": "`writableHighWaterMark` Type: {number}", + "apiSymbol": "writableHighWaterMark", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#class-streamwritable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:7ee590368a01", + "chapter": "stream", + "label": "writableLength", + "signature": "`writableLength` Type: {number}", + "apiSymbol": "writableLength", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#class-streamwritable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:ede1d6ed13bc", + "chapter": "stream", + "label": "writableNeedDrain", + "signature": "`writableNeedDrain` Type: {boolean}", + "apiSymbol": "writableNeedDrain", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#class-streamwritable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:c38fcac34905", + "chapter": "stream", + "label": "writableObjectMode", + "signature": "`writableObjectMode` Type: {boolean}", + "apiSymbol": "writableObjectMode", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#class-streamwritable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:af7d709dc927", + "chapter": "stream", + "label": "'close'", + "signature": "Event: `'close'`", + "apiSymbol": "'close'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#event-close", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:b7738a5e313c", + "chapter": "stream", + "label": "'drain'", + "signature": "Event: `'drain'`", + "apiSymbol": "'drain'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#event-drain", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:f8e0b55069a1", + "chapter": "stream", + "label": "'error'", + "signature": "Event: `'error'`", + "apiSymbol": "'error'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#event-error", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:e980a8ede358", + "chapter": "stream", + "label": "'finish'", + "signature": "Event: `'finish'`", + "apiSymbol": "'finish'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#event-finish", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:5647dc84973a", + "chapter": "stream", + "label": "'pipe'", + "signature": "Event: `'pipe'`", + "apiSymbol": "'pipe'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#event-pipe", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:20ac861c350e", + "chapter": "stream", + "label": "'unpipe'", + "signature": "Event: `'unpipe'`", + "apiSymbol": "'unpipe'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#event-unpipe", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:beca88f04114", + "chapter": "stream", + "label": "stream.Readable", + "signature": "Class: `stream.Readable`", + "apiSymbol": "stream.Readable", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#class-streamreadable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:stream.Readable", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "stream:fffb9a73545d", + "chapter": "stream", + "label": "readable.destroy([error])", + "signature": "`readable.destroy([error])`", + "apiSymbol": "readable.destroy", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#readabledestroyerror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:readable.destroy", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:stream.readable.destroy", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "stream:8c13941c2da9", + "chapter": "stream", + "label": "readable.isPaused()", + "signature": "`readable.isPaused()`", + "apiSymbol": "readable.isPaused", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#readableispaused", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:readable.isPaused", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:stream.readable.isPaused", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "stream:528bca09998f", + "chapter": "stream", + "label": "readable.pause()", + "signature": "`readable.pause()`", + "apiSymbol": "readable.pause", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#readablepause", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:readable.pause", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:stream.readable.pause", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "stream:302494fc4444", + "chapter": "stream", + "label": "readable.pipe(destination[, options])", + "signature": "`readable.pipe(destination[, options])`", + "apiSymbol": "readable.pipe", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#readablepipedestination-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:readable.pipe", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:stream.readable.pipe", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "stream:8e9041e06d32", + "chapter": "stream", + "label": "readable.read([size])", + "signature": "`readable.read([size])`", + "apiSymbol": "readable.read", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#readablereadsize", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:readable.read", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:stream.readable.read", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "stream:5eb9333ba580", + "chapter": "stream", + "label": "readable.resume()", + "signature": "`readable.resume()`", + "apiSymbol": "readable.resume", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#readableresume", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:readable.resume", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:stream.readable.resume", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "stream:ac1fa8557b23", + "chapter": "stream", + "label": "readable.setEncoding(encoding)", + "signature": "`readable.setEncoding(encoding)`", + "apiSymbol": "readable.setEncoding", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#readablesetencodingencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:readable.setEncoding", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:stream.readable.setEncoding", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "stream:014a313733a9", + "chapter": "stream", + "label": "readable.unpipe([destination])", + "signature": "`readable.unpipe([destination])`", + "apiSymbol": "readable.unpipe", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#readableunpipedestination", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:readable.unpipe", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:stream.readable.unpipe", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "stream:f50018135868", + "chapter": "stream", + "label": "readable.unshift(chunk[, encoding])", + "signature": "`readable.unshift(chunk[, encoding])`", + "apiSymbol": "readable.unshift", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#readableunshiftchunk-encoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:readable.unshift", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:stream.readable.unshift", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "stream:8480a5e636f9", + "chapter": "stream", + "label": "readable.wrap(stream)", + "signature": "`readable.wrap(stream)`", + "apiSymbol": "readable.wrap", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#readablewrapstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-member-stub:node:stream.readable.wrap", + "tests": [] + } + } + }, + { + "id": "stream:321a9203032e", + "chapter": "stream", + "label": "readable[Symbol.asyncIterator]()", + "signature": "`readable[Symbol.asyncIterator]()`", + "apiSymbol": "readable", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#readablesymbolasynciterator", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:5650970efd7a", + "chapter": "stream", + "label": "readable[Symbol.asyncDispose]()", + "signature": "`readable[Symbol.asyncDispose]()`", + "apiSymbol": "readable", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#readablesymbolasyncdispose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:9abbc5fab905", + "chapter": "stream", + "label": "readable.compose(stream[, options])", + "signature": "`readable.compose(stream[, options])`", + "apiSymbol": "readable.compose", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#readablecomposestream-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:4a45af435614", + "chapter": "stream", + "label": "readable.iterator([options])", + "signature": "`readable.iterator([options])`", + "apiSymbol": "readable.iterator", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#readableiteratoroptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:c5b21e53295d", + "chapter": "stream", + "label": "readable.map(fn[, options])", + "signature": "`readable.map(fn[, options])`", + "apiSymbol": "readable.map", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#readablemapfn-options", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:d44f80528da5", + "chapter": "stream", + "label": "readable.filter(fn[, options])", + "signature": "`readable.filter(fn[, options])`", + "apiSymbol": "readable.filter", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#readablefilterfn-options", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:be4de765fe92", + "chapter": "stream", + "label": "readable.forEach(fn[, options])", + "signature": "`readable.forEach(fn[, options])`", + "apiSymbol": "readable.forEach", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#readableforeachfn-options", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:28ca8aa1188c", + "chapter": "stream", + "label": "readable.toArray([options])", + "signature": "`readable.toArray([options])`", + "apiSymbol": "readable.toArray", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#readabletoarrayoptions", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:8bebdb59be85", + "chapter": "stream", + "label": "readable.some(fn[, options])", + "signature": "`readable.some(fn[, options])`", + "apiSymbol": "readable.some", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#readablesomefn-options", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:79869ae71209", + "chapter": "stream", + "label": "readable.find(fn[, options])", + "signature": "`readable.find(fn[, options])`", + "apiSymbol": "readable.find", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#readablefindfn-options", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:5f74d2a4a9e7", + "chapter": "stream", + "label": "readable.every(fn[, options])", + "signature": "`readable.every(fn[, options])`", + "apiSymbol": "readable.every", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#readableeveryfn-options", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:a90a03cf6ffa", + "chapter": "stream", + "label": "readable.flatMap(fn[, options])", + "signature": "`readable.flatMap(fn[, options])`", + "apiSymbol": "readable.flatMap", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#readableflatmapfn-options", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:1f3ab741d73e", + "chapter": "stream", + "label": "readable.drop(limit[, options])", + "signature": "`readable.drop(limit[, options])`", + "apiSymbol": "readable.drop", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#readabledroplimit-options", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:be4f4ef0a53d", + "chapter": "stream", + "label": "readable.take(limit[, options])", + "signature": "`readable.take(limit[, options])`", + "apiSymbol": "readable.take", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#readabletakelimit-options", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:18e96494c6b3", + "chapter": "stream", + "label": "readable.reduce(fn[, initial[, options]])", + "signature": "`readable.reduce(fn[, initial[, options]])`", + "apiSymbol": "readable.reduce", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#readablereducefn-initial-options", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:1899a7e2e522", + "chapter": "stream", + "label": "closed", + "signature": "`closed` Type: {boolean}", + "apiSymbol": "closed", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#class-streamreadable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:04f8199c7c02", + "chapter": "stream", + "label": "destroyed", + "signature": "`destroyed` Type: {boolean}", + "apiSymbol": "destroyed", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#class-streamreadable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:385982db6046", + "chapter": "stream", + "label": "readable", + "signature": "`readable` Type: {boolean}", + "apiSymbol": "readable", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#class-streamreadable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:7fe9d7886609", + "chapter": "stream", + "label": "readableAborted", + "signature": "`readableAborted` Type: {boolean}", + "apiSymbol": "readableAborted", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#class-streamreadable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:39f9b09274a2", + "chapter": "stream", + "label": "readableDidRead", + "signature": "`readableDidRead` Type: {boolean}", + "apiSymbol": "readableDidRead", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#class-streamreadable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:14d4913fa288", + "chapter": "stream", + "label": "readableEncoding", + "signature": "`readableEncoding` Type: {null|string}", + "apiSymbol": "readableEncoding", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#class-streamreadable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:8e34f3528220", + "chapter": "stream", + "label": "readableEnded", + "signature": "`readableEnded` Type: {boolean}", + "apiSymbol": "readableEnded", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#class-streamreadable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:316ccdd37fe8", + "chapter": "stream", + "label": "errored", + "signature": "`errored` Type: {Error}", + "apiSymbol": "errored", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#class-streamreadable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:b8428bc85f2b", + "chapter": "stream", + "label": "readableFlowing", + "signature": "`readableFlowing` Type: {boolean}", + "apiSymbol": "readableFlowing", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#class-streamreadable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:eafae535e183", + "chapter": "stream", + "label": "readableHighWaterMark", + "signature": "`readableHighWaterMark` Type: {number}", + "apiSymbol": "readableHighWaterMark", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#class-streamreadable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:3c22489177f3", + "chapter": "stream", + "label": "readableLength", + "signature": "`readableLength` Type: {number}", + "apiSymbol": "readableLength", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#class-streamreadable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:01452c5419b7", + "chapter": "stream", + "label": "readableObjectMode", + "signature": "`readableObjectMode` Type: {boolean}", + "apiSymbol": "readableObjectMode", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#class-streamreadable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:ff46f186efa9", + "chapter": "stream", + "label": "'close'", + "signature": "Event: `'close'`", + "apiSymbol": "'close'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#event-close_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:75031efb6530", + "chapter": "stream", + "label": "'data'", + "signature": "Event: `'data'`", + "apiSymbol": "'data'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#event-data", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:bbd2247b82a3", + "chapter": "stream", + "label": "'end'", + "signature": "Event: `'end'`", + "apiSymbol": "'end'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#event-end", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:3bb88fd2c3c6", + "chapter": "stream", + "label": "'error'", + "signature": "Event: `'error'`", + "apiSymbol": "'error'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#event-error_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:63f94bff74eb", + "chapter": "stream", + "label": "'pause'", + "signature": "Event: `'pause'`", + "apiSymbol": "'pause'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#event-pause", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:96378dde4b52", + "chapter": "stream", + "label": "'readable'", + "signature": "Event: `'readable'`", + "apiSymbol": "'readable'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#event-readable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:ba3332c7128e", + "chapter": "stream", + "label": "'resume'", + "signature": "Event: `'resume'`", + "apiSymbol": "'resume'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#event-resume", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:79b8910871b9", + "chapter": "stream", + "label": "stream.Duplex", + "signature": "Class: `stream.Duplex`", + "apiSymbol": "stream.Duplex", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#class-streamduplex", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:stream.Duplex", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "stream:0ec8e5bc8019", + "chapter": "stream", + "label": "allowHalfOpen", + "signature": "`allowHalfOpen` Type: {boolean}", + "apiSymbol": "allowHalfOpen", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#class-streamduplex", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:88c6d1114916", + "chapter": "stream", + "label": "stream.Transform", + "signature": "Class: `stream.Transform`", + "apiSymbol": "stream.Transform", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#class-streamtransform", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:stream.Transform", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "stream:cab213b5c4cb", + "chapter": "stream", + "label": "transform.destroy([error])", + "signature": "`transform.destroy([error])`", + "apiSymbol": "transform.destroy", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#transformdestroyerror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:stream.transform.destroy", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "stream:199ea6fc2f44", + "chapter": "stream", + "label": "stream.duplexPair([options])", + "signature": "`stream.duplexPair([options])`", + "apiSymbol": "stream.duplexPair", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#streamduplexpairoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:2b994ae607f5", + "chapter": "stream", + "label": "writable._construct(callback)", + "signature": "`writable._construct(callback)`", + "apiSymbol": "writable._construct", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#writable_constructcallback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:a1ba8a2b3c37", + "chapter": "stream", + "label": "writable._write(chunk, encoding, callback)", + "signature": "`writable._write(chunk, encoding, callback)`", + "apiSymbol": "writable._write", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#writable_writechunk-encoding-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:8016e282a969", + "chapter": "stream", + "label": "writable._writev(chunks, callback)", + "signature": "`writable._writev(chunks, callback)`", + "apiSymbol": "writable._writev", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#writable_writevchunks-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:4be779cdc8a1", + "chapter": "stream", + "label": "writable._destroy(err, callback)", + "signature": "`writable._destroy(err, callback)`", + "apiSymbol": "writable._destroy", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#writable_destroyerr-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:503ff0fcafc3", + "chapter": "stream", + "label": "writable._final(callback)", + "signature": "`writable._final(callback)`", + "apiSymbol": "writable._final", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#writable_finalcallback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:8cbf9b4cc0ef", + "chapter": "stream", + "label": "readable._construct(callback)", + "signature": "`readable._construct(callback)`", + "apiSymbol": "readable._construct", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#readable_constructcallback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:a623d9ed30ba", + "chapter": "stream", + "label": "readable._read(size)", + "signature": "`readable._read(size)`", + "apiSymbol": "readable._read", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#readable_readsize", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:ef6c8b306b9a", + "chapter": "stream", + "label": "readable._destroy(err, callback)", + "signature": "`readable._destroy(err, callback)`", + "apiSymbol": "readable._destroy", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#readable_destroyerr-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:e2e872c42b34", + "chapter": "stream", + "label": "readable.push(chunk[, encoding])", + "signature": "`readable.push(chunk[, encoding])`", + "apiSymbol": "readable.push", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#readablepushchunk-encoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:readable.push", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:stream.readable.push", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "stream:f2270e4116a0", + "chapter": "stream", + "label": "stream.PassThrough", + "signature": "Class: `stream.PassThrough`", + "apiSymbol": "stream.PassThrough", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#class-streampassthrough", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:stream.PassThrough", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "stream:4a0f92970489", + "chapter": "stream", + "label": "transform._flush(callback)", + "signature": "`transform._flush(callback)`", + "apiSymbol": "transform._flush", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#transform_flushcallback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:a204fde2de28", + "chapter": "stream", + "label": "transform._transform(chunk, encoding, callback)", + "signature": "`transform._transform(chunk, encoding, callback)`", + "apiSymbol": "transform._transform", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#transform_transformchunk-encoding-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:20ab959c0a56", + "chapter": "stream", + "label": "'end'", + "signature": "Event: `'end'`", + "apiSymbol": "'end'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#event-end_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:5974c8e891c9", + "chapter": "stream", + "label": "'finish'", + "signature": "Event: `'finish'`", + "apiSymbol": "'finish'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#event-finish_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "stream:c13777fdc3f6", + "chapter": "stream", + "label": "readable.read(0)", + "signature": "`readable.read(0)`", + "apiSymbol": "readable.read", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#additional-notes", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:readable.read", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:stream.readable.read", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "stream:9b57efcb2564", + "chapter": "stream", + "label": "readable.push('')", + "signature": "`readable.push('')`", + "apiSymbol": "readable.push", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#additional-notes", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:readable.push", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:stream.readable.push", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + } + } + }, + { + "id": "stream:e5af5479aa86", + "chapter": "stream", + "label": "highWaterMark", + "signature": "`highWaterMark` discrepancy after calling `readable.setEncoding()`", + "apiSymbol": "highWaterMark", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/stream.html#highwatermark-discrepancy-after-calling-readablesetencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:stream", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:stream", + "tests": [] + } + } + }, + { + "id": "string_decoder:7f2068cb94ad", + "chapter": "string_decoder", + "label": "StringDecoder", + "signature": "Class: `StringDecoder`", + "apiSymbol": "StringDecoder", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/string_decoder.html#class-stringdecoder", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:StringDecoder", + "tests": [ + "tests/corpus/1662-string-decoder-encodings.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:string_decoder.StringDecoder", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "string_decoder:c48a2ccea9d8", + "chapter": "string_decoder", + "label": "stringDecoder.end([buffer])", + "signature": "`stringDecoder.end([buffer])`", + "apiSymbol": "stringDecoder.end", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/string_decoder.html#stringdecoderendbuffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:stringDecoder.end", + "tests": [ + "tests/corpus/1662-string-decoder-encodings.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:string_decoder.stringDecoder.end", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "string_decoder:ec83045b9e62", + "chapter": "string_decoder", + "label": "stringDecoder.write(buffer)", + "signature": "`stringDecoder.write(buffer)`", + "apiSymbol": "stringDecoder.write", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/string_decoder.html#stringdecoderwritebuffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:stringDecoder.write", + "tests": [ + "tests/corpus/1662-string-decoder-encodings.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:string_decoder.stringDecoder.write", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + } + } + }, + { + "id": "test:982cdbbf1258", + "chapter": "test", + "label": "describe()", + "signature": "`describe()` and `it()` aliases", + "apiSymbol": "describe", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#describe-and-it-aliases", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:describe", + "tests": [ + "tests/harness/node-test.test.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:f0e6173874e0", + "chapter": "test", + "label": "only", + "signature": "`only` tests", + "apiSymbol": "only", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#only-tests", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:159a5c611fab", + "chapter": "test", + "label": "assert", + "signature": "`assert`", + "apiSymbol": "assert", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#assert", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:assert", + "tests": [ + "tests/corpus/1600-assert-passing.ts", + "tests/corpus/1604-assert-deep-structures.ts", + "tests/corpus/1609-assert-async.ts", + "tests/corpus/1721-assert-throws-regex-class.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:0f565f514f2f", + "chapter": "test", + "label": "assert.register(name, fn)", + "signature": "`assert.register(name, fn)`", + "apiSymbol": "assert.register", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#assertregistername-fn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:f363f92639e6", + "chapter": "test", + "label": "snapshot", + "signature": "`snapshot`", + "apiSymbol": "snapshot", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#snapshot", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:bda5805bc4d1", + "chapter": "test", + "label": "snapshot.setDefaultSnapshotSerializers(serializers)", + "signature": "`snapshot.setDefaultSnapshotSerializers(serializers)`", + "apiSymbol": "snapshot.setDefaultSnapshotSerializers", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#snapshotsetdefaultsnapshotserializersserializers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:d2cec00af616", + "chapter": "test", + "label": "snapshot.setResolveSnapshotPath(fn)", + "signature": "`snapshot.setResolveSnapshotPath(fn)`", + "apiSymbol": "snapshot.setResolveSnapshotPath", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#snapshotsetresolvesnapshotpathfn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:94ee1fc64cba", + "chapter": "test", + "label": "MockFunctionContext", + "signature": "Class: `MockFunctionContext`", + "apiSymbol": "MockFunctionContext", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#class-mockfunctioncontext", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:181607c23322", + "chapter": "test", + "label": "ctx.callCount()", + "signature": "`ctx.callCount()`", + "apiSymbol": "ctx.callCount", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#ctxcallcount", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:64febffd87d5", + "chapter": "test", + "label": "ctx.mockImplementation(implementation)", + "signature": "`ctx.mockImplementation(implementation)`", + "apiSymbol": "ctx.mockImplementation", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#ctxmockimplementationimplementation", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:eff12c00a103", + "chapter": "test", + "label": "ctx.mockImplementationOnce(implementation[, onCall])", + "signature": "`ctx.mockImplementationOnce(implementation[, onCall])`", + "apiSymbol": "ctx.mockImplementationOnce", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#ctxmockimplementationonceimplementation-oncall", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:8ba72609af97", + "chapter": "test", + "label": "ctx.resetCalls()", + "signature": "`ctx.resetCalls()`", + "apiSymbol": "ctx.resetCalls", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#ctxresetcalls", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:615a33a245f7", + "chapter": "test", + "label": "ctx.restore()", + "signature": "`ctx.restore()`", + "apiSymbol": "ctx.restore", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#ctxrestore", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:89ade21dafcc", + "chapter": "test", + "label": "calls", + "signature": "`calls` Type: {Array}", + "apiSymbol": "calls", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#class-mockfunctioncontext", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:43159c6cd577", + "chapter": "test", + "label": "MockModuleContext", + "signature": "Class: `MockModuleContext`", + "apiSymbol": "MockModuleContext", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#class-mockmodulecontext", + "nodeStability": { + "index": "1.0", + "level": 1, + "text": "Early development", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:7dc72aff3cc3", + "chapter": "test", + "label": "ctx.restore()", + "signature": "`ctx.restore()`", + "apiSymbol": "ctx.restore", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#ctxrestore_1", + "nodeStability": { + "index": "1.0", + "level": 1, + "text": "Early development", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:5a3d49f5484d", + "chapter": "test", + "label": "MockPropertyContext", + "signature": "Class: `MockPropertyContext`", + "apiSymbol": "MockPropertyContext", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#class-mockpropertycontext", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:98c17a1fbab3", + "chapter": "test", + "label": "ctx.accessCount()", + "signature": "`ctx.accessCount()`", + "apiSymbol": "ctx.accessCount", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#ctxaccesscount", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:c6cfe6b536b5", + "chapter": "test", + "label": "ctx.mockImplementation(value)", + "signature": "`ctx.mockImplementation(value)`", + "apiSymbol": "ctx.mockImplementation", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#ctxmockimplementationvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:7056f5f1d17b", + "chapter": "test", + "label": "ctx.mockImplementationOnce(value[, onAccess])", + "signature": "`ctx.mockImplementationOnce(value[, onAccess])`", + "apiSymbol": "ctx.mockImplementationOnce", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#ctxmockimplementationoncevalue-onaccess", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:5a09f8bce0a7", + "chapter": "test", + "label": "ctx.resetAccesses()", + "signature": "`ctx.resetAccesses()`", + "apiSymbol": "ctx.resetAccesses", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#ctxresetaccesses", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:82d2c411cacd", + "chapter": "test", + "label": "ctx.restore()", + "signature": "`ctx.restore()`", + "apiSymbol": "ctx.restore", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#ctxrestore_2", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:94d901aa7e10", + "chapter": "test", + "label": "accesses", + "signature": "`accesses` Type: {Array}", + "apiSymbol": "accesses", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#class-mockpropertycontext", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:cedc4c325c7d", + "chapter": "test", + "label": "MockTracker", + "signature": "Class: `MockTracker`", + "apiSymbol": "MockTracker", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#class-mocktracker", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:684b230abefc", + "chapter": "test", + "label": "mock.fn([original[, implementation]][, options])", + "signature": "`mock.fn([original[, implementation]][, options])`", + "apiSymbol": "mock.fn", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#mockfnoriginal-implementation-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:2841bc6cfc9e", + "chapter": "test", + "label": "mock.getter(object, methodName[, implementation][, options])", + "signature": "`mock.getter(object, methodName[, implementation][, options])`", + "apiSymbol": "mock.getter", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#mockgetterobject-methodname-implementation-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:8a1abe947206", + "chapter": "test", + "label": "mock.method(object, methodName[, implementation][, options])", + "signature": "`mock.method(object, methodName[, implementation][, options])`", + "apiSymbol": "mock.method", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#mockmethodobject-methodname-implementation-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:3c1c52a8a35e", + "chapter": "test", + "label": "mock.module(specifier[, options])", + "signature": "`mock.module(specifier[, options])`", + "apiSymbol": "mock.module", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#mockmodulespecifier-options", + "nodeStability": { + "index": "1.0", + "level": 1, + "text": "Early development", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:000e3a3beb3e", + "chapter": "test", + "label": "mock.property(object, propertyName[, value])", + "signature": "`mock.property(object, propertyName[, value])`", + "apiSymbol": "mock.property", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#mockpropertyobject-propertyname-value", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:791840fbba8d", + "chapter": "test", + "label": "mock.reset()", + "signature": "`mock.reset()`", + "apiSymbol": "mock.reset", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#mockreset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:02e0e2c04046", + "chapter": "test", + "label": "mock.restoreAll()", + "signature": "`mock.restoreAll()`", + "apiSymbol": "mock.restoreAll", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#mockrestoreall", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:d21c825216a8", + "chapter": "test", + "label": "mock.setter(object, methodName[, implementation][, options])", + "signature": "`mock.setter(object, methodName[, implementation][, options])`", + "apiSymbol": "mock.setter", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#mocksetterobject-methodname-implementation-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:a06caa5dac08", + "chapter": "test", + "label": "MockTimers", + "signature": "Class: `MockTimers`", + "apiSymbol": "MockTimers", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#class-mocktimers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:1b1a0633a102", + "chapter": "test", + "label": "timers.enable([enableOptions])", + "signature": "`timers.enable([enableOptions])`", + "apiSymbol": "timers.enable", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#timersenableenableoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:6c7039135154", + "chapter": "test", + "label": "timers.reset()", + "signature": "`timers.reset()`", + "apiSymbol": "timers.reset", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#timersreset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:9af4b9009e10", + "chapter": "test", + "label": "timers[Symbol.dispose]()", + "signature": "`timers[Symbol.dispose]()`", + "apiSymbol": "timers", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#timerssymboldispose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:5a88274dece9", + "chapter": "test", + "label": "timers.tick([milliseconds])", + "signature": "`timers.tick([milliseconds])`", + "apiSymbol": "timers.tick", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#timerstickmilliseconds", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:1562cbcface8", + "chapter": "test", + "label": "timers.runAll()", + "signature": "`timers.runAll()`", + "apiSymbol": "timers.runAll", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#timersrunall", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:6dd81e3b1c78", + "chapter": "test", + "label": "timers.setTime(milliseconds)", + "signature": "`timers.setTime(milliseconds)`", + "apiSymbol": "timers.setTime", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#timerssettimemilliseconds", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:21b4e331fe5f", + "chapter": "test", + "label": "TestsStream", + "signature": "Class: `TestsStream`", + "apiSymbol": "TestsStream", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#class-testsstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:5bc36a9d37e8", + "chapter": "test", + "label": "'test:coverage'", + "signature": "Event: `'test:coverage'`", + "apiSymbol": "'test:coverage'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#event-testcoverage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:d1acf252c407", + "chapter": "test", + "label": "'test:complete'", + "signature": "Event: `'test:complete'`", + "apiSymbol": "'test:complete'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#event-testcomplete", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:9c85c9dade77", + "chapter": "test", + "label": "'test:dequeue'", + "signature": "Event: `'test:dequeue'`", + "apiSymbol": "'test:dequeue'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#event-testdequeue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:2c0a6babfd5c", + "chapter": "test", + "label": "'test:diagnostic'", + "signature": "Event: `'test:diagnostic'`", + "apiSymbol": "'test:diagnostic'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#event-testdiagnostic", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:7f6171b2d32b", + "chapter": "test", + "label": "'test:enqueue'", + "signature": "Event: `'test:enqueue'`", + "apiSymbol": "'test:enqueue'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#event-testenqueue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:3b156e8ef0e7", + "chapter": "test", + "label": "'test:fail'", + "signature": "Event: `'test:fail'`", + "apiSymbol": "'test:fail'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#event-testfail", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:cafe39abfce1", + "chapter": "test", + "label": "'test:interrupted'", + "signature": "Event: `'test:interrupted'`", + "apiSymbol": "'test:interrupted'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#event-testinterrupted", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:89f1682d338d", + "chapter": "test", + "label": "'test:pass'", + "signature": "Event: `'test:pass'`", + "apiSymbol": "'test:pass'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#event-testpass", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:9fe44fa083bc", + "chapter": "test", + "label": "'test:plan'", + "signature": "Event: `'test:plan'`", + "apiSymbol": "'test:plan'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#event-testplan", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:04db2df552f4", + "chapter": "test", + "label": "'test:start'", + "signature": "Event: `'test:start'`", + "apiSymbol": "'test:start'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#event-teststart", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:958697449aba", + "chapter": "test", + "label": "'test:stderr'", + "signature": "Event: `'test:stderr'`", + "apiSymbol": "'test:stderr'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#event-teststderr", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:133b6fd08299", + "chapter": "test", + "label": "'test:stdout'", + "signature": "Event: `'test:stdout'`", + "apiSymbol": "'test:stdout'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#event-teststdout", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:118ce16daf32", + "chapter": "test", + "label": "'test:summary'", + "signature": "Event: `'test:summary'`", + "apiSymbol": "'test:summary'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#event-testsummary", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:677627e9bbb0", + "chapter": "test", + "label": "'test:watch:drained'", + "signature": "Event: `'test:watch:drained'`", + "apiSymbol": "'test:watch:drained'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#event-testwatchdrained", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:7cbbfee1c662", + "chapter": "test", + "label": "'test:watch:restarted'", + "signature": "Event: `'test:watch:restarted'`", + "apiSymbol": "'test:watch:restarted'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#event-testwatchrestarted", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:3a0d7a42c672", + "chapter": "test", + "label": "TestContext", + "signature": "Class: `TestContext`", + "apiSymbol": "TestContext", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#class-testcontext", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:fa53d1938ffa", + "chapter": "test", + "label": "context.before([fn][, options])", + "signature": "`context.before([fn][, options])`", + "apiSymbol": "context.before", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#contextbeforefn-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:230394a0ff00", + "chapter": "test", + "label": "context.beforeEach([fn][, options])", + "signature": "`context.beforeEach([fn][, options])`", + "apiSymbol": "context.beforeEach", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#contextbeforeeachfn-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:3831e48b4408", + "chapter": "test", + "label": "context.after([fn][, options])", + "signature": "`context.after([fn][, options])`", + "apiSymbol": "context.after", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#contextafterfn-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:9fab423e49b7", + "chapter": "test", + "label": "context.afterEach([fn][, options])", + "signature": "`context.afterEach([fn][, options])`", + "apiSymbol": "context.afterEach", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#contextaftereachfn-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:ceea5ddd85fa", + "chapter": "test", + "label": "context.diagnostic(message)", + "signature": "`context.diagnostic(message)`", + "apiSymbol": "context.diagnostic", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#contextdiagnosticmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:context.diagnostic", + "tests": [ + "tests/harness/node-test.test.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:d5d9833c77e2", + "chapter": "test", + "label": "context.plan(count[,options])", + "signature": "`context.plan(count[,options])`", + "apiSymbol": "context.plan", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#contextplancountoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:ca6ef304c0f1", + "chapter": "test", + "label": "context.runOnly(shouldRunOnlyTests)", + "signature": "`context.runOnly(shouldRunOnlyTests)`", + "apiSymbol": "context.runOnly", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#contextrunonlyshouldrunonlytests", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:28a82e710a72", + "chapter": "test", + "label": "context.skip([message])", + "signature": "`context.skip([message])`", + "apiSymbol": "context.skip", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#contextskipmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:context.skip", + "tests": [ + "tests/harness/node-test.test.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:4737d855077f", + "chapter": "test", + "label": "context.todo([message])", + "signature": "`context.todo([message])`", + "apiSymbol": "context.todo", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#contexttodomessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:context.todo", + "tests": [ + "tests/harness/node-test.test.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:cda6aaebb404", + "chapter": "test", + "label": "context.test([name][, options][, fn])", + "signature": "`context.test([name][, options][, fn])`", + "apiSymbol": "context.test", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#contexttestname-options-fn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:context.test", + "tests": [ + "tests/harness/node-test.test.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:3fb8ad029bca", + "chapter": "test", + "label": "context.waitFor(condition[, options])", + "signature": "`context.waitFor(condition[, options])`", + "apiSymbol": "context.waitFor", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#contextwaitforcondition-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:c4cb9037d628", + "chapter": "test", + "label": "context.assert", + "signature": "`context.assert`", + "apiSymbol": "context.assert", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#contextassert", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:context.assert", + "tests": [ + "tests/harness/node-test.test.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:5ea15f14844c", + "chapter": "test", + "label": "context.assert.fileSnapshot(value, path[, options])", + "signature": "`context.assert.fileSnapshot(value, path[, options])`", + "apiSymbol": "context.assert.fileSnapshot", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#contextassertfilesnapshotvalue-path-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:e0afaf3905f9", + "chapter": "test", + "label": "context.assert.snapshot(value[, options])", + "signature": "`context.assert.snapshot(value[, options])`", + "apiSymbol": "context.assert.snapshot", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#contextassertsnapshotvalue-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:986cd116a489", + "chapter": "test", + "label": "context.filePath", + "signature": "`context.filePath`", + "apiSymbol": "context.filePath", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#contextfilepath", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:d5f87bc13615", + "chapter": "test", + "label": "context.fullName", + "signature": "`context.fullName`", + "apiSymbol": "context.fullName", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#contextfullname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:0ef85420340f", + "chapter": "test", + "label": "context.name", + "signature": "`context.name`", + "apiSymbol": "context.name", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#contextname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:context.name", + "tests": [ + "tests/harness/node-test.test.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:5f62603f5613", + "chapter": "test", + "label": "passed", + "signature": "`passed` Type: {boolean} `false` before the test is executed, e.g. in a `beforeEach` hook.", + "apiSymbol": "passed", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#class-testcontext", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:857221698402", + "chapter": "test", + "label": "error", + "signature": "`error` Type: {Error|null}", + "apiSymbol": "error", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#class-testcontext", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:b7c520753d30", + "chapter": "test", + "label": "attempt", + "signature": "`attempt` Type: {number}", + "apiSymbol": "attempt", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#class-testcontext", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:0ee703f51144", + "chapter": "test", + "label": "workerId", + "signature": "`workerId` Type: {number|undefined}", + "apiSymbol": "workerId", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#class-testcontext", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:8abbcbc1cbf0", + "chapter": "test", + "label": "signal", + "signature": "`signal` Type: {AbortSignal}", + "apiSymbol": "signal", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#class-testcontext", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:a4bd7bdd2120", + "chapter": "test", + "label": "SuiteContext", + "signature": "Class: `SuiteContext`", + "apiSymbol": "SuiteContext", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#class-suitecontext", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:4b1cfc88fc4d", + "chapter": "test", + "label": "context.filePath", + "signature": "`context.filePath`", + "apiSymbol": "context.filePath", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#contextfilepath_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:eedf9a99efc9", + "chapter": "test", + "label": "context.fullName", + "signature": "`context.fullName`", + "apiSymbol": "context.fullName", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#contextfullname_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:9779c6dad7e6", + "chapter": "test", + "label": "context.name", + "signature": "`context.name`", + "apiSymbol": "context.name", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#contextname_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:context.name", + "tests": [ + "tests/harness/node-test.test.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:f39e576b3cc5", + "chapter": "test", + "label": "signal", + "signature": "`signal` Type: {AbortSignal}", + "apiSymbol": "signal", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#class-suitecontext", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:674c7aed221a", + "chapter": "test", + "label": "run([options])", + "signature": "`run([options])`", + "apiSymbol": "run", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#runoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:63d64364235a", + "chapter": "test", + "label": "suite([name][, options][, fn])", + "signature": "`suite([name][, options][, fn])`", + "apiSymbol": "suite", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#suitename-options-fn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:suite", + "tests": [ + "tests/harness/node-test.test.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:a504d6462625", + "chapter": "test", + "label": "suite.skip([name][, options][, fn])", + "signature": "`suite.skip([name][, options][, fn])`", + "apiSymbol": "suite.skip", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#suiteskipname-options-fn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:a2d9fc109be5", + "chapter": "test", + "label": "suite.todo([name][, options][, fn])", + "signature": "`suite.todo([name][, options][, fn])`", + "apiSymbol": "suite.todo", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#suitetodoname-options-fn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:3f0438fd628d", + "chapter": "test", + "label": "suite.only([name][, options][, fn])", + "signature": "`suite.only([name][, options][, fn])`", + "apiSymbol": "suite.only", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#suiteonlyname-options-fn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:9ec633ff3400", + "chapter": "test", + "label": "test([name][, options][, fn])", + "signature": "`test([name][, options][, fn])`", + "apiSymbol": "test", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#testname-options-fn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:test", + "tests": [ + "tests/harness/node-test.test.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:bb1f13c26648", + "chapter": "test", + "label": "test.skip([name][, options][, fn])", + "signature": "`test.skip([name][, options][, fn])`", + "apiSymbol": "test.skip", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#testskipname-options-fn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:test.skip", + "tests": [ + "tests/harness/node-test.test.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:fea941a28d36", + "chapter": "test", + "label": "test.todo([name][, options][, fn])", + "signature": "`test.todo([name][, options][, fn])`", + "apiSymbol": "test.todo", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#testtodoname-options-fn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:test.todo", + "tests": [ + "tests/harness/node-test.test.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:ac4905846ade", + "chapter": "test", + "label": "test.only([name][, options][, fn])", + "signature": "`test.only([name][, options][, fn])`", + "apiSymbol": "test.only", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#testonlyname-options-fn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:test.only", + "tests": [ + "tests/harness/node-test.test.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:e8c5038607e1", + "chapter": "test", + "label": "describe([name][, options][, fn])", + "signature": "`describe([name][, options][, fn])`", + "apiSymbol": "describe", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#describename-options-fn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:describe", + "tests": [ + "tests/harness/node-test.test.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:9a97d70161a9", + "chapter": "test", + "label": "describe.skip([name][, options][, fn])", + "signature": "`describe.skip([name][, options][, fn])`", + "apiSymbol": "describe.skip", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#describeskipname-options-fn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:62271d741db7", + "chapter": "test", + "label": "describe.todo([name][, options][, fn])", + "signature": "`describe.todo([name][, options][, fn])`", + "apiSymbol": "describe.todo", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#describetodoname-options-fn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:e6e3412e8eed", + "chapter": "test", + "label": "describe.only([name][, options][, fn])", + "signature": "`describe.only([name][, options][, fn])`", + "apiSymbol": "describe.only", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#describeonlyname-options-fn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:d5d42f34cd3c", + "chapter": "test", + "label": "it([name][, options][, fn])", + "signature": "`it([name][, options][, fn])`", + "apiSymbol": "it", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#itname-options-fn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:it", + "tests": [ + "tests/harness/node-test.test.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:8b36ce453d35", + "chapter": "test", + "label": "it.skip([name][, options][, fn])", + "signature": "`it.skip([name][, options][, fn])`", + "apiSymbol": "it.skip", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#itskipname-options-fn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:38b089c13502", + "chapter": "test", + "label": "it.todo([name][, options][, fn])", + "signature": "`it.todo([name][, options][, fn])`", + "apiSymbol": "it.todo", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#ittodoname-options-fn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:36b9fc2957bd", + "chapter": "test", + "label": "it.only([name][, options][, fn])", + "signature": "`it.only([name][, options][, fn])`", + "apiSymbol": "it.only", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#itonlyname-options-fn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:test", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:1dbc4649bded", + "chapter": "test", + "label": "before([fn][, options])", + "signature": "`before([fn][, options])`", + "apiSymbol": "before", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#beforefn-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:before", + "tests": [ + "tests/harness/node-test.test.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:1b76cee472d6", + "chapter": "test", + "label": "after([fn][, options])", + "signature": "`after([fn][, options])`", + "apiSymbol": "after", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#afterfn-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:after", + "tests": [ + "tests/harness/node-test.test.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:f32681c476db", + "chapter": "test", + "label": "beforeEach([fn][, options])", + "signature": "`beforeEach([fn][, options])`", + "apiSymbol": "beforeEach", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#beforeeachfn-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:beforeEach", + "tests": [ + "tests/harness/node-test.test.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "test:79ed705d34bd", + "chapter": "test", + "label": "afterEach([fn][, options])", + "signature": "`afterEach([fn][, options])`", + "apiSymbol": "afterEach", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/test.html#aftereachfn-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:afterEach", + "tests": [ + "tests/harness/node-test.test.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:test", + "tests": [] + } + } + }, + { + "id": "timers:c166edf2e065", + "chapter": "timers", + "label": "setImmediate(callback[, ...args])", + "signature": "`setImmediate(callback[, ...args])`", + "apiSymbol": "setImmediate", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/timers.html#setimmediatecallback-args", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:setImmediate", + "tests": [ + "tests/corpus/1804-timers-module.ts", + "tests/corpus/1805-timer-callback-args.ts", + "tests/corpus/2093-timers-promises.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:timers.setImmediate", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "timers:4b97533ba368", + "chapter": "timers", + "label": "setInterval(callback[, delay[, ...args]])", + "signature": "`setInterval(callback[, delay[, ...args]])`", + "apiSymbol": "setInterval", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/timers.html#setintervalcallback-delay-args", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:setInterval", + "tests": [ + "tests/corpus/1804-timers-module.ts", + "tests/corpus/1805-timer-callback-args.ts", + "tests/corpus/2093-timers-promises.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:timers.setInterval", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "timers:7ebcebd69b5c", + "chapter": "timers", + "label": "setTimeout(callback[, delay[, ...args]])", + "signature": "`setTimeout(callback[, delay[, ...args]])`", + "apiSymbol": "setTimeout", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/timers.html#settimeoutcallback-delay-args", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:setTimeout", + "tests": [ + "tests/corpus/1804-timers-module.ts", + "tests/corpus/1805-timer-callback-args.ts", + "tests/corpus/2093-timers-promises.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:timers.setTimeout", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "timers:972e511b08d3", + "chapter": "timers", + "label": "clearImmediate(immediate)", + "signature": "`clearImmediate(immediate)`", + "apiSymbol": "clearImmediate", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/timers.html#clearimmediateimmediate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:clearImmediate", + "tests": [ + "tests/corpus/1804-timers-module.ts", + "tests/corpus/1805-timer-callback-args.ts", + "tests/corpus/2093-timers-promises.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:timers.clearImmediate", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "timers:ca99ee06891f", + "chapter": "timers", + "label": "clearInterval(timeout)", + "signature": "`clearInterval(timeout)`", + "apiSymbol": "clearInterval", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/timers.html#clearintervaltimeout", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:clearInterval", + "tests": [ + "tests/corpus/1804-timers-module.ts", + "tests/corpus/1805-timer-callback-args.ts", + "tests/corpus/2093-timers-promises.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:timers.clearInterval", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "timers:4bb011c5c994", + "chapter": "timers", + "label": "clearTimeout(timeout)", + "signature": "`clearTimeout(timeout)`", + "apiSymbol": "clearTimeout", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/timers.html#cleartimeouttimeout", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:clearTimeout", + "tests": [ + "tests/corpus/1804-timers-module.ts", + "tests/corpus/1805-timer-callback-args.ts", + "tests/corpus/2093-timers-promises.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:timers.clearTimeout", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "timers:e458b8e84b54", + "chapter": "timers", + "label": "timersPromises.setTimeout([delay[, value[, options]]])", + "signature": "`timersPromises.setTimeout([delay[, value[, options]]])`", + "apiSymbol": "timersPromises.setTimeout", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/timers.html#timerspromisessettimeoutdelay-value-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:timersPromises.setTimeout", + "tests": [ + "tests/corpus/1804-timers-module.ts", + "tests/corpus/1805-timer-callback-args.ts", + "tests/corpus/2093-timers-promises.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:timers/promises.setTimeout", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "timers:32d97ec9dda0", + "chapter": "timers", + "label": "timersPromises.setImmediate([value[, options]])", + "signature": "`timersPromises.setImmediate([value[, options]])`", + "apiSymbol": "timersPromises.setImmediate", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/timers.html#timerspromisessetimmediatevalue-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:timersPromises.setImmediate", + "tests": [ + "tests/corpus/1804-timers-module.ts", + "tests/corpus/1805-timer-callback-args.ts", + "tests/corpus/2093-timers-promises.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:timers/promises.setImmediate", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "timers:4328bf41043d", + "chapter": "timers", + "label": "timersPromises.setInterval([delay[, value[, options]]])", + "signature": "`timersPromises.setInterval([delay[, value[, options]]])`", + "apiSymbol": "timersPromises.setInterval", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/timers.html#timerspromisessetintervaldelay-value-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:timers", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:timers/promises.setInterval", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "timers:ef573dbd7247", + "chapter": "timers", + "label": "timersPromises.scheduler.wait(delay[, options])", + "signature": "`timersPromises.scheduler.wait(delay[, options])`", + "apiSymbol": "timersPromises.scheduler.wait", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/timers.html#timerspromisesschedulerwaitdelay-options", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:timers", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:timers", + "tests": [] + } + } + }, + { + "id": "timers:966714749eee", + "chapter": "timers", + "label": "timersPromises.scheduler.yield()", + "signature": "`timersPromises.scheduler.yield()`", + "apiSymbol": "timersPromises.scheduler.yield", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/timers.html#timerspromisesscheduleryield", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:timers", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:timers", + "tests": [] + } + } + }, + { + "id": "timers:e262cd32400a", + "chapter": "timers", + "label": "Immediate", + "signature": "Class: `Immediate`", + "apiSymbol": "Immediate", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/timers.html#class-immediate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:timers", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:timers", + "tests": [] + } + } + }, + { + "id": "timers:b96de8b1fa63", + "chapter": "timers", + "label": "immediate.hasRef()", + "signature": "`immediate.hasRef()`", + "apiSymbol": "immediate.hasRef", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/timers.html#immediatehasref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:immediate.hasRef", + "tests": [ + "tests/corpus/1804-timers-module.ts", + "tests/corpus/1805-timer-callback-args.ts", + "tests/corpus/2093-timers-promises.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:timers", + "tests": [] + } + } + }, + { + "id": "timers:11a0cd92e422", + "chapter": "timers", + "label": "immediate.ref()", + "signature": "`immediate.ref()`", + "apiSymbol": "immediate.ref", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/timers.html#immediateref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:immediate.ref", + "tests": [ + "tests/corpus/1804-timers-module.ts", + "tests/corpus/1805-timer-callback-args.ts", + "tests/corpus/2093-timers-promises.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:timers", + "tests": [] + } + } + }, + { + "id": "timers:7889f6e043df", + "chapter": "timers", + "label": "immediate.unref()", + "signature": "`immediate.unref()`", + "apiSymbol": "immediate.unref", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/timers.html#immediateunref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:immediate.unref", + "tests": [ + "tests/corpus/1804-timers-module.ts", + "tests/corpus/1805-timer-callback-args.ts", + "tests/corpus/2093-timers-promises.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:timers", + "tests": [] + } + } + }, + { + "id": "timers:98026b89a6ec", + "chapter": "timers", + "label": "immediate[Symbol.dispose]()", + "signature": "`immediate[Symbol.dispose]()`", + "apiSymbol": "immediate", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/timers.html#immediatesymboldispose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:timers", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:timers", + "tests": [] + } + } + }, + { + "id": "timers:8d90d2aa2fa0", + "chapter": "timers", + "label": "Timeout", + "signature": "Class: `Timeout`", + "apiSymbol": "Timeout", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/timers.html#class-timeout", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:timers", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:timers", + "tests": [] + } + } + }, + { + "id": "timers:851aab2abdf5", + "chapter": "timers", + "label": "timeout.close()", + "signature": "`timeout.close()`", + "apiSymbol": "timeout.close", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/timers.html#timeoutclose", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use [`clearTimeout()`][] instead.", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:timers", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:timers", + "tests": [] + } + } + }, + { + "id": "timers:c95897e1f55e", + "chapter": "timers", + "label": "timeout.hasRef()", + "signature": "`timeout.hasRef()`", + "apiSymbol": "timeout.hasRef", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/timers.html#timeouthasref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:timeout.hasRef", + "tests": [ + "tests/corpus/1804-timers-module.ts", + "tests/corpus/1805-timer-callback-args.ts", + "tests/corpus/2093-timers-promises.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:timers", + "tests": [] + } + } + }, + { + "id": "timers:cd89c647dd00", + "chapter": "timers", + "label": "timeout.ref()", + "signature": "`timeout.ref()`", + "apiSymbol": "timeout.ref", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/timers.html#timeoutref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:timeout.ref", + "tests": [ + "tests/corpus/1804-timers-module.ts", + "tests/corpus/1805-timer-callback-args.ts", + "tests/corpus/2093-timers-promises.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:timers", + "tests": [] + } + } + }, + { + "id": "timers:a8aedc320629", + "chapter": "timers", + "label": "timeout.refresh()", + "signature": "`timeout.refresh()`", + "apiSymbol": "timeout.refresh", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/timers.html#timeoutrefresh", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:timeout.refresh", + "tests": [ + "tests/corpus/1804-timers-module.ts", + "tests/corpus/1805-timer-callback-args.ts", + "tests/corpus/2093-timers-promises.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:timers", + "tests": [] + } + } + }, + { + "id": "timers:4c972c043b3a", + "chapter": "timers", + "label": "timeout.unref()", + "signature": "`timeout.unref()`", + "apiSymbol": "timeout.unref", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/timers.html#timeoutunref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:timeout.unref", + "tests": [ + "tests/corpus/1804-timers-module.ts", + "tests/corpus/1805-timer-callback-args.ts", + "tests/corpus/2093-timers-promises.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:timers", + "tests": [] + } + } + }, + { + "id": "timers:dd4d1bd2f480", + "chapter": "timers", + "label": "timeout[Symbol.toPrimitive]()", + "signature": "`timeout[Symbol.toPrimitive]()`", + "apiSymbol": "timeout", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/timers.html#timeoutsymboltoprimitive", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:timeout", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:timers", + "tests": [] + } + } + }, + { + "id": "timers:a964218d2ba9", + "chapter": "timers", + "label": "timeout[Symbol.dispose]()", + "signature": "`timeout[Symbol.dispose]()`", + "apiSymbol": "timeout", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/timers.html#timeoutsymboldispose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:timeout", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:timers", + "tests": [] + } + } + }, + { + "id": "tls:c3ad0419b399", + "chapter": "tls", + "label": "tls.Server", + "signature": "Class: `tls.Server`", + "apiSymbol": "tls.Server", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#class-tlsserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tls", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tls", + "tests": [] + } + } + }, + { + "id": "tls:98045aabf6b9", + "chapter": "tls", + "label": "server.addContext(hostname, context)", + "signature": "`server.addContext(hostname, context)`", + "apiSymbol": "server.addContext", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#serveraddcontexthostname-context", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tls", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tls", + "tests": [] + } + } + }, + { + "id": "tls:d06318d25de5", + "chapter": "tls", + "label": "server.address()", + "signature": "`server.address()`", + "apiSymbol": "server.address", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#serveraddress", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:server.address", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tls", + "tests": [] + } + } + }, + { + "id": "tls:6a375b08e1d0", + "chapter": "tls", + "label": "server.close([callback])", + "signature": "`server.close([callback])`", + "apiSymbol": "server.close", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#serverclosecallback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:server.close", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tls", + "tests": [] + } + } + }, + { + "id": "tls:eaada573edd5", + "chapter": "tls", + "label": "server.getTicketKeys()", + "signature": "`server.getTicketKeys()`", + "apiSymbol": "server.getTicketKeys", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#servergetticketkeys", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tls", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tls", + "tests": [] + } + } + }, + { + "id": "tls:8de42e69fb0c", + "chapter": "tls", + "label": "server.listen()", + "signature": "`server.listen()`", + "apiSymbol": "server.listen", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#serverlisten", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:server.listen", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tls", + "tests": [] + } + } + }, + { + "id": "tls:b1402867ab7e", + "chapter": "tls", + "label": "server.setSecureContext(options)", + "signature": "`server.setSecureContext(options)`", + "apiSymbol": "server.setSecureContext", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#serversetsecurecontextoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tls", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tls", + "tests": [] + } + } + }, + { + "id": "tls:aa2998d8b7fd", + "chapter": "tls", + "label": "server.setTicketKeys(keys)", + "signature": "`server.setTicketKeys(keys)`", + "apiSymbol": "server.setTicketKeys", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#serversetticketkeyskeys", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tls", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tls", + "tests": [] + } + } + }, + { + "id": "tls:16895bc02291", + "chapter": "tls", + "label": "'connection'", + "signature": "Event: `'connection'`", + "apiSymbol": "'connection'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#event-connection", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tls", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tls", + "tests": [] + } + } + }, + { + "id": "tls:d561de69d475", + "chapter": "tls", + "label": "'keylog'", + "signature": "Event: `'keylog'`", + "apiSymbol": "'keylog'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#event-keylog", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tls", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tls", + "tests": [] + } + } + }, + { + "id": "tls:ab52864eff41", + "chapter": "tls", + "label": "'newSession'", + "signature": "Event: `'newSession'`", + "apiSymbol": "'newSession'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#event-newsession", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tls", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tls", + "tests": [] + } + } + }, + { + "id": "tls:b2eb1b1d994c", + "chapter": "tls", + "label": "'OCSPRequest'", + "signature": "Event: `'OCSPRequest'`", + "apiSymbol": "'OCSPRequest'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#event-ocsprequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tls", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tls", + "tests": [] + } + } + }, + { + "id": "tls:020344a5d9c8", + "chapter": "tls", + "label": "'resumeSession'", + "signature": "Event: `'resumeSession'`", + "apiSymbol": "'resumeSession'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#event-resumesession", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tls", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tls", + "tests": [] + } + } + }, + { + "id": "tls:dcb1e0fd7134", + "chapter": "tls", + "label": "'secureConnection'", + "signature": "Event: `'secureConnection'`", + "apiSymbol": "'secureConnection'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#event-secureconnection", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tls", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tls", + "tests": [] + } + } + }, + { + "id": "tls:6ced90286e05", + "chapter": "tls", + "label": "'tlsClientError'", + "signature": "Event: `'tlsClientError'`", + "apiSymbol": "'tlsClientError'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#event-tlsclienterror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tls", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tls", + "tests": [] + } + } + }, + { + "id": "tls:a7f3e47a8238", + "chapter": "tls", + "label": "tls.TLSSocket", + "signature": "Class: `tls.TLSSocket`", + "apiSymbol": "tls.TLSSocket", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#class-tlstlssocket", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tls", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:tls.TLSSocket", + "tests": [] + } + } + }, + { + "id": "tls:85e3ff2688c8", + "chapter": "tls", + "label": "tlsSocket.address()", + "signature": "`tlsSocket.address()`", + "apiSymbol": "tlsSocket.address", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#tlssocketaddress", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tls", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tls", + "tests": [] + } + } + }, + { + "id": "tls:0b5306646668", + "chapter": "tls", + "label": "tlsSocket.disableRenegotiation()", + "signature": "`tlsSocket.disableRenegotiation()`", + "apiSymbol": "tlsSocket.disableRenegotiation", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#tlssocketdisablerenegotiation", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tls", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tls", + "tests": [] + } + } + }, + { + "id": "tls:e2e80f42b8af", + "chapter": "tls", + "label": "tlsSocket.enableTrace()", + "signature": "`tlsSocket.enableTrace()`", + "apiSymbol": "tlsSocket.enableTrace", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#tlssocketenabletrace", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tls", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tls", + "tests": [] + } + } + }, + { + "id": "tls:99c0aa73bd31", + "chapter": "tls", + "label": "tlsSocket.exportKeyingMaterial(length, label[, context])", + "signature": "`tlsSocket.exportKeyingMaterial(length, label[, context])`", + "apiSymbol": "tlsSocket.exportKeyingMaterial", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#tlssocketexportkeyingmateriallength-label-context", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tls", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tls", + "tests": [] + } + } + }, + { + "id": "tls:7a6f0877f28f", + "chapter": "tls", + "label": "tlsSocket.getCertificate()", + "signature": "`tlsSocket.getCertificate()`", + "apiSymbol": "tlsSocket.getCertificate", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#tlssocketgetcertificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tls", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tls", + "tests": [] + } + } + }, + { + "id": "tls:eae1cb4d445c", + "chapter": "tls", + "label": "tlsSocket.getCipher()", + "signature": "`tlsSocket.getCipher()`", + "apiSymbol": "tlsSocket.getCipher", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#tlssocketgetcipher", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tls", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tls", + "tests": [] + } + } + }, + { + "id": "tls:72bc7859b7aa", + "chapter": "tls", + "label": "tlsSocket.getEphemeralKeyInfo()", + "signature": "`tlsSocket.getEphemeralKeyInfo()`", + "apiSymbol": "tlsSocket.getEphemeralKeyInfo", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#tlssocketgetephemeralkeyinfo", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tls", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tls", + "tests": [] + } + } + }, + { + "id": "tls:117f47e191c2", + "chapter": "tls", + "label": "tlsSocket.getFinished()", + "signature": "`tlsSocket.getFinished()`", + "apiSymbol": "tlsSocket.getFinished", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#tlssocketgetfinished", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tls", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tls", + "tests": [] + } + } + }, + { + "id": "tls:eed448ff16bd", + "chapter": "tls", + "label": "tlsSocket.getPeerCertificate([detailed])", + "signature": "`tlsSocket.getPeerCertificate([detailed])`", + "apiSymbol": "tlsSocket.getPeerCertificate", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#tlssocketgetpeercertificatedetailed", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tls", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tls", + "tests": [] + } + } + }, + { + "id": "tls:d9f63506b1fb", + "chapter": "tls", + "label": "tlsSocket.getPeerFinished()", + "signature": "`tlsSocket.getPeerFinished()`", + "apiSymbol": "tlsSocket.getPeerFinished", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#tlssocketgetpeerfinished", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tls", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tls", + "tests": [] + } + } + }, + { + "id": "tls:d91f92458f65", + "chapter": "tls", + "label": "tlsSocket.getPeerX509Certificate()", + "signature": "`tlsSocket.getPeerX509Certificate()`", + "apiSymbol": "tlsSocket.getPeerX509Certificate", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#tlssocketgetpeerx509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tls", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tls", + "tests": [] + } + } + }, + { + "id": "tls:26a4baaa1dd4", + "chapter": "tls", + "label": "tlsSocket.getProtocol()", + "signature": "`tlsSocket.getProtocol()`", + "apiSymbol": "tlsSocket.getProtocol", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#tlssocketgetprotocol", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tls", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tls", + "tests": [] + } + } + }, + { + "id": "tls:2d68e799fd57", + "chapter": "tls", + "label": "tlsSocket.getSession()", + "signature": "`tlsSocket.getSession()`", + "apiSymbol": "tlsSocket.getSession", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#tlssocketgetsession", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tls", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tls", + "tests": [] + } + } + }, + { + "id": "tls:37b4ae5bd331", + "chapter": "tls", + "label": "tlsSocket.getSharedSigalgs()", + "signature": "`tlsSocket.getSharedSigalgs()`", + "apiSymbol": "tlsSocket.getSharedSigalgs", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#tlssocketgetsharedsigalgs", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tls", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tls", + "tests": [] + } + } + }, + { + "id": "tls:ce1db7bb3d08", + "chapter": "tls", + "label": "tlsSocket.getTLSTicket()", + "signature": "`tlsSocket.getTLSTicket()`", + "apiSymbol": "tlsSocket.getTLSTicket", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#tlssocketgettlsticket", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tls", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tls", + "tests": [] + } + } + }, + { + "id": "tls:fbeede8315de", + "chapter": "tls", + "label": "tlsSocket.getX509Certificate()", + "signature": "`tlsSocket.getX509Certificate()`", + "apiSymbol": "tlsSocket.getX509Certificate", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#tlssocketgetx509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tls", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tls", + "tests": [] + } + } + }, + { + "id": "tls:e2bfee0b6367", + "chapter": "tls", + "label": "tlsSocket.isSessionReused()", + "signature": "`tlsSocket.isSessionReused()`", + "apiSymbol": "tlsSocket.isSessionReused", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#tlssocketissessionreused", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tls", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tls", + "tests": [] + } + } + }, + { + "id": "tls:302bbec29984", + "chapter": "tls", + "label": "tlsSocket.renegotiate(options, callback)", + "signature": "`tlsSocket.renegotiate(options, callback)`", + "apiSymbol": "tlsSocket.renegotiate", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#tlssocketrenegotiateoptions-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tls", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tls", + "tests": [] + } + } + }, + { + "id": "tls:f6a9c9dece84", + "chapter": "tls", + "label": "tlsSocket.setKeyCert(context)", + "signature": "`tlsSocket.setKeyCert(context)`", + "apiSymbol": "tlsSocket.setKeyCert", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#tlssocketsetkeycertcontext", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tls", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tls", + "tests": [] + } + } + }, + { + "id": "tls:50b330710f9b", + "chapter": "tls", + "label": "tlsSocket.setMaxSendFragment(size)", + "signature": "`tlsSocket.setMaxSendFragment(size)`", + "apiSymbol": "tlsSocket.setMaxSendFragment", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#tlssocketsetmaxsendfragmentsize", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tls", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tls", + "tests": [] + } + } + }, + { + "id": "tls:f2e0cdec5975", + "chapter": "tls", + "label": "tlsSocket.authorizationError", + "signature": "`tlsSocket.authorizationError`", + "apiSymbol": "tlsSocket.authorizationError", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#tlssocketauthorizationerror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tls", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tls", + "tests": [] + } + } + }, + { + "id": "tls:c52e5a0dfbcf", + "chapter": "tls", + "label": "authorized", + "signature": "`authorized` Type: {boolean}", + "apiSymbol": "authorized", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#class-tlstlssocket", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tls", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tls", + "tests": [] + } + } + }, + { + "id": "tls:a45e792111f0", + "chapter": "tls", + "label": "tlsSocket.encrypted", + "signature": "`tlsSocket.encrypted`", + "apiSymbol": "tlsSocket.encrypted", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#tlssocketencrypted", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tls", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tls", + "tests": [] + } + } + }, + { + "id": "tls:60dcc1886fa1", + "chapter": "tls", + "label": "localAddress", + "signature": "`localAddress` Type: {string}", + "apiSymbol": "localAddress", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#class-tlstlssocket", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tls", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tls", + "tests": [] + } + } + }, + { + "id": "tls:787e156cfa3b", + "chapter": "tls", + "label": "localPort", + "signature": "`localPort` Type: {integer}", + "apiSymbol": "localPort", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#class-tlstlssocket", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tls", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tls", + "tests": [] + } + } + }, + { + "id": "tls:66e443aeac7c", + "chapter": "tls", + "label": "remoteAddress", + "signature": "`remoteAddress` Type: {string}", + "apiSymbol": "remoteAddress", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#class-tlstlssocket", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tls", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tls", + "tests": [] + } + } + }, + { + "id": "tls:1f90bb780303", + "chapter": "tls", + "label": "remoteFamily", + "signature": "`remoteFamily` Type: {string}", + "apiSymbol": "remoteFamily", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#class-tlstlssocket", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tls", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tls", + "tests": [] + } + } + }, + { + "id": "tls:a3755ad291a6", + "chapter": "tls", + "label": "remotePort", + "signature": "`remotePort` Type: {integer}", + "apiSymbol": "remotePort", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#class-tlstlssocket", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tls", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tls", + "tests": [] + } + } + }, + { + "id": "tls:c5970763c4f8", + "chapter": "tls", + "label": "'keylog'", + "signature": "Event: `'keylog'`", + "apiSymbol": "'keylog'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#event-keylog_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tls", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tls", + "tests": [] + } + } + }, + { + "id": "tls:a8befc33127e", + "chapter": "tls", + "label": "'OCSPResponse'", + "signature": "Event: `'OCSPResponse'`", + "apiSymbol": "'OCSPResponse'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#event-ocspresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tls", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tls", + "tests": [] + } + } + }, + { + "id": "tls:446a052576c2", + "chapter": "tls", + "label": "'secure'", + "signature": "Event: `'secure'`", + "apiSymbol": "'secure'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#event-secure", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tls", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tls", + "tests": [] + } + } + }, + { + "id": "tls:3efd8f841639", + "chapter": "tls", + "label": "'secureConnect'", + "signature": "Event: `'secureConnect'`", + "apiSymbol": "'secureConnect'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#event-secureconnect", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tls", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tls", + "tests": [] + } + } + }, + { + "id": "tls:1954a7112a82", + "chapter": "tls", + "label": "'session'", + "signature": "Event: `'session'`", + "apiSymbol": "'session'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#event-session", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tls", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tls", + "tests": [] + } + } + }, + { + "id": "tls:d2efd8bfb28c", + "chapter": "tls", + "label": "tls.checkServerIdentity(hostname, cert)", + "signature": "`tls.checkServerIdentity(hostname, cert)`", + "apiSymbol": "tls.checkServerIdentity", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#tlscheckserveridentityhostname-cert", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tls", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tls", + "tests": [] + } + } + }, + { + "id": "tls:702d2d8bf862", + "chapter": "tls", + "label": "tls.connect(options[, callback])", + "signature": "`tls.connect(options[, callback])`", + "apiSymbol": "tls.connect", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#tlsconnectoptions-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.tls.connect", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:tls.connect", + "tests": [] + } + } + }, + { + "id": "tls:34b3563433b2", + "chapter": "tls", + "label": "tls.connect(path[, options][, callback])", + "signature": "`tls.connect(path[, options][, callback])`", + "apiSymbol": "tls.connect", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#tlsconnectpath-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.tls.connect", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:tls.connect", + "tests": [] + } + } + }, + { + "id": "tls:afd15ddeeaeb", + "chapter": "tls", + "label": "tls.connect(port[, host][, options][, callback])", + "signature": "`tls.connect(port[, host][, options][, callback])`", + "apiSymbol": "tls.connect", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#tlsconnectport-host-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.tls.connect", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:tls.connect", + "tests": [] + } + } + }, + { + "id": "tls:26fef81aa33d", + "chapter": "tls", + "label": "tls.createSecureContext([options])", + "signature": "`tls.createSecureContext([options])`", + "apiSymbol": "tls.createSecureContext", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#tlscreatesecurecontextoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.tls.createSecureContext", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:tls.createSecureContext", + "tests": [] + } + } + }, + { + "id": "tls:c675d0350d38", + "chapter": "tls", + "label": "tls.createServer([options][, secureConnectionListener])", + "signature": "`tls.createServer([options][, secureConnectionListener])`", + "apiSymbol": "tls.createServer", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#tlscreateserveroptions-secureconnectionlistener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tls", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:tls.createServer", + "tests": [] + } + } + }, + { + "id": "tls:8bd344e3d670", + "chapter": "tls", + "label": "tls.setDefaultCACertificates(certs)", + "signature": "`tls.setDefaultCACertificates(certs)`", + "apiSymbol": "tls.setDefaultCACertificates", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#tlssetdefaultcacertificatescerts", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.tls.setDefaultCACertificates", + "tests": [ + "tests/corpus/2331-tls-server-options-typed.ts", + "tests/corpus/2557-tls-ca-store.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tls", + "tests": [] + } + } + }, + { + "id": "tls:b4b36e5c5dc5", + "chapter": "tls", + "label": "tls.getCACertificates([type])", + "signature": "`tls.getCACertificates([type])`", + "apiSymbol": "tls.getCACertificates", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#tlsgetcacertificatestype", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.tls.getCACertificates", + "tests": [ + "tests/corpus/2331-tls-server-options-typed.ts", + "tests/corpus/2557-tls-ca-store.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tls", + "tests": [] + } + } + }, + { + "id": "tls:4939f0b62ade", + "chapter": "tls", + "label": "tls.getCiphers()", + "signature": "`tls.getCiphers()`", + "apiSymbol": "tls.getCiphers", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#tlsgetciphers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tls", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tls", + "tests": [] + } + } + }, + { + "id": "tls:df163bf0e931", + "chapter": "tls", + "label": "rootCertificates", + "signature": "`rootCertificates` Type: {string\\[]}", + "apiSymbol": "rootCertificates", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.tls.rootCertificates", + "tests": [ + "tests/corpus/2331-tls-server-options-typed.ts", + "tests/corpus/2557-tls-ca-store.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:tls.rootCertificates", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + } + } + }, + { + "id": "tls:c13858461177", + "chapter": "tls", + "label": "tls.DEFAULT_ECDH_CURVE", + "signature": "`tls.DEFAULT_ECDH_CURVE`", + "apiSymbol": "tls.DEFAULT_ECDH_CURVE", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html#tlsdefault_ecdh_curve", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tls", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tls", + "tests": [] + } + } + }, + { + "id": "tls:413eb502cb29", + "chapter": "tls", + "label": "DEFAULT_MAX_VERSION", + "signature": "`DEFAULT_MAX_VERSION` Type: {string} The default value of the `maxVersion` option of [`tls.createSecureContext()`][]. It can be assigned any of the supported TLS protocol versions, `'TLSv1.3'`, `'TLSv1.2'`, `'TLSv1.1'`, or `'TLSv1'`. **Default:** `'TLSv1.3'`, unless changed using CLI options. Using `--tls-max-v1.2` sets the default to `'TLSv1.2'`. Using `--tls-max-v1.3` sets the default to `'TLSv1.3'`. If multiple of the options are provided, the highest maximum is used.", + "apiSymbol": "DEFAULT_MAX_VERSION", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tls", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tls", + "tests": [] + } + } + }, + { + "id": "tls:0bbe9d7cd1b2", + "chapter": "tls", + "label": "DEFAULT_MIN_VERSION", + "signature": "`DEFAULT_MIN_VERSION` Type: {string} The default value of the `minVersion` option of [`tls.createSecureContext()`][]. It can be assigned any of the supported TLS protocol versions, `'TLSv1.3'`, `'TLSv1.2'`, `'TLSv1.1'`, or `'TLSv1'`. Versions before TLSv1.2 may require downgrading the [OpenSSL Security Level][]. **Default:** `'TLSv1.2'`, unless changed using CLI options. Using `--tls-min-v1.0` sets the default to `'TLSv1'`. Using `--tls-min-v1.1` sets the default to `'TLSv1.1'`. Using `--tls-min-v1.3` sets the default to `'TLSv1.3'`. If multiple of the options are provided, the lowest minimum is used.", + "apiSymbol": "DEFAULT_MIN_VERSION", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tls", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tls", + "tests": [] + } + } + }, + { + "id": "tls:e8919206b881", + "chapter": "tls", + "label": "DEFAULT_CIPHERS", + "signature": "`DEFAULT_CIPHERS` Type: {string} The default value of the `ciphers` option of [`tls.createSecureContext()`][]. It can be assigned any of the supported OpenSSL ciphers. Defaults to the content of `crypto.constants.defaultCoreCipherList`, unless changed using CLI options using `--tls-default-ciphers`.", + "apiSymbol": "DEFAULT_CIPHERS", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tls.html", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tls", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tls", + "tests": [] + } + } + }, + { + "id": "tracing:577c8490aded", + "chapter": "tracing", + "label": "The node:trace_events module", + "signature": "The `node:trace_events` module", + "apiSymbol": "node:trace_events", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tracing.html#the-nodetrace_events-module", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:tracing", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:tracing", + "tests": [] + } + } + }, + { + "id": "tracing:abd75c9e5853", + "chapter": "tracing", + "label": "Tracing", + "signature": "`Tracing` object", + "apiSymbol": "Tracing", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tracing.html#tracing-object", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:tracing", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:tracing", + "tests": [] + } + } + }, + { + "id": "tracing:760510fab0f4", + "chapter": "tracing", + "label": "tracing.disable()", + "signature": "`tracing.disable()`", + "apiSymbol": "tracing.disable", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tracing.html#tracingdisable", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:tracing", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:tracing", + "tests": [] + } + } + }, + { + "id": "tracing:edc2bccabfc5", + "chapter": "tracing", + "label": "tracing.enable()", + "signature": "`tracing.enable()`", + "apiSymbol": "tracing.enable", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tracing.html#tracingenable", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:tracing", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:tracing", + "tests": [] + } + } + }, + { + "id": "tracing:3d7738623691", + "chapter": "tracing", + "label": "categories", + "signature": "`categories` Type: {string}", + "apiSymbol": "categories", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tracing.html#tracing-object", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:tracing", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:tracing", + "tests": [] + } + } + }, + { + "id": "tracing:8345f6c9bd8b", + "chapter": "tracing", + "label": "enabled", + "signature": "`enabled` Type: {boolean} `true` only if the `Tracing` object has been enabled.", + "apiSymbol": "enabled", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tracing.html#tracing-object", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:tracing", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:tracing", + "tests": [] + } + } + }, + { + "id": "tracing:bb6574cf59bf", + "chapter": "tracing", + "label": "trace_events.createTracing(options)", + "signature": "`trace_events.createTracing(options)`", + "apiSymbol": "trace_events.createTracing", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tracing.html#trace_eventscreatetracingoptions", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:tracing", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:tracing", + "tests": [] + } + } + }, + { + "id": "tracing:656f852d60b7", + "chapter": "tracing", + "label": "trace_events.getEnabledCategories()", + "signature": "`trace_events.getEnabledCategories()`", + "apiSymbol": "trace_events.getEnabledCategories", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tracing.html#trace_eventsgetenabledcategories", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "compiler-chapter-policy:tracing", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "implement", + "verification": "declared-gap", + "confidence": "medium", + "source": "island-chapter-policy:tracing", + "tests": [] + } + } + }, + { + "id": "tty:369dcb137397", + "chapter": "tty", + "label": "tty.ReadStream", + "signature": "Class: `tty.ReadStream`", + "apiSymbol": "tty.ReadStream", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tty.html#class-ttyreadstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tty", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:tty.ReadStream", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "tty:6cabcad8e8f5", + "chapter": "tty", + "label": "readStream.setRawMode(mode)", + "signature": "`readStream.setRawMode(mode)`", + "apiSymbol": "readStream.setRawMode", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tty.html#readstreamsetrawmodemode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tty", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tty", + "tests": [] + } + } + }, + { + "id": "tty:a6a0c03c5c7b", + "chapter": "tty", + "label": "readStream.isRaw", + "signature": "`readStream.isRaw`", + "apiSymbol": "readStream.isRaw", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tty.html#readstreamisraw", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tty", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tty", + "tests": [] + } + } + }, + { + "id": "tty:3bd71118068a", + "chapter": "tty", + "label": "readStream.isTTY", + "signature": "`readStream.isTTY`", + "apiSymbol": "readStream.isTTY", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tty.html#readstreamistty", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tty", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tty", + "tests": [] + } + } + }, + { + "id": "tty:cdef680b84c7", + "chapter": "tty", + "label": "tty.WriteStream", + "signature": "Class: `tty.WriteStream`", + "apiSymbol": "tty.WriteStream", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tty.html#class-ttywritestream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tty", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:tty.WriteStream", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "tty:2c9353067e16", + "chapter": "tty", + "label": "writeStream.clearLine(dir[, callback])", + "signature": "`writeStream.clearLine(dir[, callback])`", + "apiSymbol": "writeStream.clearLine", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tty.html#writestreamclearlinedir-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tty", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tty", + "tests": [] + } + } + }, + { + "id": "tty:6ac9fe254030", + "chapter": "tty", + "label": "writeStream.clearScreenDown([callback])", + "signature": "`writeStream.clearScreenDown([callback])`", + "apiSymbol": "writeStream.clearScreenDown", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tty.html#writestreamclearscreendowncallback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tty", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tty", + "tests": [] + } + } + }, + { + "id": "tty:6d3569552d47", + "chapter": "tty", + "label": "writeStream.cursorTo(x[, y][, callback])", + "signature": "`writeStream.cursorTo(x[, y][, callback])`", + "apiSymbol": "writeStream.cursorTo", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tty.html#writestreamcursortox-y-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tty", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tty", + "tests": [] + } + } + }, + { + "id": "tty:6b26448ebbb8", + "chapter": "tty", + "label": "writeStream.getColorDepth([env])", + "signature": "`writeStream.getColorDepth([env])`", + "apiSymbol": "writeStream.getColorDepth", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tty.html#writestreamgetcolordepthenv", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tty", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tty", + "tests": [] + } + } + }, + { + "id": "tty:8de54b7228ad", + "chapter": "tty", + "label": "writeStream.getWindowSize()", + "signature": "`writeStream.getWindowSize()`", + "apiSymbol": "writeStream.getWindowSize", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tty.html#writestreamgetwindowsize", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tty", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tty", + "tests": [] + } + } + }, + { + "id": "tty:ef91fa4cf2c5", + "chapter": "tty", + "label": "writeStream.hasColors([count][, env])", + "signature": "`writeStream.hasColors([count][, env])`", + "apiSymbol": "writeStream.hasColors", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tty.html#writestreamhascolorscount-env", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tty", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tty", + "tests": [] + } + } + }, + { + "id": "tty:4b6a018abd03", + "chapter": "tty", + "label": "writeStream.moveCursor(dx, dy[, callback])", + "signature": "`writeStream.moveCursor(dx, dy[, callback])`", + "apiSymbol": "writeStream.moveCursor", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tty.html#writestreammovecursordx-dy-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tty", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tty", + "tests": [] + } + } + }, + { + "id": "tty:fa657719d5b5", + "chapter": "tty", + "label": "writeStream.columns", + "signature": "`writeStream.columns`", + "apiSymbol": "writeStream.columns", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tty.html#writestreamcolumns", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tty", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tty", + "tests": [] + } + } + }, + { + "id": "tty:85304573dac3", + "chapter": "tty", + "label": "writeStream.isTTY", + "signature": "`writeStream.isTTY`", + "apiSymbol": "writeStream.isTTY", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tty.html#writestreamistty", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tty", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tty", + "tests": [] + } + } + }, + { + "id": "tty:7695a1178c0c", + "chapter": "tty", + "label": "writeStream.rows", + "signature": "`writeStream.rows`", + "apiSymbol": "writeStream.rows", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tty.html#writestreamrows", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tty", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tty", + "tests": [] + } + } + }, + { + "id": "tty:de21e113bf2c", + "chapter": "tty", + "label": "'resize'", + "signature": "Event: `'resize'`", + "apiSymbol": "'resize'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tty.html#event-resize", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tty", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:tty", + "tests": [] + } + } + }, + { + "id": "tty:bf52fdd65f09", + "chapter": "tty", + "label": "tty.isatty(fd)", + "signature": "`tty.isatty(fd)`", + "apiSymbol": "tty.isatty", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/tty.html#ttyisattyfd", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:tty", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:tty.isatty", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "dgram:83a4eb5a1cfe", + "chapter": "dgram", + "label": "node:dgram", + "signature": "`node:dgram` module functions", + "apiSymbol": "node:dgram", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dgram.html#nodedgram-module-functions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dgram", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:dgram", + "tests": [] + } + } + }, + { + "id": "dgram:e29b48fbffa6", + "chapter": "dgram", + "label": "dgram.createSocket(options[, callback])", + "signature": "`dgram.createSocket(options[, callback])`", + "apiSymbol": "dgram.createSocket", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dgram.html#dgramcreatesocketoptions-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:dgram.createSocket", + "tests": [ + "tests/corpus/2597-dgram-send-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:dgram", + "tests": [] + } + } + }, + { + "id": "dgram:ac076b212635", + "chapter": "dgram", + "label": "dgram.createSocket(type[, callback])", + "signature": "`dgram.createSocket(type[, callback])`", + "apiSymbol": "dgram.createSocket", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dgram.html#dgramcreatesockettype-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:dgram.createSocket", + "tests": [ + "tests/corpus/2597-dgram-send-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:dgram", + "tests": [] + } + } + }, + { + "id": "dgram:fb3031867b1a", + "chapter": "dgram", + "label": "dgram.Socket", + "signature": "Class: `dgram.Socket`", + "apiSymbol": "dgram.Socket", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dgram.html#class-dgramsocket", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dgram", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:dgram", + "tests": [] + } + } + }, + { + "id": "dgram:2d302ec49e6c", + "chapter": "dgram", + "label": "socket.addMembership(multicastAddress[, multicastInterface])", + "signature": "`socket.addMembership(multicastAddress[, multicastInterface])`", + "apiSymbol": "socket.addMembership", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dgram.html#socketaddmembershipmulticastaddress-multicastinterface", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dgram", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:dgram", + "tests": [] + } + } + }, + { + "id": "dgram:fcc95297bd53", + "chapter": "dgram", + "label": "socket.addSourceSpecificMembership(sourceAddress, groupAddress[, multicastInterface])", + "signature": "`socket.addSourceSpecificMembership(sourceAddress, groupAddress[, multicastInterface])`", + "apiSymbol": "socket.addSourceSpecificMembership", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dgram.html#socketaddsourcespecificmembershipsourceaddress-groupaddress-multicastinterface", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dgram", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:dgram", + "tests": [] + } + } + }, + { + "id": "dgram:4e4ba5962821", + "chapter": "dgram", + "label": "socket.address()", + "signature": "`socket.address()`", + "apiSymbol": "socket.address", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dgram.html#socketaddress", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:socket.address", + "tests": [ + "tests/corpus/2597-dgram-send-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:dgram", + "tests": [] + } + } + }, + { + "id": "dgram:bd89cc2357f5", + "chapter": "dgram", + "label": "socket.bind([port][, address][, callback])", + "signature": "`socket.bind([port][, address][, callback])`", + "apiSymbol": "socket.bind", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dgram.html#socketbindport-address-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:socket.bind", + "tests": [ + "tests/corpus/2597-dgram-send-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:dgram", + "tests": [] + } + } + }, + { + "id": "dgram:d0d49a16d0e3", + "chapter": "dgram", + "label": "socket.bind(options[, callback])", + "signature": "`socket.bind(options[, callback])`", + "apiSymbol": "socket.bind", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dgram.html#socketbindoptions-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:socket.bind", + "tests": [ + "tests/corpus/2597-dgram-send-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:dgram", + "tests": [] + } + } + }, + { + "id": "dgram:40eeb2e82c2b", + "chapter": "dgram", + "label": "socket.close([callback])", + "signature": "`socket.close([callback])`", + "apiSymbol": "socket.close", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dgram.html#socketclosecallback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:socket.close", + "tests": [ + "tests/corpus/2597-dgram-send-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:dgram", + "tests": [] + } + } + }, + { + "id": "dgram:02c12ecd62b7", + "chapter": "dgram", + "label": "socket[Symbol.asyncDispose]()", + "signature": "`socket[Symbol.asyncDispose]()`", + "apiSymbol": "socket", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dgram.html#socketsymbolasyncdispose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dgram", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:dgram", + "tests": [] + } + } + }, + { + "id": "dgram:50ff3e61d94f", + "chapter": "dgram", + "label": "socket.connect(port[, address][, callback])", + "signature": "`socket.connect(port[, address][, callback])`", + "apiSymbol": "socket.connect", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dgram.html#socketconnectport-address-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:socket.connect", + "tests": [ + "tests/corpus/2597-dgram-send-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:dgram", + "tests": [] + } + } + }, + { + "id": "dgram:c2008af7f485", + "chapter": "dgram", + "label": "socket.disconnect()", + "signature": "`socket.disconnect()`", + "apiSymbol": "socket.disconnect", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dgram.html#socketdisconnect", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dgram", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:dgram", + "tests": [] + } + } + }, + { + "id": "dgram:340ffacd9326", + "chapter": "dgram", + "label": "socket.dropMembership(multicastAddress[, multicastInterface])", + "signature": "`socket.dropMembership(multicastAddress[, multicastInterface])`", + "apiSymbol": "socket.dropMembership", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dgram.html#socketdropmembershipmulticastaddress-multicastinterface", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dgram", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:dgram", + "tests": [] + } + } + }, + { + "id": "dgram:fccc4a98c831", + "chapter": "dgram", + "label": "socket.dropSourceSpecificMembership(sourceAddress, groupAddress[, multicastInterface])", + "signature": "`socket.dropSourceSpecificMembership(sourceAddress, groupAddress[, multicastInterface])`", + "apiSymbol": "socket.dropSourceSpecificMembership", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dgram.html#socketdropsourcespecificmembershipsourceaddress-groupaddress-multicastinterface", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dgram", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:dgram", + "tests": [] + } + } + }, + { + "id": "dgram:d48431cf741a", + "chapter": "dgram", + "label": "socket.getRecvBufferSize()", + "signature": "`socket.getRecvBufferSize()`", + "apiSymbol": "socket.getRecvBufferSize", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dgram.html#socketgetrecvbuffersize", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dgram", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:dgram", + "tests": [] + } + } + }, + { + "id": "dgram:aed3f4131054", + "chapter": "dgram", + "label": "socket.getSendBufferSize()", + "signature": "`socket.getSendBufferSize()`", + "apiSymbol": "socket.getSendBufferSize", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dgram.html#socketgetsendbuffersize", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dgram", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:dgram", + "tests": [] + } + } + }, + { + "id": "dgram:36bc109f71f0", + "chapter": "dgram", + "label": "socket.getSendQueueSize()", + "signature": "`socket.getSendQueueSize()`", + "apiSymbol": "socket.getSendQueueSize", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dgram.html#socketgetsendqueuesize", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dgram", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:dgram", + "tests": [] + } + } + }, + { + "id": "dgram:a6ed57af26d0", + "chapter": "dgram", + "label": "socket.getSendQueueCount()", + "signature": "`socket.getSendQueueCount()`", + "apiSymbol": "socket.getSendQueueCount", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dgram.html#socketgetsendqueuecount", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dgram", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:dgram", + "tests": [] + } + } + }, + { + "id": "dgram:d6a4eab82d31", + "chapter": "dgram", + "label": "socket.ref()", + "signature": "`socket.ref()`", + "apiSymbol": "socket.ref", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dgram.html#socketref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:socket.ref", + "tests": [ + "tests/corpus/2597-dgram-send-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:dgram", + "tests": [] + } + } + }, + { + "id": "dgram:9bc55c5339d7", + "chapter": "dgram", + "label": "socket.remoteAddress()", + "signature": "`socket.remoteAddress()`", + "apiSymbol": "socket.remoteAddress", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dgram.html#socketremoteaddress", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:socket.remoteAddress", + "tests": [ + "tests/corpus/2597-dgram-send-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:dgram", + "tests": [] + } + } + }, + { + "id": "dgram:f2a8535a19a1", + "chapter": "dgram", + "label": "socket.send(msg[, offset, length][, port][, address][, callback])", + "signature": "`socket.send(msg[, offset, length][, port][, address][, callback])`", + "apiSymbol": "socket.send", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dgram.html#socketsendmsg-offset-length-port-address-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:socket.send", + "tests": [ + "tests/corpus/2597-dgram-send-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:dgram", + "tests": [] + } + } + }, + { + "id": "dgram:bf7a641c2707", + "chapter": "dgram", + "label": "socket.setBroadcast(flag)", + "signature": "`socket.setBroadcast(flag)`", + "apiSymbol": "socket.setBroadcast", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dgram.html#socketsetbroadcastflag", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dgram", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:dgram", + "tests": [] + } + } + }, + { + "id": "dgram:2272f998d2c8", + "chapter": "dgram", + "label": "socket.setMulticastInterface(multicastInterface)", + "signature": "`socket.setMulticastInterface(multicastInterface)`", + "apiSymbol": "socket.setMulticastInterface", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dgram.html#socketsetmulticastinterfacemulticastinterface", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dgram", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:dgram", + "tests": [] + } + } + }, + { + "id": "dgram:c5c314a5ad19", + "chapter": "dgram", + "label": "socket.setMulticastLoopback(flag)", + "signature": "`socket.setMulticastLoopback(flag)`", + "apiSymbol": "socket.setMulticastLoopback", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dgram.html#socketsetmulticastloopbackflag", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dgram", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:dgram", + "tests": [] + } + } + }, + { + "id": "dgram:ca26f65c8caa", + "chapter": "dgram", + "label": "socket.setMulticastTTL(ttl)", + "signature": "`socket.setMulticastTTL(ttl)`", + "apiSymbol": "socket.setMulticastTTL", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dgram.html#socketsetmulticastttlttl", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dgram", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:dgram", + "tests": [] + } + } + }, + { + "id": "dgram:913912dcb4f5", + "chapter": "dgram", + "label": "socket.setRecvBufferSize(size)", + "signature": "`socket.setRecvBufferSize(size)`", + "apiSymbol": "socket.setRecvBufferSize", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dgram.html#socketsetrecvbuffersizesize", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dgram", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:dgram", + "tests": [] + } + } + }, + { + "id": "dgram:a38ce73e1906", + "chapter": "dgram", + "label": "socket.setSendBufferSize(size)", + "signature": "`socket.setSendBufferSize(size)`", + "apiSymbol": "socket.setSendBufferSize", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dgram.html#socketsetsendbuffersizesize", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dgram", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:dgram", + "tests": [] + } + } + }, + { + "id": "dgram:b7d9a76bd446", + "chapter": "dgram", + "label": "socket.setTTL(ttl)", + "signature": "`socket.setTTL(ttl)`", + "apiSymbol": "socket.setTTL", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dgram.html#socketsetttlttl", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dgram", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:dgram", + "tests": [] + } + } + }, + { + "id": "dgram:cb951bc742ac", + "chapter": "dgram", + "label": "socket.unref()", + "signature": "`socket.unref()`", + "apiSymbol": "socket.unref", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dgram.html#socketunref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:socket.unref", + "tests": [ + "tests/corpus/2597-dgram-send-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:dgram", + "tests": [] + } + } + }, + { + "id": "dgram:3d3e1f62991e", + "chapter": "dgram", + "label": "'close'", + "signature": "Event: `'close'`", + "apiSymbol": "'close'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dgram.html#event-close", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dgram", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:dgram", + "tests": [] + } + } + }, + { + "id": "dgram:ea3af6bd7da8", + "chapter": "dgram", + "label": "'connect'", + "signature": "Event: `'connect'`", + "apiSymbol": "'connect'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dgram.html#event-connect", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dgram", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:dgram", + "tests": [] + } + } + }, + { + "id": "dgram:3c2833e21411", + "chapter": "dgram", + "label": "'error'", + "signature": "Event: `'error'`", + "apiSymbol": "'error'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dgram.html#event-error", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dgram", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:dgram", + "tests": [] + } + } + }, + { + "id": "dgram:78f6d82f4589", + "chapter": "dgram", + "label": "'listening'", + "signature": "Event: `'listening'`", + "apiSymbol": "'listening'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dgram.html#event-listening", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dgram", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:dgram", + "tests": [] + } + } + }, + { + "id": "dgram:ceeddc966ef8", + "chapter": "dgram", + "label": "'message'", + "signature": "Event: `'message'`", + "apiSymbol": "'message'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/dgram.html#event-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:dgram", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "unshimmed:node:dgram", + "tests": [] + } + } + }, + { + "id": "url:8f4bdbc993a2", + "chapter": "url", + "label": "URL", + "signature": "Class: `URL`", + "apiSymbol": "URL", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#class-url", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:url.URL", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "url:ca852cc7fae2", + "chapter": "url", + "label": "url.toString()", + "signature": "`url.toString()`", + "apiSymbol": "url.toString", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#urltostring", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:url.url.toString", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "url:ce3826342140", + "chapter": "url", + "label": "url.toJSON()", + "signature": "`url.toJSON()`", + "apiSymbol": "url.toJSON", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#urltojson", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:url.url.toJSON", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "url:3d825e17dd4d", + "chapter": "url", + "label": "URL.createObjectURL(blob)", + "signature": "`URL.createObjectURL(blob)`", + "apiSymbol": "URL.createObjectURL", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#urlcreateobjecturlblob", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:url", + "tests": [] + } + } + }, + { + "id": "url:7fb3f247c6d7", + "chapter": "url", + "label": "URL.revokeObjectURL(id)", + "signature": "`URL.revokeObjectURL(id)`", + "apiSymbol": "URL.revokeObjectURL", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#urlrevokeobjecturlid", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:url", + "tests": [] + } + } + }, + { + "id": "url:504e9a4a0cfd", + "chapter": "url", + "label": "URL.canParse(input[, base])", + "signature": "`URL.canParse(input[, base])`", + "apiSymbol": "URL.canParse", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#urlcanparseinput-base", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:url.URL.canParse", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "url:59d273bab3f3", + "chapter": "url", + "label": "URL.parse(input[, base])", + "signature": "`URL.parse(input[, base])`", + "apiSymbol": "URL.parse", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#urlparseinput-base", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:url.URL.parse", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "url:c1e3b748497e", + "chapter": "url", + "label": "hash", + "signature": "`hash` Type: {string}", + "apiSymbol": "hash", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#class-url", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:url", + "tests": [] + } + } + }, + { + "id": "url:ac7491f15347", + "chapter": "url", + "label": "host", + "signature": "`host` Type: {string}", + "apiSymbol": "host", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#class-url", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:url", + "tests": [] + } + } + }, + { + "id": "url:3040963053f6", + "chapter": "url", + "label": "hostname", + "signature": "`hostname` Type: {string}", + "apiSymbol": "hostname", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#class-url", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:url", + "tests": [] + } + } + }, + { + "id": "url:86bdbbbdb2e1", + "chapter": "url", + "label": "href", + "signature": "`href` Type: {string}", + "apiSymbol": "href", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#class-url", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:url", + "tests": [] + } + } + }, + { + "id": "url:66a259bce471", + "chapter": "url", + "label": "origin", + "signature": "`origin` Type: {string}", + "apiSymbol": "origin", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#class-url", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:url", + "tests": [] + } + } + }, + { + "id": "url:a510df3fea7c", + "chapter": "url", + "label": "password", + "signature": "`password` Type: {string}", + "apiSymbol": "password", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#class-url", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:url", + "tests": [] + } + } + }, + { + "id": "url:0f9a38d10877", + "chapter": "url", + "label": "pathname", + "signature": "`pathname` Type: {string}", + "apiSymbol": "pathname", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#class-url", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:url", + "tests": [] + } + } + }, + { + "id": "url:02f621e64a44", + "chapter": "url", + "label": "port", + "signature": "`port` Type: {string}", + "apiSymbol": "port", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#class-url", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:url", + "tests": [] + } + } + }, + { + "id": "url:c006c906a5f7", + "chapter": "url", + "label": "protocol", + "signature": "`protocol` Type: {string}", + "apiSymbol": "protocol", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#class-url", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:url", + "tests": [] + } + } + }, + { + "id": "url:5d3d05e8fa46", + "chapter": "url", + "label": "search", + "signature": "`search` Type: {string}", + "apiSymbol": "search", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#class-url", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:url", + "tests": [] + } + } + }, + { + "id": "url:d6711847f88e", + "chapter": "url", + "label": "searchParams", + "signature": "`searchParams` Type: {URLSearchParams}", + "apiSymbol": "searchParams", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#class-url", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:url", + "tests": [] + } + } + }, + { + "id": "url:b90cacdc7467", + "chapter": "url", + "label": "username", + "signature": "`username` Type: {string}", + "apiSymbol": "username", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#class-url", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:url", + "tests": [] + } + } + }, + { + "id": "url:379a4af5877c", + "chapter": "url", + "label": "URLPattern", + "signature": "Class: `URLPattern`", + "apiSymbol": "URLPattern", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#class-urlpattern", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:url", + "tests": [] + } + } + }, + { + "id": "url:7caf609cfbc2", + "chapter": "url", + "label": "urlPattern.exec(input[, baseURL])", + "signature": "`urlPattern.exec(input[, baseURL])`", + "apiSymbol": "urlPattern.exec", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#urlpatternexecinput-baseurl", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:url", + "tests": [] + } + } + }, + { + "id": "url:c6150bc59262", + "chapter": "url", + "label": "urlPattern.test(input[, baseURL])", + "signature": "`urlPattern.test(input[, baseURL])`", + "apiSymbol": "urlPattern.test", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#urlpatterntestinput-baseurl", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:url", + "tests": [] + } + } + }, + { + "id": "url:efe9b56ddf72", + "chapter": "url", + "label": "URLSearchParams", + "signature": "Class: `URLSearchParams`", + "apiSymbol": "URLSearchParams", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#class-urlsearchparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:url.URLSearchParams", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "url:6599a7e81cd6", + "chapter": "url", + "label": "urlSearchParams.append(name, value)", + "signature": "`urlSearchParams.append(name, value)`", + "apiSymbol": "urlSearchParams.append", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#urlsearchparamsappendname-value", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:url.urlSearchParams.append", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "url:238d65c61584", + "chapter": "url", + "label": "urlSearchParams.delete(name[, value])", + "signature": "`urlSearchParams.delete(name[, value])`", + "apiSymbol": "urlSearchParams.delete", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#urlsearchparamsdeletename-value", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:url.urlSearchParams.delete", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "url:1540e330c724", + "chapter": "url", + "label": "urlSearchParams.entries()", + "signature": "`urlSearchParams.entries()`", + "apiSymbol": "urlSearchParams.entries", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#urlsearchparamsentries", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:url.urlSearchParams.entries", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "url:5ff6c1417db8", + "chapter": "url", + "label": "urlSearchParams.forEach(fn[, thisArg])", + "signature": "`urlSearchParams.forEach(fn[, thisArg])`", + "apiSymbol": "urlSearchParams.forEach", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#urlsearchparamsforeachfn-thisarg", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:url.urlSearchParams.forEach", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "url:47fc2ebdac43", + "chapter": "url", + "label": "urlSearchParams.get(name)", + "signature": "`urlSearchParams.get(name)`", + "apiSymbol": "urlSearchParams.get", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#urlsearchparamsgetname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:url.urlSearchParams.get", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "url:1886d3fe6bc4", + "chapter": "url", + "label": "urlSearchParams.getAll(name)", + "signature": "`urlSearchParams.getAll(name)`", + "apiSymbol": "urlSearchParams.getAll", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#urlsearchparamsgetallname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:url.urlSearchParams.getAll", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "url:ba36aa1f6d16", + "chapter": "url", + "label": "urlSearchParams.has(name[, value])", + "signature": "`urlSearchParams.has(name[, value])`", + "apiSymbol": "urlSearchParams.has", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#urlsearchparamshasname-value", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:url.urlSearchParams.has", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "url:eaf2d8555575", + "chapter": "url", + "label": "urlSearchParams.keys()", + "signature": "`urlSearchParams.keys()`", + "apiSymbol": "urlSearchParams.keys", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#urlsearchparamskeys", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:url.urlSearchParams.keys", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "url:38e92e7464fb", + "chapter": "url", + "label": "urlSearchParams.set(name, value)", + "signature": "`urlSearchParams.set(name, value)`", + "apiSymbol": "urlSearchParams.set", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#urlsearchparamssetname-value", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:url.urlSearchParams.set", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "url:0eb44ad10012", + "chapter": "url", + "label": "urlSearchParams.sort()", + "signature": "`urlSearchParams.sort()`", + "apiSymbol": "urlSearchParams.sort", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#urlsearchparamssort", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:url.urlSearchParams.sort", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "url:4cbeace8bd8b", + "chapter": "url", + "label": "urlSearchParams.toString()", + "signature": "`urlSearchParams.toString()`", + "apiSymbol": "urlSearchParams.toString", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#urlsearchparamstostring", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:url.urlSearchParams.toString", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "url:05b8820a87cf", + "chapter": "url", + "label": "urlSearchParams.values()", + "signature": "`urlSearchParams.values()`", + "apiSymbol": "urlSearchParams.values", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#urlsearchparamsvalues", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:url.urlSearchParams.values", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "url:bef59544966e", + "chapter": "url", + "label": "urlSearchParams[Symbol.iterator]()", + "signature": "`urlSearchParams[Symbol.iterator]()`", + "apiSymbol": "urlSearchParams", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#urlsearchparamssymboliterator", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:url", + "tests": [] + } + } + }, + { + "id": "url:250a28b843c4", + "chapter": "url", + "label": "urlSearchParams.size", + "signature": "`urlSearchParams.size`", + "apiSymbol": "urlSearchParams.size", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#urlsearchparamssize", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:url.urlSearchParams.size", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "url:61654533497c", + "chapter": "url", + "label": "url.domainToASCII(domain)", + "signature": "`url.domainToASCII(domain)`", + "apiSymbol": "url.domainToASCII", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#urldomaintoasciidomain", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:url.domainToASCII", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "url:2fe3d9bf8826", + "chapter": "url", + "label": "url.domainToUnicode(domain)", + "signature": "`url.domainToUnicode(domain)`", + "apiSymbol": "url.domainToUnicode", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#urldomaintounicodedomain", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:url.domainToUnicode", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "url:8358aff572c7", + "chapter": "url", + "label": "url.fileURLToPath(url[, options])", + "signature": "`url.fileURLToPath(url[, options])`", + "apiSymbol": "url.fileURLToPath", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#urlfileurltopathurl-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.url.fileURLToPath", + "tests": [ + "tests/corpus/1794-searchparams-url-live.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:url.fileURLToPath", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "url:d6ca7d761e7b", + "chapter": "url", + "label": "url.fileURLToPathBuffer(url[, options])", + "signature": "`url.fileURLToPathBuffer(url[, options])`", + "apiSymbol": "url.fileURLToPathBuffer", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#urlfileurltopathbufferurl-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:url", + "tests": [] + } + } + }, + { + "id": "url:202b01d4a9f5", + "chapter": "url", + "label": "url.format(URL[, options])", + "signature": "`url.format(URL[, options])`", + "apiSymbol": "url.format", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#urlformaturl-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:url.format", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "url:50f0ecfb7986", + "chapter": "url", + "label": "url.pathToFileURL(path[, options])", + "signature": "`url.pathToFileURL(path[, options])`", + "apiSymbol": "url.pathToFileURL", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#urlpathtofileurlpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.url.pathToFileURL", + "tests": [ + "tests/corpus/1794-searchparams-url-live.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:url.pathToFileURL", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "url:2454a9d74f45", + "chapter": "url", + "label": "url.urlToHttpOptions(url)", + "signature": "`url.urlToHttpOptions(url)`", + "apiSymbol": "url.urlToHttpOptions", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#urlurltohttpoptionsurl", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:url.urlToHttpOptions", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "url:26174deb7132", + "chapter": "url", + "label": "Legacy urlObject", + "signature": "Legacy `urlObject`", + "apiSymbol": "urlObject", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#legacy-urlobject", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use the WHATWG URL API instead.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:url", + "tests": [] + } + } + }, + { + "id": "url:0795bb0b86f8", + "chapter": "url", + "label": "urlObject.auth", + "signature": "`urlObject.auth`", + "apiSymbol": "urlObject.auth", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#urlobjectauth", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use the WHATWG URL API instead.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:url", + "tests": [] + } + } + }, + { + "id": "url:42947b964de1", + "chapter": "url", + "label": "urlObject.hash", + "signature": "`urlObject.hash`", + "apiSymbol": "urlObject.hash", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#urlobjecthash", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use the WHATWG URL API instead.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:url", + "tests": [] + } + } + }, + { + "id": "url:ba55dcb7989a", + "chapter": "url", + "label": "urlObject.host", + "signature": "`urlObject.host`", + "apiSymbol": "urlObject.host", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#urlobjecthost", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use the WHATWG URL API instead.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:url", + "tests": [] + } + } + }, + { + "id": "url:682b8c062cac", + "chapter": "url", + "label": "urlObject.hostname", + "signature": "`urlObject.hostname`", + "apiSymbol": "urlObject.hostname", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#urlobjecthostname", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use the WHATWG URL API instead.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:url", + "tests": [] + } + } + }, + { + "id": "url:71c4ee356a60", + "chapter": "url", + "label": "urlObject.href", + "signature": "`urlObject.href`", + "apiSymbol": "urlObject.href", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#urlobjecthref", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use the WHATWG URL API instead.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:url", + "tests": [] + } + } + }, + { + "id": "url:bfd3114b68a4", + "chapter": "url", + "label": "urlObject.path", + "signature": "`urlObject.path`", + "apiSymbol": "urlObject.path", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#urlobjectpath", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use the WHATWG URL API instead.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:url", + "tests": [] + } + } + }, + { + "id": "url:c16e787bfc1f", + "chapter": "url", + "label": "urlObject.pathname", + "signature": "`urlObject.pathname`", + "apiSymbol": "urlObject.pathname", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#urlobjectpathname", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use the WHATWG URL API instead.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:url", + "tests": [] + } + } + }, + { + "id": "url:6917c5d9a33c", + "chapter": "url", + "label": "urlObject.port", + "signature": "`urlObject.port`", + "apiSymbol": "urlObject.port", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#urlobjectport", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use the WHATWG URL API instead.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:url", + "tests": [] + } + } + }, + { + "id": "url:d6797ec5d5d6", + "chapter": "url", + "label": "urlObject.protocol", + "signature": "`urlObject.protocol`", + "apiSymbol": "urlObject.protocol", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#urlobjectprotocol", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use the WHATWG URL API instead.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:url", + "tests": [] + } + } + }, + { + "id": "url:c768b0333159", + "chapter": "url", + "label": "urlObject.query", + "signature": "`urlObject.query`", + "apiSymbol": "urlObject.query", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#urlobjectquery", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use the WHATWG URL API instead.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:url", + "tests": [] + } + } + }, + { + "id": "url:cbe598404ed4", + "chapter": "url", + "label": "urlObject.search", + "signature": "`urlObject.search`", + "apiSymbol": "urlObject.search", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#urlobjectsearch", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use the WHATWG URL API instead.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:url", + "tests": [] + } + } + }, + { + "id": "url:cc812c2fdb4e", + "chapter": "url", + "label": "urlObject.slashes", + "signature": "`urlObject.slashes`", + "apiSymbol": "urlObject.slashes", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#urlobjectslashes", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use the WHATWG URL API instead.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:url", + "tests": [] + } + } + }, + { + "id": "url:36d80c164de3", + "chapter": "url", + "label": "url.format(urlObject)", + "signature": "`url.format(urlObject)`", + "apiSymbol": "url.format", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#urlformaturlobject", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use the WHATWG URL API instead.", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:url.format", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "url:94fd551f27a0", + "chapter": "url", + "label": "url.format(urlString)", + "signature": "`url.format(urlString)`", + "apiSymbol": "url.format", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#urlformaturlstring", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Use the WHATWG URL API instead.", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:url.format", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "url:1fa787da66df", + "chapter": "url", + "label": "url.parse(urlString[, parseQueryString[, slashesDenoteHost]])", + "signature": "`url.parse(urlString[, parseQueryString[, slashesDenoteHost]])`", + "apiSymbol": "url.parse", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#urlparseurlstring-parsequerystring-slashesdenotehost", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Use the WHATWG URL API instead.", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:url.parse", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "url:b1daf529bd41", + "chapter": "url", + "label": "url.resolve(from, to)", + "signature": "`url.resolve(from, to)`", + "apiSymbol": "url.resolve", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/url.html#urlresolvefrom-to", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Use the WHATWG URL API instead.", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:url", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:url.resolve", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "util:3fb9af4b0066", + "chapter": "util", + "label": "util._extend(target, source)", + "signature": "`util._extend(target, source)`", + "apiSymbol": "util._extend", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#util_extendtarget-source", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Use [`Object.assign()`][] instead.", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util._extend", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:6bc435eec9d3", + "chapter": "util", + "label": "util.isArray(object)", + "signature": "`util.isArray(object)`", + "apiSymbol": "util.isArray", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utilisarrayobject", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Use [`Array.isArray()`][] instead.", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util.isArray", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:afeb5c5bb1b0", + "chapter": "util", + "label": "util.MIMEType", + "signature": "Class: `util.MIMEType`", + "apiSymbol": "util.MIMEType", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#class-utilmimetype", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:util", + "tests": [] + } + } + }, + { + "id": "util:812c70be1945", + "chapter": "util", + "label": "mime.toString()", + "signature": "`mime.toString()`", + "apiSymbol": "mime.toString", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#mimetostring", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:util", + "tests": [] + } + } + }, + { + "id": "util:585fc9c89e11", + "chapter": "util", + "label": "mime.toJSON()", + "signature": "`mime.toJSON()`", + "apiSymbol": "mime.toJSON", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#mimetojson", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:util", + "tests": [] + } + } + }, + { + "id": "util:f1c74a06ab01", + "chapter": "util", + "label": "type", + "signature": "`type` Type: {string}", + "apiSymbol": "type", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#class-utilmimetype", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:util", + "tests": [] + } + } + }, + { + "id": "util:1f22f2be8b32", + "chapter": "util", + "label": "subtype", + "signature": "`subtype` Type: {string}", + "apiSymbol": "subtype", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#class-utilmimetype", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:util", + "tests": [] + } + } + }, + { + "id": "util:9f467ff2dfaf", + "chapter": "util", + "label": "essence", + "signature": "`essence` Type: {string}", + "apiSymbol": "essence", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#class-utilmimetype", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:util", + "tests": [] + } + } + }, + { + "id": "util:ed51b78d20e6", + "chapter": "util", + "label": "params", + "signature": "`params` Type: {MIMEParams}", + "apiSymbol": "params", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#class-utilmimetype", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:util", + "tests": [] + } + } + }, + { + "id": "util:44c967ce036a", + "chapter": "util", + "label": "util.MIMEParams", + "signature": "Class: `util.MIMEParams`", + "apiSymbol": "util.MIMEParams", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#class-utilmimeparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:util", + "tests": [] + } + } + }, + { + "id": "util:a442658ea079", + "chapter": "util", + "label": "mimeParams.delete(name)", + "signature": "`mimeParams.delete(name)`", + "apiSymbol": "mimeParams.delete", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#mimeparamsdeletename", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:util", + "tests": [] + } + } + }, + { + "id": "util:5d7e725b4a8b", + "chapter": "util", + "label": "mimeParams.entries()", + "signature": "`mimeParams.entries()`", + "apiSymbol": "mimeParams.entries", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#mimeparamsentries", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:util", + "tests": [] + } + } + }, + { + "id": "util:a14428f20886", + "chapter": "util", + "label": "mimeParams.get(name)", + "signature": "`mimeParams.get(name)`", + "apiSymbol": "mimeParams.get", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#mimeparamsgetname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:util", + "tests": [] + } + } + }, + { + "id": "util:24824e980158", + "chapter": "util", + "label": "mimeParams.has(name)", + "signature": "`mimeParams.has(name)`", + "apiSymbol": "mimeParams.has", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#mimeparamshasname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:util", + "tests": [] + } + } + }, + { + "id": "util:1fa1ab473220", + "chapter": "util", + "label": "mimeParams.keys()", + "signature": "`mimeParams.keys()`", + "apiSymbol": "mimeParams.keys", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#mimeparamskeys", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:util", + "tests": [] + } + } + }, + { + "id": "util:14facfdcac1e", + "chapter": "util", + "label": "mimeParams.set(name, value)", + "signature": "`mimeParams.set(name, value)`", + "apiSymbol": "mimeParams.set", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#mimeparamssetname-value", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:util", + "tests": [] + } + } + }, + { + "id": "util:8e5d5d0e1779", + "chapter": "util", + "label": "mimeParams.values()", + "signature": "`mimeParams.values()`", + "apiSymbol": "mimeParams.values", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#mimeparamsvalues", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:util", + "tests": [] + } + } + }, + { + "id": "util:27be831bd43e", + "chapter": "util", + "label": "mimeParams[Symbol.iterator]()", + "signature": "`mimeParams[Symbol.iterator]()`", + "apiSymbol": "mimeParams", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#mimeparamssymboliterator", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:util", + "tests": [] + } + } + }, + { + "id": "util:8797e76ba09e", + "chapter": "util", + "label": "util.TextDecoder", + "signature": "Class: `util.TextDecoder`", + "apiSymbol": "util.TextDecoder", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#class-utiltextdecoder", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util.TextDecoder", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:e5a1f0a694aa", + "chapter": "util", + "label": "Encodings supported when Node.js is built with the small-icu option", + "signature": "Encodings supported when Node.js is built with the `small-icu` option", + "apiSymbol": "small-icu", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#encodings-supported-when-nodejs-is-built-with-the-small-icu-option", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:util", + "tests": [] + } + } + }, + { + "id": "util:fb2316caa0b2", + "chapter": "util", + "label": "textDecoder.decode([input[, options]])", + "signature": "`textDecoder.decode([input[, options]])`", + "apiSymbol": "textDecoder.decode", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#textdecoderdecodeinput-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:util", + "tests": [] + } + } + }, + { + "id": "util:02928ef627a6", + "chapter": "util", + "label": "encoding", + "signature": "`encoding` Type: {string}", + "apiSymbol": "encoding", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#class-utiltextdecoder", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:util", + "tests": [] + } + } + }, + { + "id": "util:13625dfa7779", + "chapter": "util", + "label": "fatal", + "signature": "`fatal` Type: {boolean}", + "apiSymbol": "fatal", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#class-utiltextdecoder", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:util", + "tests": [] + } + } + }, + { + "id": "util:620a54a0ca69", + "chapter": "util", + "label": "ignoreBOM", + "signature": "`ignoreBOM` Type: {boolean}", + "apiSymbol": "ignoreBOM", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#class-utiltextdecoder", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:util", + "tests": [] + } + } + }, + { + "id": "util:12242840838d", + "chapter": "util", + "label": "util.TextEncoder", + "signature": "Class: `util.TextEncoder`", + "apiSymbol": "util.TextEncoder", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#class-utiltextencoder", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util.TextEncoder", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:f4fe667b1026", + "chapter": "util", + "label": "textEncoder.encode([input])", + "signature": "`textEncoder.encode([input])`", + "apiSymbol": "textEncoder.encode", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#textencoderencodeinput", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:util", + "tests": [] + } + } + }, + { + "id": "util:bb06cf39f1f9", + "chapter": "util", + "label": "textEncoder.encodeInto(src, dest)", + "signature": "`textEncoder.encodeInto(src, dest)`", + "apiSymbol": "textEncoder.encodeInto", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#textencoderencodeintosrc-dest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:util", + "tests": [] + } + } + }, + { + "id": "util:081af354f8ab", + "chapter": "util", + "label": "encoding", + "signature": "`encoding` Type: {string}", + "apiSymbol": "encoding", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#class-utiltextencoder", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:util", + "tests": [] + } + } + }, + { + "id": "util:3a3381b30603", + "chapter": "util", + "label": "util.callbackify(original)", + "signature": "`util.callbackify(original)`", + "apiSymbol": "util.callbackify", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utilcallbackifyoriginal", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util.callbackify", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:89bb8cea7ec9", + "chapter": "util", + "label": "util.convertProcessSignalToExitCode(signal)", + "signature": "`util.convertProcessSignalToExitCode(signal)`", + "apiSymbol": "util.convertProcessSignalToExitCode", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utilconvertprocesssignaltoexitcodesignal", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:util", + "tests": [] + } + } + }, + { + "id": "util:ceef34105431", + "chapter": "util", + "label": "util.debuglog(section[, callback])", + "signature": "`util.debuglog(section[, callback])`", + "apiSymbol": "util.debuglog", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utildebuglogsection-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util.debuglog", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:e0845fa96e9e", + "chapter": "util", + "label": "debuglog().enabled", + "signature": "`debuglog().enabled`", + "apiSymbol": "debuglog", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#debuglogenabled", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util.debuglog", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:f7c6a70dfb85", + "chapter": "util", + "label": "util.debug(section)", + "signature": "`util.debug(section)`", + "apiSymbol": "util.debug", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utildebugsection", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util.debug", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:d35deb7f6f00", + "chapter": "util", + "label": "util.deprecate(fn, msg[, code[, options]])", + "signature": "`util.deprecate(fn, msg[, code[, options]])`", + "apiSymbol": "util.deprecate", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utildeprecatefn-msg-code-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util.deprecate", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:dd79eb4f9e99", + "chapter": "util", + "label": "util.diff(actual, expected)", + "signature": "`util.diff(actual, expected)`", + "apiSymbol": "util.diff", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utildiffactual-expected", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:util", + "tests": [] + } + } + }, + { + "id": "util:13d12ae0e1eb", + "chapter": "util", + "label": "util.format(format[, ...args])", + "signature": "`util.format(format[, ...args])`", + "apiSymbol": "util.format", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utilformatformat-args", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util.format", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:b6c6427e394d", + "chapter": "util", + "label": "util.formatWithOptions(inspectOptions, format[, ...args])", + "signature": "`util.formatWithOptions(inspectOptions, format[, ...args])`", + "apiSymbol": "util.formatWithOptions", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utilformatwithoptionsinspectoptions-format-args", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util.formatWithOptions", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:ea80c1d9c78b", + "chapter": "util", + "label": "util.getCallSites([frameCount][, options])", + "signature": "`util.getCallSites([frameCount][, options])`", + "apiSymbol": "util.getCallSites", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utilgetcallsitesframecount-options", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:util", + "tests": [] + } + } + }, + { + "id": "util:4a91f0566121", + "chapter": "util", + "label": "util.getSystemErrorName(err)", + "signature": "`util.getSystemErrorName(err)`", + "apiSymbol": "util.getSystemErrorName", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utilgetsystemerrornameerr", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:util", + "tests": [] + } + } + }, + { + "id": "util:deaa994f859c", + "chapter": "util", + "label": "util.getSystemErrorMap()", + "signature": "`util.getSystemErrorMap()`", + "apiSymbol": "util.getSystemErrorMap", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utilgetsystemerrormap", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:util", + "tests": [] + } + } + }, + { + "id": "util:7d1c9f5fa091", + "chapter": "util", + "label": "util.getSystemErrorMessage(err)", + "signature": "`util.getSystemErrorMessage(err)`", + "apiSymbol": "util.getSystemErrorMessage", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utilgetsystemerrormessageerr", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:util", + "tests": [] + } + } + }, + { + "id": "util:9ff176c649da", + "chapter": "util", + "label": "util.setTraceSigInt(enable)", + "signature": "`util.setTraceSigInt(enable)`", + "apiSymbol": "util.setTraceSigInt", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utilsettracesigintenable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:util", + "tests": [] + } + } + }, + { + "id": "util:62ed396c647b", + "chapter": "util", + "label": "util.inherits(constructor, superConstructor)", + "signature": "`util.inherits(constructor, superConstructor)`", + "apiSymbol": "util.inherits", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utilinheritsconstructor-superconstructor", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use ES2015 class syntax and `extends` keyword instead.", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util.inherits", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:95fabe29a9eb", + "chapter": "util", + "label": "util.inspect(object[, options])", + "signature": "`util.inspect(object[, options])`", + "apiSymbol": "util.inspect", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utilinspectobject-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util.inspect", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:fbf91870e747", + "chapter": "util", + "label": "util.inspect(object[, showHidden[, depth[, colors]]])", + "signature": "`util.inspect(object[, showHidden[, depth[, colors]]])`", + "apiSymbol": "util.inspect", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utilinspectobject-showhidden-depth-colors", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util.inspect", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:50611f54c063", + "chapter": "util", + "label": "custom", + "signature": "`custom` Type: {symbol} that can be used to declare custom inspect functions.", + "apiSymbol": "custom", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utilinspectobject-showhidden-depth-colors", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:util", + "tests": [] + } + } + }, + { + "id": "util:6e953992adfc", + "chapter": "util", + "label": "util.inspect.defaultOptions", + "signature": "`util.inspect.defaultOptions`", + "apiSymbol": "util.inspect.defaultOptions", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utilinspectdefaultoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:util", + "tests": [] + } + } + }, + { + "id": "util:e76877581907", + "chapter": "util", + "label": "Customizing util.inspect colors", + "signature": "Customizing `util.inspect` colors", + "apiSymbol": "util.inspect", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#customizing-utilinspect-colors", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util.inspect", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:253ef05b7f13", + "chapter": "util", + "label": "util.isDeepStrictEqual(val1, val2[, options])", + "signature": "`util.isDeepStrictEqual(val1, val2[, options])`", + "apiSymbol": "util.isDeepStrictEqual", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utilisdeepstrictequalval1-val2-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util.isDeepStrictEqual", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:96bd98b2e0c0", + "chapter": "util", + "label": "util.parseArgs([config])", + "signature": "`util.parseArgs([config])`", + "apiSymbol": "util.parseArgs", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utilparseargsconfig", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.util.parseArgs", + "tests": [ + "tests/corpus/2440-console-inspect-args.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util.parseArgs", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:9378934c3f20", + "chapter": "util", + "label": "parseArgs", + "signature": "`parseArgs` `tokens`", + "apiSymbol": "parseArgs", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#parseargs-tokens", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.util.parseArgs", + "tests": [ + "tests/corpus/2440-console-inspect-args.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util.parseArgs", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:fa1168ae93da", + "chapter": "util", + "label": "util.parseEnv(content)", + "signature": "`util.parseEnv(content)`", + "apiSymbol": "util.parseEnv", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utilparseenvcontent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:util", + "tests": [] + } + } + }, + { + "id": "util:20336c706a45", + "chapter": "util", + "label": "util.promisify(original)", + "signature": "`util.promisify(original)`", + "apiSymbol": "util.promisify", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utilpromisifyoriginal", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.util.promisify", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util.promisify", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:ba31ff012ecb", + "chapter": "util", + "label": "custom", + "signature": "`custom` Type: {symbol} that can be used to declare custom promisified variants of functions, see [Custom promisified functions][].", + "apiSymbol": "custom", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utilpromisifyoriginal", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:util", + "tests": [] + } + } + }, + { + "id": "util:68de05f1ea3f", + "chapter": "util", + "label": "util.stripVTControlCharacters(str)", + "signature": "`util.stripVTControlCharacters(str)`", + "apiSymbol": "util.stripVTControlCharacters", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utilstripvtcontrolcharactersstr", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util.stripVTControlCharacters", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:f40c6577c367", + "chapter": "util", + "label": "util.styleText(format, text[, options])", + "signature": "`util.styleText(format, text[, options])`", + "apiSymbol": "util.styleText", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utilstyletextformat-text-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util.styleText", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:44d86ef713d0", + "chapter": "util", + "label": "util.toUSVString(string)", + "signature": "`util.toUSVString(string)`", + "apiSymbol": "util.toUSVString", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utiltousvstringstring", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util.toUSVString", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:2658297d94ef", + "chapter": "util", + "label": "util.transferableAbortController()", + "signature": "`util.transferableAbortController()`", + "apiSymbol": "util.transferableAbortController", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utiltransferableabortcontroller", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:util", + "tests": [] + } + } + }, + { + "id": "util:971b69b7898f", + "chapter": "util", + "label": "util.transferableAbortSignal(signal)", + "signature": "`util.transferableAbortSignal(signal)`", + "apiSymbol": "util.transferableAbortSignal", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utiltransferableabortsignalsignal", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:util", + "tests": [] + } + } + }, + { + "id": "util:99a0b30c19e8", + "chapter": "util", + "label": "util.aborted(signal, resource)", + "signature": "`util.aborted(signal, resource)`", + "apiSymbol": "util.aborted", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utilabortedsignal-resource", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:util", + "tests": [] + } + } + }, + { + "id": "util:b8c5646d62e9", + "chapter": "util", + "label": "util.types", + "signature": "`util.types`", + "apiSymbol": "util.types", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utiltypes", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.util.types", + "tests": [ + "tests/corpus/2440-console-inspect-args.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util.types", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:5f818919cfd2", + "chapter": "util", + "label": "util.types.isAnyArrayBuffer(value)", + "signature": "`util.types.isAnyArrayBuffer(value)`", + "apiSymbol": "util.types.isAnyArrayBuffer", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utiltypesisanyarraybuffervalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util/types.isAnyArrayBuffer", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:f7462d53b5cf", + "chapter": "util", + "label": "util.types.isArrayBufferView(value)", + "signature": "`util.types.isArrayBufferView(value)`", + "apiSymbol": "util.types.isArrayBufferView", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utiltypesisarraybufferviewvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util/types.isArrayBufferView", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:b7e4cca84f2c", + "chapter": "util", + "label": "util.types.isArgumentsObject(value)", + "signature": "`util.types.isArgumentsObject(value)`", + "apiSymbol": "util.types.isArgumentsObject", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utiltypesisargumentsobjectvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util/types.isArgumentsObject", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:80257baacc13", + "chapter": "util", + "label": "util.types.isArrayBuffer(value)", + "signature": "`util.types.isArrayBuffer(value)`", + "apiSymbol": "util.types.isArrayBuffer", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utiltypesisarraybuffervalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util/types.isArrayBuffer", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:4588a99a750b", + "chapter": "util", + "label": "util.types.isAsyncFunction(value)", + "signature": "`util.types.isAsyncFunction(value)`", + "apiSymbol": "util.types.isAsyncFunction", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utiltypesisasyncfunctionvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util/types.isAsyncFunction", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:1a1391f825a8", + "chapter": "util", + "label": "util.types.isBigInt64Array(value)", + "signature": "`util.types.isBigInt64Array(value)`", + "apiSymbol": "util.types.isBigInt64Array", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utiltypesisbigint64arrayvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util/types.isBigInt64Array", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:2215dddfe3e9", + "chapter": "util", + "label": "util.types.isBigIntObject(value)", + "signature": "`util.types.isBigIntObject(value)`", + "apiSymbol": "util.types.isBigIntObject", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utiltypesisbigintobjectvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util/types.isBigIntObject", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:58ef9630da34", + "chapter": "util", + "label": "util.types.isBigUint64Array(value)", + "signature": "`util.types.isBigUint64Array(value)`", + "apiSymbol": "util.types.isBigUint64Array", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utiltypesisbiguint64arrayvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util/types.isBigUint64Array", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:944072530679", + "chapter": "util", + "label": "util.types.isBooleanObject(value)", + "signature": "`util.types.isBooleanObject(value)`", + "apiSymbol": "util.types.isBooleanObject", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utiltypesisbooleanobjectvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util/types.isBooleanObject", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:97162ce3f89d", + "chapter": "util", + "label": "util.types.isBoxedPrimitive(value)", + "signature": "`util.types.isBoxedPrimitive(value)`", + "apiSymbol": "util.types.isBoxedPrimitive", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utiltypesisboxedprimitivevalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util/types.isBoxedPrimitive", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:0ddaab7593c6", + "chapter": "util", + "label": "util.types.isCryptoKey(value)", + "signature": "`util.types.isCryptoKey(value)`", + "apiSymbol": "util.types.isCryptoKey", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utiltypesiscryptokeyvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util/types.isCryptoKey", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:f826e5149272", + "chapter": "util", + "label": "util.types.isDataView(value)", + "signature": "`util.types.isDataView(value)`", + "apiSymbol": "util.types.isDataView", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utiltypesisdataviewvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util/types.isDataView", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:e0f4ce425093", + "chapter": "util", + "label": "util.types.isDate(value)", + "signature": "`util.types.isDate(value)`", + "apiSymbol": "util.types.isDate", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utiltypesisdatevalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util/types.isDate", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:059278fd9e52", + "chapter": "util", + "label": "util.types.isExternal(value)", + "signature": "`util.types.isExternal(value)`", + "apiSymbol": "util.types.isExternal", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utiltypesisexternalvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util/types.isExternal", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:4c74e45417c9", + "chapter": "util", + "label": "util.types.isFloat16Array(value)", + "signature": "`util.types.isFloat16Array(value)`", + "apiSymbol": "util.types.isFloat16Array", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utiltypesisfloat16arrayvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util/types.isFloat16Array", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:7b68e7e5edee", + "chapter": "util", + "label": "util.types.isFloat32Array(value)", + "signature": "`util.types.isFloat32Array(value)`", + "apiSymbol": "util.types.isFloat32Array", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utiltypesisfloat32arrayvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util/types.isFloat32Array", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:67a564791906", + "chapter": "util", + "label": "util.types.isFloat64Array(value)", + "signature": "`util.types.isFloat64Array(value)`", + "apiSymbol": "util.types.isFloat64Array", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utiltypesisfloat64arrayvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util/types.isFloat64Array", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:2c261e88374c", + "chapter": "util", + "label": "util.types.isGeneratorFunction(value)", + "signature": "`util.types.isGeneratorFunction(value)`", + "apiSymbol": "util.types.isGeneratorFunction", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utiltypesisgeneratorfunctionvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util/types.isGeneratorFunction", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:42cee0435307", + "chapter": "util", + "label": "util.types.isGeneratorObject(value)", + "signature": "`util.types.isGeneratorObject(value)`", + "apiSymbol": "util.types.isGeneratorObject", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utiltypesisgeneratorobjectvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util/types.isGeneratorObject", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:bd9ee0c3eff8", + "chapter": "util", + "label": "util.types.isInt8Array(value)", + "signature": "`util.types.isInt8Array(value)`", + "apiSymbol": "util.types.isInt8Array", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utiltypesisint8arrayvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util/types.isInt8Array", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:f04083052a6a", + "chapter": "util", + "label": "util.types.isInt16Array(value)", + "signature": "`util.types.isInt16Array(value)`", + "apiSymbol": "util.types.isInt16Array", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utiltypesisint16arrayvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util/types.isInt16Array", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:a17cf34f6269", + "chapter": "util", + "label": "util.types.isInt32Array(value)", + "signature": "`util.types.isInt32Array(value)`", + "apiSymbol": "util.types.isInt32Array", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utiltypesisint32arrayvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util/types.isInt32Array", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:53776684739c", + "chapter": "util", + "label": "util.types.isKeyObject(value)", + "signature": "`util.types.isKeyObject(value)`", + "apiSymbol": "util.types.isKeyObject", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utiltypesiskeyobjectvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util/types.isKeyObject", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:ffaaa4222589", + "chapter": "util", + "label": "util.types.isMap(value)", + "signature": "`util.types.isMap(value)`", + "apiSymbol": "util.types.isMap", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utiltypesismapvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util/types.isMap", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:2b28df049cb8", + "chapter": "util", + "label": "util.types.isMapIterator(value)", + "signature": "`util.types.isMapIterator(value)`", + "apiSymbol": "util.types.isMapIterator", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utiltypesismapiteratorvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util/types.isMapIterator", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:1a05c59a2acc", + "chapter": "util", + "label": "util.types.isModuleNamespaceObject(value)", + "signature": "`util.types.isModuleNamespaceObject(value)`", + "apiSymbol": "util.types.isModuleNamespaceObject", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utiltypesismodulenamespaceobjectvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util/types.isModuleNamespaceObject", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:dc4424e98782", + "chapter": "util", + "label": "util.types.isNativeError(value)", + "signature": "`util.types.isNativeError(value)`", + "apiSymbol": "util.types.isNativeError", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utiltypesisnativeerrorvalue", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Use [`Error.isError`][] instead.", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util/types.isNativeError", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:c68f98fdc84d", + "chapter": "util", + "label": "util.types.isNumberObject(value)", + "signature": "`util.types.isNumberObject(value)`", + "apiSymbol": "util.types.isNumberObject", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utiltypesisnumberobjectvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util/types.isNumberObject", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:5c801a05c712", + "chapter": "util", + "label": "util.types.isPromise(value)", + "signature": "`util.types.isPromise(value)`", + "apiSymbol": "util.types.isPromise", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utiltypesispromisevalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util/types.isPromise", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:9206eadc2af9", + "chapter": "util", + "label": "util.types.isProxy(value)", + "signature": "`util.types.isProxy(value)`", + "apiSymbol": "util.types.isProxy", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utiltypesisproxyvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util/types.isProxy", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:b5bab42e0f57", + "chapter": "util", + "label": "util.types.isRegExp(value)", + "signature": "`util.types.isRegExp(value)`", + "apiSymbol": "util.types.isRegExp", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utiltypesisregexpvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util/types.isRegExp", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:5a9d79d8e96a", + "chapter": "util", + "label": "util.types.isSet(value)", + "signature": "`util.types.isSet(value)`", + "apiSymbol": "util.types.isSet", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utiltypesissetvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util/types.isSet", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:8d7968ea553d", + "chapter": "util", + "label": "util.types.isSetIterator(value)", + "signature": "`util.types.isSetIterator(value)`", + "apiSymbol": "util.types.isSetIterator", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utiltypesissetiteratorvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util/types.isSetIterator", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:621f115c4d8c", + "chapter": "util", + "label": "util.types.isSharedArrayBuffer(value)", + "signature": "`util.types.isSharedArrayBuffer(value)`", + "apiSymbol": "util.types.isSharedArrayBuffer", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utiltypesissharedarraybuffervalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util/types.isSharedArrayBuffer", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:af2bae35355e", + "chapter": "util", + "label": "util.types.isStringObject(value)", + "signature": "`util.types.isStringObject(value)`", + "apiSymbol": "util.types.isStringObject", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utiltypesisstringobjectvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util/types.isStringObject", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:bd1401ec94ca", + "chapter": "util", + "label": "util.types.isSymbolObject(value)", + "signature": "`util.types.isSymbolObject(value)`", + "apiSymbol": "util.types.isSymbolObject", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utiltypesissymbolobjectvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util/types.isSymbolObject", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:2fbd77d0441e", + "chapter": "util", + "label": "util.types.isTypedArray(value)", + "signature": "`util.types.isTypedArray(value)`", + "apiSymbol": "util.types.isTypedArray", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utiltypesistypedarrayvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util/types.isTypedArray", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:d5064fec568b", + "chapter": "util", + "label": "util.types.isUint8Array(value)", + "signature": "`util.types.isUint8Array(value)`", + "apiSymbol": "util.types.isUint8Array", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utiltypesisuint8arrayvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util/types.isUint8Array", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:da34ad808940", + "chapter": "util", + "label": "util.types.isUint8ClampedArray(value)", + "signature": "`util.types.isUint8ClampedArray(value)`", + "apiSymbol": "util.types.isUint8ClampedArray", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utiltypesisuint8clampedarrayvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util/types.isUint8ClampedArray", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:6365536b8e03", + "chapter": "util", + "label": "util.types.isUint16Array(value)", + "signature": "`util.types.isUint16Array(value)`", + "apiSymbol": "util.types.isUint16Array", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utiltypesisuint16arrayvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util/types.isUint16Array", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:e204c2cc61e7", + "chapter": "util", + "label": "util.types.isUint32Array(value)", + "signature": "`util.types.isUint32Array(value)`", + "apiSymbol": "util.types.isUint32Array", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utiltypesisuint32arrayvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util/types.isUint32Array", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:a3da7a9547e8", + "chapter": "util", + "label": "util.types.isWeakMap(value)", + "signature": "`util.types.isWeakMap(value)`", + "apiSymbol": "util.types.isWeakMap", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utiltypesisweakmapvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util/types.isWeakMap", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "util:7882c2e6f505", + "chapter": "util", + "label": "util.types.isWeakSet(value)", + "signature": "`util.types.isWeakSet(value)`", + "apiSymbol": "util.types.isWeakSet", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/util.html#utiltypesisweaksetvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:util", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:util/types.isWeakSet", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + } + } + }, + { + "id": "v8:08165517e173", + "chapter": "v8", + "label": "v8.Serializer", + "signature": "Class: `v8.Serializer`", + "apiSymbol": "v8.Serializer", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#class-v8serializer", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:v8.Serializer", + "tests": [] + } + } + }, + { + "id": "v8:be3c50e16904", + "chapter": "v8", + "label": "serializer.writeHeader()", + "signature": "`serializer.writeHeader()`", + "apiSymbol": "serializer.writeHeader", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#serializerwriteheader", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:v8", + "tests": [] + } + } + }, + { + "id": "v8:e83e447b3793", + "chapter": "v8", + "label": "serializer.writeValue(value)", + "signature": "`serializer.writeValue(value)`", + "apiSymbol": "serializer.writeValue", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#serializerwritevaluevalue", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:v8", + "tests": [] + } + } + }, + { + "id": "v8:9b7b89a006eb", + "chapter": "v8", + "label": "serializer.releaseBuffer()", + "signature": "`serializer.releaseBuffer()`", + "apiSymbol": "serializer.releaseBuffer", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#serializerreleasebuffer", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:v8", + "tests": [] + } + } + }, + { + "id": "v8:1aa4a4cf4830", + "chapter": "v8", + "label": "serializer.transferArrayBuffer(id, arrayBuffer)", + "signature": "`serializer.transferArrayBuffer(id, arrayBuffer)`", + "apiSymbol": "serializer.transferArrayBuffer", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#serializertransferarraybufferid-arraybuffer", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:v8", + "tests": [] + } + } + }, + { + "id": "v8:8d8d18401d8c", + "chapter": "v8", + "label": "serializer.writeUint32(value)", + "signature": "`serializer.writeUint32(value)`", + "apiSymbol": "serializer.writeUint32", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#serializerwriteuint32value", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:v8", + "tests": [] + } + } + }, + { + "id": "v8:777dc44901f3", + "chapter": "v8", + "label": "serializer.writeUint64(hi, lo)", + "signature": "`serializer.writeUint64(hi, lo)`", + "apiSymbol": "serializer.writeUint64", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#serializerwriteuint64hi-lo", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:v8", + "tests": [] + } + } + }, + { + "id": "v8:257b111bd961", + "chapter": "v8", + "label": "serializer.writeDouble(value)", + "signature": "`serializer.writeDouble(value)`", + "apiSymbol": "serializer.writeDouble", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#serializerwritedoublevalue", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:v8", + "tests": [] + } + } + }, + { + "id": "v8:233b3d4fa84b", + "chapter": "v8", + "label": "serializer.writeRawBytes(buffer)", + "signature": "`serializer.writeRawBytes(buffer)`", + "apiSymbol": "serializer.writeRawBytes", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#serializerwriterawbytesbuffer", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:v8", + "tests": [] + } + } + }, + { + "id": "v8:fa0025599d00", + "chapter": "v8", + "label": "serializer._writeHostObject(object)", + "signature": "`serializer._writeHostObject(object)`", + "apiSymbol": "serializer._writeHostObject", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#serializer_writehostobjectobject", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:v8", + "tests": [] + } + } + }, + { + "id": "v8:72e4ab697f8e", + "chapter": "v8", + "label": "serializer._getDataCloneError(message)", + "signature": "`serializer._getDataCloneError(message)`", + "apiSymbol": "serializer._getDataCloneError", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#serializer_getdatacloneerrormessage", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:v8", + "tests": [] + } + } + }, + { + "id": "v8:440c5e4f9662", + "chapter": "v8", + "label": "serializer._getSharedArrayBufferId(sharedArrayBuffer)", + "signature": "`serializer._getSharedArrayBufferId(sharedArrayBuffer)`", + "apiSymbol": "serializer._getSharedArrayBufferId", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#serializer_getsharedarraybufferidsharedarraybuffer", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:v8", + "tests": [] + } + } + }, + { + "id": "v8:22924147a44d", + "chapter": "v8", + "label": "serializer._setTreatArrayBufferViewsAsHostObjects(flag)", + "signature": "`serializer._setTreatArrayBufferViewsAsHostObjects(flag)`", + "apiSymbol": "serializer._setTreatArrayBufferViewsAsHostObjects", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#serializer_settreatarraybufferviewsashostobjectsflag", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:v8", + "tests": [] + } + } + }, + { + "id": "v8:c27acaea5ad5", + "chapter": "v8", + "label": "v8.Deserializer", + "signature": "Class: `v8.Deserializer`", + "apiSymbol": "v8.Deserializer", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#class-v8deserializer", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:v8.Deserializer", + "tests": [] + } + } + }, + { + "id": "v8:327881d87485", + "chapter": "v8", + "label": "deserializer.readHeader()", + "signature": "`deserializer.readHeader()`", + "apiSymbol": "deserializer.readHeader", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#deserializerreadheader", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:v8", + "tests": [] + } + } + }, + { + "id": "v8:46cc71c5745f", + "chapter": "v8", + "label": "deserializer.readValue()", + "signature": "`deserializer.readValue()`", + "apiSymbol": "deserializer.readValue", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#deserializerreadvalue", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:v8", + "tests": [] + } + } + }, + { + "id": "v8:6146c1a43932", + "chapter": "v8", + "label": "deserializer.transferArrayBuffer(id, arrayBuffer)", + "signature": "`deserializer.transferArrayBuffer(id, arrayBuffer)`", + "apiSymbol": "deserializer.transferArrayBuffer", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#deserializertransferarraybufferid-arraybuffer", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:v8", + "tests": [] + } + } + }, + { + "id": "v8:a0904e28ffb3", + "chapter": "v8", + "label": "deserializer.getWireFormatVersion()", + "signature": "`deserializer.getWireFormatVersion()`", + "apiSymbol": "deserializer.getWireFormatVersion", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#deserializergetwireformatversion", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:v8", + "tests": [] + } + } + }, + { + "id": "v8:70dda0b073d0", + "chapter": "v8", + "label": "deserializer.readUint32()", + "signature": "`deserializer.readUint32()`", + "apiSymbol": "deserializer.readUint32", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#deserializerreaduint32", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:v8", + "tests": [] + } + } + }, + { + "id": "v8:a12c0c06fca5", + "chapter": "v8", + "label": "deserializer.readUint64()", + "signature": "`deserializer.readUint64()`", + "apiSymbol": "deserializer.readUint64", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#deserializerreaduint64", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:v8", + "tests": [] + } + } + }, + { + "id": "v8:9d73521d5703", + "chapter": "v8", + "label": "deserializer.readDouble()", + "signature": "`deserializer.readDouble()`", + "apiSymbol": "deserializer.readDouble", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#deserializerreaddouble", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:v8", + "tests": [] + } + } + }, + { + "id": "v8:e96dcb87cc28", + "chapter": "v8", + "label": "deserializer.readRawBytes(length)", + "signature": "`deserializer.readRawBytes(length)`", + "apiSymbol": "deserializer.readRawBytes", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#deserializerreadrawbyteslength", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:v8", + "tests": [] + } + } + }, + { + "id": "v8:4d9a79662cd3", + "chapter": "v8", + "label": "deserializer._readHostObject()", + "signature": "`deserializer._readHostObject()`", + "apiSymbol": "deserializer._readHostObject", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#deserializer_readhostobject", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:v8", + "tests": [] + } + } + }, + { + "id": "v8:4de0cb167b88", + "chapter": "v8", + "label": "v8.DefaultSerializer", + "signature": "Class: `v8.DefaultSerializer`", + "apiSymbol": "v8.DefaultSerializer", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#class-v8defaultserializer", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:v8.DefaultSerializer", + "tests": [] + } + } + }, + { + "id": "v8:dabaa0ff5816", + "chapter": "v8", + "label": "v8.DefaultDeserializer", + "signature": "Class: `v8.DefaultDeserializer`", + "apiSymbol": "v8.DefaultDeserializer", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#class-v8defaultdeserializer", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:v8.DefaultDeserializer", + "tests": [] + } + } + }, + { + "id": "v8:874a94dcddd3", + "chapter": "v8", + "label": "v8.serialize(value)", + "signature": "`v8.serialize(value)`", + "apiSymbol": "v8.serialize", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#v8serializevalue", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:v8.serialize", + "tests": [] + } + } + }, + { + "id": "v8:9a2b32a9ff44", + "chapter": "v8", + "label": "v8.deserialize(buffer)", + "signature": "`v8.deserialize(buffer)`", + "apiSymbol": "v8.deserialize", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#v8deserializebuffer", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:v8.deserialize", + "tests": [] + } + } + }, + { + "id": "v8:7db5baf46842", + "chapter": "v8", + "label": "init(promise, parent)", + "signature": "`init(promise, parent)`", + "apiSymbol": "init", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#initpromise-parent", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:v8", + "tests": [] + } + } + }, + { + "id": "v8:0934b2fc357d", + "chapter": "v8", + "label": "before(promise)", + "signature": "`before(promise)`", + "apiSymbol": "before", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#beforepromise", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:before", + "tests": [ + "tests/harness/node-test.test.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:v8", + "tests": [] + } + } + }, + { + "id": "v8:4af986a35174", + "chapter": "v8", + "label": "after(promise)", + "signature": "`after(promise)`", + "apiSymbol": "after", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#afterpromise", + "nodeStability": null, + "priority": "normal", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "compiler-dedicated:after", + "tests": [ + "tests/harness/node-test.test.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:v8", + "tests": [] + } + } + }, + { + "id": "v8:f2ada5cff228", + "chapter": "v8", + "label": "settled(promise)", + "signature": "`settled(promise)`", + "apiSymbol": "settled", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#settledpromise", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:v8", + "tests": [] + } + } + }, + { + "id": "v8:a171bf064efc", + "chapter": "v8", + "label": "promiseHooks.onInit(init)", + "signature": "`promiseHooks.onInit(init)`", + "apiSymbol": "promiseHooks.onInit", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#promisehooksoninitinit", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:v8", + "tests": [] + } + } + }, + { + "id": "v8:6a3e3598e903", + "chapter": "v8", + "label": "promiseHooks.onSettled(settled)", + "signature": "`promiseHooks.onSettled(settled)`", + "apiSymbol": "promiseHooks.onSettled", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#promisehooksonsettledsettled", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:v8", + "tests": [] + } + } + }, + { + "id": "v8:808ed425935d", + "chapter": "v8", + "label": "promiseHooks.onBefore(before)", + "signature": "`promiseHooks.onBefore(before)`", + "apiSymbol": "promiseHooks.onBefore", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#promisehooksonbeforebefore", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:v8", + "tests": [] + } + } + }, + { + "id": "v8:67105b6f273d", + "chapter": "v8", + "label": "promiseHooks.onAfter(after)", + "signature": "`promiseHooks.onAfter(after)`", + "apiSymbol": "promiseHooks.onAfter", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#promisehooksonafterafter", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:v8", + "tests": [] + } + } + }, + { + "id": "v8:edc4a34c3f4a", + "chapter": "v8", + "label": "promiseHooks.createHook(callbacks)", + "signature": "`promiseHooks.createHook(callbacks)`", + "apiSymbol": "promiseHooks.createHook", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#promisehookscreatehookcallbacks", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:v8", + "tests": [] + } + } + }, + { + "id": "v8:c63bdf0a4f00", + "chapter": "v8", + "label": "v8.startupSnapshot.addSerializeCallback(callback[, data])", + "signature": "`v8.startupSnapshot.addSerializeCallback(callback[, data])`", + "apiSymbol": "v8.startupSnapshot.addSerializeCallback", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#v8startupsnapshotaddserializecallbackcallback-data", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:v8", + "tests": [] + } + } + }, + { + "id": "v8:f98660318efb", + "chapter": "v8", + "label": "v8.startupSnapshot.addDeserializeCallback(callback[, data])", + "signature": "`v8.startupSnapshot.addDeserializeCallback(callback[, data])`", + "apiSymbol": "v8.startupSnapshot.addDeserializeCallback", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#v8startupsnapshotadddeserializecallbackcallback-data", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:v8", + "tests": [] + } + } + }, + { + "id": "v8:f77fb1c01d1c", + "chapter": "v8", + "label": "v8.startupSnapshot.setDeserializeMainFunction(callback[, data])", + "signature": "`v8.startupSnapshot.setDeserializeMainFunction(callback[, data])`", + "apiSymbol": "v8.startupSnapshot.setDeserializeMainFunction", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#v8startupsnapshotsetdeserializemainfunctioncallback-data", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:v8", + "tests": [] + } + } + }, + { + "id": "v8:40e4e62a4579", + "chapter": "v8", + "label": "v8.startupSnapshot.isBuildingSnapshot()", + "signature": "`v8.startupSnapshot.isBuildingSnapshot()`", + "apiSymbol": "v8.startupSnapshot.isBuildingSnapshot", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#v8startupsnapshotisbuildingsnapshot", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:v8", + "tests": [] + } + } + }, + { + "id": "v8:8e779fd7ced3", + "chapter": "v8", + "label": "v8.GCProfiler", + "signature": "Class: `v8.GCProfiler`", + "apiSymbol": "v8.GCProfiler", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#class-v8gcprofiler", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:v8.GCProfiler", + "tests": [] + } + } + }, + { + "id": "v8:f3a5ad68d220", + "chapter": "v8", + "label": "profiler.start()", + "signature": "`profiler.start()`", + "apiSymbol": "profiler.start", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#profilerstart", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:v8", + "tests": [] + } + } + }, + { + "id": "v8:ada5ab4b0279", + "chapter": "v8", + "label": "profiler.stop()", + "signature": "`profiler.stop()`", + "apiSymbol": "profiler.stop", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#profilerstop", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:v8", + "tests": [] + } + } + }, + { + "id": "v8:502f365c722d", + "chapter": "v8", + "label": "profiler[Symbol.dispose]()", + "signature": "`profiler[Symbol.dispose]()`", + "apiSymbol": "profiler", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#profilersymboldispose", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:v8", + "tests": [] + } + } + }, + { + "id": "v8:546aaef1cfca", + "chapter": "v8", + "label": "SyncCPUProfileHandle", + "signature": "Class: `SyncCPUProfileHandle`", + "apiSymbol": "SyncCPUProfileHandle", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#class-synccpuprofilehandle", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:v8", + "tests": [] + } + } + }, + { + "id": "v8:09427b420c94", + "chapter": "v8", + "label": "syncCpuProfileHandle.stop()", + "signature": "`syncCpuProfileHandle.stop()`", + "apiSymbol": "syncCpuProfileHandle.stop", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#synccpuprofilehandlestop", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:v8", + "tests": [] + } + } + }, + { + "id": "v8:27e7bdd56e06", + "chapter": "v8", + "label": "syncCpuProfileHandle[Symbol.dispose]()", + "signature": "`syncCpuProfileHandle[Symbol.dispose]()`", + "apiSymbol": "syncCpuProfileHandle", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#synccpuprofilehandlesymboldispose", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:v8", + "tests": [] + } + } + }, + { + "id": "v8:2bc72f743fb7", + "chapter": "v8", + "label": "CPUProfileHandle", + "signature": "Class: `CPUProfileHandle`", + "apiSymbol": "CPUProfileHandle", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#class-cpuprofilehandle", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:v8", + "tests": [] + } + } + }, + { + "id": "v8:209dae35fe48", + "chapter": "v8", + "label": "cpuProfileHandle.stop()", + "signature": "`cpuProfileHandle.stop()`", + "apiSymbol": "cpuProfileHandle.stop", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#cpuprofilehandlestop", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:v8", + "tests": [] + } + } + }, + { + "id": "v8:82d5d47161c2", + "chapter": "v8", + "label": "cpuProfileHandle[Symbol.asyncDispose]()", + "signature": "`cpuProfileHandle[Symbol.asyncDispose]()`", + "apiSymbol": "cpuProfileHandle", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#cpuprofilehandlesymbolasyncdispose", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:v8", + "tests": [] + } + } + }, + { + "id": "v8:27a59816a32b", + "chapter": "v8", + "label": "HeapProfileHandle", + "signature": "Class: `HeapProfileHandle`", + "apiSymbol": "HeapProfileHandle", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#class-heapprofilehandle", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:v8", + "tests": [] + } + } + }, + { + "id": "v8:1cb2fac526b6", + "chapter": "v8", + "label": "heapProfileHandle.stop()", + "signature": "`heapProfileHandle.stop()`", + "apiSymbol": "heapProfileHandle.stop", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#heapprofilehandlestop", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:v8", + "tests": [] + } + } + }, + { + "id": "v8:5ec7010fd6f4", + "chapter": "v8", + "label": "heapProfileHandle[Symbol.asyncDispose]()", + "signature": "`heapProfileHandle[Symbol.asyncDispose]()`", + "apiSymbol": "heapProfileHandle", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#heapprofilehandlesymbolasyncdispose", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:v8", + "tests": [] + } + } + }, + { + "id": "v8:d94fda515345", + "chapter": "v8", + "label": "v8.cachedDataVersionTag()", + "signature": "`v8.cachedDataVersionTag()`", + "apiSymbol": "v8.cachedDataVersionTag", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#v8cacheddataversiontag", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:v8.cachedDataVersionTag", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "v8:8fe0f6defa40", + "chapter": "v8", + "label": "v8.getHeapCodeStatistics()", + "signature": "`v8.getHeapCodeStatistics()`", + "apiSymbol": "v8.getHeapCodeStatistics", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#v8getheapcodestatistics", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:v8.getHeapCodeStatistics", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "v8:fb1c9af2dace", + "chapter": "v8", + "label": "v8.getHeapSnapshot([options])", + "signature": "`v8.getHeapSnapshot([options])`", + "apiSymbol": "v8.getHeapSnapshot", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#v8getheapsnapshotoptions", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:v8.getHeapSnapshot", + "tests": [] + } + } + }, + { + "id": "v8:6b8bee67a167", + "chapter": "v8", + "label": "v8.getHeapSpaceStatistics()", + "signature": "`v8.getHeapSpaceStatistics()`", + "apiSymbol": "v8.getHeapSpaceStatistics", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#v8getheapspacestatistics", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:v8.getHeapSpaceStatistics", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "v8:cefde4a8297c", + "chapter": "v8", + "label": "v8.getHeapStatistics()", + "signature": "`v8.getHeapStatistics()`", + "apiSymbol": "v8.getHeapStatistics", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#v8getheapstatistics", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:v8.getHeapStatistics", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "v8:1c4ee81cc630", + "chapter": "v8", + "label": "v8.getCppHeapStatistics([detailLevel])", + "signature": "`v8.getCppHeapStatistics([detailLevel])`", + "apiSymbol": "v8.getCppHeapStatistics", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#v8getcppheapstatisticsdetaillevel", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:v8.getCppHeapStatistics", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "v8:3bc7c8e3907e", + "chapter": "v8", + "label": "v8.queryObjects(ctor[, options])", + "signature": "`v8.queryObjects(ctor[, options])`", + "apiSymbol": "v8.queryObjects", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#v8queryobjectsctor-options", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:v8.queryObjects", + "tests": [] + } + } + }, + { + "id": "v8:bf333a0a413f", + "chapter": "v8", + "label": "v8.setFlagsFromString(flags)", + "signature": "`v8.setFlagsFromString(flags)`", + "apiSymbol": "v8.setFlagsFromString", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#v8setflagsfromstringflags", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:v8.setFlagsFromString", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "v8:25869b6020c1", + "chapter": "v8", + "label": "v8.stopCoverage()", + "signature": "`v8.stopCoverage()`", + "apiSymbol": "v8.stopCoverage", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#v8stopcoverage", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:v8.stopCoverage", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "v8:938d404a4307", + "chapter": "v8", + "label": "v8.takeCoverage()", + "signature": "`v8.takeCoverage()`", + "apiSymbol": "v8.takeCoverage", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#v8takecoverage", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:v8.takeCoverage", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "v8:8ea497243f60", + "chapter": "v8", + "label": "v8.writeHeapSnapshot([filename[,options]])", + "signature": "`v8.writeHeapSnapshot([filename[,options]])`", + "apiSymbol": "v8.writeHeapSnapshot", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#v8writeheapsnapshotfilenameoptions", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:v8.writeHeapSnapshot", + "tests": [] + } + } + }, + { + "id": "v8:a53c96b58d52", + "chapter": "v8", + "label": "v8.setHeapSnapshotNearHeapLimit(limit)", + "signature": "`v8.setHeapSnapshotNearHeapLimit(limit)`", + "apiSymbol": "v8.setHeapSnapshotNearHeapLimit", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#v8setheapsnapshotnearheaplimitlimit", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:v8.setHeapSnapshotNearHeapLimit", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + } + } + }, + { + "id": "v8:4696ce9fd4f6", + "chapter": "v8", + "label": "v8.isStringOneByteRepresentation(content)", + "signature": "`v8.isStringOneByteRepresentation(content)`", + "apiSymbol": "v8.isStringOneByteRepresentation", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#v8isstringonebyterepresentationcontent", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:v8.isStringOneByteRepresentation", + "tests": [] + } + } + }, + { + "id": "v8:d6acc1d6c6bf", + "chapter": "v8", + "label": "v8.startCpuProfile()", + "signature": "`v8.startCpuProfile()`", + "apiSymbol": "v8.startCpuProfile", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/v8.html#v8startcpuprofile", + "nodeStability": null, + "priority": "normal", + "tiers": { + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:v8.startCpuProfile", + "tests": [] + } + } + }, + { + "id": "webcrypto:22408f834c48", + "chapter": "webcrypto", + "label": "Algorithm", + "signature": "Class: `Algorithm`", + "apiSymbol": "Algorithm", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-algorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:7eadae89e743", + "chapter": "webcrypto", + "label": "name", + "signature": "`name` Type: {string}", + "apiSymbol": "name", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-algorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:0838047675cb", + "chapter": "webcrypto", + "label": "AeadParams", + "signature": "Class: `AeadParams`", + "apiSymbol": "AeadParams", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-aeadparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:50702da22ffd", + "chapter": "webcrypto", + "label": "additionalData", + "signature": "`additionalData` Type: {ArrayBuffer|TypedArray|DataView|Buffer|undefined}", + "apiSymbol": "additionalData", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-aeadparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:e75aab58d6c8", + "chapter": "webcrypto", + "label": "iv", + "signature": "`iv` Type: {ArrayBuffer|TypedArray|DataView|Buffer}", + "apiSymbol": "iv", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-aeadparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:0333a8dda5d1", + "chapter": "webcrypto", + "label": "name", + "signature": "`name` Type: {string} Must be `'AES-GCM'`, `'AES-OCB'`, or `'ChaCha20-Poly1305'`.", + "apiSymbol": "name", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-aeadparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:b3e75c3019ba", + "chapter": "webcrypto", + "label": "tagLength", + "signature": "`tagLength` Type: {number} The size in bits of the generated authentication tag.", + "apiSymbol": "tagLength", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-aeadparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:48811cf17cfa", + "chapter": "webcrypto", + "label": "AesDerivedKeyParams", + "signature": "Class: `AesDerivedKeyParams`", + "apiSymbol": "AesDerivedKeyParams", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-aesderivedkeyparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:b193e8d32c23", + "chapter": "webcrypto", + "label": "name", + "signature": "`name` Type: {string} Must be one of `'AES-CBC'`, `'AES-CTR'`, `'AES-GCM'`, `'AES-OCB'`, or `'AES-KW'`", + "apiSymbol": "name", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-aesderivedkeyparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:69e1a5a7db43", + "chapter": "webcrypto", + "label": "length", + "signature": "`length` Type: {number}", + "apiSymbol": "length", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-aesderivedkeyparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:eaef86826519", + "chapter": "webcrypto", + "label": "AesCbcParams", + "signature": "Class: `AesCbcParams`", + "apiSymbol": "AesCbcParams", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-aescbcparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:138cbab42828", + "chapter": "webcrypto", + "label": "iv", + "signature": "`iv` Type: {ArrayBuffer|TypedArray|DataView|Buffer}", + "apiSymbol": "iv", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-aescbcparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:c69773570396", + "chapter": "webcrypto", + "label": "name", + "signature": "`name` Type: {string} Must be `'AES-CBC'`.", + "apiSymbol": "name", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-aescbcparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:e7027d8028f4", + "chapter": "webcrypto", + "label": "AesCtrParams", + "signature": "Class: `AesCtrParams`", + "apiSymbol": "AesCtrParams", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-aesctrparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:8bebfb11721e", + "chapter": "webcrypto", + "label": "counter", + "signature": "`counter` Type: {ArrayBuffer|TypedArray|DataView|Buffer}", + "apiSymbol": "counter", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-aesctrparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:77f064717864", + "chapter": "webcrypto", + "label": "length", + "signature": "`length` Type: {number} The number of bits in the `aesCtrParams.counter` that are to be used as the counter.", + "apiSymbol": "length", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-aesctrparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:e6832733595a", + "chapter": "webcrypto", + "label": "name", + "signature": "`name` Type: {string} Must be `'AES-CTR'`.", + "apiSymbol": "name", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-aesctrparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:45b2ac15b614", + "chapter": "webcrypto", + "label": "AesKeyAlgorithm", + "signature": "Class: `AesKeyAlgorithm`", + "apiSymbol": "AesKeyAlgorithm", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-aeskeyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:63fff0b82f63", + "chapter": "webcrypto", + "label": "length", + "signature": "`length` Type: {number}", + "apiSymbol": "length", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-aeskeyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:348d95ce69f6", + "chapter": "webcrypto", + "label": "name", + "signature": "`name` Type: {string}", + "apiSymbol": "name", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-aeskeyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:807d27037729", + "chapter": "webcrypto", + "label": "AesKeyGenParams", + "signature": "Class: `AesKeyGenParams`", + "apiSymbol": "AesKeyGenParams", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-aeskeygenparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:b202617b42b7", + "chapter": "webcrypto", + "label": "length", + "signature": "`length` Type: {number}", + "apiSymbol": "length", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-aeskeygenparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:39c15478d272", + "chapter": "webcrypto", + "label": "name", + "signature": "`name` Type: {string} Must be one of `'AES-CBC'`, `'AES-CTR'`, `'AES-GCM'`, or `'AES-KW'`", + "apiSymbol": "name", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-aeskeygenparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:f773f19f63d3", + "chapter": "webcrypto", + "label": "Argon2Params", + "signature": "Class: `Argon2Params`", + "apiSymbol": "Argon2Params", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-argon2params", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:61a8dbee60c6", + "chapter": "webcrypto", + "label": "associatedData", + "signature": "`associatedData` Type: {ArrayBuffer|TypedArray|DataView|Buffer}", + "apiSymbol": "associatedData", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-argon2params", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:335fe3f84ab1", + "chapter": "webcrypto", + "label": "memory", + "signature": "`memory` Type: {number}", + "apiSymbol": "memory", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-argon2params", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:99bfa63e81fa", + "chapter": "webcrypto", + "label": "name", + "signature": "`name` Type: {string} Must be one of `'Argon2d'`, `'Argon2i'`, or `'Argon2id'`.", + "apiSymbol": "name", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-argon2params", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:3cbc73658fc9", + "chapter": "webcrypto", + "label": "nonce", + "signature": "`nonce` Type: {ArrayBuffer|TypedArray|DataView|Buffer}", + "apiSymbol": "nonce", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-argon2params", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:3ac95db0f61d", + "chapter": "webcrypto", + "label": "parallelism", + "signature": "`parallelism` Type: {number}", + "apiSymbol": "parallelism", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-argon2params", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:b44e7befb0d2", + "chapter": "webcrypto", + "label": "passes", + "signature": "`passes` Type: {number}", + "apiSymbol": "passes", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-argon2params", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:df18d96404e2", + "chapter": "webcrypto", + "label": "secretValue", + "signature": "`secretValue` Type: {ArrayBuffer|TypedArray|DataView|Buffer}", + "apiSymbol": "secretValue", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-argon2params", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:c51c271a37d1", + "chapter": "webcrypto", + "label": "version", + "signature": "`version` Type: {number}", + "apiSymbol": "version", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-argon2params", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:5ae61ae36acb", + "chapter": "webcrypto", + "label": "ContextParams", + "signature": "Class: `ContextParams`", + "apiSymbol": "ContextParams", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-contextparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:348599f69c92", + "chapter": "webcrypto", + "label": "name", + "signature": "`name` Type: {string} Must be `Ed448`[^secure-curves], `'ML-DSA-44'`[^modern-algos], `'ML-DSA-65'`[^modern-algos], or `'ML-DSA-87'`[^modern-algos].", + "apiSymbol": "name", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-contextparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:523c55e40c6c", + "chapter": "webcrypto", + "label": "context", + "signature": "`context` Type: {ArrayBuffer|TypedArray|DataView|Buffer|undefined}", + "apiSymbol": "context", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-contextparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:5bd580037f8a", + "chapter": "webcrypto", + "label": "CShakeParams", + "signature": "Class: `CShakeParams`", + "apiSymbol": "CShakeParams", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-cshakeparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:e97ed4559769", + "chapter": "webcrypto", + "label": "name", + "signature": "`name` Type: {string} Must be `'cSHAKE128'`[^modern-algos] or `'cSHAKE256'`[^modern-algos]", + "apiSymbol": "name", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-cshakeparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:9eeb331c7228", + "chapter": "webcrypto", + "label": "outputLength", + "signature": "`outputLength` Type: {number} represents the requested output length in bits.", + "apiSymbol": "outputLength", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-cshakeparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:a1e675d9f4ab", + "chapter": "webcrypto", + "label": "functionName", + "signature": "`functionName` Type: {ArrayBuffer|TypedArray|DataView|Buffer|undefined}", + "apiSymbol": "functionName", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-cshakeparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:8f366eb6399d", + "chapter": "webcrypto", + "label": "customization", + "signature": "`customization` Type: {ArrayBuffer|TypedArray|DataView|Buffer|undefined}", + "apiSymbol": "customization", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-cshakeparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:50a50402140c", + "chapter": "webcrypto", + "label": "EcdhKeyDeriveParams", + "signature": "Class: `EcdhKeyDeriveParams`", + "apiSymbol": "EcdhKeyDeriveParams", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-ecdhkeyderiveparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:2db66a4350e1", + "chapter": "webcrypto", + "label": "name", + "signature": "`name` Type: {string} Must be `'ECDH'`, `'X25519'`, or `'X448'`[^secure-curves].", + "apiSymbol": "name", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-ecdhkeyderiveparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:edc888ed5611", + "chapter": "webcrypto", + "label": "public", + "signature": "`public` Type: {CryptoKey}", + "apiSymbol": "public", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-ecdhkeyderiveparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:e4d4304bdc1a", + "chapter": "webcrypto", + "label": "EcdsaParams", + "signature": "Class: `EcdsaParams`", + "apiSymbol": "EcdsaParams", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-ecdsaparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:df2d5f40d092", + "chapter": "webcrypto", + "label": "hash", + "signature": "`hash` Type: {string|Algorithm}", + "apiSymbol": "hash", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-ecdsaparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.crypto.hash", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:crypto.hash", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + } + } + }, + { + "id": "webcrypto:4944a160092e", + "chapter": "webcrypto", + "label": "name", + "signature": "`name` Type: {string} Must be `'ECDSA'`.", + "apiSymbol": "name", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-ecdsaparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:c1b95c7fa392", + "chapter": "webcrypto", + "label": "EcKeyAlgorithm", + "signature": "Class: `EcKeyAlgorithm`", + "apiSymbol": "EcKeyAlgorithm", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-eckeyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:fff4023e69d0", + "chapter": "webcrypto", + "label": "name", + "signature": "`name` Type: {string}", + "apiSymbol": "name", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-eckeyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:b9a97598a9e6", + "chapter": "webcrypto", + "label": "namedCurve", + "signature": "`namedCurve` Type: {string}", + "apiSymbol": "namedCurve", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-eckeyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:7febcc526494", + "chapter": "webcrypto", + "label": "EcKeyGenParams", + "signature": "Class: `EcKeyGenParams`", + "apiSymbol": "EcKeyGenParams", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-eckeygenparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:d97f7cfb4905", + "chapter": "webcrypto", + "label": "name", + "signature": "`name` Type: {string} Must be one of `'ECDSA'` or `'ECDH'`.", + "apiSymbol": "name", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-eckeygenparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:ff601e861741", + "chapter": "webcrypto", + "label": "namedCurve", + "signature": "`namedCurve` Type: {string} Must be one of `'P-256'`, `'P-384'`, `'P-521'`.", + "apiSymbol": "namedCurve", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-eckeygenparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:b652472193a8", + "chapter": "webcrypto", + "label": "EcKeyImportParams", + "signature": "Class: `EcKeyImportParams`", + "apiSymbol": "EcKeyImportParams", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-eckeyimportparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:ff27302b6c60", + "chapter": "webcrypto", + "label": "name", + "signature": "`name` Type: {string} Must be one of `'ECDSA'` or `'ECDH'`.", + "apiSymbol": "name", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-eckeyimportparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:ae8f851e9778", + "chapter": "webcrypto", + "label": "namedCurve", + "signature": "`namedCurve` Type: {string} Must be one of `'P-256'`, `'P-384'`, `'P-521'`.", + "apiSymbol": "namedCurve", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-eckeyimportparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:2d22a4d22d97", + "chapter": "webcrypto", + "label": "EncapsulatedBits", + "signature": "Class: `EncapsulatedBits`", + "apiSymbol": "EncapsulatedBits", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-encapsulatedbits", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:73e49fc03082", + "chapter": "webcrypto", + "label": "ciphertext", + "signature": "`ciphertext` Type: {ArrayBuffer}", + "apiSymbol": "ciphertext", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-encapsulatedbits", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:0f48c646ae11", + "chapter": "webcrypto", + "label": "sharedKey", + "signature": "`sharedKey` Type: {ArrayBuffer}", + "apiSymbol": "sharedKey", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-encapsulatedbits", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:8d1384ed7e4e", + "chapter": "webcrypto", + "label": "EncapsulatedKey", + "signature": "Class: `EncapsulatedKey`", + "apiSymbol": "EncapsulatedKey", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-encapsulatedkey", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:1e3b9c935c99", + "chapter": "webcrypto", + "label": "ciphertext", + "signature": "`ciphertext` Type: {ArrayBuffer}", + "apiSymbol": "ciphertext", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-encapsulatedkey", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:61dd816cbafb", + "chapter": "webcrypto", + "label": "sharedKey", + "signature": "`sharedKey` Type: {CryptoKey}", + "apiSymbol": "sharedKey", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-encapsulatedkey", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:1954c2f5855a", + "chapter": "webcrypto", + "label": "HkdfParams", + "signature": "Class: `HkdfParams`", + "apiSymbol": "HkdfParams", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-hkdfparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:4e5f36081fb9", + "chapter": "webcrypto", + "label": "hash", + "signature": "`hash` Type: {string|Algorithm}", + "apiSymbol": "hash", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-hkdfparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.crypto.hash", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:crypto.hash", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + } + } + }, + { + "id": "webcrypto:a8e569964fa0", + "chapter": "webcrypto", + "label": "info", + "signature": "`info` Type: {ArrayBuffer|TypedArray|DataView|Buffer}", + "apiSymbol": "info", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-hkdfparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:3d78b0f2f97b", + "chapter": "webcrypto", + "label": "name", + "signature": "`name` Type: {string} Must be `'HKDF'`.", + "apiSymbol": "name", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-hkdfparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:3d2054aec77f", + "chapter": "webcrypto", + "label": "salt", + "signature": "`salt` Type: {ArrayBuffer|TypedArray|DataView|Buffer}", + "apiSymbol": "salt", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-hkdfparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:9587f4a3e035", + "chapter": "webcrypto", + "label": "HmacImportParams", + "signature": "Class: `HmacImportParams`", + "apiSymbol": "HmacImportParams", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-hmacimportparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:23dcd527bbf6", + "chapter": "webcrypto", + "label": "hash", + "signature": "`hash` Type: {string|Algorithm}", + "apiSymbol": "hash", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-hmacimportparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.crypto.hash", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:crypto.hash", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + } + } + }, + { + "id": "webcrypto:46b3be570f6c", + "chapter": "webcrypto", + "label": "length", + "signature": "`length` Type: {number}", + "apiSymbol": "length", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-hmacimportparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:952a60eed01e", + "chapter": "webcrypto", + "label": "name", + "signature": "`name` Type: {string} Must be `'HMAC'`.", + "apiSymbol": "name", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-hmacimportparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:cd65fdc1893e", + "chapter": "webcrypto", + "label": "HmacKeyAlgorithm", + "signature": "Class: `HmacKeyAlgorithm`", + "apiSymbol": "HmacKeyAlgorithm", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-hmackeyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:a2986253c75b", + "chapter": "webcrypto", + "label": "hash", + "signature": "`hash` Type: {Algorithm}", + "apiSymbol": "hash", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-hmackeyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.crypto.hash", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:crypto.hash", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + } + } + }, + { + "id": "webcrypto:1e5b1ef67279", + "chapter": "webcrypto", + "label": "length", + "signature": "`length` Type: {number}", + "apiSymbol": "length", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-hmackeyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:a352d153f456", + "chapter": "webcrypto", + "label": "name", + "signature": "`name` Type: {string}", + "apiSymbol": "name", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-hmackeyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:8818bd91bd7e", + "chapter": "webcrypto", + "label": "HmacKeyGenParams", + "signature": "Class: `HmacKeyGenParams`", + "apiSymbol": "HmacKeyGenParams", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-hmackeygenparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:72e61962dfef", + "chapter": "webcrypto", + "label": "hash", + "signature": "`hash` Type: {string|Algorithm}", + "apiSymbol": "hash", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-hmackeygenparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.crypto.hash", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:crypto.hash", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + } + } + }, + { + "id": "webcrypto:894c2ecdb640", + "chapter": "webcrypto", + "label": "length", + "signature": "`length` Type: {number}", + "apiSymbol": "length", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-hmackeygenparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:1bd415494954", + "chapter": "webcrypto", + "label": "name", + "signature": "`name` Type: {string} Must be `'HMAC'`.", + "apiSymbol": "name", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-hmackeygenparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:149380635f5c", + "chapter": "webcrypto", + "label": "KeyAlgorithm", + "signature": "Class: `KeyAlgorithm`", + "apiSymbol": "KeyAlgorithm", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-keyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:539d4f40a15a", + "chapter": "webcrypto", + "label": "name", + "signature": "`name` Type: {string}", + "apiSymbol": "name", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-keyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:fd89bc275372", + "chapter": "webcrypto", + "label": "KmacImportParams", + "signature": "Class: `KmacImportParams`", + "apiSymbol": "KmacImportParams", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-kmacimportparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:a12c9591e138", + "chapter": "webcrypto", + "label": "length", + "signature": "`length` Type: {number}", + "apiSymbol": "length", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-kmacimportparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:d1c3cc414709", + "chapter": "webcrypto", + "label": "name", + "signature": "`name` Type: {string} Must be `'KMAC128'` or `'KMAC256'`.", + "apiSymbol": "name", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-kmacimportparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:d2590bef46f5", + "chapter": "webcrypto", + "label": "KmacKeyAlgorithm", + "signature": "Class: `KmacKeyAlgorithm`", + "apiSymbol": "KmacKeyAlgorithm", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-kmackeyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:71b7195a2253", + "chapter": "webcrypto", + "label": "length", + "signature": "`length` Type: {number}", + "apiSymbol": "length", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-kmackeyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:a1519f0084eb", + "chapter": "webcrypto", + "label": "name", + "signature": "`name` Type: {string}", + "apiSymbol": "name", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-kmackeyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:bb8a4e1d72f0", + "chapter": "webcrypto", + "label": "KmacKeyGenParams", + "signature": "Class: `KmacKeyGenParams`", + "apiSymbol": "KmacKeyGenParams", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-kmackeygenparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:865129de3ee7", + "chapter": "webcrypto", + "label": "length", + "signature": "`length` Type: {number}", + "apiSymbol": "length", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-kmackeygenparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:11431de8b7ea", + "chapter": "webcrypto", + "label": "name", + "signature": "`name` Type: {string} Must be `'KMAC128'` or `'KMAC256'`.", + "apiSymbol": "name", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-kmackeygenparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:6c7119d44e0a", + "chapter": "webcrypto", + "label": "KmacParams", + "signature": "Class: `KmacParams`", + "apiSymbol": "KmacParams", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-kmacparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:f65755eba1a1", + "chapter": "webcrypto", + "label": "algorithm", + "signature": "`algorithm` Type: {string} Must be `'KMAC128'` or `'KMAC256'`.", + "apiSymbol": "algorithm", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-kmacparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:82fe1baefa90", + "chapter": "webcrypto", + "label": "outputLength", + "signature": "`outputLength` Type: {number}", + "apiSymbol": "outputLength", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-kmacparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:2f5fdc6ab0c1", + "chapter": "webcrypto", + "label": "customization", + "signature": "`customization` Type: {ArrayBuffer|TypedArray|DataView|Buffer|undefined}", + "apiSymbol": "customization", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-kmacparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:1954a05b0dcd", + "chapter": "webcrypto", + "label": "Pbkdf2Params", + "signature": "Class: `Pbkdf2Params`", + "apiSymbol": "Pbkdf2Params", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-pbkdf2params", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:90172990b40c", + "chapter": "webcrypto", + "label": "hash", + "signature": "`hash` Type: {string|Algorithm}", + "apiSymbol": "hash", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-pbkdf2params", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.crypto.hash", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:crypto.hash", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + } + } + }, + { + "id": "webcrypto:89d55eb491e6", + "chapter": "webcrypto", + "label": "iterations", + "signature": "`iterations` Type: {number}", + "apiSymbol": "iterations", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-pbkdf2params", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:b784b5670237", + "chapter": "webcrypto", + "label": "name", + "signature": "`name` Type: {string} Must be `'PBKDF2'`.", + "apiSymbol": "name", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-pbkdf2params", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:c106ffde1c27", + "chapter": "webcrypto", + "label": "salt", + "signature": "`salt` Type: {ArrayBuffer|TypedArray|DataView|Buffer}", + "apiSymbol": "salt", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-pbkdf2params", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:51a363016360", + "chapter": "webcrypto", + "label": "RsaHashedImportParams", + "signature": "Class: `RsaHashedImportParams`", + "apiSymbol": "RsaHashedImportParams", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-rsahashedimportparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:f2ea19036c87", + "chapter": "webcrypto", + "label": "hash", + "signature": "`hash` Type: {string|Algorithm}", + "apiSymbol": "hash", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-rsahashedimportparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.crypto.hash", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:crypto.hash", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + } + } + }, + { + "id": "webcrypto:7f0f6c402d57", + "chapter": "webcrypto", + "label": "name", + "signature": "`name` Type: {string} Must be one of `'RSASSA-PKCS1-v1_5'`, `'RSA-PSS'`, or `'RSA-OAEP'`.", + "apiSymbol": "name", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-rsahashedimportparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:d32ae0ad2cfc", + "chapter": "webcrypto", + "label": "RsaHashedKeyAlgorithm", + "signature": "Class: `RsaHashedKeyAlgorithm`", + "apiSymbol": "RsaHashedKeyAlgorithm", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-rsahashedkeyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:285e4defde05", + "chapter": "webcrypto", + "label": "hash", + "signature": "`hash` Type: {Algorithm}", + "apiSymbol": "hash", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-rsahashedkeyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.crypto.hash", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:crypto.hash", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + } + } + }, + { + "id": "webcrypto:199f935161c9", + "chapter": "webcrypto", + "label": "modulusLength", + "signature": "`modulusLength` Type: {number}", + "apiSymbol": "modulusLength", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-rsahashedkeyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:2afff59b5ec9", + "chapter": "webcrypto", + "label": "name", + "signature": "`name` Type: {string}", + "apiSymbol": "name", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-rsahashedkeyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:01a7d8f25140", + "chapter": "webcrypto", + "label": "publicExponent", + "signature": "`publicExponent` Type: {Uint8Array}", + "apiSymbol": "publicExponent", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-rsahashedkeyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:5ad6e661be1f", + "chapter": "webcrypto", + "label": "RsaHashedKeyGenParams", + "signature": "Class: `RsaHashedKeyGenParams`", + "apiSymbol": "RsaHashedKeyGenParams", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-rsahashedkeygenparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:48e265876023", + "chapter": "webcrypto", + "label": "hash", + "signature": "`hash` Type: {string|Algorithm}", + "apiSymbol": "hash", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-rsahashedkeygenparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.crypto.hash", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:crypto.hash", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + } + } + }, + { + "id": "webcrypto:7a3c6c28260d", + "chapter": "webcrypto", + "label": "modulusLength", + "signature": "`modulusLength` Type: {number}", + "apiSymbol": "modulusLength", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-rsahashedkeygenparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:e2fe42d18365", + "chapter": "webcrypto", + "label": "name", + "signature": "`name` Type: {string} Must be one of `'RSASSA-PKCS1-v1_5'`, `'RSA-PSS'`, or `'RSA-OAEP'`.", + "apiSymbol": "name", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-rsahashedkeygenparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:eee791955790", + "chapter": "webcrypto", + "label": "publicExponent", + "signature": "`publicExponent` Type: {Uint8Array}", + "apiSymbol": "publicExponent", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-rsahashedkeygenparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:32b6a2fa2369", + "chapter": "webcrypto", + "label": "RsaOaepParams", + "signature": "Class: `RsaOaepParams`", + "apiSymbol": "RsaOaepParams", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-rsaoaepparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:e7eb643f042b", + "chapter": "webcrypto", + "label": "label", + "signature": "`label` Type: {ArrayBuffer|TypedArray|DataView|Buffer}", + "apiSymbol": "label", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-rsaoaepparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:1937cc2aa87b", + "chapter": "webcrypto", + "label": "name", + "signature": "`name` Type: {string} must be `'RSA-OAEP'`.", + "apiSymbol": "name", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-rsaoaepparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:9ee8f6b8658b", + "chapter": "webcrypto", + "label": "RsaPssParams", + "signature": "Class: `RsaPssParams`", + "apiSymbol": "RsaPssParams", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-rsapssparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:1b596465e1de", + "chapter": "webcrypto", + "label": "name", + "signature": "`name` Type: {string} Must be `'RSA-PSS'`.", + "apiSymbol": "name", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-rsapssparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:ab8289473829", + "chapter": "webcrypto", + "label": "saltLength", + "signature": "`saltLength` Type: {number}", + "apiSymbol": "saltLength", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-rsapssparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:92a3a1223e3b", + "chapter": "webcrypto", + "label": "Crypto", + "signature": "Class: `Crypto`", + "apiSymbol": "Crypto", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-crypto", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:dcc24f369f43", + "chapter": "webcrypto", + "label": "crypto.getRandomValues(typedArray)", + "signature": "`crypto.getRandomValues(typedArray)`", + "apiSymbol": "crypto.getRandomValues", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#cryptogetrandomvaluestypedarray", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:crypto.getRandomValues", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + } + } + }, + { + "id": "webcrypto:35fd8cce482a", + "chapter": "webcrypto", + "label": "crypto.randomUUID()", + "signature": "`crypto.randomUUID()`", + "apiSymbol": "crypto.randomUUID", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#cryptorandomuuid", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.crypto.randomUUID", + "tests": [ + "tests/corpus/1358-crypto-random.ts", + "tests/corpus/1534-crypto-hash-chain.ts", + "tests/corpus/2556-crypto-introspection.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:crypto.randomUUID", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + } + } + }, + { + "id": "webcrypto:8c570ec75666", + "chapter": "webcrypto", + "label": "subtle", + "signature": "`subtle` Type: {SubtleCrypto}", + "apiSymbol": "subtle", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-crypto", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:crypto.subtle", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + } + } + }, + { + "id": "webcrypto:68e61427b871", + "chapter": "webcrypto", + "label": "CryptoKey", + "signature": "Class: `CryptoKey`", + "apiSymbol": "CryptoKey", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-cryptokey", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:37e3b4aba98c", + "chapter": "webcrypto", + "label": "cryptoKey.algorithm", + "signature": "`cryptoKey.algorithm`", + "apiSymbol": "cryptoKey.algorithm", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#cryptokeyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:0156e05ff68d", + "chapter": "webcrypto", + "label": "extractable", + "signature": "`extractable` Type: {boolean}", + "apiSymbol": "extractable", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-cryptokey", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:5c7e32152dcc", + "chapter": "webcrypto", + "label": "type", + "signature": "`type` Type: {string} One of `'secret'`, `'private'`, or `'public'`.", + "apiSymbol": "type", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-cryptokey", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:03f1bca47b2e", + "chapter": "webcrypto", + "label": "usages", + "signature": "`usages` Type: {string\\[]}", + "apiSymbol": "usages", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-cryptokey", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:753cdf0ffee2", + "chapter": "webcrypto", + "label": "CryptoKeyPair", + "signature": "Class: `CryptoKeyPair`", + "apiSymbol": "CryptoKeyPair", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-cryptokeypair", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:6a02593ce03d", + "chapter": "webcrypto", + "label": "privateKey", + "signature": "`privateKey` Type: {CryptoKey} A {CryptoKey} whose `type` will be `'private'`.", + "apiSymbol": "privateKey", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-cryptokeypair", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:13b1f10bf801", + "chapter": "webcrypto", + "label": "publicKey", + "signature": "`publicKey` Type: {CryptoKey} A {CryptoKey} whose `type` will be `'public'`.", + "apiSymbol": "publicKey", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-cryptokeypair", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:f293a8743eee", + "chapter": "webcrypto", + "label": "SubtleCrypto", + "signature": "Class: `SubtleCrypto`", + "apiSymbol": "SubtleCrypto", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#class-subtlecrypto", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:7cd42dcf9151", + "chapter": "webcrypto", + "label": "subtle.decapsulateBits(decapsulationAlgorithm, decapsulationKey, ciphertext)", + "signature": "`subtle.decapsulateBits(decapsulationAlgorithm, decapsulationKey, ciphertext)`", + "apiSymbol": "subtle.decapsulateBits", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#subtledecapsulatebitsdecapsulationalgorithm-decapsulationkey-ciphertext", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:d8f38474b5e5", + "chapter": "webcrypto", + "label": "subtle.decapsulateKey(decapsulationAlgorithm, decapsulationKey, ciphertext, sharedKeyAlgorithm, extractable, usages)", + "signature": "`subtle.decapsulateKey(decapsulationAlgorithm, decapsulationKey, ciphertext, sharedKeyAlgorithm, extractable, usages)`", + "apiSymbol": "subtle.decapsulateKey", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#subtledecapsulatekeydecapsulationalgorithm-decapsulationkey-ciphertext-sharedkeyalgorithm-extractable-usages", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:b11c8366ee0c", + "chapter": "webcrypto", + "label": "subtle.decrypt(algorithm, key, data)", + "signature": "`subtle.decrypt(algorithm, key, data)`", + "apiSymbol": "subtle.decrypt", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#subtledecryptalgorithm-key-data", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:2074c3a9faae", + "chapter": "webcrypto", + "label": "subtle.deriveBits(algorithm, baseKey[, length])", + "signature": "`subtle.deriveBits(algorithm, baseKey[, length])`", + "apiSymbol": "subtle.deriveBits", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#subtlederivebitsalgorithm-basekey-length", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:8618a4716426", + "chapter": "webcrypto", + "label": "subtle.deriveKey(algorithm, baseKey, derivedKeyAlgorithm, extractable, keyUsages)", + "signature": "`subtle.deriveKey(algorithm, baseKey, derivedKeyAlgorithm, extractable, keyUsages)`", + "apiSymbol": "subtle.deriveKey", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#subtlederivekeyalgorithm-basekey-derivedkeyalgorithm-extractable-keyusages", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:609a0a8add1e", + "chapter": "webcrypto", + "label": "subtle.digest(algorithm, data)", + "signature": "`subtle.digest(algorithm, data)`", + "apiSymbol": "subtle.digest", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#subtledigestalgorithm-data", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:549d41ea5d88", + "chapter": "webcrypto", + "label": "subtle.encapsulateBits(encapsulationAlgorithm, encapsulationKey)", + "signature": "`subtle.encapsulateBits(encapsulationAlgorithm, encapsulationKey)`", + "apiSymbol": "subtle.encapsulateBits", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#subtleencapsulatebitsencapsulationalgorithm-encapsulationkey", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:5e146a8a6347", + "chapter": "webcrypto", + "label": "subtle.encapsulateKey(encapsulationAlgorithm, encapsulationKey, sharedKeyAlgorithm, extractable, usages)", + "signature": "`subtle.encapsulateKey(encapsulationAlgorithm, encapsulationKey, sharedKeyAlgorithm, extractable, usages)`", + "apiSymbol": "subtle.encapsulateKey", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#subtleencapsulatekeyencapsulationalgorithm-encapsulationkey-sharedkeyalgorithm-extractable-usages", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:71ae6092934c", + "chapter": "webcrypto", + "label": "subtle.encrypt(algorithm, key, data)", + "signature": "`subtle.encrypt(algorithm, key, data)`", + "apiSymbol": "subtle.encrypt", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#subtleencryptalgorithm-key-data", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:234e8c17f16e", + "chapter": "webcrypto", + "label": "subtle.exportKey(format, key)", + "signature": "`subtle.exportKey(format, key)`", + "apiSymbol": "subtle.exportKey", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#subtleexportkeyformat-key", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:4c2759443aed", + "chapter": "webcrypto", + "label": "subtle.getPublicKey(key, keyUsages)", + "signature": "`subtle.getPublicKey(key, keyUsages)`", + "apiSymbol": "subtle.getPublicKey", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#subtlegetpublickeykey-keyusages", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:9efd347f3ac9", + "chapter": "webcrypto", + "label": "subtle.generateKey(algorithm, extractable, keyUsages)", + "signature": "`subtle.generateKey(algorithm, extractable, keyUsages)`", + "apiSymbol": "subtle.generateKey", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#subtlegeneratekeyalgorithm-extractable-keyusages", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:48597e41090f", + "chapter": "webcrypto", + "label": "subtle.importKey(format, keyData, algorithm, extractable, keyUsages)", + "signature": "`subtle.importKey(format, keyData, algorithm, extractable, keyUsages)`", + "apiSymbol": "subtle.importKey", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#subtleimportkeyformat-keydata-algorithm-extractable-keyusages", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:0504b64c6286", + "chapter": "webcrypto", + "label": "subtle.sign(algorithm, key, data)", + "signature": "`subtle.sign(algorithm, key, data)`", + "apiSymbol": "subtle.sign", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#subtlesignalgorithm-key-data", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:67f9b9466d2c", + "chapter": "webcrypto", + "label": "subtle.unwrapKey(format, wrappedKey, unwrappingKey, unwrapAlgo, unwrappedKeyAlgo, extractable, keyUsages)", + "signature": "`subtle.unwrapKey(format, wrappedKey, unwrappingKey, unwrapAlgo, unwrappedKeyAlgo, extractable, keyUsages)`", + "apiSymbol": "subtle.unwrapKey", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#subtleunwrapkeyformat-wrappedkey-unwrappingkey-unwrapalgo-unwrappedkeyalgo-extractable-keyusages", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:2471cc57bfa3", + "chapter": "webcrypto", + "label": "subtle.verify(algorithm, key, signature, data)", + "signature": "`subtle.verify(algorithm, key, signature, data)`", + "apiSymbol": "subtle.verify", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#subtleverifyalgorithm-key-signature-data", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webcrypto:62ec6d9ec96a", + "chapter": "webcrypto", + "label": "subtle.wrapKey(format, key, wrappingKey, wrapAlgo)", + "signature": "`subtle.wrapKey(format, key, wrappingKey, wrapAlgo)`", + "apiSymbol": "subtle.wrapKey", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webcrypto.html#subtlewrapkeyformat-key-wrappingkey-wrapalgo", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webcrypto", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webcrypto", + "tests": [] + } + } + }, + { + "id": "webstreams:a0aa7f7603de", + "chapter": "webstreams", + "label": "streamConsumers.arrayBuffer(stream)", + "signature": "`streamConsumers.arrayBuffer(stream)`", + "apiSymbol": "streamConsumers.arrayBuffer", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#streamconsumersarraybufferstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.stream.consumers.arrayBuffer", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:d39eca07e53e", + "chapter": "webstreams", + "label": "streamConsumers.blob(stream)", + "signature": "`streamConsumers.blob(stream)`", + "apiSymbol": "streamConsumers.blob", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#streamconsumersblobstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.stream.consumers.blob", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:21ae10f1891a", + "chapter": "webstreams", + "label": "streamConsumers.buffer(stream)", + "signature": "`streamConsumers.buffer(stream)`", + "apiSymbol": "streamConsumers.buffer", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#streamconsumersbufferstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:5d8f059c0df0", + "chapter": "webstreams", + "label": "streamConsumers.bytes(stream)", + "signature": "`streamConsumers.bytes(stream)`", + "apiSymbol": "streamConsumers.bytes", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#streamconsumersbytesstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:653a4c9233ad", + "chapter": "webstreams", + "label": "streamConsumers.json(stream)", + "signature": "`streamConsumers.json(stream)`", + "apiSymbol": "streamConsumers.json", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#streamconsumersjsonstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:0e1bc54ba771", + "chapter": "webstreams", + "label": "streamConsumers.text(stream)", + "signature": "`streamConsumers.text(stream)`", + "apiSymbol": "streamConsumers.text", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#streamconsumerstextstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:6ae7ec5a740c", + "chapter": "webstreams", + "label": "ReadableStream", + "signature": "Class: `ReadableStream`", + "apiSymbol": "ReadableStream", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#class-readablestream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:stream/web.ReadableStream", + "tests": [ + "tests/fixtures/npm/cases/web-streams/main.ts" + ] + } + } + }, + { + "id": "webstreams:e1344c6274af", + "chapter": "webstreams", + "label": "Transferring with postMessage()", + "signature": "Transferring with `postMessage()`", + "apiSymbol": "postMessage", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#transferring-with-postmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:07874a3f716e", + "chapter": "webstreams", + "label": "readableStream.cancel([reason])", + "signature": "`readableStream.cancel([reason])`", + "apiSymbol": "readableStream.cancel", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#readablestreamcancelreason", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:e16de5c53eb4", + "chapter": "webstreams", + "label": "readableStream.getReader([options])", + "signature": "`readableStream.getReader([options])`", + "apiSymbol": "readableStream.getReader", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#readablestreamgetreaderoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:63b2d89c6c00", + "chapter": "webstreams", + "label": "readableStream.pipeThrough(transform[, options])", + "signature": "`readableStream.pipeThrough(transform[, options])`", + "apiSymbol": "readableStream.pipeThrough", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#readablestreampipethroughtransform-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:0a27945017c9", + "chapter": "webstreams", + "label": "readableStream.pipeTo(destination[, options])", + "signature": "`readableStream.pipeTo(destination[, options])`", + "apiSymbol": "readableStream.pipeTo", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#readablestreampipetodestination-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:37ce77efec40", + "chapter": "webstreams", + "label": "readableStream.tee()", + "signature": "`readableStream.tee()`", + "apiSymbol": "readableStream.tee", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#readablestreamtee", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:59af1c97ad6c", + "chapter": "webstreams", + "label": "readableStream.values([options])", + "signature": "`readableStream.values([options])`", + "apiSymbol": "readableStream.values", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#readablestreamvaluesoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:22e4c5cb6e21", + "chapter": "webstreams", + "label": "locked", + "signature": "`locked` Type: {boolean} Set to `true` if there is an active reader for this {ReadableStream}.", + "apiSymbol": "locked", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#class-readablestream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:59cd7b8edaca", + "chapter": "webstreams", + "label": "ReadableStreamDefaultReader", + "signature": "Class: `ReadableStreamDefaultReader`", + "apiSymbol": "ReadableStreamDefaultReader", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#class-readablestreamdefaultreader", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:a22fabc014a7", + "chapter": "webstreams", + "label": "readableStreamDefaultReader.cancel([reason])", + "signature": "`readableStreamDefaultReader.cancel([reason])`", + "apiSymbol": "readableStreamDefaultReader.cancel", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#readablestreamdefaultreadercancelreason", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:e83c6546e3e6", + "chapter": "webstreams", + "label": "readableStreamDefaultReader.read()", + "signature": "`readableStreamDefaultReader.read()`", + "apiSymbol": "readableStreamDefaultReader.read", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#readablestreamdefaultreaderread", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:c8b676670e1b", + "chapter": "webstreams", + "label": "readableStreamDefaultReader.releaseLock()", + "signature": "`readableStreamDefaultReader.releaseLock()`", + "apiSymbol": "readableStreamDefaultReader.releaseLock", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#readablestreamdefaultreaderreleaselock", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:31610192c3bb", + "chapter": "webstreams", + "label": "closed", + "signature": "`closed` Type: {Promise} Fulfilled with `undefined` when the associated {ReadableStream} is closed or rejected if the stream errors or the reader's lock is released before the stream finishes closing.", + "apiSymbol": "closed", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#class-readablestreamdefaultreader", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:7d5990cd5487", + "chapter": "webstreams", + "label": "ReadableStreamBYOBReader", + "signature": "Class: `ReadableStreamBYOBReader`", + "apiSymbol": "ReadableStreamBYOBReader", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#class-readablestreambyobreader", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:f090647268e8", + "chapter": "webstreams", + "label": "readableStreamBYOBReader.cancel([reason])", + "signature": "`readableStreamBYOBReader.cancel([reason])`", + "apiSymbol": "readableStreamBYOBReader.cancel", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#readablestreambyobreadercancelreason", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:ad6d78bc9fb9", + "chapter": "webstreams", + "label": "readableStreamBYOBReader.read(view[, options])", + "signature": "`readableStreamBYOBReader.read(view[, options])`", + "apiSymbol": "readableStreamBYOBReader.read", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#readablestreambyobreaderreadview-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:3c38808260c5", + "chapter": "webstreams", + "label": "readableStreamBYOBReader.releaseLock()", + "signature": "`readableStreamBYOBReader.releaseLock()`", + "apiSymbol": "readableStreamBYOBReader.releaseLock", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#readablestreambyobreaderreleaselock", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:bde92078dc9c", + "chapter": "webstreams", + "label": "closed", + "signature": "`closed` Type: {Promise} Fulfilled with `undefined` when the associated {ReadableStream} is closed or rejected if the stream errors or the reader's lock is released before the stream finishes closing.", + "apiSymbol": "closed", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#class-readablestreambyobreader", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:6790e97eee62", + "chapter": "webstreams", + "label": "ReadableStreamDefaultController", + "signature": "Class: `ReadableStreamDefaultController`", + "apiSymbol": "ReadableStreamDefaultController", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#class-readablestreamdefaultcontroller", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:ad8c1f29c51c", + "chapter": "webstreams", + "label": "readableStreamDefaultController.close()", + "signature": "`readableStreamDefaultController.close()`", + "apiSymbol": "readableStreamDefaultController.close", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#readablestreamdefaultcontrollerclose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:4896adba6cde", + "chapter": "webstreams", + "label": "readableStreamDefaultController.enqueue([chunk])", + "signature": "`readableStreamDefaultController.enqueue([chunk])`", + "apiSymbol": "readableStreamDefaultController.enqueue", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#readablestreamdefaultcontrollerenqueuechunk", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:446e7767814c", + "chapter": "webstreams", + "label": "readableStreamDefaultController.error([error])", + "signature": "`readableStreamDefaultController.error([error])`", + "apiSymbol": "readableStreamDefaultController.error", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#readablestreamdefaultcontrollererrorerror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:7a1f0cee4c0a", + "chapter": "webstreams", + "label": "desiredSize", + "signature": "`desiredSize` Type: {number}", + "apiSymbol": "desiredSize", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#class-readablestreamdefaultcontroller", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:976b099cb870", + "chapter": "webstreams", + "label": "ReadableByteStreamController", + "signature": "Class: `ReadableByteStreamController`", + "apiSymbol": "ReadableByteStreamController", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#class-readablebytestreamcontroller", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:fc086187e19a", + "chapter": "webstreams", + "label": "readableByteStreamController.close()", + "signature": "`readableByteStreamController.close()`", + "apiSymbol": "readableByteStreamController.close", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#readablebytestreamcontrollerclose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:b12dec2fbd1d", + "chapter": "webstreams", + "label": "readableByteStreamController.enqueue(chunk)", + "signature": "`readableByteStreamController.enqueue(chunk)`", + "apiSymbol": "readableByteStreamController.enqueue", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#readablebytestreamcontrollerenqueuechunk", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:6fb37f5a196a", + "chapter": "webstreams", + "label": "readableByteStreamController.error([error])", + "signature": "`readableByteStreamController.error([error])`", + "apiSymbol": "readableByteStreamController.error", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#readablebytestreamcontrollererrorerror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:0df1635cf34d", + "chapter": "webstreams", + "label": "byobRequest", + "signature": "`byobRequest` Type: {ReadableStreamBYOBRequest}", + "apiSymbol": "byobRequest", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#class-readablebytestreamcontroller", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:086b3d6c7506", + "chapter": "webstreams", + "label": "desiredSize", + "signature": "`desiredSize` Type: {number}", + "apiSymbol": "desiredSize", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#class-readablebytestreamcontroller", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:e5184ac8185b", + "chapter": "webstreams", + "label": "ReadableStreamBYOBRequest", + "signature": "Class: `ReadableStreamBYOBRequest`", + "apiSymbol": "ReadableStreamBYOBRequest", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#class-readablestreambyobrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:5cec36fdad53", + "chapter": "webstreams", + "label": "readableStreamBYOBRequest.respond(bytesWritten)", + "signature": "`readableStreamBYOBRequest.respond(bytesWritten)`", + "apiSymbol": "readableStreamBYOBRequest.respond", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#readablestreambyobrequestrespondbyteswritten", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:ae613e5feafc", + "chapter": "webstreams", + "label": "readableStreamBYOBRequest.respondWithNewView(view)", + "signature": "`readableStreamBYOBRequest.respondWithNewView(view)`", + "apiSymbol": "readableStreamBYOBRequest.respondWithNewView", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#readablestreambyobrequestrespondwithnewviewview", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:4817ef9308dd", + "chapter": "webstreams", + "label": "view", + "signature": "`view` Type: {Buffer|TypedArray|DataView}", + "apiSymbol": "view", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#class-readablestreambyobrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:9a218933fb72", + "chapter": "webstreams", + "label": "WritableStream", + "signature": "Class: `WritableStream`", + "apiSymbol": "WritableStream", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#class-writablestream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:9a2ccc527c47", + "chapter": "webstreams", + "label": "writableStream.abort([reason])", + "signature": "`writableStream.abort([reason])`", + "apiSymbol": "writableStream.abort", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#writablestreamabortreason", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:b1ff78629efd", + "chapter": "webstreams", + "label": "writableStream.close()", + "signature": "`writableStream.close()`", + "apiSymbol": "writableStream.close", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#writablestreamclose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:3a22c62e3afa", + "chapter": "webstreams", + "label": "writableStream.getWriter()", + "signature": "`writableStream.getWriter()`", + "apiSymbol": "writableStream.getWriter", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#writablestreamgetwriter", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:e0783a4df74d", + "chapter": "webstreams", + "label": "locked", + "signature": "`locked` Type: {boolean}", + "apiSymbol": "locked", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#class-writablestream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:224d0f8d84a2", + "chapter": "webstreams", + "label": "WritableStreamDefaultWriter", + "signature": "Class: `WritableStreamDefaultWriter`", + "apiSymbol": "WritableStreamDefaultWriter", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#class-writablestreamdefaultwriter", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:326716928d08", + "chapter": "webstreams", + "label": "writableStreamDefaultWriter.abort([reason])", + "signature": "`writableStreamDefaultWriter.abort([reason])`", + "apiSymbol": "writableStreamDefaultWriter.abort", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#writablestreamdefaultwriterabortreason", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:692468144121", + "chapter": "webstreams", + "label": "writableStreamDefaultWriter.close()", + "signature": "`writableStreamDefaultWriter.close()`", + "apiSymbol": "writableStreamDefaultWriter.close", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#writablestreamdefaultwriterclose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:a6c1f3872dd6", + "chapter": "webstreams", + "label": "writableStreamDefaultWriter.releaseLock()", + "signature": "`writableStreamDefaultWriter.releaseLock()`", + "apiSymbol": "writableStreamDefaultWriter.releaseLock", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#writablestreamdefaultwriterreleaselock", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:6587d1ca2758", + "chapter": "webstreams", + "label": "writableStreamDefaultWriter.write([chunk])", + "signature": "`writableStreamDefaultWriter.write([chunk])`", + "apiSymbol": "writableStreamDefaultWriter.write", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#writablestreamdefaultwriterwritechunk", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:b33d7f544115", + "chapter": "webstreams", + "label": "closed", + "signature": "`closed` Type: {Promise} Fulfilled with `undefined` when the associated {WritableStream} is closed or rejected if the stream errors or the writer's lock is released before the stream finishes closing.", + "apiSymbol": "closed", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#class-writablestreamdefaultwriter", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:39e0df6f571b", + "chapter": "webstreams", + "label": "desiredSize", + "signature": "`desiredSize` Type: {number}", + "apiSymbol": "desiredSize", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#class-writablestreamdefaultwriter", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:24f064d91fda", + "chapter": "webstreams", + "label": "ready", + "signature": "`ready` Type: {Promise} Fulfilled with `undefined` when the writer is ready to be used.", + "apiSymbol": "ready", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#class-writablestreamdefaultwriter", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:03e865d0551b", + "chapter": "webstreams", + "label": "WritableStreamDefaultController", + "signature": "Class: `WritableStreamDefaultController`", + "apiSymbol": "WritableStreamDefaultController", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#class-writablestreamdefaultcontroller", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:0874c6edcae4", + "chapter": "webstreams", + "label": "writableStreamDefaultController.error([error])", + "signature": "`writableStreamDefaultController.error([error])`", + "apiSymbol": "writableStreamDefaultController.error", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#writablestreamdefaultcontrollererrorerror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:955007abea66", + "chapter": "webstreams", + "label": "signal", + "signature": "`signal` Type: {AbortSignal} An `AbortSignal` that can be used to cancel pending write or close operations when a {WritableStream} is aborted.", + "apiSymbol": "signal", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#class-writablestreamdefaultcontroller", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:c25d842fc815", + "chapter": "webstreams", + "label": "TransformStream", + "signature": "Class: `TransformStream`", + "apiSymbol": "TransformStream", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#class-transformstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:stream/web.TransformStream", + "tests": [ + "tests/fixtures/npm/cases/web-streams/main.ts" + ] + } + } + }, + { + "id": "webstreams:ddbc268aec5a", + "chapter": "webstreams", + "label": "readable", + "signature": "`readable` Type: {ReadableStream}", + "apiSymbol": "readable", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#class-transformstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:231398d14977", + "chapter": "webstreams", + "label": "writable", + "signature": "`writable` Type: {WritableStream}", + "apiSymbol": "writable", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#class-transformstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:e788e15a2bf2", + "chapter": "webstreams", + "label": "TransformStreamDefaultController", + "signature": "Class: `TransformStreamDefaultController`", + "apiSymbol": "TransformStreamDefaultController", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#class-transformstreamdefaultcontroller", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:3bb8ad83b1ae", + "chapter": "webstreams", + "label": "transformStreamDefaultController.enqueue([chunk])", + "signature": "`transformStreamDefaultController.enqueue([chunk])`", + "apiSymbol": "transformStreamDefaultController.enqueue", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#transformstreamdefaultcontrollerenqueuechunk", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:ecfa06a848f1", + "chapter": "webstreams", + "label": "transformStreamDefaultController.error([reason])", + "signature": "`transformStreamDefaultController.error([reason])`", + "apiSymbol": "transformStreamDefaultController.error", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#transformstreamdefaultcontrollererrorreason", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:700f054c0b67", + "chapter": "webstreams", + "label": "transformStreamDefaultController.terminate()", + "signature": "`transformStreamDefaultController.terminate()`", + "apiSymbol": "transformStreamDefaultController.terminate", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#transformstreamdefaultcontrollerterminate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:0866431a6cd4", + "chapter": "webstreams", + "label": "desiredSize", + "signature": "`desiredSize` Type: {number}", + "apiSymbol": "desiredSize", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#class-transformstreamdefaultcontroller", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:09f83fd95a39", + "chapter": "webstreams", + "label": "ByteLengthQueuingStrategy", + "signature": "Class: `ByteLengthQueuingStrategy`", + "apiSymbol": "ByteLengthQueuingStrategy", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#class-bytelengthqueuingstrategy", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:5acb1d2e7442", + "chapter": "webstreams", + "label": "highWaterMark", + "signature": "`highWaterMark` Type: {number}", + "apiSymbol": "highWaterMark", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#class-bytelengthqueuingstrategy", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:748354473b33", + "chapter": "webstreams", + "label": "size", + "signature": "`size` Type: {Function}", + "apiSymbol": "size", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#class-bytelengthqueuingstrategy", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:6c617f750992", + "chapter": "webstreams", + "label": "CountQueuingStrategy", + "signature": "Class: `CountQueuingStrategy`", + "apiSymbol": "CountQueuingStrategy", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#class-countqueuingstrategy", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:1a7b6068e2b1", + "chapter": "webstreams", + "label": "highWaterMark", + "signature": "`highWaterMark` Type: {number}", + "apiSymbol": "highWaterMark", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#class-countqueuingstrategy", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:396854b8c5c4", + "chapter": "webstreams", + "label": "size", + "signature": "`size` Type: {Function}", + "apiSymbol": "size", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#class-countqueuingstrategy", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:ed6d58f31fcf", + "chapter": "webstreams", + "label": "TextEncoderStream", + "signature": "Class: `TextEncoderStream`", + "apiSymbol": "TextEncoderStream", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#class-textencoderstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:de77458dd9f4", + "chapter": "webstreams", + "label": "encoding", + "signature": "`encoding` Type: {string}", + "apiSymbol": "encoding", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#class-textencoderstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:f678b73a1fca", + "chapter": "webstreams", + "label": "readable", + "signature": "`readable` Type: {ReadableStream}", + "apiSymbol": "readable", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#class-textencoderstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:7dcfefd655cf", + "chapter": "webstreams", + "label": "writable", + "signature": "`writable` Type: {WritableStream}", + "apiSymbol": "writable", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#class-textencoderstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:6673c095131b", + "chapter": "webstreams", + "label": "TextDecoderStream", + "signature": "Class: `TextDecoderStream`", + "apiSymbol": "TextDecoderStream", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#class-textdecoderstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:stream/web.TextDecoderStream", + "tests": [ + "tests/fixtures/npm/cases/web-streams/main.ts" + ] + } + } + }, + { + "id": "webstreams:16933dc8a5bd", + "chapter": "webstreams", + "label": "encoding", + "signature": "`encoding` Type: {string}", + "apiSymbol": "encoding", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#class-textdecoderstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:be485e9fc7e2", + "chapter": "webstreams", + "label": "fatal", + "signature": "`fatal` Type: {boolean}", + "apiSymbol": "fatal", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#class-textdecoderstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:d9855511b7a8", + "chapter": "webstreams", + "label": "ignoreBOM", + "signature": "`ignoreBOM` Type: {boolean}", + "apiSymbol": "ignoreBOM", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#class-textdecoderstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:95c66ef359ad", + "chapter": "webstreams", + "label": "readable", + "signature": "`readable` Type: {ReadableStream}", + "apiSymbol": "readable", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#class-textdecoderstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:ab6a95f11bda", + "chapter": "webstreams", + "label": "writable", + "signature": "`writable` Type: {WritableStream}", + "apiSymbol": "writable", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#class-textdecoderstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:ada28bc23554", + "chapter": "webstreams", + "label": "CompressionStream", + "signature": "Class: `CompressionStream`", + "apiSymbol": "CompressionStream", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#class-compressionstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:1d0708fcb59d", + "chapter": "webstreams", + "label": "readable", + "signature": "`readable` Type: {ReadableStream}", + "apiSymbol": "readable", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#class-compressionstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:d6e6a45a6022", + "chapter": "webstreams", + "label": "writable", + "signature": "`writable` Type: {WritableStream}", + "apiSymbol": "writable", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#class-compressionstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:4ece75e1a260", + "chapter": "webstreams", + "label": "DecompressionStream", + "signature": "Class: `DecompressionStream`", + "apiSymbol": "DecompressionStream", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#class-decompressionstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:978c5c982f0f", + "chapter": "webstreams", + "label": "readable", + "signature": "`readable` Type: {ReadableStream}", + "apiSymbol": "readable", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#class-decompressionstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:eb4f2ec77ada", + "chapter": "webstreams", + "label": "writable", + "signature": "`writable` Type: {WritableStream}", + "apiSymbol": "writable", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#class-decompressionstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:webstreams", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "webstreams:4c7d9f984091", + "chapter": "webstreams", + "label": "ReadableStream.from(iterable)", + "signature": "`ReadableStream.from(iterable)`", + "apiSymbol": "ReadableStream.from", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/webstreams.html#readablestreamfromiterable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:stdlib.readable-stream.from", + "tests": [ + "tests/harness/fetch-conformance.test.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:webstreams", + "tests": [] + } + } + }, + { + "id": "worker_threads:cf4424f7a1cf", + "chapter": "worker_threads", + "label": "BroadcastChannel extends EventTarget", + "signature": "Class: `BroadcastChannel extends EventTarget`", + "apiSymbol": "BroadcastChannel extends EventTarget", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html#class-broadcastchannel-extends-eventtarget", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:worker_threads", + "tests": [] + } + } + }, + { + "id": "worker_threads:c42a42df81f9", + "chapter": "worker_threads", + "label": "broadcastChannel.close()", + "signature": "`broadcastChannel.close()`", + "apiSymbol": "broadcastChannel.close", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html#broadcastchannelclose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:worker_threads", + "tests": [] + } + } + }, + { + "id": "worker_threads:168fe279d66f", + "chapter": "worker_threads", + "label": "broadcastChannel.postMessage(message)", + "signature": "`broadcastChannel.postMessage(message)`", + "apiSymbol": "broadcastChannel.postMessage", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html#broadcastchannelpostmessagemessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:worker_threads", + "tests": [] + } + } + }, + { + "id": "worker_threads:f07157246319", + "chapter": "worker_threads", + "label": "broadcastChannel.ref()", + "signature": "`broadcastChannel.ref()`", + "apiSymbol": "broadcastChannel.ref", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html#broadcastchannelref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:worker_threads", + "tests": [] + } + } + }, + { + "id": "worker_threads:56e73d657971", + "chapter": "worker_threads", + "label": "broadcastChannel.unref()", + "signature": "`broadcastChannel.unref()`", + "apiSymbol": "broadcastChannel.unref", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html#broadcastchannelunref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:worker_threads", + "tests": [] + } + } + }, + { + "id": "worker_threads:63e1b1ffd63c", + "chapter": "worker_threads", + "label": "onmessage", + "signature": "`onmessage` Type: {Function} Invoked with a single `MessageEvent` argument when a message is received.", + "apiSymbol": "onmessage", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html#class-broadcastchannel-extends-eventtarget", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:worker_threads", + "tests": [] + } + } + }, + { + "id": "worker_threads:de776bc75234", + "chapter": "worker_threads", + "label": "onmessageerror", + "signature": "`onmessageerror` Type: {Function} Invoked with a received message cannot be deserialized.", + "apiSymbol": "onmessageerror", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html#class-broadcastchannel-extends-eventtarget", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:worker_threads", + "tests": [] + } + } + }, + { + "id": "worker_threads:8f86db7bdcdb", + "chapter": "worker_threads", + "label": "MessageChannel", + "signature": "Class: `MessageChannel`", + "apiSymbol": "MessageChannel", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html#class-messagechannel", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:worker_threads.MessageChannel", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "worker_threads:608a944a6593", + "chapter": "worker_threads", + "label": "MessagePort", + "signature": "Class: `MessagePort`", + "apiSymbol": "MessagePort", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html#class-messageport", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:worker_threads.MessagePort", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "worker_threads:9bca0cdecd41", + "chapter": "worker_threads", + "label": "port.close()", + "signature": "`port.close()`", + "apiSymbol": "port.close", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html#portclose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:worker_threads.port.close", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "worker_threads:389633d880fc", + "chapter": "worker_threads", + "label": "port.postMessage(value[, transferList])", + "signature": "`port.postMessage(value[, transferList])`", + "apiSymbol": "port.postMessage", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html#portpostmessagevalue-transferlist", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:worker_threads.port.postMessage", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "worker_threads:c2323b965d93", + "chapter": "worker_threads", + "label": "port.hasRef()", + "signature": "`port.hasRef()`", + "apiSymbol": "port.hasRef", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html#porthasref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:worker_threads.port.hasRef", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "worker_threads:169b0d7c758d", + "chapter": "worker_threads", + "label": "port.ref()", + "signature": "`port.ref()`", + "apiSymbol": "port.ref", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html#portref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:worker_threads.port.ref", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "worker_threads:fedc0425972a", + "chapter": "worker_threads", + "label": "port.start()", + "signature": "`port.start()`", + "apiSymbol": "port.start", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html#portstart", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:worker_threads.port.start", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "worker_threads:797508159c6e", + "chapter": "worker_threads", + "label": "port.unref()", + "signature": "`port.unref()`", + "apiSymbol": "port.unref", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html#portunref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:worker_threads.port.unref", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "worker_threads:85ef506d03ee", + "chapter": "worker_threads", + "label": "'close'", + "signature": "Event: `'close'`", + "apiSymbol": "'close'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html#event-close", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:worker_threads", + "tests": [] + } + } + }, + { + "id": "worker_threads:c64febb107f3", + "chapter": "worker_threads", + "label": "'message'", + "signature": "Event: `'message'`", + "apiSymbol": "'message'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html#event-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:worker_threads", + "tests": [] + } + } + }, + { + "id": "worker_threads:4529c484aac5", + "chapter": "worker_threads", + "label": "'messageerror'", + "signature": "Event: `'messageerror'`", + "apiSymbol": "'messageerror'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html#event-messageerror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:worker_threads", + "tests": [] + } + } + }, + { + "id": "worker_threads:7536dde91c9c", + "chapter": "worker_threads", + "label": "Worker", + "signature": "Class: `Worker`", + "apiSymbol": "Worker", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html#class-worker", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "island-stub:node:worker_threads.Worker", + "tests": [] + } + } + }, + { + "id": "worker_threads:99f9a94d5919", + "chapter": "worker_threads", + "label": "worker.cpuUsage([prev])", + "signature": "`worker.cpuUsage([prev])`", + "apiSymbol": "worker.cpuUsage", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html#workercpuusageprev", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:worker_threads", + "tests": [] + } + } + }, + { + "id": "worker_threads:8361370bb2bc", + "chapter": "worker_threads", + "label": "worker.getHeapSnapshot([options])", + "signature": "`worker.getHeapSnapshot([options])`", + "apiSymbol": "worker.getHeapSnapshot", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html#workergetheapsnapshotoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:worker_threads", + "tests": [] + } + } + }, + { + "id": "worker_threads:09479350e62f", + "chapter": "worker_threads", + "label": "worker.getHeapStatistics()", + "signature": "`worker.getHeapStatistics()`", + "apiSymbol": "worker.getHeapStatistics", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html#workergetheapstatistics", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:worker_threads", + "tests": [] + } + } + }, + { + "id": "worker_threads:8d404e152648", + "chapter": "worker_threads", + "label": "worker.postMessage(value[, transferList])", + "signature": "`worker.postMessage(value[, transferList])`", + "apiSymbol": "worker.postMessage", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html#workerpostmessagevalue-transferlist", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:worker_threads", + "tests": [] + } + } + }, + { + "id": "worker_threads:be349c881c74", + "chapter": "worker_threads", + "label": "worker.ref()", + "signature": "`worker.ref()`", + "apiSymbol": "worker.ref", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html#workerref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:worker_threads", + "tests": [] + } + } + }, + { + "id": "worker_threads:d7443ee2bb71", + "chapter": "worker_threads", + "label": "worker.startCpuProfile()", + "signature": "`worker.startCpuProfile()`", + "apiSymbol": "worker.startCpuProfile", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html#workerstartcpuprofile", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:worker_threads", + "tests": [] + } + } + }, + { + "id": "worker_threads:a4e0ad92946d", + "chapter": "worker_threads", + "label": "worker.startHeapProfile()", + "signature": "`worker.startHeapProfile()`", + "apiSymbol": "worker.startHeapProfile", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html#workerstartheapprofile", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:worker_threads", + "tests": [] + } + } + }, + { + "id": "worker_threads:fcf587df6a0a", + "chapter": "worker_threads", + "label": "worker.terminate()", + "signature": "`worker.terminate()`", + "apiSymbol": "worker.terminate", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html#workerterminate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:worker_threads", + "tests": [] + } + } + }, + { + "id": "worker_threads:bcafd270d5a4", + "chapter": "worker_threads", + "label": "worker.unref()", + "signature": "`worker.unref()`", + "apiSymbol": "worker.unref", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html#workerunref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:worker_threads", + "tests": [] + } + } + }, + { + "id": "worker_threads:8502ade0dfc3", + "chapter": "worker_threads", + "label": "worker[Symbol.asyncDispose]()", + "signature": "`worker[Symbol.asyncDispose]()`", + "apiSymbol": "worker", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html#workersymbolasyncdispose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:worker_threads", + "tests": [] + } + } + }, + { + "id": "worker_threads:b499a5daed50", + "chapter": "worker_threads", + "label": "worker.performance", + "signature": "`worker.performance`", + "apiSymbol": "worker.performance", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html#workerperformance", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:worker_threads", + "tests": [] + } + } + }, + { + "id": "worker_threads:f665e4fe7d26", + "chapter": "worker_threads", + "label": "performance.eventLoopUtilization([utilization1[, utilization2]])", + "signature": "`performance.eventLoopUtilization([utilization1[, utilization2]])`", + "apiSymbol": "performance.eventLoopUtilization", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html#performanceeventlooputilizationutilization1-utilization2", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:worker_threads", + "tests": [] + } + } + }, + { + "id": "worker_threads:a9b70ec46e67", + "chapter": "worker_threads", + "label": "resourceLimits", + "signature": "`resourceLimits` Type: {Object}", + "apiSymbol": "resourceLimits", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html#class-worker", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:worker_threads.resourceLimits", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "worker_threads:efa929d81b46", + "chapter": "worker_threads", + "label": "stderr", + "signature": "`stderr` Type: {stream.Readable}", + "apiSymbol": "stderr", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html#class-worker", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:worker_threads", + "tests": [] + } + } + }, + { + "id": "worker_threads:cae35208baa5", + "chapter": "worker_threads", + "label": "stdin", + "signature": "`stdin` Type: {null|stream.Writable}", + "apiSymbol": "stdin", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html#class-worker", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:worker_threads", + "tests": [] + } + } + }, + { + "id": "worker_threads:58e72446eda6", + "chapter": "worker_threads", + "label": "stdout", + "signature": "`stdout` Type: {stream.Readable}", + "apiSymbol": "stdout", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html#class-worker", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:worker_threads", + "tests": [] + } + } + }, + { + "id": "worker_threads:e44f6340458d", + "chapter": "worker_threads", + "label": "threadId", + "signature": "`threadId` Type: {integer}", + "apiSymbol": "threadId", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html#class-worker", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.worker_threads.threadId", + "tests": [ + "tests/corpus/957-builtins-namespace.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:worker_threads.threadId", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "worker_threads:4f475e9f95bd", + "chapter": "worker_threads", + "label": "threadName", + "signature": "`threadName` {string|null}", + "apiSymbol": "threadName", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html#class-worker", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:worker_threads", + "tests": [] + } + } + }, + { + "id": "worker_threads:8d3a7dcfa968", + "chapter": "worker_threads", + "label": "'error'", + "signature": "Event: `'error'`", + "apiSymbol": "'error'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html#event-error", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:worker_threads", + "tests": [] + } + } + }, + { + "id": "worker_threads:7fa7816fa878", + "chapter": "worker_threads", + "label": "'exit'", + "signature": "Event: `'exit'`", + "apiSymbol": "'exit'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html#event-exit", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:worker_threads", + "tests": [] + } + } + }, + { + "id": "worker_threads:18389d4c2d81", + "chapter": "worker_threads", + "label": "'message'", + "signature": "Event: `'message'`", + "apiSymbol": "'message'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html#event-message_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:worker_threads", + "tests": [] + } + } + }, + { + "id": "worker_threads:af0c1725084e", + "chapter": "worker_threads", + "label": "'messageerror'", + "signature": "Event: `'messageerror'`", + "apiSymbol": "'messageerror'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html#event-messageerror_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:worker_threads", + "tests": [] + } + } + }, + { + "id": "worker_threads:9c5a8d6e723d", + "chapter": "worker_threads", + "label": "'online'", + "signature": "Event: `'online'`", + "apiSymbol": "'online'", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html#event-online", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:worker_threads", + "tests": [] + } + } + }, + { + "id": "worker_threads:c8c1e9f553f9", + "chapter": "worker_threads", + "label": "worker_threads.getEnvironmentData(key)", + "signature": "`worker_threads.getEnvironmentData(key)`", + "apiSymbol": "worker_threads.getEnvironmentData", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html#worker_threadsgetenvironmentdatakey", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:worker_threads.getEnvironmentData", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "worker_threads:3d8d04215ee7", + "chapter": "worker_threads", + "label": "worker_threads.markAsUntransferable(object)", + "signature": "`worker_threads.markAsUntransferable(object)`", + "apiSymbol": "worker_threads.markAsUntransferable", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html#worker_threadsmarkasuntransferableobject", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:worker_threads.markAsUntransferable", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "worker_threads:9a73a9191b81", + "chapter": "worker_threads", + "label": "worker_threads.isMarkedAsUntransferable(object)", + "signature": "`worker_threads.isMarkedAsUntransferable(object)`", + "apiSymbol": "worker_threads.isMarkedAsUntransferable", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html#worker_threadsismarkedasuntransferableobject", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:worker_threads", + "tests": [] + } + } + }, + { + "id": "worker_threads:323635b01e95", + "chapter": "worker_threads", + "label": "worker_threads.markAsUncloneable(object)", + "signature": "`worker_threads.markAsUncloneable(object)`", + "apiSymbol": "worker_threads.markAsUncloneable", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html#worker_threadsmarkasuncloneableobject", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:worker_threads", + "tests": [] + } + } + }, + { + "id": "worker_threads:6e322a3abb2a", + "chapter": "worker_threads", + "label": "worker_threads.moveMessagePortToContext(port, contextifiedSandbox)", + "signature": "`worker_threads.moveMessagePortToContext(port, contextifiedSandbox)`", + "apiSymbol": "worker_threads.moveMessagePortToContext", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html#worker_threadsmovemessageporttocontextport-contextifiedsandbox", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:worker_threads", + "tests": [] + } + } + }, + { + "id": "worker_threads:b353e1b0cd58", + "chapter": "worker_threads", + "label": "worker_threads.postMessageToThread(threadId, value[, transferList][, timeout])", + "signature": "`worker_threads.postMessageToThread(threadId, value[, transferList][, timeout])`", + "apiSymbol": "worker_threads.postMessageToThread", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html#worker_threadspostmessagetothreadthreadid-value-transferlist-timeout", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:worker_threads", + "tests": [] + } + } + }, + { + "id": "worker_threads:c809b5d89f8d", + "chapter": "worker_threads", + "label": "worker_threads.receiveMessageOnPort(port)", + "signature": "`worker_threads.receiveMessageOnPort(port)`", + "apiSymbol": "worker_threads.receiveMessageOnPort", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html#worker_threadsreceivemessageonportport", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:worker_threads.receiveMessageOnPort", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "worker_threads:cfc588f55a52", + "chapter": "worker_threads", + "label": "worker_threads.setEnvironmentData(key[, value])", + "signature": "`worker_threads.setEnvironmentData(key[, value])`", + "apiSymbol": "worker_threads.setEnvironmentData", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html#worker_threadssetenvironmentdatakey-value", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:worker_threads.setEnvironmentData", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "worker_threads:48c73a2517e5", + "chapter": "worker_threads", + "label": "isInternalThread", + "signature": "`isInternalThread` Type: {boolean}", + "apiSymbol": "isInternalThread", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:worker_threads", + "tests": [] + } + } + }, + { + "id": "worker_threads:3b43f2113dee", + "chapter": "worker_threads", + "label": "isMainThread", + "signature": "`isMainThread` Type: {boolean}", + "apiSymbol": "isMainThread", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.worker_threads.isMainThread", + "tests": [ + "tests/corpus/957-builtins-namespace.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:worker_threads.isMainThread", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "worker_threads:d2494e5a39fe", + "chapter": "worker_threads", + "label": "parentPort", + "signature": "`parentPort` Type: {null|MessagePort}", + "apiSymbol": "parentPort", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:worker_threads.parentPort", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "worker_threads:c635fc5e9af1", + "chapter": "worker_threads", + "label": "resourceLimits", + "signature": "`resourceLimits` Type: {Object}", + "apiSymbol": "resourceLimits", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:worker_threads.resourceLimits", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "worker_threads:54960c77536b", + "chapter": "worker_threads", + "label": "SHARE_ENV", + "signature": "`SHARE_ENV` Type: {symbol}", + "apiSymbol": "SHARE_ENV", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:worker_threads.SHARE_ENV", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "worker_threads:51c40ec5e385", + "chapter": "worker_threads", + "label": "threadId", + "signature": "`threadId` Type: {integer}", + "apiSymbol": "threadId", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.worker_threads.threadId", + "tests": [ + "tests/corpus/957-builtins-namespace.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:worker_threads.threadId", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "worker_threads:b24d867784a1", + "chapter": "worker_threads", + "label": "threadName", + "signature": "`threadName` {string|null}", + "apiSymbol": "threadName", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:worker_threads", + "tests": [] + } + } + }, + { + "id": "worker_threads:4a1136335aed", + "chapter": "worker_threads", + "label": "worker_threads.workerData", + "signature": "`worker_threads.workerData`", + "apiSymbol": "worker_threads.workerData", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html#worker_threadsworkerdata", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:worker_threads.workerData", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + } + } + }, + { + "id": "worker_threads:494c0be22bd9", + "chapter": "worker_threads", + "label": "locks", + "signature": "`locks` {LockManager}", + "apiSymbol": "locks", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:worker_threads", + "tests": [] + } + } + }, + { + "id": "worker_threads:e94146c6a707", + "chapter": "worker_threads", + "label": "Lock", + "signature": "Class: `Lock`", + "apiSymbol": "Lock", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html#class-lock", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:worker_threads", + "tests": [] + } + } + }, + { + "id": "worker_threads:48350287fe0a", + "chapter": "worker_threads", + "label": "name", + "signature": "`name` {string}", + "apiSymbol": "name", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html#class-lock", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:worker_threads", + "tests": [] + } + } + }, + { + "id": "worker_threads:11e01a881cd8", + "chapter": "worker_threads", + "label": "mode", + "signature": "`mode` {string}", + "apiSymbol": "mode", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html#class-lock", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:worker_threads", + "tests": [] + } + } + }, + { + "id": "worker_threads:88665c57101b", + "chapter": "worker_threads", + "label": "LockManager", + "signature": "Class: `LockManager`", + "apiSymbol": "LockManager", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html#class-lockmanager", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:worker_threads", + "tests": [] + } + } + }, + { + "id": "worker_threads:785d2e08642b", + "chapter": "worker_threads", + "label": "locks.request(name[, options], callback)", + "signature": "`locks.request(name[, options], callback)`", + "apiSymbol": "locks.request", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html#locksrequestname-options-callback", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:worker_threads", + "tests": [] + } + } + }, + { + "id": "worker_threads:9ed6b67ed9e0", + "chapter": "worker_threads", + "label": "locks.query()", + "signature": "`locks.query()`", + "apiSymbol": "locks.query", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/worker_threads.html#locksquery", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:worker_threads", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:worker_threads", + "tests": [] + } + } + }, + { + "id": "zlib:4b20a6571ae3", + "chapter": "zlib", + "label": "zlib.BrotliCompress", + "signature": "Class: `zlib.BrotliCompress`", + "apiSymbol": "zlib.BrotliCompress", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#class-zlibbrotlicompress", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:zlib.BrotliCompress", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + } + } + }, + { + "id": "zlib:4169f388cdff", + "chapter": "zlib", + "label": "zlib.BrotliDecompress", + "signature": "Class: `zlib.BrotliDecompress`", + "apiSymbol": "zlib.BrotliDecompress", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#class-zlibbrotlidecompress", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:zlib.BrotliDecompress", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + } + } + }, + { + "id": "zlib:ded1ef888418", + "chapter": "zlib", + "label": "zlib.Deflate", + "signature": "Class: `zlib.Deflate`", + "apiSymbol": "zlib.Deflate", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#class-zlibdeflate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:zlib.Deflate", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + } + } + }, + { + "id": "zlib:4affff3a2d56", + "chapter": "zlib", + "label": "zlib.DeflateRaw", + "signature": "Class: `zlib.DeflateRaw`", + "apiSymbol": "zlib.DeflateRaw", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#class-zlibdeflateraw", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:zlib.DeflateRaw", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + } + } + }, + { + "id": "zlib:2b0d3efcf5d6", + "chapter": "zlib", + "label": "zlib.Gunzip", + "signature": "Class: `zlib.Gunzip`", + "apiSymbol": "zlib.Gunzip", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#class-zlibgunzip", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:zlib.Gunzip", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + } + } + }, + { + "id": "zlib:02184f773e95", + "chapter": "zlib", + "label": "zlib.Gzip", + "signature": "Class: `zlib.Gzip`", + "apiSymbol": "zlib.Gzip", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#class-zlibgzip", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:zlib.Gzip", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + } + } + }, + { + "id": "zlib:ebb640d531fc", + "chapter": "zlib", + "label": "zlib.Inflate", + "signature": "Class: `zlib.Inflate`", + "apiSymbol": "zlib.Inflate", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#class-zlibinflate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:zlib.Inflate", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + } + } + }, + { + "id": "zlib:1fe0c9a8930f", + "chapter": "zlib", + "label": "zlib.InflateRaw", + "signature": "Class: `zlib.InflateRaw`", + "apiSymbol": "zlib.InflateRaw", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#class-zlibinflateraw", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:zlib.InflateRaw", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + } + } + }, + { + "id": "zlib:c84ea8856d26", + "chapter": "zlib", + "label": "zlib.Unzip", + "signature": "Class: `zlib.Unzip`", + "apiSymbol": "zlib.Unzip", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#class-zlibunzip", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:zlib.Unzip", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + } + } + }, + { + "id": "zlib:c58d0ed2b80a", + "chapter": "zlib", + "label": "zlib.ZlibBase", + "signature": "Class: `zlib.ZlibBase`", + "apiSymbol": "zlib.ZlibBase", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#class-zlibzlibbase", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:zlib", + "tests": [] + } + } + }, + { + "id": "zlib:ede53f463eab", + "chapter": "zlib", + "label": "zlib.close([callback])", + "signature": "`zlib.close([callback])`", + "apiSymbol": "zlib.close", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#zlibclosecallback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:zlib.zlib.close", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + } + } + }, + { + "id": "zlib:fd8ca0a6f7bc", + "chapter": "zlib", + "label": "zlib.flush([kind, ]callback)", + "signature": "`zlib.flush([kind, ]callback)`", + "apiSymbol": "zlib.flush", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#zlibflushkind-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:zlib.zlib.flush", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + } + } + }, + { + "id": "zlib:71e1c5251a95", + "chapter": "zlib", + "label": "zlib.params(level, strategy, callback)", + "signature": "`zlib.params(level, strategy, callback)`", + "apiSymbol": "zlib.params", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#zlibparamslevel-strategy-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:zlib", + "tests": [] + } + } + }, + { + "id": "zlib:5479c2d3644d", + "chapter": "zlib", + "label": "zlib.reset()", + "signature": "`zlib.reset()`", + "apiSymbol": "zlib.reset", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#zlibreset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-member:node:zlib.zlib.reset", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + } + } + }, + { + "id": "zlib:f048fe3814cc", + "chapter": "zlib", + "label": "bytesWritten", + "signature": "`bytesWritten` Type: {number}", + "apiSymbol": "bytesWritten", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#class-zlibzlibbase", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:zlib", + "tests": [] + } + } + }, + { + "id": "zlib:076dcd29d91e", + "chapter": "zlib", + "label": "zlib.ZstdCompress", + "signature": "Class: `zlib.ZstdCompress`", + "apiSymbol": "zlib.ZstdCompress", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#class-zlibzstdcompress", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:zlib", + "tests": [] + } + } + }, + { + "id": "zlib:bcc9b628cb17", + "chapter": "zlib", + "label": "zlib.ZstdDecompress", + "signature": "Class: `zlib.ZstdDecompress`", + "apiSymbol": "zlib.ZstdDecompress", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#class-zlibzstddecompress", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:zlib", + "tests": [] + } + } + }, + { + "id": "zlib:b06d152f415a", + "chapter": "zlib", + "label": "zlib.crc32(data[, value])", + "signature": "`zlib.crc32(data[, value])`", + "apiSymbol": "zlib.crc32", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#zlibcrc32data-value", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:zlib", + "tests": [] + } + } + }, + { + "id": "zlib:2c0bf8d1287b", + "chapter": "zlib", + "label": "zlib.createBrotliCompress([options])", + "signature": "`zlib.createBrotliCompress([options])`", + "apiSymbol": "zlib.createBrotliCompress", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#zlibcreatebrotlicompressoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:zlib.createBrotliCompress", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + } + } + }, + { + "id": "zlib:4982c1ed786e", + "chapter": "zlib", + "label": "zlib.createBrotliDecompress([options])", + "signature": "`zlib.createBrotliDecompress([options])`", + "apiSymbol": "zlib.createBrotliDecompress", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#zlibcreatebrotlidecompressoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:zlib.createBrotliDecompress", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + } + } + }, + { + "id": "zlib:d337574567a0", + "chapter": "zlib", + "label": "zlib.createDeflate([options])", + "signature": "`zlib.createDeflate([options])`", + "apiSymbol": "zlib.createDeflate", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#zlibcreatedeflateoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:zlib.createDeflate", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + } + } + }, + { + "id": "zlib:5b0e23669580", + "chapter": "zlib", + "label": "zlib.createDeflateRaw([options])", + "signature": "`zlib.createDeflateRaw([options])`", + "apiSymbol": "zlib.createDeflateRaw", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#zlibcreatedeflaterawoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:zlib.createDeflateRaw", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + } + } + }, + { + "id": "zlib:6961051e8d79", + "chapter": "zlib", + "label": "zlib.createGunzip([options])", + "signature": "`zlib.createGunzip([options])`", + "apiSymbol": "zlib.createGunzip", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#zlibcreategunzipoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:zlib.createGunzip", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + } + } + }, + { + "id": "zlib:885538090b92", + "chapter": "zlib", + "label": "zlib.createGzip([options])", + "signature": "`zlib.createGzip([options])`", + "apiSymbol": "zlib.createGzip", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#zlibcreategzipoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:zlib.createGzip", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + } + } + }, + { + "id": "zlib:bc8dae771b5d", + "chapter": "zlib", + "label": "zlib.createInflate([options])", + "signature": "`zlib.createInflate([options])`", + "apiSymbol": "zlib.createInflate", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#zlibcreateinflateoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:zlib.createInflate", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + } + } + }, + { + "id": "zlib:20bd626cd17f", + "chapter": "zlib", + "label": "zlib.createInflateRaw([options])", + "signature": "`zlib.createInflateRaw([options])`", + "apiSymbol": "zlib.createInflateRaw", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#zlibcreateinflaterawoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:zlib.createInflateRaw", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + } + } + }, + { + "id": "zlib:20d01f57ef22", + "chapter": "zlib", + "label": "zlib.createUnzip([options])", + "signature": "`zlib.createUnzip([options])`", + "apiSymbol": "zlib.createUnzip", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#zlibcreateunzipoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:zlib.createUnzip", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + } + } + }, + { + "id": "zlib:418d301a09fe", + "chapter": "zlib", + "label": "zlib.createZstdCompress([options])", + "signature": "`zlib.createZstdCompress([options])`", + "apiSymbol": "zlib.createZstdCompress", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#zlibcreatezstdcompressoptions", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:zlib", + "tests": [] + } + } + }, + { + "id": "zlib:41240db6ac8a", + "chapter": "zlib", + "label": "zlib.createZstdDecompress([options])", + "signature": "`zlib.createZstdDecompress([options])`", + "apiSymbol": "zlib.createZstdDecompress", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#zlibcreatezstddecompressoptions", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:zlib", + "tests": [] + } + } + }, + { + "id": "zlib:ab5a41da5c98", + "chapter": "zlib", + "label": "zlib.brotliCompress(buffer[, options], callback)", + "signature": "`zlib.brotliCompress(buffer[, options], callback)`", + "apiSymbol": "zlib.brotliCompress", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#zlibbrotlicompressbuffer-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:zlib", + "tests": [] + } + } + }, + { + "id": "zlib:4b56083a4a2b", + "chapter": "zlib", + "label": "zlib.brotliCompressSync(buffer[, options])", + "signature": "`zlib.brotliCompressSync(buffer[, options])`", + "apiSymbol": "zlib.brotliCompressSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#zlibbrotlicompresssyncbuffer-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.zlib.brotliCompressSync", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:zlib.brotliCompressSync", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + } + } + }, + { + "id": "zlib:3a34fb66ef2a", + "chapter": "zlib", + "label": "zlib.brotliDecompress(buffer[, options], callback)", + "signature": "`zlib.brotliDecompress(buffer[, options], callback)`", + "apiSymbol": "zlib.brotliDecompress", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#zlibbrotlidecompressbuffer-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:zlib", + "tests": [] + } + } + }, + { + "id": "zlib:acd9cc6c671e", + "chapter": "zlib", + "label": "zlib.brotliDecompressSync(buffer[, options])", + "signature": "`zlib.brotliDecompressSync(buffer[, options])`", + "apiSymbol": "zlib.brotliDecompressSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#zlibbrotlidecompresssyncbuffer-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.zlib.brotliDecompressSync", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:zlib.brotliDecompressSync", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + } + } + }, + { + "id": "zlib:f604395f9083", + "chapter": "zlib", + "label": "zlib.deflate(buffer[, options], callback)", + "signature": "`zlib.deflate(buffer[, options], callback)`", + "apiSymbol": "zlib.deflate", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#zlibdeflatebuffer-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:zlib.deflate", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + } + } + }, + { + "id": "zlib:428fa9a73083", + "chapter": "zlib", + "label": "zlib.deflateSync(buffer[, options])", + "signature": "`zlib.deflateSync(buffer[, options])`", + "apiSymbol": "zlib.deflateSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#zlibdeflatesyncbuffer-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.zlib.deflateSync", + "tests": [ + "tests/corpus/1404-zlib-crypto-bytes.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:zlib.deflateSync", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + } + } + }, + { + "id": "zlib:e13dae62a27b", + "chapter": "zlib", + "label": "zlib.deflateRaw(buffer[, options], callback)", + "signature": "`zlib.deflateRaw(buffer[, options], callback)`", + "apiSymbol": "zlib.deflateRaw", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#zlibdeflaterawbuffer-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:zlib.deflateRaw", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + } + } + }, + { + "id": "zlib:cc5ec46a0ec0", + "chapter": "zlib", + "label": "zlib.deflateRawSync(buffer[, options])", + "signature": "`zlib.deflateRawSync(buffer[, options])`", + "apiSymbol": "zlib.deflateRawSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#zlibdeflaterawsyncbuffer-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:zlib.deflateRawSync", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + } + } + }, + { + "id": "zlib:7f50b0ec2b90", + "chapter": "zlib", + "label": "zlib.gunzip(buffer[, options], callback)", + "signature": "`zlib.gunzip(buffer[, options], callback)`", + "apiSymbol": "zlib.gunzip", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#zlibgunzipbuffer-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:zlib.gunzip", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + } + } + }, + { + "id": "zlib:c5a483a5c5f2", + "chapter": "zlib", + "label": "zlib.gunzipSync(buffer[, options])", + "signature": "`zlib.gunzipSync(buffer[, options])`", + "apiSymbol": "zlib.gunzipSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#zlibgunzipsyncbuffer-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.zlib.gunzipSync", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:zlib.gunzipSync", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + } + } + }, + { + "id": "zlib:2eecde200f0c", + "chapter": "zlib", + "label": "zlib.gzip(buffer[, options], callback)", + "signature": "`zlib.gzip(buffer[, options], callback)`", + "apiSymbol": "zlib.gzip", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#zlibgzipbuffer-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:zlib.gzip", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + } + } + }, + { + "id": "zlib:10b92c73cb1d", + "chapter": "zlib", + "label": "zlib.gzipSync(buffer[, options])", + "signature": "`zlib.gzipSync(buffer[, options])`", + "apiSymbol": "zlib.gzipSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#zlibgzipsyncbuffer-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.zlib.gzipSync", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:zlib.gzipSync", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + } + } + }, + { + "id": "zlib:e7711bd2b116", + "chapter": "zlib", + "label": "zlib.inflate(buffer[, options], callback)", + "signature": "`zlib.inflate(buffer[, options], callback)`", + "apiSymbol": "zlib.inflate", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#zlibinflatebuffer-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:zlib.inflate", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + } + } + }, + { + "id": "zlib:001d7aadd24b", + "chapter": "zlib", + "label": "zlib.inflateSync(buffer[, options])", + "signature": "`zlib.inflateSync(buffer[, options])`", + "apiSymbol": "zlib.inflateSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#zlibinflatesyncbuffer-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.zlib.inflateSync", + "tests": [ + "tests/corpus/1404-zlib-crypto-bytes.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:zlib.inflateSync", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + } + } + }, + { + "id": "zlib:a5bfce8f8ba8", + "chapter": "zlib", + "label": "zlib.inflateRaw(buffer[, options], callback)", + "signature": "`zlib.inflateRaw(buffer[, options], callback)`", + "apiSymbol": "zlib.inflateRaw", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#zlibinflaterawbuffer-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:zlib.inflateRaw", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + } + } + }, + { + "id": "zlib:1223334f59ae", + "chapter": "zlib", + "label": "zlib.inflateRawSync(buffer[, options])", + "signature": "`zlib.inflateRawSync(buffer[, options])`", + "apiSymbol": "zlib.inflateRawSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#zlibinflaterawsyncbuffer-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:zlib.inflateRawSync", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + } + } + }, + { + "id": "zlib:ef1aacfe74c4", + "chapter": "zlib", + "label": "zlib.unzip(buffer[, options], callback)", + "signature": "`zlib.unzip(buffer[, options], callback)`", + "apiSymbol": "zlib.unzip", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#zlibunzipbuffer-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:zlib.unzip", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + } + } + }, + { + "id": "zlib:a80685d2463e", + "chapter": "zlib", + "label": "zlib.unzipSync(buffer[, options])", + "signature": "`zlib.unzipSync(buffer[, options])`", + "apiSymbol": "zlib.unzipSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#zlibunzipsyncbuffer-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.zlib.unzipSync", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:zlib.unzipSync", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + } + } + }, + { + "id": "zlib:5895bed69c8c", + "chapter": "zlib", + "label": "zlib.zstdCompress(buffer[, options], callback)", + "signature": "`zlib.zstdCompress(buffer[, options], callback)`", + "apiSymbol": "zlib.zstdCompress", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#zlibzstdcompressbuffer-options-callback", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:zlib", + "tests": [] + } + } + }, + { + "id": "zlib:ab3099bbfcd6", + "chapter": "zlib", + "label": "zlib.zstdCompressSync(buffer[, options])", + "signature": "`zlib.zstdCompressSync(buffer[, options])`", + "apiSymbol": "zlib.zstdCompressSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#zlibzstdcompresssyncbuffer-options", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:zlib", + "tests": [] + } + } + }, + { + "id": "zlib:38d8fda01d1d", + "chapter": "zlib", + "label": "zlib.zstdDecompress(buffer[, options], callback)", + "signature": "`zlib.zstdDecompress(buffer[, options], callback)`", + "apiSymbol": "zlib.zstdDecompress", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#zlibzstddecompressbuffer-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:zlib", + "tests": [] + } + } + }, + { + "id": "zlib:a6c146459cf4", + "chapter": "zlib", + "label": "zlib.zstdDecompressSync(buffer[, options])", + "signature": "`zlib.zstdDecompressSync(buffer[, options])`", + "apiSymbol": "zlib.zstdDecompressSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#zlibzstddecompresssyncbuffer-options", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:zlib", + "tests": [] + } + } + }, + { + "id": "zlib:aed3ed5b0674", + "chapter": "zlib", + "label": "zlib.constants", + "signature": "`zlib.constants`", + "apiSymbol": "zlib.constants", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#zlibconstants", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:zlib.constants", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + } + } + }, + { + "id": "zlib:6cc61b0f19f5", + "chapter": "zlib", + "label": "Options", + "signature": "Class: `Options`", + "apiSymbol": "Options", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#class-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:zlib", + "tests": [] + } + } + }, + { + "id": "zlib:52722fa8b0c9", + "chapter": "zlib", + "label": "BrotliOptions", + "signature": "Class: `BrotliOptions`", + "apiSymbol": "BrotliOptions", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#class-brotlioptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:zlib", + "tests": [] + } + } + }, + { + "id": "zlib:da020127898d", + "chapter": "zlib", + "label": "ZstdOptions", + "signature": "Class: `ZstdOptions`", + "apiSymbol": "ZstdOptions", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#class-zstdoptions", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:zlib", + "tests": [] + } + } + }, + { + "id": "zlib:3e66247e360c", + "chapter": "zlib", + "label": "zlib.brotliCompress(buffer[, options], callback)", + "signature": "`zlib.brotliCompress(buffer[, options], callback)`", + "apiSymbol": "zlib.brotliCompress", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:zlib", + "tests": [] + } + } + }, + { + "id": "zlib:9490d47c61f4", + "chapter": "zlib", + "label": "zlib.brotliCompressSync(buffer[, options])", + "signature": "`zlib.brotliCompressSync(buffer[, options])`", + "apiSymbol": "zlib.brotliCompressSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.zlib.brotliCompressSync", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:zlib.brotliCompressSync", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + } + } + }, + { + "id": "zlib:f2e78ece88df", + "chapter": "zlib", + "label": "zlib.brotliDecompress(buffer[, options], callback)", + "signature": "`zlib.brotliDecompress(buffer[, options], callback)`", + "apiSymbol": "zlib.brotliDecompress", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:zlib", + "tests": [] + } + } + }, + { + "id": "zlib:53a4733c7181", + "chapter": "zlib", + "label": "zlib.brotliDecompressSync(buffer[, options])", + "signature": "`zlib.brotliDecompressSync(buffer[, options])`", + "apiSymbol": "zlib.brotliDecompressSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.zlib.brotliDecompressSync", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:zlib.brotliDecompressSync", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + } + } + }, + { + "id": "zlib:3cd87dedcccf", + "chapter": "zlib", + "label": "zlib.deflate(buffer[, options], callback)", + "signature": "`zlib.deflate(buffer[, options], callback)`", + "apiSymbol": "zlib.deflate", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:zlib.deflate", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + } + } + }, + { + "id": "zlib:667d3c8ee3a2", + "chapter": "zlib", + "label": "zlib.deflateSync(buffer[, options])", + "signature": "`zlib.deflateSync(buffer[, options])`", + "apiSymbol": "zlib.deflateSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.zlib.deflateSync", + "tests": [ + "tests/corpus/1404-zlib-crypto-bytes.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:zlib.deflateSync", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + } + } + }, + { + "id": "zlib:ec5f9d2b1eea", + "chapter": "zlib", + "label": "zlib.deflateRaw(buffer[, options], callback)", + "signature": "`zlib.deflateRaw(buffer[, options], callback)`", + "apiSymbol": "zlib.deflateRaw", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:zlib.deflateRaw", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + } + } + }, + { + "id": "zlib:11a916863a7b", + "chapter": "zlib", + "label": "zlib.deflateRawSync(buffer[, options])", + "signature": "`zlib.deflateRawSync(buffer[, options])`", + "apiSymbol": "zlib.deflateRawSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:zlib.deflateRawSync", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + } + } + }, + { + "id": "zlib:49ec4da71666", + "chapter": "zlib", + "label": "zlib.gunzip(buffer[, options], callback)", + "signature": "`zlib.gunzip(buffer[, options], callback)`", + "apiSymbol": "zlib.gunzip", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:zlib.gunzip", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + } + } + }, + { + "id": "zlib:6c545740165d", + "chapter": "zlib", + "label": "zlib.gunzipSync(buffer[, options])", + "signature": "`zlib.gunzipSync(buffer[, options])`", + "apiSymbol": "zlib.gunzipSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.zlib.gunzipSync", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:zlib.gunzipSync", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + } + } + }, + { + "id": "zlib:7e4988c596d9", + "chapter": "zlib", + "label": "zlib.gzip(buffer[, options], callback)", + "signature": "`zlib.gzip(buffer[, options], callback)`", + "apiSymbol": "zlib.gzip", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:zlib.gzip", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + } + } + }, + { + "id": "zlib:56c1bf0a2e9e", + "chapter": "zlib", + "label": "zlib.gzipSync(buffer[, options])", + "signature": "`zlib.gzipSync(buffer[, options])`", + "apiSymbol": "zlib.gzipSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.zlib.gzipSync", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:zlib.gzipSync", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + } + } + }, + { + "id": "zlib:c3a6ce69f46f", + "chapter": "zlib", + "label": "zlib.inflate(buffer[, options], callback)", + "signature": "`zlib.inflate(buffer[, options], callback)`", + "apiSymbol": "zlib.inflate", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:zlib.inflate", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + } + } + }, + { + "id": "zlib:1f0ae73c9ea6", + "chapter": "zlib", + "label": "zlib.inflateSync(buffer[, options])", + "signature": "`zlib.inflateSync(buffer[, options])`", + "apiSymbol": "zlib.inflateSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "surface-manifest:node-builtin.zlib.inflateSync", + "tests": [ + "tests/corpus/1404-zlib-crypto-bytes.ts" + ] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:zlib.inflateSync", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + } + } + }, + { + "id": "zlib:424390e3fe15", + "chapter": "zlib", + "label": "zlib.inflateRaw(buffer[, options], callback)", + "signature": "`zlib.inflateRaw(buffer[, options], callback)`", + "apiSymbol": "zlib.inflateRaw", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:zlib.inflateRaw", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + } + } + }, + { + "id": "zlib:13ab6395ec04", + "chapter": "zlib", + "label": "zlib.inflateRawSync(buffer[, options])", + "signature": "`zlib.inflateRawSync(buffer[, options])`", + "apiSymbol": "zlib.inflateRawSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:zlib.inflateRawSync", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + } + } + }, + { + "id": "zlib:85bd58305e85", + "chapter": "zlib", + "label": "zlib.unzip(buffer[, options], callback)", + "signature": "`zlib.unzip(buffer[, options], callback)`", + "apiSymbol": "zlib.unzip", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:zlib.unzip", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + } + } + }, + { + "id": "zlib:d04e82f9a82e", + "chapter": "zlib", + "label": "zlib.unzipSync(buffer[, options])", + "signature": "`zlib.unzipSync(buffer[, options])`", + "apiSymbol": "zlib.unzipSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "refused", + "action": "replace-refusal", + "verification": "explicit-refusal", + "confidence": "high", + "source": "surface-manifest:unsupported:node-builtin.zlib.unzipSync", + "tests": [] + }, + "dynamic": { + "status": "partial", + "action": "audit-partial", + "verification": "test-backed", + "confidence": "high", + "source": "island-export:node:zlib.unzipSync", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + } + } + }, + { + "id": "zlib:43de580a1778", + "chapter": "zlib", + "label": "zlib.zstdCompress(buffer[, options], callback)", + "signature": "`zlib.zstdCompress(buffer[, options], callback)`", + "apiSymbol": "zlib.zstdCompress", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#convenience-methods", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:zlib", + "tests": [] + } + } + }, + { + "id": "zlib:6f8b52c2236d", + "chapter": "zlib", + "label": "zlib.zstdCompressSync(buffer[, options])", + "signature": "`zlib.zstdCompressSync(buffer[, options])`", + "apiSymbol": "zlib.zstdCompressSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#convenience-methods", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:zlib", + "tests": [] + } + } + }, + { + "id": "zlib:84792f46b3fa", + "chapter": "zlib", + "label": "zlib.zstdDecompress(buffer[, options], callback)", + "signature": "`zlib.zstdDecompress(buffer[, options], callback)`", + "apiSymbol": "zlib.zstdDecompress", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "priority": "high", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:zlib", + "tests": [] + } + } + }, + { + "id": "zlib:669c3150be97", + "chapter": "zlib", + "label": "zlib.zstdDecompressSync(buffer[, options])", + "signature": "`zlib.zstdDecompressSync(buffer[, options])`", + "apiSymbol": "zlib.zstdDecompressSync", + "docsUrl": "https://nodejs.org/docs/v24.15.0/api/zlib.html#convenience-methods", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "priority": "low", + "tiers": { + "static": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "compiler-unmatched:zlib", + "tests": [] + }, + "dynamic": { + "status": "not-implemented", + "action": "verify-gap", + "verification": "registry-gap", + "confidence": "low", + "source": "island-unmatched:zlib", + "tests": [] + } + } + } + ] +} diff --git a/internal/compatibility/generated/node-v24-internal.json b/internal/compatibility/generated/node-v24-internal.json new file mode 100644 index 000000000..f0f026d9a --- /dev/null +++ b/internal/compatibility/generated/node-v24-internal.json @@ -0,0 +1,127411 @@ +{ + "schemaVersion": 4, + "nodeVersion": "24.15.0", + "nodeTag": "v24.15.0", + "nodeCommit": "848430679556aed0bd073f2bc263331ad84fa119", + "sources": { + "allJson": { + "url": "https://nodejs.org/download/release/v24.15.0/docs/api/all.json", + "sha256": "ad66cf85ee273e20ede86b6864cc6ecd1ae6d9ea44f2011e75f4427223f7d16c" + }, + "indexMarkdown": { + "url": "https://nodejs.org/docs/v24.15.0/api/index.md", + "sha256": "616b1d2c1cd02854963db4598c5ce9dcd633464e1534830be3f55ab714e255c4" + }, + "sourceBaseUrl": "https://github.com/nodejs/node/tree/848430679556aed0bd073f2bc263331ad84fa119" + }, + "supportManifests": { + "compilerSurface": "packages/compiler/surface-manifest.json", + "compilerDedicated": "internal/compatibility/static-support.json", + "dynamicIsland": "internal/compatibility/dynamic-support.json" + }, + "chapters": [ + { + "slug": "assert", + "title": "Assertion testing", + "entries": 34, + "apiEntries": 29, + "static": { + "supported": 0, + "partial": 15, + "refused": 6, + "not-implemented": 8, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 20, + "refused": 0, + "not-implemented": 9, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "async_context", + "title": "Asynchronous context tracking", + "entries": 19, + "apiEntries": 17, + "static": { + "supported": 0, + "partial": 7, + "refused": 0, + "not-implemented": 10, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 15, + "refused": 0, + "not-implemented": 2, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "async_hooks", + "title": "Async hooks", + "entries": 28, + "apiEntries": 20, + "static": { + "supported": 0, + "partial": 4, + "refused": 0, + "not-implemented": 16, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 8, + "refused": 0, + "not-implemented": 12, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "buffer", + "title": "Buffer", + "entries": 103, + "apiEntries": 98, + "static": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 98, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 76, + "refused": 0, + "not-implemented": 22, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "addons", + "title": "C++ addons", + "entries": 18, + "apiEntries": 3, + "static": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 0, + "by-design": 3, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 0, + "by-design": 3, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "n-api", + "title": "C/C++ addons with Node-API", + "entries": 242, + "apiEntries": 191, + "static": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 0, + "by-design": 191, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 0, + "by-design": 191, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "embedding", + "title": "C++ embedder API", + "entries": 3, + "apiEntries": 1, + "static": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 0, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 1 + }, + "dynamic": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 0, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 1 + } + }, + { + "slug": "child_process", + "title": "Child processes", + "entries": 44, + "apiEntries": 39, + "static": { + "supported": 0, + "partial": 5, + "refused": 1, + "not-implemented": 33, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 0, + "refused": 7, + "not-implemented": 32, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "cluster", + "title": "Cluster", + "entries": 35, + "apiEntries": 34, + "static": { + "supported": 0, + "partial": 4, + "refused": 0, + "not-implemented": 30, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 34, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "cli", + "title": "Command-line options", + "entries": 237, + "apiEntries": 1, + "static": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 0, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 1 + }, + "dynamic": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 0, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 1 + } + }, + { + "slug": "console", + "title": "Console", + "entries": 25, + "apiEntries": 24, + "static": { + "supported": 0, + "partial": 6, + "refused": 0, + "not-implemented": 18, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 18, + "refused": 0, + "not-implemented": 6, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "crypto", + "title": "Crypto", + "entries": 167, + "apiEntries": 145, + "static": { + "supported": 0, + "partial": 3, + "refused": 35, + "not-implemented": 107, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 28, + "refused": 34, + "not-implemented": 83, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "debugger", + "title": "Debugger", + "entries": 10, + "apiEntries": 1, + "static": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 0, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 1 + }, + "dynamic": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 0, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 1 + } + }, + { + "slug": "deprecations", + "title": "Deprecated APIs", + "entries": 205, + "apiEntries": 1, + "static": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 0, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 1 + }, + "dynamic": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 0, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 1 + } + }, + { + "slug": "diagnostics_channel", + "title": "Diagnostics Channel", + "entries": 82, + "apiEntries": 69, + "static": { + "supported": 0, + "partial": 8, + "refused": 0, + "not-implemented": 61, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 14, + "refused": 0, + "not-implemented": 55, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "dns", + "title": "DNS", + "entries": 55, + "apiEntries": 51, + "static": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 51, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 5, + "refused": 13, + "not-implemented": 33, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "domain", + "title": "Domain", + "entries": 16, + "apiEntries": 12, + "static": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 12, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 10, + "refused": 0, + "not-implemented": 2, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "environment_variables", + "title": "Environment Variables", + "entries": 12, + "apiEntries": 2, + "static": { + "supported": 0, + "partial": 2, + "refused": 0, + "not-implemented": 0, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 2, + "refused": 0, + "not-implemented": 0, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "errors", + "title": "Errors", + "entries": 475, + "apiEntries": 461, + "static": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 461, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 461, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "events", + "title": "Events", + "entries": 84, + "apiEntries": 78, + "static": { + "supported": 0, + "partial": 22, + "refused": 0, + "not-implemented": 56, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 25, + "refused": 0, + "not-implemented": 53, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "fs", + "title": "File system", + "entries": 308, + "apiEntries": 276, + "static": { + "supported": 0, + "partial": 38, + "refused": 0, + "not-implemented": 238, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 78, + "refused": 10, + "not-implemented": 188, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "globals", + "title": "Globals", + "entries": 94, + "apiEntries": 92, + "static": { + "supported": 0, + "partial": 8, + "refused": 0, + "not-implemented": 84, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 33, + "refused": 0, + "not-implemented": 59, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "http", + "title": "HTTP", + "entries": 176, + "apiEntries": 174, + "static": { + "supported": 0, + "partial": 24, + "refused": 0, + "not-implemented": 150, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 22, + "refused": 2, + "not-implemented": 150, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "http2", + "title": "HTTP/2", + "entries": 184, + "apiEntries": 167, + "static": { + "supported": 0, + "partial": 14, + "refused": 2, + "not-implemented": 151, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 167, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "https", + "title": "HTTPS", + "entries": 21, + "apiEntries": 20, + "static": { + "supported": 0, + "partial": 12, + "refused": 0, + "not-implemented": 8, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 7, + "refused": 2, + "not-implemented": 11, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "inspector", + "title": "Inspector", + "entries": 39, + "apiEntries": 30, + "static": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 30, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 30, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "intl", + "title": "Internationalization", + "entries": 8, + "apiEntries": 1, + "static": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 0, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 1 + }, + "dynamic": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 0, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 1 + } + }, + { + "slug": "modules", + "title": "Modules: CommonJS modules", + "entries": 41, + "apiEntries": 27, + "static": { + "supported": 0, + "partial": 13, + "refused": 0, + "not-implemented": 11, + "by-design": 0, + "unreviewed": 3, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 18, + "refused": 0, + "not-implemented": 9, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "esm", + "title": "Modules: ECMAScript modules", + "entries": 46, + "apiEntries": 22, + "static": { + "supported": 0, + "partial": 7, + "refused": 0, + "not-implemented": 14, + "by-design": 0, + "unreviewed": 1, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 8, + "refused": 0, + "not-implemented": 14, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "module", + "title": "Modules: node:module API", + "entries": 55, + "apiEntries": 30, + "static": { + "supported": 0, + "partial": 0, + "refused": 3, + "not-implemented": 27, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 6, + "refused": 2, + "not-implemented": 22, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "packages", + "title": "Modules: Packages", + "entries": 30, + "apiEntries": 8, + "static": { + "supported": 0, + "partial": 8, + "refused": 0, + "not-implemented": 0, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 8, + "refused": 0, + "not-implemented": 0, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "typescript", + "title": "Modules: TypeScript", + "entries": 11, + "apiEntries": 2, + "static": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 2, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 2, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "net", + "title": "Net", + "entries": 102, + "apiEntries": 100, + "static": { + "supported": 0, + "partial": 34, + "refused": 0, + "not-implemented": 66, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 4, + "refused": 11, + "not-implemented": 85, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "os", + "title": "OS", + "entries": 32, + "apiEntries": 24, + "static": { + "supported": 0, + "partial": 10, + "refused": 0, + "not-implemented": 14, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 21, + "refused": 0, + "not-implemented": 3, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "path", + "title": "Path", + "entries": 18, + "apiEntries": 17, + "static": { + "supported": 0, + "partial": 14, + "refused": 0, + "not-implemented": 3, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 16, + "refused": 0, + "not-implemented": 1, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "perf_hooks", + "title": "Performance hooks", + "entries": 106, + "apiEntries": 96, + "static": { + "supported": 0, + "partial": 2, + "refused": 0, + "not-implemented": 94, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 16, + "refused": 0, + "not-implemented": 80, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "permissions", + "title": "Permissions", + "entries": 9, + "apiEntries": 3, + "static": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 3, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 3, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "process", + "title": "Process", + "entries": 126, + "apiEntries": 119, + "static": { + "supported": 0, + "partial": 19, + "refused": 0, + "not-implemented": 100, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 29, + "refused": 0, + "not-implemented": 90, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "punycode", + "title": "Punycode", + "entries": 9, + "apiEntries": 9, + "static": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 9, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 7, + "refused": 0, + "not-implemented": 2, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "querystring", + "title": "Query strings", + "entries": 7, + "apiEntries": 7, + "static": { + "supported": 0, + "partial": 7, + "refused": 0, + "not-implemented": 0, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 7, + "refused": 0, + "not-implemented": 0, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "readline", + "title": "Readline", + "entries": 46, + "apiEntries": 43, + "static": { + "supported": 0, + "partial": 3, + "refused": 0, + "not-implemented": 40, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 17, + "refused": 0, + "not-implemented": 26, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "repl", + "title": "REPL", + "entries": 30, + "apiEntries": 14, + "static": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 14, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 14, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "report", + "title": "Report", + "entries": 11, + "apiEntries": 1, + "static": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 1, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 1, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "single-executable-applications", + "title": "Single executable applications", + "entries": 21, + "apiEntries": 9, + "static": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 0, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 9 + }, + "dynamic": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 0, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 9 + } + }, + { + "slug": "sqlite", + "title": "SQLite", + "entries": 54, + "apiEntries": 48, + "static": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 48, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 48, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "stream", + "title": "Stream", + "entries": 167, + "apiEntries": 137, + "static": { + "supported": 0, + "partial": 31, + "refused": 0, + "not-implemented": 106, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 46, + "refused": 1, + "not-implemented": 90, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "string_decoder", + "title": "String decoder", + "entries": 4, + "apiEntries": 4, + "static": { + "supported": 0, + "partial": 4, + "refused": 0, + "not-implemented": 0, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 4, + "refused": 0, + "not-implemented": 0, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "test", + "title": "Test runner", + "entries": 130, + "apiEntries": 105, + "static": { + "supported": 0, + "partial": 21, + "refused": 0, + "not-implemented": 84, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 105, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "timers", + "title": "Timers", + "entries": 28, + "apiEntries": 25, + "static": { + "supported": 0, + "partial": 18, + "refused": 0, + "not-implemented": 7, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 10, + "refused": 0, + "not-implemented": 15, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "tls", + "title": "TLS/SSL", + "entries": 79, + "apiEntries": 64, + "static": { + "supported": 0, + "partial": 7, + "refused": 4, + "not-implemented": 53, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 2, + "refused": 6, + "not-implemented": 56, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "tracing", + "title": "Trace events", + "entries": 10, + "apiEntries": 9, + "static": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 9, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 9, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "tty", + "title": "TTY", + "entries": 18, + "apiEntries": 18, + "static": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 18, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 4, + "refused": 0, + "not-implemented": 14, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "dgram", + "title": "UDP/datagram", + "entries": 38, + "apiEntries": 36, + "static": { + "supported": 0, + "partial": 12, + "refused": 0, + "not-implemented": 24, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 36, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "url", + "title": "URL", + "entries": 70, + "apiEntries": 62, + "static": { + "supported": 0, + "partial": 3, + "refused": 0, + "not-implemented": 59, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 30, + "refused": 0, + "not-implemented": 32, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "util", + "title": "Utilities", + "entries": 114, + "apiEntries": 105, + "static": { + "supported": 0, + "partial": 4, + "refused": 1, + "not-implemented": 100, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 67, + "refused": 0, + "not-implemented": 38, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "v8", + "title": "V8", + "entries": 72, + "apiEntries": 68, + "static": { + "supported": 0, + "partial": 3, + "refused": 0, + "not-implemented": 0, + "by-design": 65, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 10, + "refused": 12, + "not-implemented": 46, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "vm", + "title": "VM", + "entries": 43, + "apiEntries": 41, + "static": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 0, + "by-design": 41, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 0, + "by-design": 41, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "wasi", + "title": "WASI", + "entries": 8, + "apiEntries": 7, + "static": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 0, + "by-design": 7, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 0, + "refused": 0, + "not-implemented": 0, + "by-design": 7, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "webcrypto", + "title": "Web Crypto API", + "entries": 167, + "apiEntries": 148, + "static": { + "supported": 0, + "partial": 2, + "refused": 9, + "not-implemented": 137, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 13, + "refused": 0, + "not-implemented": 135, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "webstreams", + "title": "Web Streams API", + "entries": 95, + "apiEntries": 88, + "static": { + "supported": 0, + "partial": 2, + "refused": 2, + "not-implemented": 84, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 4, + "refused": 0, + "not-implemented": 84, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "worker_threads", + "title": "Worker threads", + "entries": 71, + "apiEntries": 66, + "static": { + "supported": 0, + "partial": 4, + "refused": 0, + "not-implemented": 62, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 21, + "refused": 1, + "not-implemented": 44, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + }, + { + "slug": "zlib", + "title": "Zlib", + "entries": 98, + "apiEntries": 78, + "static": { + "supported": 0, + "partial": 5, + "refused": 10, + "not-implemented": 63, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + }, + "dynamic": { + "supported": 0, + "partial": 55, + "refused": 0, + "not-implemented": 23, + "by-design": 0, + "unreviewed": 0, + "not-applicable": 0 + } + } + ], + "rows": [ + { + "id": "assert:cb7bd39949d3", + "chapter": "assert", + "kind": "module", + "name": "assert", + "signature": "Assert", + "label": "Assert", + "apiSymbol": "assert", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/corpus/1600-assert-passing.ts", + "tests/corpus/1604-assert-deep-structures.ts", + "tests/corpus/1609-assert-async.ts", + "tests/corpus/1721-assert-throws-regex-class.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/fixtures/npm/cases/assert-shims/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "assert:dadc8d047140", + "chapter": "assert", + "kind": "module", + "name": "strict_assertion_mode", + "signature": "Strict assertion mode", + "label": "Strict assertion mode", + "apiSymbol": "strict_assertion_mode", + "depth": 1, + "scope": "documentation", + "anchor": "strict-assertion-mode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "assert:33a293c4a59f", + "chapter": "assert", + "kind": "module", + "name": "legacy_assertion_mode", + "signature": "Legacy assertion mode", + "label": "Legacy assertion mode", + "apiSymbol": "legacy_assertion_mode", + "depth": 1, + "scope": "documentation", + "anchor": "legacy-assertion-mode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "assert:fdb8010c6379", + "chapter": "assert", + "kind": "class", + "name": "assert.AssertionError", + "signature": "Class: `assert.AssertionError`", + "label": "assert.AssertionError", + "apiSymbol": "assert.AssertionError", + "depth": 1, + "scope": "api", + "anchor": "class-assertassertionerror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.assert.AssertionError" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:assert.AssertionError", + "tests": [ + "tests/fixtures/npm/cases/assert-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "assert:d4e5053210e6", + "chapter": "assert", + "kind": "class", + "name": "assert.Assert", + "signature": "Class: `assert.Assert`", + "label": "assert.Assert", + "apiSymbol": "assert.Assert", + "depth": 1, + "scope": "api", + "anchor": "class-assertassert", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:assert" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:assert" + }, + "anchorSource": "exact" + }, + { + "id": "assert:403fea8dcb8f", + "chapter": "assert", + "kind": "class", + "name": "assert.CallTracker", + "signature": "Class: `assert.CallTracker`", + "label": "assert.CallTracker", + "apiSymbol": "assert.CallTracker", + "depth": 1, + "scope": "api", + "anchor": "class-assertcalltracker", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:assert" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:assert" + }, + "anchorSource": "exact" + }, + { + "id": "assert:576b9d6d6ec2", + "chapter": "assert", + "kind": "method", + "name": "calls", + "signature": "`tracker.calls([fn][, exact])`", + "label": "tracker.calls([fn][, exact])", + "apiSymbol": "tracker.calls", + "depth": 2, + "scope": "api", + "anchor": "trackercallsfn-exact", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:assert" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:assert" + }, + "anchorSource": "exact" + }, + { + "id": "assert:055d28894b6f", + "chapter": "assert", + "kind": "method", + "name": "getCalls", + "signature": "`tracker.getCalls(fn)`", + "label": "tracker.getCalls(fn)", + "apiSymbol": "tracker.getCalls", + "depth": 2, + "scope": "api", + "anchor": "trackergetcallsfn", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:assert" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:assert" + }, + "anchorSource": "exact" + }, + { + "id": "assert:8461e0b4cece", + "chapter": "assert", + "kind": "method", + "name": "report", + "signature": "`tracker.report()`", + "label": "tracker.report()", + "apiSymbol": "tracker.report", + "depth": 2, + "scope": "api", + "anchor": "trackerreport", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:assert" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:assert" + }, + "anchorSource": "exact" + }, + { + "id": "assert:5b731bc1c035", + "chapter": "assert", + "kind": "method", + "name": "reset", + "signature": "`tracker.reset([fn])`", + "label": "tracker.reset([fn])", + "apiSymbol": "tracker.reset", + "depth": 2, + "scope": "api", + "anchor": "trackerresetfn", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:assert" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:assert" + }, + "anchorSource": "exact" + }, + { + "id": "assert:7d1be65a4f04", + "chapter": "assert", + "kind": "method", + "name": "verify", + "signature": "`tracker.verify()`", + "label": "tracker.verify()", + "apiSymbol": "tracker.verify", + "depth": 2, + "scope": "api", + "anchor": "trackerverify", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:assert" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:assert" + }, + "anchorSource": "exact" + }, + { + "id": "assert:47b140441b19", + "chapter": "assert", + "kind": "method", + "name": "assert", + "signature": "`assert(value[, message])`", + "label": "assert(value[, message])", + "apiSymbol": "assert", + "depth": 1, + "scope": "api", + "anchor": "assertvalue-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:assert", + "tests": [ + "tests/corpus/1600-assert-passing.ts", + "tests/corpus/1604-assert-deep-structures.ts", + "tests/corpus/1609-assert-async.ts", + "tests/corpus/1721-assert-throws-regex-class.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:assert" + }, + "anchorSource": "exact" + }, + { + "id": "assert:b99ea75ee6b8", + "chapter": "assert", + "kind": "method", + "name": "deepEqual", + "signature": "`assert.deepEqual(actual, expected[, message])`", + "label": "assert.deepEqual(actual, expected[, message])", + "apiSymbol": "assert.deepEqual", + "depth": 1, + "scope": "api", + "anchor": "assertdeepequalactual-expected-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.assert.deepEqual" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:assert.deepEqual", + "tests": [ + "tests/fixtures/npm/cases/assert-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "assert:ee4c7b533e1b", + "chapter": "assert", + "kind": "module", + "name": "comparison_details", + "signature": "Comparison details", + "label": "Comparison details", + "apiSymbol": "comparison_details", + "depth": 2, + "scope": "documentation", + "anchor": "comparison-details", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "assert:7a6ba7d551e3", + "chapter": "assert", + "kind": "method", + "name": "deepStrictEqual", + "signature": "`assert.deepStrictEqual(actual, expected[, message])`", + "label": "assert.deepStrictEqual(actual, expected[, message])", + "apiSymbol": "assert.deepStrictEqual", + "depth": 1, + "scope": "api", + "anchor": "assertdeepstrictequalactual-expected-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:assert.deepStrictEqual", + "tests": [ + "tests/corpus/1600-assert-passing.ts", + "tests/corpus/1604-assert-deep-structures.ts", + "tests/corpus/1609-assert-async.ts", + "tests/corpus/1721-assert-throws-regex-class.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:assert.deepStrictEqual", + "tests": [ + "tests/fixtures/npm/cases/assert-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "assert:8d51f51c9ed1", + "chapter": "assert", + "kind": "module", + "name": "comparison_details", + "signature": "Comparison details", + "label": "Comparison details", + "apiSymbol": "comparison_details", + "depth": 2, + "scope": "documentation", + "anchor": "comparison-details_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "assert:06bab895dd75", + "chapter": "assert", + "kind": "method", + "name": "doesNotMatch", + "signature": "`assert.doesNotMatch(string, regexp[, message])`", + "label": "assert.doesNotMatch(string, regexp[, message])", + "apiSymbol": "assert.doesNotMatch", + "depth": 1, + "scope": "api", + "anchor": "assertdoesnotmatchstring-regexp-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:assert.doesNotMatch", + "tests": [ + "tests/corpus/1600-assert-passing.ts", + "tests/corpus/1604-assert-deep-structures.ts", + "tests/corpus/1609-assert-async.ts", + "tests/corpus/1721-assert-throws-regex-class.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:assert.doesNotMatch", + "tests": [ + "tests/fixtures/npm/cases/assert-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "assert:f50eba13de65", + "chapter": "assert", + "kind": "method", + "name": "doesNotReject", + "signature": "`assert.doesNotReject(asyncFn[, error][, message])`", + "label": "assert.doesNotReject(asyncFn[, error][, message])", + "apiSymbol": "assert.doesNotReject", + "depth": 1, + "scope": "api", + "anchor": "assertdoesnotrejectasyncfn-error-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:assert.doesNotReject", + "tests": [ + "tests/corpus/1600-assert-passing.ts", + "tests/corpus/1604-assert-deep-structures.ts", + "tests/corpus/1609-assert-async.ts", + "tests/corpus/1721-assert-throws-regex-class.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:assert.doesNotReject", + "tests": [ + "tests/fixtures/npm/cases/assert-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "assert:8e8ad2dfb66c", + "chapter": "assert", + "kind": "method", + "name": "doesNotThrow", + "signature": "`assert.doesNotThrow(fn[, error][, message])`", + "label": "assert.doesNotThrow(fn[, error][, message])", + "apiSymbol": "assert.doesNotThrow", + "depth": 1, + "scope": "api", + "anchor": "assertdoesnotthrowfn-error-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.assert.doesNotThrow" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:assert.doesNotThrow", + "tests": [ + "tests/fixtures/npm/cases/assert-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "assert:137b161ac3fb", + "chapter": "assert", + "kind": "method", + "name": "equal", + "signature": "`assert.equal(actual, expected[, message])`", + "label": "assert.equal(actual, expected[, message])", + "apiSymbol": "assert.equal", + "depth": 1, + "scope": "api", + "anchor": "assertequalactual-expected-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.assert.equal" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:assert.equal", + "tests": [ + "tests/fixtures/npm/cases/assert-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "assert:2c80d261696a", + "chapter": "assert", + "kind": "method", + "name": "fail", + "signature": "`assert.fail([message])`", + "label": "assert.fail([message])", + "apiSymbol": "assert.fail", + "depth": 1, + "scope": "api", + "anchor": "assertfailmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:assert.fail", + "tests": [ + "tests/corpus/1600-assert-passing.ts", + "tests/corpus/1604-assert-deep-structures.ts", + "tests/corpus/1609-assert-async.ts", + "tests/corpus/1721-assert-throws-regex-class.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:assert.fail", + "tests": [ + "tests/fixtures/npm/cases/assert-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "assert:9b189cd0bab6", + "chapter": "assert", + "kind": "method", + "name": "fail", + "signature": "`assert.fail(actual, expected[, message[, operator[, stackStartFn]]])`", + "label": "assert.fail(actual, expected[, message[, operator[, stackStartFn]]])", + "apiSymbol": "assert.fail", + "depth": 1, + "scope": "api", + "anchor": "assertfailactual-expected-message-operator-stackstartfn", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Use `assert.fail([message])` or other assert functions instead.", + "inherited": false + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:assert.fail", + "tests": [ + "tests/corpus/1600-assert-passing.ts", + "tests/corpus/1604-assert-deep-structures.ts", + "tests/corpus/1609-assert-async.ts", + "tests/corpus/1721-assert-throws-regex-class.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:assert.fail", + "tests": [ + "tests/fixtures/npm/cases/assert-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "assert:ddfa5d48c175", + "chapter": "assert", + "kind": "method", + "name": "ifError", + "signature": "`assert.ifError(value)`", + "label": "assert.ifError(value)", + "apiSymbol": "assert.ifError", + "depth": 1, + "scope": "api", + "anchor": "assertiferrorvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:assert.ifError", + "tests": [ + "tests/corpus/1600-assert-passing.ts", + "tests/corpus/1604-assert-deep-structures.ts", + "tests/corpus/1609-assert-async.ts", + "tests/corpus/1721-assert-throws-regex-class.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:assert.ifError", + "tests": [ + "tests/fixtures/npm/cases/assert-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "assert:4ce54067ce1b", + "chapter": "assert", + "kind": "method", + "name": "match", + "signature": "`assert.match(string, regexp[, message])`", + "label": "assert.match(string, regexp[, message])", + "apiSymbol": "assert.match", + "depth": 1, + "scope": "api", + "anchor": "assertmatchstring-regexp-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:assert.match", + "tests": [ + "tests/corpus/1600-assert-passing.ts", + "tests/corpus/1604-assert-deep-structures.ts", + "tests/corpus/1609-assert-async.ts", + "tests/corpus/1721-assert-throws-regex-class.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:assert.match", + "tests": [ + "tests/fixtures/npm/cases/assert-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "assert:1b5f04efb0ab", + "chapter": "assert", + "kind": "method", + "name": "notDeepEqual", + "signature": "`assert.notDeepEqual(actual, expected[, message])`", + "label": "assert.notDeepEqual(actual, expected[, message])", + "apiSymbol": "assert.notDeepEqual", + "depth": 1, + "scope": "api", + "anchor": "assertnotdeepequalactual-expected-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.assert.notDeepEqual" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:assert.notDeepEqual", + "tests": [ + "tests/fixtures/npm/cases/assert-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "assert:980f8d1bb511", + "chapter": "assert", + "kind": "method", + "name": "notDeepStrictEqual", + "signature": "`assert.notDeepStrictEqual(actual, expected[, message])`", + "label": "assert.notDeepStrictEqual(actual, expected[, message])", + "apiSymbol": "assert.notDeepStrictEqual", + "depth": 1, + "scope": "api", + "anchor": "assertnotdeepstrictequalactual-expected-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:assert.notDeepStrictEqual", + "tests": [ + "tests/corpus/1600-assert-passing.ts", + "tests/corpus/1604-assert-deep-structures.ts", + "tests/corpus/1609-assert-async.ts", + "tests/corpus/1721-assert-throws-regex-class.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:assert.notDeepStrictEqual", + "tests": [ + "tests/fixtures/npm/cases/assert-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "assert:3acc79b323ad", + "chapter": "assert", + "kind": "method", + "name": "notEqual", + "signature": "`assert.notEqual(actual, expected[, message])`", + "label": "assert.notEqual(actual, expected[, message])", + "apiSymbol": "assert.notEqual", + "depth": 1, + "scope": "api", + "anchor": "assertnotequalactual-expected-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.assert.notEqual" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:assert.notEqual", + "tests": [ + "tests/fixtures/npm/cases/assert-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "assert:758353e2aa36", + "chapter": "assert", + "kind": "method", + "name": "notStrictEqual", + "signature": "`assert.notStrictEqual(actual, expected[, message])`", + "label": "assert.notStrictEqual(actual, expected[, message])", + "apiSymbol": "assert.notStrictEqual", + "depth": 1, + "scope": "api", + "anchor": "assertnotstrictequalactual-expected-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:assert.notStrictEqual", + "tests": [ + "tests/corpus/1600-assert-passing.ts", + "tests/corpus/1604-assert-deep-structures.ts", + "tests/corpus/1609-assert-async.ts", + "tests/corpus/1721-assert-throws-regex-class.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:assert.notStrictEqual", + "tests": [ + "tests/fixtures/npm/cases/assert-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "assert:4a44441f61a7", + "chapter": "assert", + "kind": "method", + "name": "ok", + "signature": "`assert.ok(value[, message])`", + "label": "assert.ok(value[, message])", + "apiSymbol": "assert.ok", + "depth": 1, + "scope": "api", + "anchor": "assertokvalue-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:assert.ok", + "tests": [ + "tests/corpus/1600-assert-passing.ts", + "tests/corpus/1604-assert-deep-structures.ts", + "tests/corpus/1609-assert-async.ts", + "tests/corpus/1721-assert-throws-regex-class.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:assert.ok", + "tests": [ + "tests/fixtures/npm/cases/assert-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "assert:5e1e54b4c5d7", + "chapter": "assert", + "kind": "method", + "name": "rejects", + "signature": "`assert.rejects(asyncFn[, error][, message])`", + "label": "assert.rejects(asyncFn[, error][, message])", + "apiSymbol": "assert.rejects", + "depth": 1, + "scope": "api", + "anchor": "assertrejectsasyncfn-error-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:assert.rejects", + "tests": [ + "tests/corpus/1600-assert-passing.ts", + "tests/corpus/1604-assert-deep-structures.ts", + "tests/corpus/1609-assert-async.ts", + "tests/corpus/1721-assert-throws-regex-class.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:assert.rejects", + "tests": [ + "tests/fixtures/npm/cases/assert-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "assert:8937227848eb", + "chapter": "assert", + "kind": "method", + "name": "strictEqual", + "signature": "`assert.strictEqual(actual, expected[, message])`", + "label": "assert.strictEqual(actual, expected[, message])", + "apiSymbol": "assert.strictEqual", + "depth": 1, + "scope": "api", + "anchor": "assertstrictequalactual-expected-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:assert.strictEqual", + "tests": [ + "tests/corpus/1600-assert-passing.ts", + "tests/corpus/1604-assert-deep-structures.ts", + "tests/corpus/1609-assert-async.ts", + "tests/corpus/1721-assert-throws-regex-class.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:assert.strictEqual", + "tests": [ + "tests/fixtures/npm/cases/assert-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "assert:dd9addafdc8b", + "chapter": "assert", + "kind": "method", + "name": "throws", + "signature": "`assert.throws(fn[, error][, message])`", + "label": "assert.throws(fn[, error][, message])", + "apiSymbol": "assert.throws", + "depth": 1, + "scope": "api", + "anchor": "assertthrowsfn-error-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:assert.throws", + "tests": [ + "tests/corpus/1600-assert-passing.ts", + "tests/corpus/1604-assert-deep-structures.ts", + "tests/corpus/1609-assert-async.ts", + "tests/corpus/1721-assert-throws-regex-class.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:assert.throws", + "tests": [ + "tests/fixtures/npm/cases/assert-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "assert:263d8a46f9e7", + "chapter": "assert", + "kind": "method", + "name": "partialDeepStrictEqual", + "signature": "`assert.partialDeepStrictEqual(actual, expected[, message])`", + "label": "assert.partialDeepStrictEqual(actual, expected[, message])", + "apiSymbol": "assert.partialDeepStrictEqual", + "depth": 1, + "scope": "api", + "anchor": "assertpartialdeepstrictequalactual-expected-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:assert" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:assert" + }, + "anchorSource": "exact" + }, + { + "id": "assert:0105c623992b", + "chapter": "assert", + "kind": "module", + "name": "comparison_details", + "signature": "Comparison details", + "label": "Comparison details", + "apiSymbol": "comparison_details", + "depth": 2, + "scope": "documentation", + "anchor": "comparison-details_2", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "async_context:21102be5718e", + "chapter": "async_context", + "kind": "module", + "name": "asynchronous_context_tracking", + "signature": "Asynchronous context tracking", + "label": "Asynchronous context tracking", + "apiSymbol": "asynchronous_context_tracking", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/corpus/2213-async-local-storage.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "async_context:f3d252184c58", + "chapter": "async_context", + "kind": "module", + "name": "introduction", + "signature": "Introduction", + "label": "Introduction", + "apiSymbol": "introduction", + "depth": 1, + "scope": "documentation", + "anchor": "introduction", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "async_context:411b8aa75166", + "chapter": "async_context", + "kind": "class", + "name": "AsyncLocalStorage", + "signature": "Class: `AsyncLocalStorage`", + "label": "AsyncLocalStorage", + "apiSymbol": "AsyncLocalStorage", + "depth": 1, + "scope": "api", + "anchor": "class-asynclocalstorage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:AsyncLocalStorage", + "tests": [ + "tests/corpus/2213-async-local-storage.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:async_hooks.AsyncLocalStorage", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "async_context:830769f9f94c", + "chapter": "async_context", + "kind": "module", + "name": "usage_with_`async/await`", + "signature": "Usage with `async/await`", + "label": "Usage with async/await", + "apiSymbol": "async/await", + "depth": 2, + "scope": "api", + "anchor": "usage-with-asyncawait", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:async_context" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:async_context" + }, + "anchorSource": "exact" + }, + { + "id": "async_context:a1f63bfd29a2", + "chapter": "async_context", + "kind": "module", + "name": "troubleshooting:_context_loss", + "signature": "Troubleshooting: Context loss", + "label": "Troubleshooting: Context loss", + "apiSymbol": "troubleshooting:_context_loss", + "depth": 2, + "scope": "documentation", + "anchor": "troubleshooting-context-loss", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "async_context:b6256a3e7833", + "chapter": "async_context", + "kind": "method", + "name": "disable", + "signature": "`asyncLocalStorage.disable()`", + "label": "asyncLocalStorage.disable()", + "apiSymbol": "asyncLocalStorage.disable", + "depth": 2, + "scope": "api", + "anchor": "asynclocalstoragedisable", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:asyncLocalStorage.disable", + "tests": [ + "tests/corpus/2213-async-local-storage.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:async_hooks.asyncLocalStorage.disable", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "async_context:74eb723c17ad", + "chapter": "async_context", + "kind": "method", + "name": "getStore", + "signature": "`asyncLocalStorage.getStore()`", + "label": "asyncLocalStorage.getStore()", + "apiSymbol": "asyncLocalStorage.getStore", + "depth": 2, + "scope": "api", + "anchor": "asynclocalstoragegetstore", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:asyncLocalStorage.getStore", + "tests": [ + "tests/corpus/2213-async-local-storage.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:async_hooks.asyncLocalStorage.getStore", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "async_context:aaa94766e686", + "chapter": "async_context", + "kind": "method", + "name": "enterWith", + "signature": "`asyncLocalStorage.enterWith(store)`", + "label": "asyncLocalStorage.enterWith(store)", + "apiSymbol": "asyncLocalStorage.enterWith", + "depth": 2, + "scope": "api", + "anchor": "asynclocalstorageenterwithstore", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:asyncLocalStorage.enterWith", + "tests": [ + "tests/corpus/2213-async-local-storage.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:async_hooks.asyncLocalStorage.enterWith", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "async_context:619db3b1a0c9", + "chapter": "async_context", + "kind": "method", + "name": "run", + "signature": "`asyncLocalStorage.run(store, callback[, ...args])`", + "label": "asyncLocalStorage.run(store, callback[, ...args])", + "apiSymbol": "asyncLocalStorage.run", + "depth": 2, + "scope": "api", + "anchor": "asynclocalstoragerunstore-callback-args", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:asyncLocalStorage.run", + "tests": [ + "tests/corpus/2213-async-local-storage.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:async_hooks.asyncLocalStorage.run", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "async_context:7ce346a66348", + "chapter": "async_context", + "kind": "method", + "name": "exit", + "signature": "`asyncLocalStorage.exit(callback[, ...args])`", + "label": "asyncLocalStorage.exit(callback[, ...args])", + "apiSymbol": "asyncLocalStorage.exit", + "depth": 2, + "scope": "api", + "anchor": "asynclocalstorageexitcallback-args", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:asyncLocalStorage.exit", + "tests": [ + "tests/corpus/2213-async-local-storage.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:async_hooks.asyncLocalStorage.exit", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "async_context:c3f9e759e7a3", + "chapter": "async_context", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string}", + "label": "name", + "apiSymbol": "name", + "depth": 2, + "scope": "api", + "anchor": "class-asynclocalstorage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:async_context" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:async_context" + }, + "anchorSource": "ancestor" + }, + { + "id": "async_context:509d8ed918da", + "chapter": "async_context", + "kind": "class", + "name": "AsyncResource", + "signature": "Class: `AsyncResource`", + "label": "AsyncResource", + "apiSymbol": "AsyncResource", + "depth": 1, + "scope": "api", + "anchor": "class-asyncresource", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:async_context" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:async_hooks.AsyncResource", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "async_context:2df063cd33de", + "chapter": "async_context", + "kind": "module", + "name": "using_`asyncresource`_for_a_`worker`_thread_pool", + "signature": "Using `AsyncResource` for a `Worker` thread pool", + "label": "Using AsyncResource for a Worker thread pool", + "apiSymbol": "AsyncResource", + "depth": 2, + "scope": "api", + "anchor": "using-asyncresource-for-a-worker-thread-pool", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:async_context" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:async_hooks.AsyncResource", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "async_context:f9a222d2f454", + "chapter": "async_context", + "kind": "module", + "name": "integrating_`asyncresource`_with_`eventemitter`", + "signature": "Integrating `AsyncResource` with `EventEmitter`", + "label": "Integrating AsyncResource with EventEmitter", + "apiSymbol": "AsyncResource", + "depth": 2, + "scope": "api", + "anchor": "integrating-asyncresource-with-eventemitter", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:async_context" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:async_hooks.AsyncResource", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "async_context:d5d7e15685dc", + "chapter": "async_context", + "kind": "method", + "name": "bind", + "signature": "`asyncResource.bind(fn[, thisArg])`", + "label": "asyncResource.bind(fn[, thisArg])", + "apiSymbol": "asyncResource.bind", + "depth": 2, + "scope": "api", + "anchor": "asyncresourcebindfn-thisarg", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:async_context" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:async_hooks.asyncResource.bind", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "async_context:8beab6827887", + "chapter": "async_context", + "kind": "method", + "name": "runInAsyncScope", + "signature": "`asyncResource.runInAsyncScope(fn[, thisArg, ...args])`", + "label": "asyncResource.runInAsyncScope(fn[, thisArg, ...args])", + "apiSymbol": "asyncResource.runInAsyncScope", + "depth": 2, + "scope": "api", + "anchor": "asyncresourceruninasyncscopefn-thisarg-args", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:async_context" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:async_hooks.asyncResource.runInAsyncScope", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "async_context:b63525644b2e", + "chapter": "async_context", + "kind": "method", + "name": "emitDestroy", + "signature": "`asyncResource.emitDestroy()`", + "label": "asyncResource.emitDestroy()", + "apiSymbol": "asyncResource.emitDestroy", + "depth": 2, + "scope": "api", + "anchor": "asyncresourceemitdestroy", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:async_context" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:async_hooks.asyncResource.emitDestroy", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "async_context:d8c00a701ae0", + "chapter": "async_context", + "kind": "method", + "name": "asyncId", + "signature": "`asyncResource.asyncId()`", + "label": "asyncResource.asyncId()", + "apiSymbol": "asyncResource.asyncId", + "depth": 2, + "scope": "api", + "anchor": "asyncresourceasyncid", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:async_context" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:async_hooks.asyncResource.asyncId", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "async_context:53501aab7077", + "chapter": "async_context", + "kind": "method", + "name": "triggerAsyncId", + "signature": "`asyncResource.triggerAsyncId()`", + "label": "asyncResource.triggerAsyncId()", + "apiSymbol": "asyncResource.triggerAsyncId", + "depth": 2, + "scope": "api", + "anchor": "asyncresourcetriggerasyncid", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:async_context" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:async_hooks.asyncResource.triggerAsyncId", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "async_hooks:dbf34447d25a", + "chapter": "async_hooks", + "kind": "module", + "name": "async_hooks", + "signature": "Async hooks", + "label": "Async hooks", + "apiSymbol": "async_hooks", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": false + }, + "static": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/corpus/2213-async-local-storage.cjs", + "tests/harness/node-test.test.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "async_hooks:7880de290770", + "chapter": "async_hooks", + "kind": "module", + "name": "terminology", + "signature": "Terminology", + "label": "Terminology", + "apiSymbol": "terminology", + "depth": 1, + "scope": "documentation", + "anchor": "terminology", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "async_hooks:44d6b9956b96", + "chapter": "async_hooks", + "kind": "module", + "name": "overview", + "signature": "Overview", + "label": "Overview", + "apiSymbol": "overview", + "depth": 1, + "scope": "documentation", + "anchor": "overview", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "async_hooks:98118afd4bf9", + "chapter": "async_hooks", + "kind": "module", + "name": "promise_execution_tracking", + "signature": "Promise execution tracking", + "label": "Promise execution tracking", + "apiSymbol": "promise_execution_tracking", + "depth": 1, + "scope": "documentation", + "anchor": "promise-execution-tracking", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "async_hooks:cba8d19bab68", + "chapter": "async_hooks", + "kind": "module", + "name": "disabling_promise_execution_tracking", + "signature": "Disabling promise execution tracking", + "label": "Disabling promise execution tracking", + "apiSymbol": "disabling_promise_execution_tracking", + "depth": 2, + "scope": "documentation", + "anchor": "disabling-promise-execution-tracking", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "async_hooks:060223b1e05a", + "chapter": "async_hooks", + "kind": "module", + "name": "javascript_embedder_api", + "signature": "JavaScript embedder API", + "label": "JavaScript embedder API", + "apiSymbol": "javascript_embedder_api", + "depth": 1, + "scope": "documentation", + "anchor": "javascript-embedder-api", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "async_hooks:782c2669a547", + "chapter": "async_hooks", + "kind": "class", + "name": "AsyncResource", + "signature": "Class: `AsyncResource`", + "label": "AsyncResource", + "apiSymbol": "AsyncResource", + "depth": 2, + "scope": "api", + "anchor": "class-asyncresource", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:async_hooks" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:async_hooks.AsyncResource", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "async_hooks:c82d15734e04", + "chapter": "async_hooks", + "kind": "class", + "name": "AsyncHook", + "signature": "Class: `AsyncHook`", + "label": "AsyncHook", + "apiSymbol": "AsyncHook", + "depth": 1, + "scope": "api", + "anchor": "class-asynchook", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:async_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:async_hooks" + }, + "anchorSource": "exact" + }, + { + "id": "async_hooks:20be164b0943", + "chapter": "async_hooks", + "kind": "module", + "name": "hook_callbacks", + "signature": "Hook callbacks", + "label": "Hook callbacks", + "apiSymbol": "hook_callbacks", + "depth": 2, + "scope": "documentation", + "anchor": "hook-callbacks", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "async_hooks:6dd6e1d9f328", + "chapter": "async_hooks", + "kind": "method", + "name": "init", + "signature": "`init(asyncId, type, triggerAsyncId, resource)`", + "label": "init(asyncId, type, triggerAsyncId, resource)", + "apiSymbol": "init", + "depth": 3, + "scope": "api", + "anchor": "initasyncid-type-triggerasyncid-resource", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:async_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:async_hooks" + }, + "anchorSource": "exact" + }, + { + "id": "async_hooks:5d0343e7f846", + "chapter": "async_hooks", + "kind": "module", + "name": "`type`", + "signature": "`type`", + "label": "type", + "apiSymbol": "type", + "depth": 4, + "scope": "api", + "anchor": "type", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:async_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:async_hooks" + }, + "anchorSource": "exact" + }, + { + "id": "async_hooks:77df2207bbc0", + "chapter": "async_hooks", + "kind": "module", + "name": "`triggerasyncid`", + "signature": "`triggerAsyncId`", + "label": "triggerAsyncId", + "apiSymbol": "triggerAsyncId", + "depth": 4, + "scope": "api", + "anchor": "triggerasyncid", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:async_hooks" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:async_hooks.triggerAsyncId", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "async_hooks:2553d2211150", + "chapter": "async_hooks", + "kind": "module", + "name": "`resource`", + "signature": "`resource`", + "label": "resource", + "apiSymbol": "resource", + "depth": 4, + "scope": "api", + "anchor": "resource", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:async_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:async_hooks" + }, + "anchorSource": "exact" + }, + { + "id": "async_hooks:19ec1929952e", + "chapter": "async_hooks", + "kind": "module", + "name": "asynchronous_context_example", + "signature": "Asynchronous context example", + "label": "Asynchronous context example", + "apiSymbol": "asynchronous_context_example", + "depth": 4, + "scope": "documentation", + "anchor": "asynchronous-context-example", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "async_hooks:9055066129e3", + "chapter": "async_hooks", + "kind": "method", + "name": "before", + "signature": "`before(asyncId)`", + "label": "before(asyncId)", + "apiSymbol": "before", + "depth": 3, + "scope": "api", + "anchor": "beforeasyncid", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:before", + "tests": [ + "tests/harness/node-test.test.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:async_hooks" + }, + "anchorSource": "exact" + }, + { + "id": "async_hooks:be16de62bff8", + "chapter": "async_hooks", + "kind": "method", + "name": "after", + "signature": "`after(asyncId)`", + "label": "after(asyncId)", + "apiSymbol": "after", + "depth": 3, + "scope": "api", + "anchor": "afterasyncid", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:after", + "tests": [ + "tests/harness/node-test.test.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:async_hooks" + }, + "anchorSource": "exact" + }, + { + "id": "async_hooks:5ce245f9e752", + "chapter": "async_hooks", + "kind": "method", + "name": "destroy", + "signature": "`destroy(asyncId)`", + "label": "destroy(asyncId)", + "apiSymbol": "destroy", + "depth": 3, + "scope": "api", + "anchor": "destroyasyncid", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:async_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:async_hooks" + }, + "anchorSource": "exact" + }, + { + "id": "async_hooks:8e9ee9d50fee", + "chapter": "async_hooks", + "kind": "method", + "name": "promiseResolve", + "signature": "`promiseResolve(asyncId)`", + "label": "promiseResolve(asyncId)", + "apiSymbol": "promiseResolve", + "depth": 3, + "scope": "api", + "anchor": "promiseresolveasyncid", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:async_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:async_hooks" + }, + "anchorSource": "exact" + }, + { + "id": "async_hooks:8ab802a152e6", + "chapter": "async_hooks", + "kind": "method", + "name": "enable", + "signature": "`asyncHook.enable()`", + "label": "asyncHook.enable()", + "apiSymbol": "asyncHook.enable", + "depth": 2, + "scope": "api", + "anchor": "asynchookenable", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:async_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:async_hooks" + }, + "anchorSource": "exact" + }, + { + "id": "async_hooks:1a49af7bfe20", + "chapter": "async_hooks", + "kind": "method", + "name": "disable", + "signature": "`asyncHook.disable()`", + "label": "asyncHook.disable()", + "apiSymbol": "asyncHook.disable", + "depth": 2, + "scope": "api", + "anchor": "asynchookdisable", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:async_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:async_hooks" + }, + "anchorSource": "exact" + }, + { + "id": "async_hooks:1d1a013c7220", + "chapter": "async_hooks", + "kind": "method", + "name": "executionAsyncResource", + "signature": "`async_hooks.executionAsyncResource()`", + "label": "async_hooks.executionAsyncResource()", + "apiSymbol": "async_hooks.executionAsyncResource", + "depth": 2, + "scope": "api", + "anchor": "async_hooksexecutionasyncresource", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:async_hooks" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:async_hooks.executionAsyncResource", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "async_hooks:816820b65a84", + "chapter": "async_hooks", + "kind": "method", + "name": "executionAsyncId", + "signature": "`async_hooks.executionAsyncId()`", + "label": "async_hooks.executionAsyncId()", + "apiSymbol": "async_hooks.executionAsyncId", + "depth": 2, + "scope": "api", + "anchor": "async_hooksexecutionasyncid", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:async_hooks" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:async_hooks.executionAsyncId", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "async_hooks:0adfc9f2569a", + "chapter": "async_hooks", + "kind": "method", + "name": "triggerAsyncId", + "signature": "`async_hooks.triggerAsyncId()`", + "label": "async_hooks.triggerAsyncId()", + "apiSymbol": "async_hooks.triggerAsyncId", + "depth": 2, + "scope": "api", + "anchor": "async_hookstriggerasyncid", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:async_hooks" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:async_hooks.triggerAsyncId", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "async_hooks:6576b1af07e3", + "chapter": "async_hooks", + "kind": "section", + "name": "return", + "signature": "`asyncWrapProviders` Returns: A map of provider types to the corresponding numeric id. This map contains all the event types that might be emitted by the `async_hooks.init()` event.", + "label": "asyncWrapProviders", + "apiSymbol": "asyncWrapProviders", + "depth": 2, + "scope": "api", + "anchor": "class-asynchook", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:async_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:async_hooks" + }, + "anchorSource": "ancestor" + }, + { + "id": "async_hooks:f9d106409989", + "chapter": "async_hooks", + "kind": "class", + "name": "AsyncLocalStorage", + "signature": "Class: `AsyncLocalStorage`", + "label": "AsyncLocalStorage", + "apiSymbol": "AsyncLocalStorage", + "depth": 1, + "scope": "api", + "anchor": "class-asynclocalstorage", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:AsyncLocalStorage", + "tests": [ + "tests/corpus/2213-async-local-storage.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:async_hooks.AsyncLocalStorage", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "async_hooks:d7f3af6be1fb", + "chapter": "async_hooks", + "kind": "method", + "name": "createHook", + "signature": "`async_hooks.createHook(options)`", + "label": "async_hooks.createHook(options)", + "apiSymbol": "async_hooks.createHook", + "depth": 1, + "scope": "api", + "anchor": "async_hookscreatehookoptions", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:async_hooks" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:async_hooks.createHook", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "async_hooks:923dfc950f89", + "chapter": "async_hooks", + "kind": "module", + "name": "error_handling", + "signature": "Error handling", + "label": "Error handling", + "apiSymbol": "error_handling", + "depth": 2, + "scope": "documentation", + "anchor": "error-handling", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "async_hooks:6898b0e4be97", + "chapter": "async_hooks", + "kind": "module", + "name": "printing_in_`asynchook`_callbacks", + "signature": "Printing in `AsyncHook` callbacks", + "label": "Printing in AsyncHook callbacks", + "apiSymbol": "AsyncHook", + "depth": 2, + "scope": "api", + "anchor": "printing-in-asynchook-callbacks", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Please migrate away from this API, if you can. We do not recommend using the [`createHook`][], [`AsyncHook`][], and [`executionAsyncResource`][] APIs as they have usability issues, safety risks, and performance implications. Async context tracking use cases are better served by the stable [`AsyncLocalStorage`][] API. If you have a use case for `createHook`, `AsyncHook`, or `executionAsyncResource` beyond the context tracking need solved by [`AsyncLocalStorage`][] or diagnostics data currently provided by [Diagnostics Channel][], please open an issue at https://github.com/nodejs/node/issues describing your use case so we can create a more purpose-focused API.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:async_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:async_hooks" + }, + "anchorSource": "exact" + }, + { + "id": "buffer:797a74ac3a0f", + "chapter": "buffer", + "kind": "module", + "name": "buffer", + "signature": "Buffer", + "label": "Buffer", + "apiSymbol": "buffer", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "derived:descendants" + }, + "dynamic": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "buffer:0675562ce473", + "chapter": "buffer", + "kind": "module", + "name": "buffers_and_character_encodings", + "signature": "Buffers and character encodings", + "label": "Buffers and character encodings", + "apiSymbol": "buffers_and_character_encodings", + "depth": 1, + "scope": "documentation", + "anchor": "buffers-and-character-encodings", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "buffer:069f509cad8a", + "chapter": "buffer", + "kind": "module", + "name": "buffers_and_typedarrays", + "signature": "Buffers and TypedArrays", + "label": "Buffers and TypedArrays", + "apiSymbol": "buffers_and_typedarrays", + "depth": 1, + "scope": "documentation", + "anchor": "buffers-and-typedarrays", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "buffer:1e26176db21e", + "chapter": "buffer", + "kind": "module", + "name": "buffer_methods_are_callable_with_`uint8array`_instances", + "signature": "Buffer methods are callable with `Uint8Array` instances", + "label": "Buffer methods are callable with Uint8Array instances", + "apiSymbol": "Uint8Array", + "depth": 2, + "scope": "api", + "anchor": "buffer-methods-are-callable-with-uint8array-instances", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:buffer" + }, + "anchorSource": "exact" + }, + { + "id": "buffer:f6f950b76dd9", + "chapter": "buffer", + "kind": "module", + "name": "buffers_and_iteration", + "signature": "Buffers and iteration", + "label": "Buffers and iteration", + "apiSymbol": "buffers_and_iteration", + "depth": 1, + "scope": "documentation", + "anchor": "buffers-and-iteration", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "buffer:f7837133ce51", + "chapter": "buffer", + "kind": "module", + "name": "`node:buffer`_module_apis", + "signature": "`node:buffer` module APIs", + "label": "node:buffer", + "apiSymbol": "node:buffer", + "depth": 1, + "scope": "api", + "anchor": "nodebuffer-module-apis", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:buffer" + }, + "anchorSource": "exact" + }, + { + "id": "buffer:895fc3e4cff9", + "chapter": "buffer", + "kind": "module", + "name": "buffer_constants", + "signature": "Buffer constants", + "label": "Buffer constants", + "apiSymbol": "buffer_constants", + "depth": 2, + "scope": "documentation", + "anchor": "buffer-constants", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "buffer:4ac5c665f147", + "chapter": "buffer", + "kind": "integer", + "name": "Type", + "signature": "`MAX_LENGTH` Type: {integer} The largest size allowed for a single `Buffer` instance.", + "label": "MAX_LENGTH", + "apiSymbol": "MAX_LENGTH", + "depth": 3, + "scope": "api", + "anchor": "buffer-constants", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:buffer" + }, + "anchorSource": "ancestor" + }, + { + "id": "buffer:f1690b6c126d", + "chapter": "buffer", + "kind": "integer", + "name": "Type", + "signature": "`MAX_STRING_LENGTH` Type: {integer} The largest length allowed for a single `string` instance.", + "label": "MAX_STRING_LENGTH", + "apiSymbol": "MAX_STRING_LENGTH", + "depth": 3, + "scope": "api", + "anchor": "buffer-constants", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:buffer" + }, + "anchorSource": "ancestor" + }, + { + "id": "buffer:49de2a6fccce", + "chapter": "buffer", + "kind": "class", + "name": "SlowBuffer", + "signature": "Class: `SlowBuffer`", + "label": "SlowBuffer", + "apiSymbol": "SlowBuffer", + "depth": 2, + "scope": "api", + "anchor": "class-slowbuffer", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Use [`Buffer.allocUnsafeSlow()`][] instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:buffer.SlowBuffer", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:057c8995c3ab", + "chapter": "buffer", + "kind": "method", + "name": "atob", + "signature": "`buffer.atob(data)`", + "label": "buffer.atob(data)", + "apiSymbol": "buffer.atob", + "depth": 2, + "scope": "api", + "anchor": "bufferatobdata", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy. Use `Buffer.from(data, 'base64')` instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:buffer.atob", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:4e0f1978e0cb", + "chapter": "buffer", + "kind": "method", + "name": "btoa", + "signature": "`buffer.btoa(data)`", + "label": "buffer.btoa(data)", + "apiSymbol": "buffer.btoa", + "depth": 2, + "scope": "api", + "anchor": "bufferbtoadata", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy. Use `buf.toString('base64')` instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:buffer.btoa", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:ea7f6db7a485", + "chapter": "buffer", + "kind": "method", + "name": "isAscii", + "signature": "`buffer.isAscii(input)`", + "label": "buffer.isAscii(input)", + "apiSymbol": "buffer.isAscii", + "depth": 2, + "scope": "api", + "anchor": "bufferisasciiinput", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:buffer.isAscii", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:71bddcc32c3b", + "chapter": "buffer", + "kind": "method", + "name": "isUtf8", + "signature": "`buffer.isUtf8(input)`", + "label": "buffer.isUtf8(input)", + "apiSymbol": "buffer.isUtf8", + "depth": 2, + "scope": "api", + "anchor": "bufferisutf8input", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:buffer.isUtf8", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:42b26c658cde", + "chapter": "buffer", + "kind": "method", + "name": "resolveObjectURL", + "signature": "`buffer.resolveObjectURL(id)`", + "label": "buffer.resolveObjectURL(id)", + "apiSymbol": "buffer.resolveObjectURL", + "depth": 2, + "scope": "api", + "anchor": "bufferresolveobjecturlid", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:buffer.resolveObjectURL", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:0a8ff17340c5", + "chapter": "buffer", + "kind": "method", + "name": "transcode", + "signature": "`buffer.transcode(source, fromEnc, toEnc)`", + "label": "buffer.transcode(source, fromEnc, toEnc)", + "apiSymbol": "buffer.transcode", + "depth": 2, + "scope": "api", + "anchor": "buffertranscodesource-fromenc-toenc", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:buffer.transcode", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:3b381797d5c3", + "chapter": "buffer", + "kind": "integer", + "name": "Type", + "signature": "`INSPECT_MAX_BYTES` Type: {integer} **Default:** `50`", + "label": "INSPECT_MAX_BYTES", + "apiSymbol": "INSPECT_MAX_BYTES", + "depth": 2, + "scope": "api", + "anchor": "nodebuffer-module-apis", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:buffer.INSPECT_MAX_BYTES", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "ancestor" + }, + { + "id": "buffer:e1ba51ebecdd", + "chapter": "buffer", + "kind": "integer", + "name": "Type", + "signature": "`kMaxLength` Type: {integer} The largest size allowed for a single `Buffer` instance.", + "label": "kMaxLength", + "apiSymbol": "kMaxLength", + "depth": 2, + "scope": "api", + "anchor": "nodebuffer-module-apis", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:buffer.kMaxLength", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "ancestor" + }, + { + "id": "buffer:0d2ef05ceef9", + "chapter": "buffer", + "kind": "integer", + "name": "Type", + "signature": "`kStringMaxLength` Type: {integer} The largest length allowed for a single `string` instance.", + "label": "kStringMaxLength", + "apiSymbol": "kStringMaxLength", + "depth": 2, + "scope": "api", + "anchor": "nodebuffer-module-apis", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:buffer.kStringMaxLength", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "ancestor" + }, + { + "id": "buffer:8b66b7c33498", + "chapter": "buffer", + "kind": "module", + "name": "`buffer.from()`,_`buffer.alloc()`,_and_`buffer.allocunsafe()`", + "signature": "`Buffer.from()`, `Buffer.alloc()`, and `Buffer.allocUnsafe()`", + "label": "Buffer.from()", + "apiSymbol": "Buffer.from", + "depth": 1, + "scope": "api", + "anchor": "bufferfrom-bufferalloc-and-bufferallocunsafe", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.Buffer.from", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:8963657471a3", + "chapter": "buffer", + "kind": "module", + "name": "the_`--zero-fill-buffers`_command-line_option", + "signature": "The `--zero-fill-buffers` command-line option", + "label": "The --zero-fill-buffers command-line option", + "apiSymbol": "--zero-fill-buffers", + "depth": 2, + "scope": "configuration", + "anchor": "the---zero-fill-buffers-command-line-option", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "buffer:d9fc19815ae5", + "chapter": "buffer", + "kind": "module", + "name": "what_makes_`buffer.allocunsafe()`_and_`buffer.allocunsafeslow()`_\"unsafe\"?", + "signature": "What makes `Buffer.allocUnsafe()` and `Buffer.allocUnsafeSlow()` \"unsafe\"?", + "label": "What makes Buffer.allocUnsafe() and Buffer.allocUnsafeSlow() \"unsafe\"?", + "apiSymbol": "Buffer.allocUnsafe", + "depth": 2, + "scope": "api", + "anchor": "what-makes-bufferallocunsafe-and-bufferallocunsafeslow-unsafe", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.Buffer.allocUnsafe", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:27c79f11fc38", + "chapter": "buffer", + "kind": "class", + "name": "Blob", + "signature": "Class: `Blob`", + "label": "Blob", + "apiSymbol": "Blob", + "depth": 1, + "scope": "api", + "anchor": "class-blob", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:buffer.Blob", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:7af8d47ba3d3", + "chapter": "buffer", + "kind": "module", + "name": "`blob`_objects_and_`messagechannel`", + "signature": "`Blob` objects and `MessageChannel`", + "label": "Blob", + "apiSymbol": "Blob", + "depth": 2, + "scope": "api", + "anchor": "blob-objects-and-messagechannel", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:buffer.Blob", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:fd92362208df", + "chapter": "buffer", + "kind": "method", + "name": "arrayBuffer", + "signature": "`blob.arrayBuffer()`", + "label": "blob.arrayBuffer()", + "apiSymbol": "blob.arrayBuffer", + "depth": 2, + "scope": "api", + "anchor": "blobarraybuffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:buffer" + }, + "anchorSource": "exact" + }, + { + "id": "buffer:9f1b499f235f", + "chapter": "buffer", + "kind": "method", + "name": "bytes", + "signature": "`blob.bytes()`", + "label": "blob.bytes()", + "apiSymbol": "blob.bytes", + "depth": 2, + "scope": "api", + "anchor": "blobbytes", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:buffer" + }, + "anchorSource": "exact" + }, + { + "id": "buffer:0b785450eeac", + "chapter": "buffer", + "kind": "method", + "name": "slice", + "signature": "`blob.slice([start[, end[, type]]])`", + "label": "blob.slice([start[, end[, type]]])", + "apiSymbol": "blob.slice", + "depth": 2, + "scope": "api", + "anchor": "blobslicestart-end-type", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:buffer" + }, + "anchorSource": "exact" + }, + { + "id": "buffer:eac9c35da8f8", + "chapter": "buffer", + "kind": "method", + "name": "stream", + "signature": "`blob.stream()`", + "label": "blob.stream()", + "apiSymbol": "blob.stream", + "depth": 2, + "scope": "api", + "anchor": "blobstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:buffer" + }, + "anchorSource": "exact" + }, + { + "id": "buffer:568587fd78af", + "chapter": "buffer", + "kind": "method", + "name": "text", + "signature": "`blob.text()`", + "label": "blob.text()", + "apiSymbol": "blob.text", + "depth": 2, + "scope": "api", + "anchor": "blobtext", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:buffer" + }, + "anchorSource": "exact" + }, + { + "id": "buffer:fe2720024378", + "chapter": "buffer", + "kind": "section", + "name": "size", + "signature": "`blob.size`", + "label": "blob.size", + "apiSymbol": "blob.size", + "depth": 2, + "scope": "api", + "anchor": "blobsize", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:buffer" + }, + "anchorSource": "exact" + }, + { + "id": "buffer:23148ab6a5af", + "chapter": "buffer", + "kind": "string", + "name": "Type", + "signature": "`type` Type: {string}", + "label": "type", + "apiSymbol": "type", + "depth": 2, + "scope": "api", + "anchor": "class-blob", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:buffer" + }, + "anchorSource": "ancestor" + }, + { + "id": "buffer:ee741d00a630", + "chapter": "buffer", + "kind": "class", + "name": "Buffer", + "signature": "Class: `Buffer`", + "label": "Buffer", + "apiSymbol": "Buffer", + "depth": 1, + "scope": "api", + "anchor": "class-buffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:buffer.Buffer", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:8672343fcd48", + "chapter": "buffer", + "kind": "method", + "name": "compare", + "signature": "`buf.compare(target[, targetStart[, targetEnd[, sourceStart[, sourceEnd]]]])`", + "label": "buf.compare(target[, targetStart[, targetEnd[, sourceStart[, sourceEnd]]]])", + "apiSymbol": "buf.compare", + "depth": 2, + "scope": "api", + "anchor": "bufcomparetarget-targetstart-targetend-sourcestart-sourceend", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.compare", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:ac4a2199c01a", + "chapter": "buffer", + "kind": "method", + "name": "copy", + "signature": "`buf.copy(target[, targetStart[, sourceStart[, sourceEnd]]])`", + "label": "buf.copy(target[, targetStart[, sourceStart[, sourceEnd]]])", + "apiSymbol": "buf.copy", + "depth": 2, + "scope": "api", + "anchor": "bufcopytarget-targetstart-sourcestart-sourceend", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.copy", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:10171a3317cd", + "chapter": "buffer", + "kind": "method", + "name": "entries", + "signature": "`buf.entries()`", + "label": "buf.entries()", + "apiSymbol": "buf.entries", + "depth": 2, + "scope": "api", + "anchor": "bufentries", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:buffer" + }, + "anchorSource": "exact" + }, + { + "id": "buffer:efedb81e3160", + "chapter": "buffer", + "kind": "method", + "name": "equals", + "signature": "`buf.equals(otherBuffer)`", + "label": "buf.equals(otherBuffer)", + "apiSymbol": "buf.equals", + "depth": 2, + "scope": "api", + "anchor": "bufequalsotherbuffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.equals", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:e758d4a2f55a", + "chapter": "buffer", + "kind": "method", + "name": "fill", + "signature": "`buf.fill(value[, offset[, end]][, encoding])`", + "label": "buf.fill(value[, offset[, end]][, encoding])", + "apiSymbol": "buf.fill", + "depth": 2, + "scope": "api", + "anchor": "buffillvalue-offset-end-encoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.fill", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:036238ad6edd", + "chapter": "buffer", + "kind": "method", + "name": "includes", + "signature": "`buf.includes(value[, byteOffset][, encoding])`", + "label": "buf.includes(value[, byteOffset][, encoding])", + "apiSymbol": "buf.includes", + "depth": 2, + "scope": "api", + "anchor": "bufincludesvalue-byteoffset-encoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.includes", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:4bb2e1c043ab", + "chapter": "buffer", + "kind": "method", + "name": "indexOf", + "signature": "`buf.indexOf(value[, byteOffset][, encoding])`", + "label": "buf.indexOf(value[, byteOffset][, encoding])", + "apiSymbol": "buf.indexOf", + "depth": 2, + "scope": "api", + "anchor": "bufindexofvalue-byteoffset-encoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.indexOf", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:2d035a951d24", + "chapter": "buffer", + "kind": "method", + "name": "keys", + "signature": "`buf.keys()`", + "label": "buf.keys()", + "apiSymbol": "buf.keys", + "depth": 2, + "scope": "api", + "anchor": "bufkeys", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:buffer" + }, + "anchorSource": "exact" + }, + { + "id": "buffer:0f29211b95db", + "chapter": "buffer", + "kind": "method", + "name": "lastIndexOf", + "signature": "`buf.lastIndexOf(value[, byteOffset][, encoding])`", + "label": "buf.lastIndexOf(value[, byteOffset][, encoding])", + "apiSymbol": "buf.lastIndexOf", + "depth": 2, + "scope": "api", + "anchor": "buflastindexofvalue-byteoffset-encoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.lastIndexOf", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:192a90d09b9e", + "chapter": "buffer", + "kind": "method", + "name": "readBigInt64BE", + "signature": "`buf.readBigInt64BE([offset])`", + "label": "buf.readBigInt64BE([offset])", + "apiSymbol": "buf.readBigInt64BE", + "depth": 2, + "scope": "api", + "anchor": "bufreadbigint64beoffset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.readBigInt64BE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:4cfbe8f7ea1a", + "chapter": "buffer", + "kind": "method", + "name": "readBigInt64LE", + "signature": "`buf.readBigInt64LE([offset])`", + "label": "buf.readBigInt64LE([offset])", + "apiSymbol": "buf.readBigInt64LE", + "depth": 2, + "scope": "api", + "anchor": "bufreadbigint64leoffset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.readBigInt64LE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:884486b34123", + "chapter": "buffer", + "kind": "method", + "name": "readBigUInt64BE", + "signature": "`buf.readBigUInt64BE([offset])`", + "label": "buf.readBigUInt64BE([offset])", + "apiSymbol": "buf.readBigUInt64BE", + "depth": 2, + "scope": "api", + "anchor": "bufreadbiguint64beoffset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.readBigUInt64BE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:c6a190fd1f05", + "chapter": "buffer", + "kind": "method", + "name": "readBigUInt64LE", + "signature": "`buf.readBigUInt64LE([offset])`", + "label": "buf.readBigUInt64LE([offset])", + "apiSymbol": "buf.readBigUInt64LE", + "depth": 2, + "scope": "api", + "anchor": "bufreadbiguint64leoffset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.readBigUInt64LE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:f6a623628019", + "chapter": "buffer", + "kind": "method", + "name": "readDoubleBE", + "signature": "`buf.readDoubleBE([offset])`", + "label": "buf.readDoubleBE([offset])", + "apiSymbol": "buf.readDoubleBE", + "depth": 2, + "scope": "api", + "anchor": "bufreaddoublebeoffset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.readDoubleBE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:60511dd6b0c3", + "chapter": "buffer", + "kind": "method", + "name": "readDoubleLE", + "signature": "`buf.readDoubleLE([offset])`", + "label": "buf.readDoubleLE([offset])", + "apiSymbol": "buf.readDoubleLE", + "depth": 2, + "scope": "api", + "anchor": "bufreaddoubleleoffset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.readDoubleLE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:17ddd1fd1bd4", + "chapter": "buffer", + "kind": "method", + "name": "readFloatBE", + "signature": "`buf.readFloatBE([offset])`", + "label": "buf.readFloatBE([offset])", + "apiSymbol": "buf.readFloatBE", + "depth": 2, + "scope": "api", + "anchor": "bufreadfloatbeoffset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.readFloatBE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:4558a046b49c", + "chapter": "buffer", + "kind": "method", + "name": "readFloatLE", + "signature": "`buf.readFloatLE([offset])`", + "label": "buf.readFloatLE([offset])", + "apiSymbol": "buf.readFloatLE", + "depth": 2, + "scope": "api", + "anchor": "bufreadfloatleoffset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.readFloatLE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:c15ada36c30b", + "chapter": "buffer", + "kind": "method", + "name": "readInt8", + "signature": "`buf.readInt8([offset])`", + "label": "buf.readInt8([offset])", + "apiSymbol": "buf.readInt8", + "depth": 2, + "scope": "api", + "anchor": "bufreadint8offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.readInt8", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:ceefb63f8c94", + "chapter": "buffer", + "kind": "method", + "name": "readInt16BE", + "signature": "`buf.readInt16BE([offset])`", + "label": "buf.readInt16BE([offset])", + "apiSymbol": "buf.readInt16BE", + "depth": 2, + "scope": "api", + "anchor": "bufreadint16beoffset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.readInt16BE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:cb59d1f1c4ca", + "chapter": "buffer", + "kind": "method", + "name": "readInt16LE", + "signature": "`buf.readInt16LE([offset])`", + "label": "buf.readInt16LE([offset])", + "apiSymbol": "buf.readInt16LE", + "depth": 2, + "scope": "api", + "anchor": "bufreadint16leoffset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.readInt16LE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:5f3c932deb78", + "chapter": "buffer", + "kind": "method", + "name": "readInt32BE", + "signature": "`buf.readInt32BE([offset])`", + "label": "buf.readInt32BE([offset])", + "apiSymbol": "buf.readInt32BE", + "depth": 2, + "scope": "api", + "anchor": "bufreadint32beoffset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.readInt32BE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:d96791085a61", + "chapter": "buffer", + "kind": "method", + "name": "readInt32LE", + "signature": "`buf.readInt32LE([offset])`", + "label": "buf.readInt32LE([offset])", + "apiSymbol": "buf.readInt32LE", + "depth": 2, + "scope": "api", + "anchor": "bufreadint32leoffset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.readInt32LE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:1419911d4aad", + "chapter": "buffer", + "kind": "method", + "name": "readIntBE", + "signature": "`buf.readIntBE(offset, byteLength)`", + "label": "buf.readIntBE(offset, byteLength)", + "apiSymbol": "buf.readIntBE", + "depth": 2, + "scope": "api", + "anchor": "bufreadintbeoffset-bytelength", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.readIntBE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:4fc8a02f910d", + "chapter": "buffer", + "kind": "method", + "name": "readIntLE", + "signature": "`buf.readIntLE(offset, byteLength)`", + "label": "buf.readIntLE(offset, byteLength)", + "apiSymbol": "buf.readIntLE", + "depth": 2, + "scope": "api", + "anchor": "bufreadintleoffset-bytelength", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.readIntLE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:f33bc928a80b", + "chapter": "buffer", + "kind": "method", + "name": "readUInt8", + "signature": "`buf.readUInt8([offset])`", + "label": "buf.readUInt8([offset])", + "apiSymbol": "buf.readUInt8", + "depth": 2, + "scope": "api", + "anchor": "bufreaduint8offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.readUInt8", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:26539eec3cf5", + "chapter": "buffer", + "kind": "method", + "name": "readUInt16BE", + "signature": "`buf.readUInt16BE([offset])`", + "label": "buf.readUInt16BE([offset])", + "apiSymbol": "buf.readUInt16BE", + "depth": 2, + "scope": "api", + "anchor": "bufreaduint16beoffset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.readUInt16BE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:1e574c44adec", + "chapter": "buffer", + "kind": "method", + "name": "readUInt16LE", + "signature": "`buf.readUInt16LE([offset])`", + "label": "buf.readUInt16LE([offset])", + "apiSymbol": "buf.readUInt16LE", + "depth": 2, + "scope": "api", + "anchor": "bufreaduint16leoffset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.readUInt16LE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:d10610de9a80", + "chapter": "buffer", + "kind": "method", + "name": "readUInt32BE", + "signature": "`buf.readUInt32BE([offset])`", + "label": "buf.readUInt32BE([offset])", + "apiSymbol": "buf.readUInt32BE", + "depth": 2, + "scope": "api", + "anchor": "bufreaduint32beoffset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.readUInt32BE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:e9b4ad55de11", + "chapter": "buffer", + "kind": "method", + "name": "readUInt32LE", + "signature": "`buf.readUInt32LE([offset])`", + "label": "buf.readUInt32LE([offset])", + "apiSymbol": "buf.readUInt32LE", + "depth": 2, + "scope": "api", + "anchor": "bufreaduint32leoffset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.readUInt32LE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:ec388bc7047c", + "chapter": "buffer", + "kind": "method", + "name": "readUIntBE", + "signature": "`buf.readUIntBE(offset, byteLength)`", + "label": "buf.readUIntBE(offset, byteLength)", + "apiSymbol": "buf.readUIntBE", + "depth": 2, + "scope": "api", + "anchor": "bufreaduintbeoffset-bytelength", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.readUIntBE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:c4c91d262648", + "chapter": "buffer", + "kind": "method", + "name": "readUIntLE", + "signature": "`buf.readUIntLE(offset, byteLength)`", + "label": "buf.readUIntLE(offset, byteLength)", + "apiSymbol": "buf.readUIntLE", + "depth": 2, + "scope": "api", + "anchor": "bufreaduintleoffset-bytelength", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.readUIntLE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:ffed09a95d37", + "chapter": "buffer", + "kind": "method", + "name": "subarray", + "signature": "`buf.subarray([start[, end]])`", + "label": "buf.subarray([start[, end]])", + "apiSymbol": "buf.subarray", + "depth": 2, + "scope": "api", + "anchor": "bufsubarraystart-end", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.subarray", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:11d1440f0137", + "chapter": "buffer", + "kind": "method", + "name": "slice", + "signature": "`buf.slice([start[, end]])`", + "label": "buf.slice([start[, end]])", + "apiSymbol": "buf.slice", + "depth": 2, + "scope": "api", + "anchor": "bufslicestart-end", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Use [`buf.subarray`][] instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.slice", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:e9fdf934fb29", + "chapter": "buffer", + "kind": "method", + "name": "swap16", + "signature": "`buf.swap16()`", + "label": "buf.swap16()", + "apiSymbol": "buf.swap16", + "depth": 2, + "scope": "api", + "anchor": "bufswap16", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.swap16", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:6f11fc97710d", + "chapter": "buffer", + "kind": "method", + "name": "swap32", + "signature": "`buf.swap32()`", + "label": "buf.swap32()", + "apiSymbol": "buf.swap32", + "depth": 2, + "scope": "api", + "anchor": "bufswap32", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.swap32", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:d2b36e039323", + "chapter": "buffer", + "kind": "method", + "name": "swap64", + "signature": "`buf.swap64()`", + "label": "buf.swap64()", + "apiSymbol": "buf.swap64", + "depth": 2, + "scope": "api", + "anchor": "bufswap64", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.swap64", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:0556466f3199", + "chapter": "buffer", + "kind": "method", + "name": "toJSON", + "signature": "`buf.toJSON()`", + "label": "buf.toJSON()", + "apiSymbol": "buf.toJSON", + "depth": 2, + "scope": "api", + "anchor": "buftojson", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.toJSON", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:c8bddf10fb87", + "chapter": "buffer", + "kind": "method", + "name": "toString", + "signature": "`buf.toString([encoding[, start[, end]]])`", + "label": "buf.toString([encoding[, start[, end]]])", + "apiSymbol": "buf.toString", + "depth": 2, + "scope": "api", + "anchor": "buftostringencoding-start-end", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.toString", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:d7428a07c1d1", + "chapter": "buffer", + "kind": "method", + "name": "values", + "signature": "`buf.values()`", + "label": "buf.values()", + "apiSymbol": "buf.values", + "depth": 2, + "scope": "api", + "anchor": "bufvalues", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:buffer" + }, + "anchorSource": "exact" + }, + { + "id": "buffer:9bc687c91608", + "chapter": "buffer", + "kind": "method", + "name": "write", + "signature": "`buf.write(string[, offset[, length]][, encoding])`", + "label": "buf.write(string[, offset[, length]][, encoding])", + "apiSymbol": "buf.write", + "depth": 2, + "scope": "api", + "anchor": "bufwritestring-offset-length-encoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.write", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:a0f65696c0ff", + "chapter": "buffer", + "kind": "method", + "name": "writeBigInt64BE", + "signature": "`buf.writeBigInt64BE(value[, offset])`", + "label": "buf.writeBigInt64BE(value[, offset])", + "apiSymbol": "buf.writeBigInt64BE", + "depth": 2, + "scope": "api", + "anchor": "bufwritebigint64bevalue-offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.writeBigInt64BE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:bec4d18deb28", + "chapter": "buffer", + "kind": "method", + "name": "writeBigInt64LE", + "signature": "`buf.writeBigInt64LE(value[, offset])`", + "label": "buf.writeBigInt64LE(value[, offset])", + "apiSymbol": "buf.writeBigInt64LE", + "depth": 2, + "scope": "api", + "anchor": "bufwritebigint64levalue-offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.writeBigInt64LE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:03fe65c4dcae", + "chapter": "buffer", + "kind": "method", + "name": "writeBigUInt64BE", + "signature": "`buf.writeBigUInt64BE(value[, offset])`", + "label": "buf.writeBigUInt64BE(value[, offset])", + "apiSymbol": "buf.writeBigUInt64BE", + "depth": 2, + "scope": "api", + "anchor": "bufwritebiguint64bevalue-offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.writeBigUInt64BE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:16a200c1a65f", + "chapter": "buffer", + "kind": "method", + "name": "writeBigUInt64LE", + "signature": "`buf.writeBigUInt64LE(value[, offset])`", + "label": "buf.writeBigUInt64LE(value[, offset])", + "apiSymbol": "buf.writeBigUInt64LE", + "depth": 2, + "scope": "api", + "anchor": "bufwritebiguint64levalue-offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.writeBigUInt64LE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:4674d4e7f8c8", + "chapter": "buffer", + "kind": "method", + "name": "writeDoubleBE", + "signature": "`buf.writeDoubleBE(value[, offset])`", + "label": "buf.writeDoubleBE(value[, offset])", + "apiSymbol": "buf.writeDoubleBE", + "depth": 2, + "scope": "api", + "anchor": "bufwritedoublebevalue-offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.writeDoubleBE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:d7ad065243e0", + "chapter": "buffer", + "kind": "method", + "name": "writeDoubleLE", + "signature": "`buf.writeDoubleLE(value[, offset])`", + "label": "buf.writeDoubleLE(value[, offset])", + "apiSymbol": "buf.writeDoubleLE", + "depth": 2, + "scope": "api", + "anchor": "bufwritedoublelevalue-offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.writeDoubleLE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:757ffb8c8b58", + "chapter": "buffer", + "kind": "method", + "name": "writeFloatBE", + "signature": "`buf.writeFloatBE(value[, offset])`", + "label": "buf.writeFloatBE(value[, offset])", + "apiSymbol": "buf.writeFloatBE", + "depth": 2, + "scope": "api", + "anchor": "bufwritefloatbevalue-offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.writeFloatBE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:e13ba4f75fbf", + "chapter": "buffer", + "kind": "method", + "name": "writeFloatLE", + "signature": "`buf.writeFloatLE(value[, offset])`", + "label": "buf.writeFloatLE(value[, offset])", + "apiSymbol": "buf.writeFloatLE", + "depth": 2, + "scope": "api", + "anchor": "bufwritefloatlevalue-offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.writeFloatLE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:42838a6743c2", + "chapter": "buffer", + "kind": "method", + "name": "writeInt8", + "signature": "`buf.writeInt8(value[, offset])`", + "label": "buf.writeInt8(value[, offset])", + "apiSymbol": "buf.writeInt8", + "depth": 2, + "scope": "api", + "anchor": "bufwriteint8value-offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.writeInt8", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:fc788ef34e1d", + "chapter": "buffer", + "kind": "method", + "name": "writeInt16BE", + "signature": "`buf.writeInt16BE(value[, offset])`", + "label": "buf.writeInt16BE(value[, offset])", + "apiSymbol": "buf.writeInt16BE", + "depth": 2, + "scope": "api", + "anchor": "bufwriteint16bevalue-offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.writeInt16BE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:3e3c7938cbb6", + "chapter": "buffer", + "kind": "method", + "name": "writeInt16LE", + "signature": "`buf.writeInt16LE(value[, offset])`", + "label": "buf.writeInt16LE(value[, offset])", + "apiSymbol": "buf.writeInt16LE", + "depth": 2, + "scope": "api", + "anchor": "bufwriteint16levalue-offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.writeInt16LE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:7153b99eb633", + "chapter": "buffer", + "kind": "method", + "name": "writeInt32BE", + "signature": "`buf.writeInt32BE(value[, offset])`", + "label": "buf.writeInt32BE(value[, offset])", + "apiSymbol": "buf.writeInt32BE", + "depth": 2, + "scope": "api", + "anchor": "bufwriteint32bevalue-offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.writeInt32BE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:5a754188c53c", + "chapter": "buffer", + "kind": "method", + "name": "writeInt32LE", + "signature": "`buf.writeInt32LE(value[, offset])`", + "label": "buf.writeInt32LE(value[, offset])", + "apiSymbol": "buf.writeInt32LE", + "depth": 2, + "scope": "api", + "anchor": "bufwriteint32levalue-offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.writeInt32LE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:19845f3017e2", + "chapter": "buffer", + "kind": "method", + "name": "writeIntBE", + "signature": "`buf.writeIntBE(value, offset, byteLength)`", + "label": "buf.writeIntBE(value, offset, byteLength)", + "apiSymbol": "buf.writeIntBE", + "depth": 2, + "scope": "api", + "anchor": "bufwriteintbevalue-offset-bytelength", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.writeIntBE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:2e1c255cdf2e", + "chapter": "buffer", + "kind": "method", + "name": "writeIntLE", + "signature": "`buf.writeIntLE(value, offset, byteLength)`", + "label": "buf.writeIntLE(value, offset, byteLength)", + "apiSymbol": "buf.writeIntLE", + "depth": 2, + "scope": "api", + "anchor": "bufwriteintlevalue-offset-bytelength", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.writeIntLE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:e761416f0593", + "chapter": "buffer", + "kind": "method", + "name": "writeUInt8", + "signature": "`buf.writeUInt8(value[, offset])`", + "label": "buf.writeUInt8(value[, offset])", + "apiSymbol": "buf.writeUInt8", + "depth": 2, + "scope": "api", + "anchor": "bufwriteuint8value-offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.writeUInt8", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:4eae6fa8da16", + "chapter": "buffer", + "kind": "method", + "name": "writeUInt16BE", + "signature": "`buf.writeUInt16BE(value[, offset])`", + "label": "buf.writeUInt16BE(value[, offset])", + "apiSymbol": "buf.writeUInt16BE", + "depth": 2, + "scope": "api", + "anchor": "bufwriteuint16bevalue-offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.writeUInt16BE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:b4e4901ce98b", + "chapter": "buffer", + "kind": "method", + "name": "writeUInt16LE", + "signature": "`buf.writeUInt16LE(value[, offset])`", + "label": "buf.writeUInt16LE(value[, offset])", + "apiSymbol": "buf.writeUInt16LE", + "depth": 2, + "scope": "api", + "anchor": "bufwriteuint16levalue-offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.writeUInt16LE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:d02c17904301", + "chapter": "buffer", + "kind": "method", + "name": "writeUInt32BE", + "signature": "`buf.writeUInt32BE(value[, offset])`", + "label": "buf.writeUInt32BE(value[, offset])", + "apiSymbol": "buf.writeUInt32BE", + "depth": 2, + "scope": "api", + "anchor": "bufwriteuint32bevalue-offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.writeUInt32BE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:df1b0aefcd1b", + "chapter": "buffer", + "kind": "method", + "name": "writeUInt32LE", + "signature": "`buf.writeUInt32LE(value[, offset])`", + "label": "buf.writeUInt32LE(value[, offset])", + "apiSymbol": "buf.writeUInt32LE", + "depth": 2, + "scope": "api", + "anchor": "bufwriteuint32levalue-offset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.writeUInt32LE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:8e583bbdf7ba", + "chapter": "buffer", + "kind": "method", + "name": "writeUIntBE", + "signature": "`buf.writeUIntBE(value, offset, byteLength)`", + "label": "buf.writeUIntBE(value, offset, byteLength)", + "apiSymbol": "buf.writeUIntBE", + "depth": 2, + "scope": "api", + "anchor": "bufwriteuintbevalue-offset-bytelength", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.writeUIntBE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:3919144cc9db", + "chapter": "buffer", + "kind": "method", + "name": "writeUIntLE", + "signature": "`buf.writeUIntLE(value, offset, byteLength)`", + "label": "buf.writeUIntLE(value, offset, byteLength)", + "apiSymbol": "buf.writeUIntLE", + "depth": 2, + "scope": "api", + "anchor": "bufwriteuintlevalue-offset-bytelength", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:buffer.buf.writeUIntLE", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:a12afe3296c9", + "chapter": "buffer", + "kind": "integer", + "name": "Type", + "signature": "`poolSize` Type: {integer} **Default:** `8192`", + "label": "poolSize", + "apiSymbol": "poolSize", + "depth": 2, + "scope": "api", + "anchor": "class-buffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:buffer" + }, + "anchorSource": "ancestor" + }, + { + "id": "buffer:2d6a3ef75d98", + "chapter": "buffer", + "kind": "integer", + "name": "index", + "signature": "`[index]` `index` {integer}", + "label": "[index]", + "apiSymbol": "", + "depth": 2, + "scope": "api", + "anchor": "class-buffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:buffer" + }, + "anchorSource": "ancestor" + }, + { + "id": "buffer:ee0685658c0f", + "chapter": "buffer", + "kind": "ArrayBuffer", + "name": "Type", + "signature": "`buffer` Type: {ArrayBuffer} The underlying `ArrayBuffer` object based on which this `Buffer` object is created.", + "label": "buffer", + "apiSymbol": "buffer", + "depth": 2, + "scope": "api", + "anchor": "class-buffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:buffer" + }, + "anchorSource": "ancestor" + }, + { + "id": "buffer:7100316c9e70", + "chapter": "buffer", + "kind": "integer", + "name": "Type", + "signature": "`byteOffset` Type: {integer} The `byteOffset` of the `Buffer`'s underlying `ArrayBuffer` object.", + "label": "byteOffset", + "apiSymbol": "byteOffset", + "depth": 2, + "scope": "api", + "anchor": "class-buffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:buffer" + }, + "anchorSource": "ancestor" + }, + { + "id": "buffer:9658d24dfd74", + "chapter": "buffer", + "kind": "integer", + "name": "Type", + "signature": "`length` Type: {integer}", + "label": "length", + "apiSymbol": "length", + "depth": 2, + "scope": "api", + "anchor": "class-buffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:buffer" + }, + "anchorSource": "ancestor" + }, + { + "id": "buffer:dc280baf2e72", + "chapter": "buffer", + "kind": "section", + "name": "parent", + "signature": "`buf.parent`", + "label": "buf.parent", + "apiSymbol": "buf.parent", + "depth": 2, + "scope": "api", + "anchor": "bufparent", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Use [`buf.buffer`][] instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:buffer" + }, + "anchorSource": "exact" + }, + { + "id": "buffer:803f990625f6", + "chapter": "buffer", + "kind": "class", + "name": "File", + "signature": "Class: `File`", + "label": "File", + "apiSymbol": "File", + "depth": 1, + "scope": "api", + "anchor": "class-file", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:buffer.File", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "buffer:3c4f6df8cde2", + "chapter": "buffer", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string}", + "label": "name", + "apiSymbol": "name", + "depth": 2, + "scope": "api", + "anchor": "class-file", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:buffer" + }, + "anchorSource": "ancestor" + }, + { + "id": "buffer:0e7d3e3ae7de", + "chapter": "buffer", + "kind": "number", + "name": "Type", + "signature": "`lastModified` Type: {number}", + "label": "lastModified", + "apiSymbol": "lastModified", + "depth": 2, + "scope": "api", + "anchor": "class-file", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:buffer" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:buffer" + }, + "anchorSource": "ancestor" + }, + { + "id": "addons:737696f3e1f8", + "chapter": "addons", + "kind": "misc", + "name": "C++ addons", + "signature": "C++ addons", + "label": "C++ addons", + "apiSymbol": "C++ addons", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "derived:descendants" + }, + "dynamic": { + "status": "by-design", + "evidence": "derived:descendants" + }, + "anchorSource": "chapter" + }, + { + "id": "addons:a61b7c32491c", + "chapter": "addons", + "kind": "misc", + "name": "hello_world", + "signature": "Hello world", + "label": "Hello world", + "apiSymbol": "hello_world", + "depth": 1, + "scope": "documentation", + "anchor": "hello-world", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "addons:4a92a151a894", + "chapter": "addons", + "kind": "module", + "name": "context-aware_addons", + "signature": "Context-aware addons", + "label": "Context-aware addons", + "apiSymbol": "context-aware_addons", + "depth": 2, + "scope": "documentation", + "anchor": "context-aware-addons", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "addons:d53ab12835a0", + "chapter": "addons", + "kind": "module", + "name": "worker_support", + "signature": "Worker support", + "label": "Worker support", + "apiSymbol": "worker_support", + "depth": 3, + "scope": "documentation", + "anchor": "worker-support", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "addons:46859e5f371a", + "chapter": "addons", + "kind": "module", + "name": "building", + "signature": "Building", + "label": "Building", + "apiSymbol": "building", + "depth": 2, + "scope": "documentation", + "anchor": "building", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "addons:a26ef6bdbd4e", + "chapter": "addons", + "kind": "module", + "name": "linking_to_libraries_included_with_node.js", + "signature": "Linking to libraries included with Node.js", + "label": "Linking to libraries included with Node.js", + "apiSymbol": "linking_to_libraries_included_with_node.js", + "depth": 2, + "scope": "documentation", + "anchor": "linking-to-libraries-included-with-nodejs", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "addons:6d4f63d632a9", + "chapter": "addons", + "kind": "module", + "name": "loading_addons_using_`require()`", + "signature": "Loading addons using `require()`", + "label": "Loading addons using require()", + "apiSymbol": "require", + "depth": 2, + "scope": "api", + "anchor": "loading-addons-using-require", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:addons" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:addons" + }, + "anchorSource": "exact" + }, + { + "id": "addons:08c1dbd19d50", + "chapter": "addons", + "kind": "module", + "name": "loading_addons_using_`import`", + "signature": "Loading addons using `import`", + "label": "Loading addons using import", + "apiSymbol": "import", + "depth": 2, + "scope": "api", + "anchor": "loading-addons-using-import", + "nodeStability": { + "index": "1.0", + "level": 1, + "text": "Early development", + "inherited": false + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:addons" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:addons" + }, + "anchorSource": "exact" + }, + { + "id": "addons:515031378449", + "chapter": "addons", + "kind": "misc", + "name": "native_abstractions_for_node.js", + "signature": "Native abstractions for Node.js", + "label": "Native abstractions for Node.js", + "apiSymbol": "native_abstractions_for_node.js", + "depth": 1, + "scope": "documentation", + "anchor": "native-abstractions-for-nodejs", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "addons:ce30739d13ed", + "chapter": "addons", + "kind": "misc", + "name": "node-api", + "signature": "Node-API", + "label": "Node-API", + "apiSymbol": "node-api", + "depth": 1, + "scope": "documentation", + "anchor": "node-api", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "addons:7d486ab8e34b", + "chapter": "addons", + "kind": "misc", + "name": "addon_examples", + "signature": "Addon examples", + "label": "Addon examples", + "apiSymbol": "addon_examples", + "depth": 1, + "scope": "documentation", + "anchor": "addon-examples", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "addons:2e05537acf9f", + "chapter": "addons", + "kind": "module", + "name": "function_arguments", + "signature": "Function arguments", + "label": "Function arguments", + "apiSymbol": "function_arguments", + "depth": 2, + "scope": "documentation", + "anchor": "function-arguments", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "addons:fc4f4e5ff7aa", + "chapter": "addons", + "kind": "module", + "name": "callbacks", + "signature": "Callbacks", + "label": "Callbacks", + "apiSymbol": "callbacks", + "depth": 2, + "scope": "documentation", + "anchor": "callbacks", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "addons:7411a06aa42b", + "chapter": "addons", + "kind": "module", + "name": "object_factory", + "signature": "Object factory", + "label": "Object factory", + "apiSymbol": "object_factory", + "depth": 2, + "scope": "documentation", + "anchor": "object-factory", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "addons:9531e89bb3b5", + "chapter": "addons", + "kind": "module", + "name": "function_factory", + "signature": "Function factory", + "label": "Function factory", + "apiSymbol": "function_factory", + "depth": 2, + "scope": "documentation", + "anchor": "function-factory", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "addons:d89e800068d6", + "chapter": "addons", + "kind": "module", + "name": "wrapping_c++_objects", + "signature": "Wrapping C++ objects", + "label": "Wrapping C++ objects", + "apiSymbol": "wrapping_c++_objects", + "depth": 2, + "scope": "documentation", + "anchor": "wrapping-c-objects", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "addons:020d2798ae04", + "chapter": "addons", + "kind": "module", + "name": "factory_of_wrapped_objects", + "signature": "Factory of wrapped objects", + "label": "Factory of wrapped objects", + "apiSymbol": "factory_of_wrapped_objects", + "depth": 2, + "scope": "documentation", + "anchor": "factory-of-wrapped-objects", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "addons:fc39325d5b08", + "chapter": "addons", + "kind": "module", + "name": "passing_wrapped_objects_around", + "signature": "Passing wrapped objects around", + "label": "Passing wrapped objects around", + "apiSymbol": "passing_wrapped_objects_around", + "depth": 2, + "scope": "documentation", + "anchor": "passing-wrapped-objects-around", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:e0b392b577fd", + "chapter": "n-api", + "kind": "misc", + "name": "Node-API", + "signature": "Node-API", + "label": "Node-API", + "apiSymbol": "Node-API", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "by-design", + "evidence": "derived:descendants" + }, + "dynamic": { + "status": "by-design", + "evidence": "derived:descendants" + }, + "anchorSource": "chapter" + }, + { + "id": "n-api:a0aaa08f189c", + "chapter": "n-api", + "kind": "misc", + "name": "writing_addons_in_various_programming_languages", + "signature": "Writing addons in various programming languages", + "label": "Writing addons in various programming languages", + "apiSymbol": "writing_addons_in_various_programming_languages", + "depth": 1, + "scope": "documentation", + "anchor": "writing-addons-in-various-programming-languages", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:4afb82a5b547", + "chapter": "n-api", + "kind": "misc", + "name": "implications_of_abi_stability", + "signature": "Implications of ABI stability", + "label": "Implications of ABI stability", + "apiSymbol": "implications_of_abi_stability", + "depth": 1, + "scope": "documentation", + "anchor": "implications-of-abi-stability", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:adfcad0624c7", + "chapter": "n-api", + "kind": "module", + "name": "enum_values_in_abi_stability", + "signature": "Enum values in ABI stability", + "label": "Enum values in ABI stability", + "apiSymbol": "enum_values_in_abi_stability", + "depth": 2, + "scope": "documentation", + "anchor": "enum-values-in-abi-stability", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:37cb681b0b0a", + "chapter": "n-api", + "kind": "misc", + "name": "building", + "signature": "Building", + "label": "Building", + "apiSymbol": "building", + "depth": 1, + "scope": "documentation", + "anchor": "building", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:af47b9b6d79b", + "chapter": "n-api", + "kind": "module", + "name": "build_tools", + "signature": "Build tools", + "label": "Build tools", + "apiSymbol": "build_tools", + "depth": 2, + "scope": "documentation", + "anchor": "build-tools", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:ec34dbea0d0f", + "chapter": "n-api", + "kind": "module", + "name": "node-gyp", + "signature": "node-gyp", + "label": "node-gyp", + "apiSymbol": "node-gyp", + "depth": 3, + "scope": "documentation", + "anchor": "node-gyp", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:15d17036991f", + "chapter": "n-api", + "kind": "section", + "name": "js", + "signature": "CMake.js", + "label": "CMake.js", + "apiSymbol": "js", + "depth": 3, + "scope": "api", + "anchor": "cmakejs", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:ef3b0e9bdcb1", + "chapter": "n-api", + "kind": "module", + "name": "uploading_precompiled_binaries", + "signature": "Uploading precompiled binaries", + "label": "Uploading precompiled binaries", + "apiSymbol": "uploading_precompiled_binaries", + "depth": 2, + "scope": "documentation", + "anchor": "uploading-precompiled-binaries", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:dcb8c9b6aa41", + "chapter": "n-api", + "kind": "module", + "name": "node-pre-gyp", + "signature": "node-pre-gyp", + "label": "node-pre-gyp", + "apiSymbol": "node-pre-gyp", + "depth": 3, + "scope": "documentation", + "anchor": "node-pre-gyp", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:969e142b39ed", + "chapter": "n-api", + "kind": "module", + "name": "prebuild", + "signature": "prebuild", + "label": "prebuild", + "apiSymbol": "prebuild", + "depth": 3, + "scope": "documentation", + "anchor": "prebuild", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:32b459071f36", + "chapter": "n-api", + "kind": "module", + "name": "prebuildify", + "signature": "prebuildify", + "label": "prebuildify", + "apiSymbol": "prebuildify", + "depth": 3, + "scope": "documentation", + "anchor": "prebuildify", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:ca52f2a59926", + "chapter": "n-api", + "kind": "misc", + "name": "usage", + "signature": "Usage", + "label": "Usage", + "apiSymbol": "usage", + "depth": 1, + "scope": "documentation", + "anchor": "usage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:b3f5b461f186", + "chapter": "n-api", + "kind": "misc", + "name": "node-api_version_matrix", + "signature": "Node-API version matrix", + "label": "Node-API version matrix", + "apiSymbol": "node-api_version_matrix", + "depth": 1, + "scope": "documentation", + "anchor": "node-api-version-matrix", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:e7112e750dc8", + "chapter": "n-api", + "kind": "misc", + "name": "environment_life_cycle_apis", + "signature": "Environment life cycle APIs", + "label": "Environment life cycle APIs", + "apiSymbol": "environment_life_cycle_apis", + "depth": 1, + "scope": "documentation", + "anchor": "environment-life-cycle-apis", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:1226dcbfdf4c", + "chapter": "n-api", + "kind": "module", + "name": "`napi_set_instance_data`", + "signature": "`napi_set_instance_data`", + "label": "napi_set_instance_data", + "apiSymbol": "napi_set_instance_data", + "depth": 2, + "scope": "api", + "anchor": "napi_set_instance_data", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:8a159a75af39", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_instance_data`", + "signature": "`napi_get_instance_data`", + "label": "napi_get_instance_data", + "apiSymbol": "napi_get_instance_data", + "depth": 2, + "scope": "api", + "anchor": "napi_get_instance_data", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:232760e8fd58", + "chapter": "n-api", + "kind": "misc", + "name": "basic_node-api_data_types", + "signature": "Basic Node-API data types", + "label": "Basic Node-API data types", + "apiSymbol": "basic_node-api_data_types", + "depth": 1, + "scope": "documentation", + "anchor": "basic-node-api-data-types", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:cc72be507f6d", + "chapter": "n-api", + "kind": "module", + "name": "`napi_status`", + "signature": "`napi_status`", + "label": "napi_status", + "apiSymbol": "napi_status", + "depth": 2, + "scope": "api", + "anchor": "napi_status", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:af7ae1b70290", + "chapter": "n-api", + "kind": "module", + "name": "`napi_extended_error_info`", + "signature": "`napi_extended_error_info`", + "label": "napi_extended_error_info", + "apiSymbol": "napi_extended_error_info", + "depth": 2, + "scope": "api", + "anchor": "napi_extended_error_info", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:e5cc7ee57059", + "chapter": "n-api", + "kind": "module", + "name": "`napi_env`", + "signature": "`napi_env`", + "label": "napi_env", + "apiSymbol": "napi_env", + "depth": 2, + "scope": "api", + "anchor": "napi_env", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:39710f9b9720", + "chapter": "n-api", + "kind": "module", + "name": "`node_api_basic_env`", + "signature": "`node_api_basic_env`", + "label": "node_api_basic_env", + "apiSymbol": "node_api_basic_env", + "depth": 2, + "scope": "api", + "anchor": "node_api_basic_env", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:5f3c2fb83158", + "chapter": "n-api", + "kind": "module", + "name": "`napi_value`", + "signature": "`napi_value`", + "label": "napi_value", + "apiSymbol": "napi_value", + "depth": 2, + "scope": "api", + "anchor": "napi_value", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:87a15ac14dec", + "chapter": "n-api", + "kind": "module", + "name": "`napi_threadsafe_function`", + "signature": "`napi_threadsafe_function`", + "label": "napi_threadsafe_function", + "apiSymbol": "napi_threadsafe_function", + "depth": 2, + "scope": "api", + "anchor": "napi_threadsafe_function", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:e1af1bd36b0a", + "chapter": "n-api", + "kind": "module", + "name": "`napi_threadsafe_function_release_mode`", + "signature": "`napi_threadsafe_function_release_mode`", + "label": "napi_threadsafe_function_release_mode", + "apiSymbol": "napi_threadsafe_function_release_mode", + "depth": 2, + "scope": "api", + "anchor": "napi_threadsafe_function_release_mode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:c9128ec4bbc0", + "chapter": "n-api", + "kind": "module", + "name": "`napi_threadsafe_function_call_mode`", + "signature": "`napi_threadsafe_function_call_mode`", + "label": "napi_threadsafe_function_call_mode", + "apiSymbol": "napi_threadsafe_function_call_mode", + "depth": 2, + "scope": "api", + "anchor": "napi_threadsafe_function_call_mode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:524405df6d58", + "chapter": "n-api", + "kind": "module", + "name": "node-api_memory_management_types", + "signature": "Node-API memory management types", + "label": "Node-API memory management types", + "apiSymbol": "node-api_memory_management_types", + "depth": 2, + "scope": "documentation", + "anchor": "node-api-memory-management-types", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:d2bb9ceca0bc", + "chapter": "n-api", + "kind": "module", + "name": "`napi_handle_scope`", + "signature": "`napi_handle_scope`", + "label": "napi_handle_scope", + "apiSymbol": "napi_handle_scope", + "depth": 3, + "scope": "api", + "anchor": "napi_handle_scope", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:965c7c549027", + "chapter": "n-api", + "kind": "module", + "name": "`napi_escapable_handle_scope`", + "signature": "`napi_escapable_handle_scope`", + "label": "napi_escapable_handle_scope", + "apiSymbol": "napi_escapable_handle_scope", + "depth": 3, + "scope": "api", + "anchor": "napi_escapable_handle_scope", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:c7d26017ab8a", + "chapter": "n-api", + "kind": "module", + "name": "`napi_ref`", + "signature": "`napi_ref`", + "label": "napi_ref", + "apiSymbol": "napi_ref", + "depth": 3, + "scope": "api", + "anchor": "napi_ref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:4d70f3a18090", + "chapter": "n-api", + "kind": "module", + "name": "`napi_type_tag`", + "signature": "`napi_type_tag`", + "label": "napi_type_tag", + "apiSymbol": "napi_type_tag", + "depth": 3, + "scope": "api", + "anchor": "napi_type_tag", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:73d5bb382d20", + "chapter": "n-api", + "kind": "module", + "name": "`napi_async_cleanup_hook_handle`", + "signature": "`napi_async_cleanup_hook_handle`", + "label": "napi_async_cleanup_hook_handle", + "apiSymbol": "napi_async_cleanup_hook_handle", + "depth": 3, + "scope": "api", + "anchor": "napi_async_cleanup_hook_handle", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:625b1b30eba1", + "chapter": "n-api", + "kind": "module", + "name": "node-api_callback_types", + "signature": "Node-API callback types", + "label": "Node-API callback types", + "apiSymbol": "node-api_callback_types", + "depth": 2, + "scope": "documentation", + "anchor": "node-api-callback-types", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:1bfe336f8e14", + "chapter": "n-api", + "kind": "module", + "name": "`napi_callback_info`", + "signature": "`napi_callback_info`", + "label": "napi_callback_info", + "apiSymbol": "napi_callback_info", + "depth": 3, + "scope": "api", + "anchor": "napi_callback_info", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:d333286e8851", + "chapter": "n-api", + "kind": "module", + "name": "`napi_callback`", + "signature": "`napi_callback`", + "label": "napi_callback", + "apiSymbol": "napi_callback", + "depth": 3, + "scope": "api", + "anchor": "napi_callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:a74d2677f27a", + "chapter": "n-api", + "kind": "module", + "name": "`node_api_basic_finalize`", + "signature": "`node_api_basic_finalize`", + "label": "node_api_basic_finalize", + "apiSymbol": "node_api_basic_finalize", + "depth": 3, + "scope": "api", + "anchor": "node_api_basic_finalize", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:916165752f94", + "chapter": "n-api", + "kind": "module", + "name": "`napi_finalize`", + "signature": "`napi_finalize`", + "label": "napi_finalize", + "apiSymbol": "napi_finalize", + "depth": 3, + "scope": "api", + "anchor": "napi_finalize", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:910f96bb8016", + "chapter": "n-api", + "kind": "module", + "name": "`napi_async_execute_callback`", + "signature": "`napi_async_execute_callback`", + "label": "napi_async_execute_callback", + "apiSymbol": "napi_async_execute_callback", + "depth": 3, + "scope": "api", + "anchor": "napi_async_execute_callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:d9504ac6d101", + "chapter": "n-api", + "kind": "module", + "name": "`napi_async_complete_callback`", + "signature": "`napi_async_complete_callback`", + "label": "napi_async_complete_callback", + "apiSymbol": "napi_async_complete_callback", + "depth": 3, + "scope": "api", + "anchor": "napi_async_complete_callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:ce3b8e351178", + "chapter": "n-api", + "kind": "module", + "name": "`napi_threadsafe_function_call_js`", + "signature": "`napi_threadsafe_function_call_js`", + "label": "napi_threadsafe_function_call_js", + "apiSymbol": "napi_threadsafe_function_call_js", + "depth": 3, + "scope": "api", + "anchor": "napi_threadsafe_function_call_js", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:fdd016b5b1a4", + "chapter": "n-api", + "kind": "module", + "name": "`napi_cleanup_hook`", + "signature": "`napi_cleanup_hook`", + "label": "napi_cleanup_hook", + "apiSymbol": "napi_cleanup_hook", + "depth": 3, + "scope": "api", + "anchor": "napi_cleanup_hook", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:723b122af8d8", + "chapter": "n-api", + "kind": "module", + "name": "`napi_async_cleanup_hook`", + "signature": "`napi_async_cleanup_hook`", + "label": "napi_async_cleanup_hook", + "apiSymbol": "napi_async_cleanup_hook", + "depth": 3, + "scope": "api", + "anchor": "napi_async_cleanup_hook", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:8c256301f26e", + "chapter": "n-api", + "kind": "misc", + "name": "error_handling", + "signature": "Error handling", + "label": "Error handling", + "apiSymbol": "error_handling", + "depth": 1, + "scope": "documentation", + "anchor": "error-handling", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:103bd1de29d6", + "chapter": "n-api", + "kind": "module", + "name": "return_values", + "signature": "Return values", + "label": "Return values", + "apiSymbol": "return_values", + "depth": 2, + "scope": "documentation", + "anchor": "return-values", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:081d85c7fc9a", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_last_error_info`", + "signature": "`napi_get_last_error_info`", + "label": "napi_get_last_error_info", + "apiSymbol": "napi_get_last_error_info", + "depth": 3, + "scope": "api", + "anchor": "napi_get_last_error_info", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:68b7adb272af", + "chapter": "n-api", + "kind": "module", + "name": "exceptions", + "signature": "Exceptions", + "label": "Exceptions", + "apiSymbol": "exceptions", + "depth": 2, + "scope": "documentation", + "anchor": "exceptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:4354960a7379", + "chapter": "n-api", + "kind": "module", + "name": "`napi_throw`", + "signature": "`napi_throw`", + "label": "napi_throw", + "apiSymbol": "napi_throw", + "depth": 3, + "scope": "api", + "anchor": "napi_throw", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:7fd90dbc4e04", + "chapter": "n-api", + "kind": "module", + "name": "`napi_throw_error`", + "signature": "`napi_throw_error`", + "label": "napi_throw_error", + "apiSymbol": "napi_throw_error", + "depth": 3, + "scope": "api", + "anchor": "napi_throw_error", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:2f3408eb23e2", + "chapter": "n-api", + "kind": "module", + "name": "`napi_throw_type_error`", + "signature": "`napi_throw_type_error`", + "label": "napi_throw_type_error", + "apiSymbol": "napi_throw_type_error", + "depth": 3, + "scope": "api", + "anchor": "napi_throw_type_error", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:58e3073d1353", + "chapter": "n-api", + "kind": "module", + "name": "`napi_throw_range_error`", + "signature": "`napi_throw_range_error`", + "label": "napi_throw_range_error", + "apiSymbol": "napi_throw_range_error", + "depth": 3, + "scope": "api", + "anchor": "napi_throw_range_error", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:87dd61809a06", + "chapter": "n-api", + "kind": "module", + "name": "`node_api_throw_syntax_error`", + "signature": "`node_api_throw_syntax_error`", + "label": "node_api_throw_syntax_error", + "apiSymbol": "node_api_throw_syntax_error", + "depth": 3, + "scope": "api", + "anchor": "node_api_throw_syntax_error", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:e448c7941b3a", + "chapter": "n-api", + "kind": "module", + "name": "`napi_is_error`", + "signature": "`napi_is_error`", + "label": "napi_is_error", + "apiSymbol": "napi_is_error", + "depth": 3, + "scope": "api", + "anchor": "napi_is_error", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:c7f86c2b32e0", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_error`", + "signature": "`napi_create_error`", + "label": "napi_create_error", + "apiSymbol": "napi_create_error", + "depth": 3, + "scope": "api", + "anchor": "napi_create_error", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:8096b1da8be3", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_type_error`", + "signature": "`napi_create_type_error`", + "label": "napi_create_type_error", + "apiSymbol": "napi_create_type_error", + "depth": 3, + "scope": "api", + "anchor": "napi_create_type_error", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:3553ab5c72f9", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_range_error`", + "signature": "`napi_create_range_error`", + "label": "napi_create_range_error", + "apiSymbol": "napi_create_range_error", + "depth": 3, + "scope": "api", + "anchor": "napi_create_range_error", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:ec8c708e4c47", + "chapter": "n-api", + "kind": "module", + "name": "`node_api_create_syntax_error`", + "signature": "`node_api_create_syntax_error`", + "label": "node_api_create_syntax_error", + "apiSymbol": "node_api_create_syntax_error", + "depth": 3, + "scope": "api", + "anchor": "node_api_create_syntax_error", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:1d774860c927", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_and_clear_last_exception`", + "signature": "`napi_get_and_clear_last_exception`", + "label": "napi_get_and_clear_last_exception", + "apiSymbol": "napi_get_and_clear_last_exception", + "depth": 3, + "scope": "api", + "anchor": "napi_get_and_clear_last_exception", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:22be82fc5fae", + "chapter": "n-api", + "kind": "module", + "name": "`napi_is_exception_pending`", + "signature": "`napi_is_exception_pending`", + "label": "napi_is_exception_pending", + "apiSymbol": "napi_is_exception_pending", + "depth": 3, + "scope": "api", + "anchor": "napi_is_exception_pending", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:fda2b9471e2a", + "chapter": "n-api", + "kind": "module", + "name": "`napi_fatal_exception`", + "signature": "`napi_fatal_exception`", + "label": "napi_fatal_exception", + "apiSymbol": "napi_fatal_exception", + "depth": 3, + "scope": "api", + "anchor": "napi_fatal_exception", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:3eaa67da8b90", + "chapter": "n-api", + "kind": "module", + "name": "fatal_errors", + "signature": "Fatal errors", + "label": "Fatal errors", + "apiSymbol": "fatal_errors", + "depth": 2, + "scope": "documentation", + "anchor": "fatal-errors", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:4d79e9043d26", + "chapter": "n-api", + "kind": "module", + "name": "`napi_fatal_error`", + "signature": "`napi_fatal_error`", + "label": "napi_fatal_error", + "apiSymbol": "napi_fatal_error", + "depth": 3, + "scope": "api", + "anchor": "napi_fatal_error", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:8df9a339432f", + "chapter": "n-api", + "kind": "misc", + "name": "object_lifetime_management", + "signature": "Object lifetime management", + "label": "Object lifetime management", + "apiSymbol": "object_lifetime_management", + "depth": 1, + "scope": "documentation", + "anchor": "object-lifetime-management", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:8cad169f7f6d", + "chapter": "n-api", + "kind": "module", + "name": "making_handle_lifespan_shorter_than_that_of_the_native_method", + "signature": "Making handle lifespan shorter than that of the native method", + "label": "Making handle lifespan shorter than that of the native method", + "apiSymbol": "making_handle_lifespan_shorter_than_that_of_the_native_method", + "depth": 2, + "scope": "documentation", + "anchor": "making-handle-lifespan-shorter-than-that-of-the-native-method", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:f146a7fa5426", + "chapter": "n-api", + "kind": "module", + "name": "`napi_open_handle_scope`", + "signature": "`napi_open_handle_scope`", + "label": "napi_open_handle_scope", + "apiSymbol": "napi_open_handle_scope", + "depth": 3, + "scope": "api", + "anchor": "napi_open_handle_scope", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:01b82f2ca495", + "chapter": "n-api", + "kind": "module", + "name": "`napi_close_handle_scope`", + "signature": "`napi_close_handle_scope`", + "label": "napi_close_handle_scope", + "apiSymbol": "napi_close_handle_scope", + "depth": 3, + "scope": "api", + "anchor": "napi_close_handle_scope", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:5280927e6869", + "chapter": "n-api", + "kind": "module", + "name": "`napi_open_escapable_handle_scope`", + "signature": "`napi_open_escapable_handle_scope`", + "label": "napi_open_escapable_handle_scope", + "apiSymbol": "napi_open_escapable_handle_scope", + "depth": 3, + "scope": "api", + "anchor": "napi_open_escapable_handle_scope", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:610f8687e828", + "chapter": "n-api", + "kind": "module", + "name": "`napi_close_escapable_handle_scope`", + "signature": "`napi_close_escapable_handle_scope`", + "label": "napi_close_escapable_handle_scope", + "apiSymbol": "napi_close_escapable_handle_scope", + "depth": 3, + "scope": "api", + "anchor": "napi_close_escapable_handle_scope", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:20fffb161e05", + "chapter": "n-api", + "kind": "module", + "name": "`napi_escape_handle`", + "signature": "`napi_escape_handle`", + "label": "napi_escape_handle", + "apiSymbol": "napi_escape_handle", + "depth": 3, + "scope": "api", + "anchor": "napi_escape_handle", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:0cf4d37f8b52", + "chapter": "n-api", + "kind": "module", + "name": "references_to_values_with_a_lifespan_longer_than_that_of_the_native_method", + "signature": "References to values with a lifespan longer than that of the native method", + "label": "References to values with a lifespan longer than that of the native method", + "apiSymbol": "references_to_values_with_a_lifespan_longer_than_that_of_the_native_method", + "depth": 2, + "scope": "documentation", + "anchor": "references-to-values-with-a-lifespan-longer-than-that-of-the-native-method", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:6770bd6f0a25", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_reference`", + "signature": "`napi_create_reference`", + "label": "napi_create_reference", + "apiSymbol": "napi_create_reference", + "depth": 3, + "scope": "api", + "anchor": "napi_create_reference", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:73e55f5d44c8", + "chapter": "n-api", + "kind": "module", + "name": "`napi_delete_reference`", + "signature": "`napi_delete_reference`", + "label": "napi_delete_reference", + "apiSymbol": "napi_delete_reference", + "depth": 3, + "scope": "api", + "anchor": "napi_delete_reference", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:9514be1aa1a7", + "chapter": "n-api", + "kind": "module", + "name": "`napi_reference_ref`", + "signature": "`napi_reference_ref`", + "label": "napi_reference_ref", + "apiSymbol": "napi_reference_ref", + "depth": 3, + "scope": "api", + "anchor": "napi_reference_ref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:5d7853eda192", + "chapter": "n-api", + "kind": "module", + "name": "`napi_reference_unref`", + "signature": "`napi_reference_unref`", + "label": "napi_reference_unref", + "apiSymbol": "napi_reference_unref", + "depth": 3, + "scope": "api", + "anchor": "napi_reference_unref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:1106c115d997", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_reference_value`", + "signature": "`napi_get_reference_value`", + "label": "napi_get_reference_value", + "apiSymbol": "napi_get_reference_value", + "depth": 3, + "scope": "api", + "anchor": "napi_get_reference_value", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:45028d42cbb1", + "chapter": "n-api", + "kind": "module", + "name": "cleanup_on_exit_of_the_current_node.js_environment", + "signature": "Cleanup on exit of the current Node.js environment", + "label": "Cleanup on exit of the current Node.js environment", + "apiSymbol": "cleanup_on_exit_of_the_current_node.js_environment", + "depth": 2, + "scope": "documentation", + "anchor": "cleanup-on-exit-of-the-current-nodejs-environment", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:86c7c0f3d58e", + "chapter": "n-api", + "kind": "module", + "name": "`napi_add_env_cleanup_hook`", + "signature": "`napi_add_env_cleanup_hook`", + "label": "napi_add_env_cleanup_hook", + "apiSymbol": "napi_add_env_cleanup_hook", + "depth": 3, + "scope": "api", + "anchor": "napi_add_env_cleanup_hook", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:b651229e7cb7", + "chapter": "n-api", + "kind": "module", + "name": "`napi_remove_env_cleanup_hook`", + "signature": "`napi_remove_env_cleanup_hook`", + "label": "napi_remove_env_cleanup_hook", + "apiSymbol": "napi_remove_env_cleanup_hook", + "depth": 3, + "scope": "api", + "anchor": "napi_remove_env_cleanup_hook", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:78b51fd43af6", + "chapter": "n-api", + "kind": "module", + "name": "`napi_add_async_cleanup_hook`", + "signature": "`napi_add_async_cleanup_hook`", + "label": "napi_add_async_cleanup_hook", + "apiSymbol": "napi_add_async_cleanup_hook", + "depth": 3, + "scope": "api", + "anchor": "napi_add_async_cleanup_hook", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:4060445f8b6d", + "chapter": "n-api", + "kind": "module", + "name": "`napi_remove_async_cleanup_hook`", + "signature": "`napi_remove_async_cleanup_hook`", + "label": "napi_remove_async_cleanup_hook", + "apiSymbol": "napi_remove_async_cleanup_hook", + "depth": 3, + "scope": "api", + "anchor": "napi_remove_async_cleanup_hook", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:7c281137db47", + "chapter": "n-api", + "kind": "module", + "name": "finalization_on_the_exit_of_the_node.js_environment", + "signature": "Finalization on the exit of the Node.js environment", + "label": "Finalization on the exit of the Node.js environment", + "apiSymbol": "finalization_on_the_exit_of_the_node.js_environment", + "depth": 2, + "scope": "documentation", + "anchor": "finalization-on-the-exit-of-the-nodejs-environment", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:d5b9dbeeb56d", + "chapter": "n-api", + "kind": "misc", + "name": "module_registration", + "signature": "Module registration", + "label": "Module registration", + "apiSymbol": "module_registration", + "depth": 1, + "scope": "documentation", + "anchor": "module-registration", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:757561107af9", + "chapter": "n-api", + "kind": "misc", + "name": "working_with_javascript_values", + "signature": "Working with JavaScript values", + "label": "Working with JavaScript values", + "apiSymbol": "working_with_javascript_values", + "depth": 1, + "scope": "documentation", + "anchor": "working-with-javascript-values", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:a0c3946cbe73", + "chapter": "n-api", + "kind": "module", + "name": "enum_types", + "signature": "Enum types", + "label": "Enum types", + "apiSymbol": "enum_types", + "depth": 2, + "scope": "documentation", + "anchor": "enum-types", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:ca911a42e8fe", + "chapter": "n-api", + "kind": "module", + "name": "`napi_key_collection_mode`", + "signature": "`napi_key_collection_mode`", + "label": "napi_key_collection_mode", + "apiSymbol": "napi_key_collection_mode", + "depth": 3, + "scope": "api", + "anchor": "napi_key_collection_mode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:0c44f0967fe5", + "chapter": "n-api", + "kind": "module", + "name": "`napi_key_filter`", + "signature": "`napi_key_filter`", + "label": "napi_key_filter", + "apiSymbol": "napi_key_filter", + "depth": 3, + "scope": "api", + "anchor": "napi_key_filter", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:7de8e211ee7e", + "chapter": "n-api", + "kind": "module", + "name": "`napi_key_conversion`", + "signature": "`napi_key_conversion`", + "label": "napi_key_conversion", + "apiSymbol": "napi_key_conversion", + "depth": 3, + "scope": "api", + "anchor": "napi_key_conversion", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:1d8104fc892e", + "chapter": "n-api", + "kind": "module", + "name": "`napi_valuetype`", + "signature": "`napi_valuetype`", + "label": "napi_valuetype", + "apiSymbol": "napi_valuetype", + "depth": 3, + "scope": "api", + "anchor": "napi_valuetype", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:30ef3fa52362", + "chapter": "n-api", + "kind": "module", + "name": "`napi_typedarray_type`", + "signature": "`napi_typedarray_type`", + "label": "napi_typedarray_type", + "apiSymbol": "napi_typedarray_type", + "depth": 3, + "scope": "api", + "anchor": "napi_typedarray_type", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:2936d719ca58", + "chapter": "n-api", + "kind": "module", + "name": "object_creation_functions", + "signature": "Object creation functions", + "label": "Object creation functions", + "apiSymbol": "object_creation_functions", + "depth": 2, + "scope": "documentation", + "anchor": "object-creation-functions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:62e31902c6e2", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_array`", + "signature": "`napi_create_array`", + "label": "napi_create_array", + "apiSymbol": "napi_create_array", + "depth": 3, + "scope": "api", + "anchor": "napi_create_array", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:20dedb41a7e9", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_array_with_length`", + "signature": "`napi_create_array_with_length`", + "label": "napi_create_array_with_length", + "apiSymbol": "napi_create_array_with_length", + "depth": 3, + "scope": "api", + "anchor": "napi_create_array_with_length", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:a336ad743fe2", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_arraybuffer`", + "signature": "`napi_create_arraybuffer`", + "label": "napi_create_arraybuffer", + "apiSymbol": "napi_create_arraybuffer", + "depth": 3, + "scope": "api", + "anchor": "napi_create_arraybuffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:f9a35d0d0bf1", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_buffer`", + "signature": "`napi_create_buffer`", + "label": "napi_create_buffer", + "apiSymbol": "napi_create_buffer", + "depth": 3, + "scope": "api", + "anchor": "napi_create_buffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:b47f9501cd03", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_buffer_copy`", + "signature": "`napi_create_buffer_copy`", + "label": "napi_create_buffer_copy", + "apiSymbol": "napi_create_buffer_copy", + "depth": 3, + "scope": "api", + "anchor": "napi_create_buffer_copy", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:1ed164873e22", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_date`", + "signature": "`napi_create_date`", + "label": "napi_create_date", + "apiSymbol": "napi_create_date", + "depth": 3, + "scope": "api", + "anchor": "napi_create_date", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:c0392b133667", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_external`", + "signature": "`napi_create_external`", + "label": "napi_create_external", + "apiSymbol": "napi_create_external", + "depth": 3, + "scope": "api", + "anchor": "napi_create_external", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:06963a764557", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_external_arraybuffer`", + "signature": "`napi_create_external_arraybuffer`", + "label": "napi_create_external_arraybuffer", + "apiSymbol": "napi_create_external_arraybuffer", + "depth": 3, + "scope": "api", + "anchor": "napi_create_external_arraybuffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:5d9ef3c614d9", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_external_buffer`", + "signature": "`napi_create_external_buffer`", + "label": "napi_create_external_buffer", + "apiSymbol": "napi_create_external_buffer", + "depth": 3, + "scope": "api", + "anchor": "napi_create_external_buffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:91ba077f140d", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_object`", + "signature": "`napi_create_object`", + "label": "napi_create_object", + "apiSymbol": "napi_create_object", + "depth": 3, + "scope": "api", + "anchor": "napi_create_object", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:b8ad27138e44", + "chapter": "n-api", + "kind": "module", + "name": "`node_api_create_object_with_properties`", + "signature": "`node_api_create_object_with_properties`", + "label": "node_api_create_object_with_properties", + "apiSymbol": "node_api_create_object_with_properties", + "depth": 3, + "scope": "api", + "anchor": "node_api_create_object_with_properties", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:6f38bff25a24", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_symbol`", + "signature": "`napi_create_symbol`", + "label": "napi_create_symbol", + "apiSymbol": "napi_create_symbol", + "depth": 3, + "scope": "api", + "anchor": "napi_create_symbol", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:3df601b58449", + "chapter": "n-api", + "kind": "module", + "name": "`node_api_symbol_for`", + "signature": "`node_api_symbol_for`", + "label": "node_api_symbol_for", + "apiSymbol": "node_api_symbol_for", + "depth": 3, + "scope": "api", + "anchor": "node_api_symbol_for", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:2a2d5e7071f3", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_typedarray`", + "signature": "`napi_create_typedarray`", + "label": "napi_create_typedarray", + "apiSymbol": "napi_create_typedarray", + "depth": 3, + "scope": "api", + "anchor": "napi_create_typedarray", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:152f71daeb28", + "chapter": "n-api", + "kind": "module", + "name": "`node_api_create_buffer_from_arraybuffer`", + "signature": "`node_api_create_buffer_from_arraybuffer`", + "label": "node_api_create_buffer_from_arraybuffer", + "apiSymbol": "node_api_create_buffer_from_arraybuffer", + "depth": 3, + "scope": "api", + "anchor": "node_api_create_buffer_from_arraybuffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:8a501b06a110", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_dataview`", + "signature": "`napi_create_dataview`", + "label": "napi_create_dataview", + "apiSymbol": "napi_create_dataview", + "depth": 3, + "scope": "api", + "anchor": "napi_create_dataview", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:cdb38f03b0b6", + "chapter": "n-api", + "kind": "module", + "name": "functions_to_convert_from_c_types_to_node-api", + "signature": "Functions to convert from C types to Node-API", + "label": "Functions to convert from C types to Node-API", + "apiSymbol": "functions_to_convert_from_c_types_to_node-api", + "depth": 2, + "scope": "documentation", + "anchor": "functions-to-convert-from-c-types-to-node-api", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:980d965eecef", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_int32`", + "signature": "`napi_create_int32`", + "label": "napi_create_int32", + "apiSymbol": "napi_create_int32", + "depth": 3, + "scope": "api", + "anchor": "napi_create_int32", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:a2f65d139a91", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_uint32`", + "signature": "`napi_create_uint32`", + "label": "napi_create_uint32", + "apiSymbol": "napi_create_uint32", + "depth": 3, + "scope": "api", + "anchor": "napi_create_uint32", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:d00f489f4fa5", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_int64`", + "signature": "`napi_create_int64`", + "label": "napi_create_int64", + "apiSymbol": "napi_create_int64", + "depth": 3, + "scope": "api", + "anchor": "napi_create_int64", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:b1fdb149ad44", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_double`", + "signature": "`napi_create_double`", + "label": "napi_create_double", + "apiSymbol": "napi_create_double", + "depth": 3, + "scope": "api", + "anchor": "napi_create_double", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:7d742a039177", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_bigint_int64`", + "signature": "`napi_create_bigint_int64`", + "label": "napi_create_bigint_int64", + "apiSymbol": "napi_create_bigint_int64", + "depth": 3, + "scope": "api", + "anchor": "napi_create_bigint_int64", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:b7b5a9f33aac", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_bigint_uint64`", + "signature": "`napi_create_bigint_uint64`", + "label": "napi_create_bigint_uint64", + "apiSymbol": "napi_create_bigint_uint64", + "depth": 3, + "scope": "api", + "anchor": "napi_create_bigint_uint64", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:ef823608cb4c", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_bigint_words`", + "signature": "`napi_create_bigint_words`", + "label": "napi_create_bigint_words", + "apiSymbol": "napi_create_bigint_words", + "depth": 3, + "scope": "api", + "anchor": "napi_create_bigint_words", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:c90330e15138", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_string_latin1`", + "signature": "`napi_create_string_latin1`", + "label": "napi_create_string_latin1", + "apiSymbol": "napi_create_string_latin1", + "depth": 3, + "scope": "api", + "anchor": "napi_create_string_latin1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:3839b564b866", + "chapter": "n-api", + "kind": "module", + "name": "`node_api_create_external_string_latin1`", + "signature": "`node_api_create_external_string_latin1`", + "label": "node_api_create_external_string_latin1", + "apiSymbol": "node_api_create_external_string_latin1", + "depth": 3, + "scope": "api", + "anchor": "node_api_create_external_string_latin1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:7921daec6f75", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_string_utf16`", + "signature": "`napi_create_string_utf16`", + "label": "napi_create_string_utf16", + "apiSymbol": "napi_create_string_utf16", + "depth": 3, + "scope": "api", + "anchor": "napi_create_string_utf16", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:15e8e7830462", + "chapter": "n-api", + "kind": "module", + "name": "`node_api_create_external_string_utf16`", + "signature": "`node_api_create_external_string_utf16`", + "label": "node_api_create_external_string_utf16", + "apiSymbol": "node_api_create_external_string_utf16", + "depth": 3, + "scope": "api", + "anchor": "node_api_create_external_string_utf16", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:285a4864f65a", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_string_utf8`", + "signature": "`napi_create_string_utf8`", + "label": "napi_create_string_utf8", + "apiSymbol": "napi_create_string_utf8", + "depth": 3, + "scope": "api", + "anchor": "napi_create_string_utf8", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:7938a0943df1", + "chapter": "n-api", + "kind": "module", + "name": "functions_to_create_optimized_property_keys", + "signature": "Functions to create optimized property keys", + "label": "Functions to create optimized property keys", + "apiSymbol": "functions_to_create_optimized_property_keys", + "depth": 2, + "scope": "documentation", + "anchor": "functions-to-create-optimized-property-keys", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:cd969bdce97c", + "chapter": "n-api", + "kind": "module", + "name": "`node_api_create_property_key_latin1`", + "signature": "`node_api_create_property_key_latin1`", + "label": "node_api_create_property_key_latin1", + "apiSymbol": "node_api_create_property_key_latin1", + "depth": 3, + "scope": "api", + "anchor": "node_api_create_property_key_latin1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:70125f5b6ff9", + "chapter": "n-api", + "kind": "module", + "name": "`node_api_create_property_key_utf16`", + "signature": "`node_api_create_property_key_utf16`", + "label": "node_api_create_property_key_utf16", + "apiSymbol": "node_api_create_property_key_utf16", + "depth": 3, + "scope": "api", + "anchor": "node_api_create_property_key_utf16", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:2b4392cd909f", + "chapter": "n-api", + "kind": "module", + "name": "`node_api_create_property_key_utf8`", + "signature": "`node_api_create_property_key_utf8`", + "label": "node_api_create_property_key_utf8", + "apiSymbol": "node_api_create_property_key_utf8", + "depth": 3, + "scope": "api", + "anchor": "node_api_create_property_key_utf8", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:17a746969390", + "chapter": "n-api", + "kind": "module", + "name": "functions_to_convert_from_node-api_to_c_types", + "signature": "Functions to convert from Node-API to C types", + "label": "Functions to convert from Node-API to C types", + "apiSymbol": "functions_to_convert_from_node-api_to_c_types", + "depth": 2, + "scope": "documentation", + "anchor": "functions-to-convert-from-node-api-to-c-types", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:2adec83440a2", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_array_length`", + "signature": "`napi_get_array_length`", + "label": "napi_get_array_length", + "apiSymbol": "napi_get_array_length", + "depth": 3, + "scope": "api", + "anchor": "napi_get_array_length", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:61c913199d91", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_arraybuffer_info`", + "signature": "`napi_get_arraybuffer_info`", + "label": "napi_get_arraybuffer_info", + "apiSymbol": "napi_get_arraybuffer_info", + "depth": 3, + "scope": "api", + "anchor": "napi_get_arraybuffer_info", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:2584efb384e7", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_buffer_info`", + "signature": "`napi_get_buffer_info`", + "label": "napi_get_buffer_info", + "apiSymbol": "napi_get_buffer_info", + "depth": 3, + "scope": "api", + "anchor": "napi_get_buffer_info", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:2398349550d0", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_prototype`", + "signature": "`napi_get_prototype`", + "label": "napi_get_prototype", + "apiSymbol": "napi_get_prototype", + "depth": 3, + "scope": "api", + "anchor": "napi_get_prototype", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:c07e1e81b53e", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_typedarray_info`", + "signature": "`napi_get_typedarray_info`", + "label": "napi_get_typedarray_info", + "apiSymbol": "napi_get_typedarray_info", + "depth": 3, + "scope": "api", + "anchor": "napi_get_typedarray_info", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:11fcd005308c", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_dataview_info`", + "signature": "`napi_get_dataview_info`", + "label": "napi_get_dataview_info", + "apiSymbol": "napi_get_dataview_info", + "depth": 3, + "scope": "api", + "anchor": "napi_get_dataview_info", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:fad68a09a93c", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_date_value`", + "signature": "`napi_get_date_value`", + "label": "napi_get_date_value", + "apiSymbol": "napi_get_date_value", + "depth": 3, + "scope": "api", + "anchor": "napi_get_date_value", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:65129e138659", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_value_bool`", + "signature": "`napi_get_value_bool`", + "label": "napi_get_value_bool", + "apiSymbol": "napi_get_value_bool", + "depth": 3, + "scope": "api", + "anchor": "napi_get_value_bool", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:749351a3d40d", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_value_double`", + "signature": "`napi_get_value_double`", + "label": "napi_get_value_double", + "apiSymbol": "napi_get_value_double", + "depth": 3, + "scope": "api", + "anchor": "napi_get_value_double", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:85c1b84be620", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_value_bigint_int64`", + "signature": "`napi_get_value_bigint_int64`", + "label": "napi_get_value_bigint_int64", + "apiSymbol": "napi_get_value_bigint_int64", + "depth": 3, + "scope": "api", + "anchor": "napi_get_value_bigint_int64", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:7ba4d8eb9dcb", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_value_bigint_uint64`", + "signature": "`napi_get_value_bigint_uint64`", + "label": "napi_get_value_bigint_uint64", + "apiSymbol": "napi_get_value_bigint_uint64", + "depth": 3, + "scope": "api", + "anchor": "napi_get_value_bigint_uint64", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:126338e0124d", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_value_bigint_words`", + "signature": "`napi_get_value_bigint_words`", + "label": "napi_get_value_bigint_words", + "apiSymbol": "napi_get_value_bigint_words", + "depth": 3, + "scope": "api", + "anchor": "napi_get_value_bigint_words", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:9e0e38fa3973", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_value_external`", + "signature": "`napi_get_value_external`", + "label": "napi_get_value_external", + "apiSymbol": "napi_get_value_external", + "depth": 3, + "scope": "api", + "anchor": "napi_get_value_external", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:66b94fc60093", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_value_int32`", + "signature": "`napi_get_value_int32`", + "label": "napi_get_value_int32", + "apiSymbol": "napi_get_value_int32", + "depth": 3, + "scope": "api", + "anchor": "napi_get_value_int32", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:20d58c9a6ad8", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_value_int64`", + "signature": "`napi_get_value_int64`", + "label": "napi_get_value_int64", + "apiSymbol": "napi_get_value_int64", + "depth": 3, + "scope": "api", + "anchor": "napi_get_value_int64", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:c5c1a409e4e1", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_value_string_latin1`", + "signature": "`napi_get_value_string_latin1`", + "label": "napi_get_value_string_latin1", + "apiSymbol": "napi_get_value_string_latin1", + "depth": 3, + "scope": "api", + "anchor": "napi_get_value_string_latin1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:d74520842100", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_value_string_utf8`", + "signature": "`napi_get_value_string_utf8`", + "label": "napi_get_value_string_utf8", + "apiSymbol": "napi_get_value_string_utf8", + "depth": 3, + "scope": "api", + "anchor": "napi_get_value_string_utf8", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:7fe851d7357d", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_value_string_utf16`", + "signature": "`napi_get_value_string_utf16`", + "label": "napi_get_value_string_utf16", + "apiSymbol": "napi_get_value_string_utf16", + "depth": 3, + "scope": "api", + "anchor": "napi_get_value_string_utf16", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:28089e5e4754", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_value_uint32`", + "signature": "`napi_get_value_uint32`", + "label": "napi_get_value_uint32", + "apiSymbol": "napi_get_value_uint32", + "depth": 3, + "scope": "api", + "anchor": "napi_get_value_uint32", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:bcb49bfd6d39", + "chapter": "n-api", + "kind": "module", + "name": "functions_to_get_global_instances", + "signature": "Functions to get global instances", + "label": "Functions to get global instances", + "apiSymbol": "functions_to_get_global_instances", + "depth": 2, + "scope": "documentation", + "anchor": "functions-to-get-global-instances", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:a48dc84eaa90", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_boolean`", + "signature": "`napi_get_boolean`", + "label": "napi_get_boolean", + "apiSymbol": "napi_get_boolean", + "depth": 3, + "scope": "api", + "anchor": "napi_get_boolean", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:935d68788400", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_global`", + "signature": "`napi_get_global`", + "label": "napi_get_global", + "apiSymbol": "napi_get_global", + "depth": 3, + "scope": "api", + "anchor": "napi_get_global", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:cb4598d3cdb9", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_null`", + "signature": "`napi_get_null`", + "label": "napi_get_null", + "apiSymbol": "napi_get_null", + "depth": 3, + "scope": "api", + "anchor": "napi_get_null", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:35af55061103", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_undefined`", + "signature": "`napi_get_undefined`", + "label": "napi_get_undefined", + "apiSymbol": "napi_get_undefined", + "depth": 3, + "scope": "api", + "anchor": "napi_get_undefined", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:f882e3531113", + "chapter": "n-api", + "kind": "misc", + "name": "working_with_javascript_values_and_abstract_operations", + "signature": "Working with JavaScript values and abstract operations", + "label": "Working with JavaScript values and abstract operations", + "apiSymbol": "working_with_javascript_values_and_abstract_operations", + "depth": 1, + "scope": "documentation", + "anchor": "working-with-javascript-values-and-abstract-operations", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:583bdde74129", + "chapter": "n-api", + "kind": "module", + "name": "`napi_coerce_to_bool`", + "signature": "`napi_coerce_to_bool`", + "label": "napi_coerce_to_bool", + "apiSymbol": "napi_coerce_to_bool", + "depth": 2, + "scope": "api", + "anchor": "napi_coerce_to_bool", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:d359568af2fe", + "chapter": "n-api", + "kind": "module", + "name": "`napi_coerce_to_number`", + "signature": "`napi_coerce_to_number`", + "label": "napi_coerce_to_number", + "apiSymbol": "napi_coerce_to_number", + "depth": 2, + "scope": "api", + "anchor": "napi_coerce_to_number", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:d8c37f50f2dc", + "chapter": "n-api", + "kind": "module", + "name": "`napi_coerce_to_object`", + "signature": "`napi_coerce_to_object`", + "label": "napi_coerce_to_object", + "apiSymbol": "napi_coerce_to_object", + "depth": 2, + "scope": "api", + "anchor": "napi_coerce_to_object", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:04486600973f", + "chapter": "n-api", + "kind": "module", + "name": "`napi_coerce_to_string`", + "signature": "`napi_coerce_to_string`", + "label": "napi_coerce_to_string", + "apiSymbol": "napi_coerce_to_string", + "depth": 2, + "scope": "api", + "anchor": "napi_coerce_to_string", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:3c892e284788", + "chapter": "n-api", + "kind": "module", + "name": "`napi_typeof`", + "signature": "`napi_typeof`", + "label": "napi_typeof", + "apiSymbol": "napi_typeof", + "depth": 2, + "scope": "api", + "anchor": "napi_typeof", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:01e3e0dd20d9", + "chapter": "n-api", + "kind": "module", + "name": "`napi_instanceof`", + "signature": "`napi_instanceof`", + "label": "napi_instanceof", + "apiSymbol": "napi_instanceof", + "depth": 2, + "scope": "api", + "anchor": "napi_instanceof", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:c33cf9ea1083", + "chapter": "n-api", + "kind": "module", + "name": "`napi_is_array`", + "signature": "`napi_is_array`", + "label": "napi_is_array", + "apiSymbol": "napi_is_array", + "depth": 2, + "scope": "api", + "anchor": "napi_is_array", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:9b91ee57e02f", + "chapter": "n-api", + "kind": "module", + "name": "`napi_is_arraybuffer`", + "signature": "`napi_is_arraybuffer`", + "label": "napi_is_arraybuffer", + "apiSymbol": "napi_is_arraybuffer", + "depth": 2, + "scope": "api", + "anchor": "napi_is_arraybuffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:eb431121be87", + "chapter": "n-api", + "kind": "module", + "name": "`napi_is_buffer`", + "signature": "`napi_is_buffer`", + "label": "napi_is_buffer", + "apiSymbol": "napi_is_buffer", + "depth": 2, + "scope": "api", + "anchor": "napi_is_buffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:6ff4660c5a8e", + "chapter": "n-api", + "kind": "module", + "name": "`napi_is_date`", + "signature": "`napi_is_date`", + "label": "napi_is_date", + "apiSymbol": "napi_is_date", + "depth": 2, + "scope": "api", + "anchor": "napi_is_date", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:505acd7a959b", + "chapter": "n-api", + "kind": "module", + "name": "`napi_is_error`", + "signature": "`napi_is_error`", + "label": "napi_is_error", + "apiSymbol": "napi_is_error", + "depth": 2, + "scope": "api", + "anchor": "napi_is_error_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:de783260ac6b", + "chapter": "n-api", + "kind": "module", + "name": "`napi_is_typedarray`", + "signature": "`napi_is_typedarray`", + "label": "napi_is_typedarray", + "apiSymbol": "napi_is_typedarray", + "depth": 2, + "scope": "api", + "anchor": "napi_is_typedarray", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:39c78abd9daf", + "chapter": "n-api", + "kind": "module", + "name": "`napi_is_dataview`", + "signature": "`napi_is_dataview`", + "label": "napi_is_dataview", + "apiSymbol": "napi_is_dataview", + "depth": 2, + "scope": "api", + "anchor": "napi_is_dataview", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:96531a60a025", + "chapter": "n-api", + "kind": "module", + "name": "`napi_strict_equals`", + "signature": "`napi_strict_equals`", + "label": "napi_strict_equals", + "apiSymbol": "napi_strict_equals", + "depth": 2, + "scope": "api", + "anchor": "napi_strict_equals", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:43fb6edb7d26", + "chapter": "n-api", + "kind": "module", + "name": "`napi_detach_arraybuffer`", + "signature": "`napi_detach_arraybuffer`", + "label": "napi_detach_arraybuffer", + "apiSymbol": "napi_detach_arraybuffer", + "depth": 2, + "scope": "api", + "anchor": "napi_detach_arraybuffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:0b3343847d5d", + "chapter": "n-api", + "kind": "module", + "name": "`napi_is_detached_arraybuffer`", + "signature": "`napi_is_detached_arraybuffer`", + "label": "napi_is_detached_arraybuffer", + "apiSymbol": "napi_is_detached_arraybuffer", + "depth": 2, + "scope": "api", + "anchor": "napi_is_detached_arraybuffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:45a60a40e992", + "chapter": "n-api", + "kind": "module", + "name": "`node_api_is_sharedarraybuffer`", + "signature": "`node_api_is_sharedarraybuffer`", + "label": "node_api_is_sharedarraybuffer", + "apiSymbol": "node_api_is_sharedarraybuffer", + "depth": 2, + "scope": "api", + "anchor": "node_api_is_sharedarraybuffer", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:1783bd417ea8", + "chapter": "n-api", + "kind": "module", + "name": "`node_api_create_sharedarraybuffer`", + "signature": "`node_api_create_sharedarraybuffer`", + "label": "node_api_create_sharedarraybuffer", + "apiSymbol": "node_api_create_sharedarraybuffer", + "depth": 2, + "scope": "api", + "anchor": "node_api_create_sharedarraybuffer", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:5dd3aafc8f19", + "chapter": "n-api", + "kind": "misc", + "name": "working_with_javascript_properties", + "signature": "Working with JavaScript properties", + "label": "Working with JavaScript properties", + "apiSymbol": "working_with_javascript_properties", + "depth": 1, + "scope": "documentation", + "anchor": "working-with-javascript-properties", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:edb1459c1b7e", + "chapter": "n-api", + "kind": "module", + "name": "structures", + "signature": "Structures", + "label": "Structures", + "apiSymbol": "structures", + "depth": 2, + "scope": "documentation", + "anchor": "structures", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:76d894c85599", + "chapter": "n-api", + "kind": "module", + "name": "`napi_property_attributes`", + "signature": "`napi_property_attributes`", + "label": "napi_property_attributes", + "apiSymbol": "napi_property_attributes", + "depth": 3, + "scope": "api", + "anchor": "napi_property_attributes", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:25fb9017326d", + "chapter": "n-api", + "kind": "module", + "name": "`napi_property_descriptor`", + "signature": "`napi_property_descriptor`", + "label": "napi_property_descriptor", + "apiSymbol": "napi_property_descriptor", + "depth": 3, + "scope": "api", + "anchor": "napi_property_descriptor", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:ce4b44690675", + "chapter": "n-api", + "kind": "module", + "name": "functions", + "signature": "Functions", + "label": "Functions", + "apiSymbol": "functions", + "depth": 2, + "scope": "documentation", + "anchor": "functions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:064fdc83cbc1", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_property_names`", + "signature": "`napi_get_property_names`", + "label": "napi_get_property_names", + "apiSymbol": "napi_get_property_names", + "depth": 3, + "scope": "api", + "anchor": "napi_get_property_names", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:9871f5542bd5", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_all_property_names`", + "signature": "`napi_get_all_property_names`", + "label": "napi_get_all_property_names", + "apiSymbol": "napi_get_all_property_names", + "depth": 3, + "scope": "api", + "anchor": "napi_get_all_property_names", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:41530a30c64f", + "chapter": "n-api", + "kind": "module", + "name": "`napi_set_property`", + "signature": "`napi_set_property`", + "label": "napi_set_property", + "apiSymbol": "napi_set_property", + "depth": 3, + "scope": "api", + "anchor": "napi_set_property", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:c08528c2fb17", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_property`", + "signature": "`napi_get_property`", + "label": "napi_get_property", + "apiSymbol": "napi_get_property", + "depth": 3, + "scope": "api", + "anchor": "napi_get_property", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:4b8748661ec2", + "chapter": "n-api", + "kind": "module", + "name": "`napi_has_property`", + "signature": "`napi_has_property`", + "label": "napi_has_property", + "apiSymbol": "napi_has_property", + "depth": 3, + "scope": "api", + "anchor": "napi_has_property", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:7919b5b23eab", + "chapter": "n-api", + "kind": "module", + "name": "`napi_delete_property`", + "signature": "`napi_delete_property`", + "label": "napi_delete_property", + "apiSymbol": "napi_delete_property", + "depth": 3, + "scope": "api", + "anchor": "napi_delete_property", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:55b770561307", + "chapter": "n-api", + "kind": "module", + "name": "`napi_has_own_property`", + "signature": "`napi_has_own_property`", + "label": "napi_has_own_property", + "apiSymbol": "napi_has_own_property", + "depth": 3, + "scope": "api", + "anchor": "napi_has_own_property", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:d0145a0fdb8f", + "chapter": "n-api", + "kind": "module", + "name": "`napi_set_named_property`", + "signature": "`napi_set_named_property`", + "label": "napi_set_named_property", + "apiSymbol": "napi_set_named_property", + "depth": 3, + "scope": "api", + "anchor": "napi_set_named_property", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:bf5cdd236567", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_named_property`", + "signature": "`napi_get_named_property`", + "label": "napi_get_named_property", + "apiSymbol": "napi_get_named_property", + "depth": 3, + "scope": "api", + "anchor": "napi_get_named_property", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:10d05100b0f3", + "chapter": "n-api", + "kind": "module", + "name": "`napi_has_named_property`", + "signature": "`napi_has_named_property`", + "label": "napi_has_named_property", + "apiSymbol": "napi_has_named_property", + "depth": 3, + "scope": "api", + "anchor": "napi_has_named_property", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:f95498377d16", + "chapter": "n-api", + "kind": "module", + "name": "`napi_set_element`", + "signature": "`napi_set_element`", + "label": "napi_set_element", + "apiSymbol": "napi_set_element", + "depth": 3, + "scope": "api", + "anchor": "napi_set_element", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:463b30f92ba3", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_element`", + "signature": "`napi_get_element`", + "label": "napi_get_element", + "apiSymbol": "napi_get_element", + "depth": 3, + "scope": "api", + "anchor": "napi_get_element", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:d9ab81313b58", + "chapter": "n-api", + "kind": "module", + "name": "`napi_has_element`", + "signature": "`napi_has_element`", + "label": "napi_has_element", + "apiSymbol": "napi_has_element", + "depth": 3, + "scope": "api", + "anchor": "napi_has_element", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:90561d67436c", + "chapter": "n-api", + "kind": "module", + "name": "`napi_delete_element`", + "signature": "`napi_delete_element`", + "label": "napi_delete_element", + "apiSymbol": "napi_delete_element", + "depth": 3, + "scope": "api", + "anchor": "napi_delete_element", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:9dc15c6210f1", + "chapter": "n-api", + "kind": "module", + "name": "`napi_define_properties`", + "signature": "`napi_define_properties`", + "label": "napi_define_properties", + "apiSymbol": "napi_define_properties", + "depth": 3, + "scope": "api", + "anchor": "napi_define_properties", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:f19f1f5fd321", + "chapter": "n-api", + "kind": "module", + "name": "`napi_object_freeze`", + "signature": "`napi_object_freeze`", + "label": "napi_object_freeze", + "apiSymbol": "napi_object_freeze", + "depth": 3, + "scope": "api", + "anchor": "napi_object_freeze", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:77fc8bd0ed0b", + "chapter": "n-api", + "kind": "module", + "name": "`napi_object_seal`", + "signature": "`napi_object_seal`", + "label": "napi_object_seal", + "apiSymbol": "napi_object_seal", + "depth": 3, + "scope": "api", + "anchor": "napi_object_seal", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:73998822c747", + "chapter": "n-api", + "kind": "module", + "name": "`node_api_set_prototype`", + "signature": "`node_api_set_prototype`", + "label": "node_api_set_prototype", + "apiSymbol": "node_api_set_prototype", + "depth": 3, + "scope": "api", + "anchor": "node_api_set_prototype", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:304eaa413303", + "chapter": "n-api", + "kind": "misc", + "name": "working_with_javascript_functions", + "signature": "Working with JavaScript functions", + "label": "Working with JavaScript functions", + "apiSymbol": "working_with_javascript_functions", + "depth": 1, + "scope": "documentation", + "anchor": "working-with-javascript-functions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:918785f49e71", + "chapter": "n-api", + "kind": "module", + "name": "`napi_call_function`", + "signature": "`napi_call_function`", + "label": "napi_call_function", + "apiSymbol": "napi_call_function", + "depth": 2, + "scope": "api", + "anchor": "napi_call_function", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:582790bb93f0", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_function`", + "signature": "`napi_create_function`", + "label": "napi_create_function", + "apiSymbol": "napi_create_function", + "depth": 2, + "scope": "api", + "anchor": "napi_create_function", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:cc1397bf5963", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_cb_info`", + "signature": "`napi_get_cb_info`", + "label": "napi_get_cb_info", + "apiSymbol": "napi_get_cb_info", + "depth": 2, + "scope": "api", + "anchor": "napi_get_cb_info", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:f9b386053441", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_new_target`", + "signature": "`napi_get_new_target`", + "label": "napi_get_new_target", + "apiSymbol": "napi_get_new_target", + "depth": 2, + "scope": "api", + "anchor": "napi_get_new_target", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:9ed178c4c4ac", + "chapter": "n-api", + "kind": "module", + "name": "`napi_new_instance`", + "signature": "`napi_new_instance`", + "label": "napi_new_instance", + "apiSymbol": "napi_new_instance", + "depth": 2, + "scope": "api", + "anchor": "napi_new_instance", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:55b787da9762", + "chapter": "n-api", + "kind": "misc", + "name": "object_wrap", + "signature": "Object wrap", + "label": "Object wrap", + "apiSymbol": "object_wrap", + "depth": 1, + "scope": "documentation", + "anchor": "object-wrap", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:5c3e5f42a157", + "chapter": "n-api", + "kind": "module", + "name": "`napi_define_class`", + "signature": "`napi_define_class`", + "label": "napi_define_class", + "apiSymbol": "napi_define_class", + "depth": 2, + "scope": "api", + "anchor": "napi_define_class", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:ed3b92d3f3db", + "chapter": "n-api", + "kind": "module", + "name": "`napi_wrap`", + "signature": "`napi_wrap`", + "label": "napi_wrap", + "apiSymbol": "napi_wrap", + "depth": 2, + "scope": "api", + "anchor": "napi_wrap", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:25e7455dcee5", + "chapter": "n-api", + "kind": "module", + "name": "`napi_unwrap`", + "signature": "`napi_unwrap`", + "label": "napi_unwrap", + "apiSymbol": "napi_unwrap", + "depth": 2, + "scope": "api", + "anchor": "napi_unwrap", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:2bdbdfae5c0a", + "chapter": "n-api", + "kind": "module", + "name": "`napi_remove_wrap`", + "signature": "`napi_remove_wrap`", + "label": "napi_remove_wrap", + "apiSymbol": "napi_remove_wrap", + "depth": 2, + "scope": "api", + "anchor": "napi_remove_wrap", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:3d8e2075f2f0", + "chapter": "n-api", + "kind": "module", + "name": "`napi_type_tag_object`", + "signature": "`napi_type_tag_object`", + "label": "napi_type_tag_object", + "apiSymbol": "napi_type_tag_object", + "depth": 2, + "scope": "api", + "anchor": "napi_type_tag_object", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:50eb42c4400f", + "chapter": "n-api", + "kind": "module", + "name": "`napi_check_object_type_tag`", + "signature": "`napi_check_object_type_tag`", + "label": "napi_check_object_type_tag", + "apiSymbol": "napi_check_object_type_tag", + "depth": 2, + "scope": "api", + "anchor": "napi_check_object_type_tag", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:4ef49bd9c6f6", + "chapter": "n-api", + "kind": "module", + "name": "`napi_add_finalizer`", + "signature": "`napi_add_finalizer`", + "label": "napi_add_finalizer", + "apiSymbol": "napi_add_finalizer", + "depth": 2, + "scope": "api", + "anchor": "napi_add_finalizer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:72646a7d3e02", + "chapter": "n-api", + "kind": "module", + "name": "`node_api_post_finalizer`", + "signature": "`node_api_post_finalizer`", + "label": "node_api_post_finalizer", + "apiSymbol": "node_api_post_finalizer", + "depth": 3, + "scope": "api", + "anchor": "node_api_post_finalizer", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:fa0522ec0b60", + "chapter": "n-api", + "kind": "misc", + "name": "simple_asynchronous_operations", + "signature": "Simple asynchronous operations", + "label": "Simple asynchronous operations", + "apiSymbol": "simple_asynchronous_operations", + "depth": 1, + "scope": "documentation", + "anchor": "simple-asynchronous-operations", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:735b6a78d484", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_async_work`", + "signature": "`napi_create_async_work`", + "label": "napi_create_async_work", + "apiSymbol": "napi_create_async_work", + "depth": 2, + "scope": "api", + "anchor": "napi_create_async_work", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:c3c2ccf78210", + "chapter": "n-api", + "kind": "module", + "name": "`napi_delete_async_work`", + "signature": "`napi_delete_async_work`", + "label": "napi_delete_async_work", + "apiSymbol": "napi_delete_async_work", + "depth": 2, + "scope": "api", + "anchor": "napi_delete_async_work", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:5a987d581d98", + "chapter": "n-api", + "kind": "module", + "name": "`napi_queue_async_work`", + "signature": "`napi_queue_async_work`", + "label": "napi_queue_async_work", + "apiSymbol": "napi_queue_async_work", + "depth": 2, + "scope": "api", + "anchor": "napi_queue_async_work", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:06f4f13441f6", + "chapter": "n-api", + "kind": "module", + "name": "`napi_cancel_async_work`", + "signature": "`napi_cancel_async_work`", + "label": "napi_cancel_async_work", + "apiSymbol": "napi_cancel_async_work", + "depth": 2, + "scope": "api", + "anchor": "napi_cancel_async_work", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:e6e6d2f4c999", + "chapter": "n-api", + "kind": "misc", + "name": "custom_asynchronous_operations", + "signature": "Custom asynchronous operations", + "label": "Custom asynchronous operations", + "apiSymbol": "custom_asynchronous_operations", + "depth": 1, + "scope": "documentation", + "anchor": "custom-asynchronous-operations", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:11d18eeecfb7", + "chapter": "n-api", + "kind": "module", + "name": "`napi_async_init`", + "signature": "`napi_async_init`", + "label": "napi_async_init", + "apiSymbol": "napi_async_init", + "depth": 2, + "scope": "api", + "anchor": "napi_async_init", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:dadc87e5481f", + "chapter": "n-api", + "kind": "module", + "name": "`napi_async_destroy`", + "signature": "`napi_async_destroy`", + "label": "napi_async_destroy", + "apiSymbol": "napi_async_destroy", + "depth": 2, + "scope": "api", + "anchor": "napi_async_destroy", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:121123696858", + "chapter": "n-api", + "kind": "module", + "name": "`napi_make_callback`", + "signature": "`napi_make_callback`", + "label": "napi_make_callback", + "apiSymbol": "napi_make_callback", + "depth": 2, + "scope": "api", + "anchor": "napi_make_callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:67976a9bb397", + "chapter": "n-api", + "kind": "module", + "name": "`napi_open_callback_scope`", + "signature": "`napi_open_callback_scope`", + "label": "napi_open_callback_scope", + "apiSymbol": "napi_open_callback_scope", + "depth": 2, + "scope": "api", + "anchor": "napi_open_callback_scope", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:cc69786ba37e", + "chapter": "n-api", + "kind": "module", + "name": "`napi_close_callback_scope`", + "signature": "`napi_close_callback_scope`", + "label": "napi_close_callback_scope", + "apiSymbol": "napi_close_callback_scope", + "depth": 2, + "scope": "api", + "anchor": "napi_close_callback_scope", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:4064ff5c7dc3", + "chapter": "n-api", + "kind": "misc", + "name": "version_management", + "signature": "Version management", + "label": "Version management", + "apiSymbol": "version_management", + "depth": 1, + "scope": "documentation", + "anchor": "version-management", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:1f9855f179c9", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_node_version`", + "signature": "`napi_get_node_version`", + "label": "napi_get_node_version", + "apiSymbol": "napi_get_node_version", + "depth": 2, + "scope": "api", + "anchor": "napi_get_node_version", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:de276dc926e8", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_version`", + "signature": "`napi_get_version`", + "label": "napi_get_version", + "apiSymbol": "napi_get_version", + "depth": 2, + "scope": "api", + "anchor": "napi_get_version", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:1328c5aa410b", + "chapter": "n-api", + "kind": "misc", + "name": "memory_management", + "signature": "Memory management", + "label": "Memory management", + "apiSymbol": "memory_management", + "depth": 1, + "scope": "documentation", + "anchor": "memory-management", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:05e7879530af", + "chapter": "n-api", + "kind": "module", + "name": "`napi_adjust_external_memory`", + "signature": "`napi_adjust_external_memory`", + "label": "napi_adjust_external_memory", + "apiSymbol": "napi_adjust_external_memory", + "depth": 2, + "scope": "api", + "anchor": "napi_adjust_external_memory", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:5cc50a6757b7", + "chapter": "n-api", + "kind": "misc", + "name": "promises", + "signature": "Promises", + "label": "Promises", + "apiSymbol": "promises", + "depth": 1, + "scope": "documentation", + "anchor": "promises", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:ffb7742b9b3e", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_promise`", + "signature": "`napi_create_promise`", + "label": "napi_create_promise", + "apiSymbol": "napi_create_promise", + "depth": 2, + "scope": "api", + "anchor": "napi_create_promise", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:076cf9b01c90", + "chapter": "n-api", + "kind": "module", + "name": "`napi_resolve_deferred`", + "signature": "`napi_resolve_deferred`", + "label": "napi_resolve_deferred", + "apiSymbol": "napi_resolve_deferred", + "depth": 2, + "scope": "api", + "anchor": "napi_resolve_deferred", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:f393a5436aab", + "chapter": "n-api", + "kind": "module", + "name": "`napi_reject_deferred`", + "signature": "`napi_reject_deferred`", + "label": "napi_reject_deferred", + "apiSymbol": "napi_reject_deferred", + "depth": 2, + "scope": "api", + "anchor": "napi_reject_deferred", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:6f2a9e6a8cb6", + "chapter": "n-api", + "kind": "module", + "name": "`napi_is_promise`", + "signature": "`napi_is_promise`", + "label": "napi_is_promise", + "apiSymbol": "napi_is_promise", + "depth": 2, + "scope": "api", + "anchor": "napi_is_promise", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:71cce1a5fcf7", + "chapter": "n-api", + "kind": "misc", + "name": "script_execution", + "signature": "Script execution", + "label": "Script execution", + "apiSymbol": "script_execution", + "depth": 1, + "scope": "documentation", + "anchor": "script-execution", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:af5f1b80d29e", + "chapter": "n-api", + "kind": "module", + "name": "`napi_run_script`", + "signature": "`napi_run_script`", + "label": "napi_run_script", + "apiSymbol": "napi_run_script", + "depth": 2, + "scope": "api", + "anchor": "napi_run_script", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:1a2a8d022489", + "chapter": "n-api", + "kind": "misc", + "name": "libuv_event_loop", + "signature": "libuv event loop", + "label": "libuv event loop", + "apiSymbol": "libuv_event_loop", + "depth": 1, + "scope": "documentation", + "anchor": "libuv-event-loop", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:da56ba2313c5", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_uv_event_loop`", + "signature": "`napi_get_uv_event_loop`", + "label": "napi_get_uv_event_loop", + "apiSymbol": "napi_get_uv_event_loop", + "depth": 2, + "scope": "api", + "anchor": "napi_get_uv_event_loop", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:a881eefdc18b", + "chapter": "n-api", + "kind": "misc", + "name": "asynchronous_thread-safe_function_calls", + "signature": "Asynchronous thread-safe function calls", + "label": "Asynchronous thread-safe function calls", + "apiSymbol": "asynchronous_thread-safe_function_calls", + "depth": 1, + "scope": "documentation", + "anchor": "asynchronous-thread-safe-function-calls", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:eb8ce5faf42d", + "chapter": "n-api", + "kind": "module", + "name": "calling_a_thread-safe_function", + "signature": "Calling a thread-safe function", + "label": "Calling a thread-safe function", + "apiSymbol": "calling_a_thread-safe_function", + "depth": 2, + "scope": "documentation", + "anchor": "calling-a-thread-safe-function", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:455b2c3bbaf1", + "chapter": "n-api", + "kind": "module", + "name": "reference_counting_of_thread-safe_functions", + "signature": "Reference counting of thread-safe functions", + "label": "Reference counting of thread-safe functions", + "apiSymbol": "reference_counting_of_thread-safe_functions", + "depth": 2, + "scope": "documentation", + "anchor": "reference-counting-of-thread-safe-functions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:f9633b853c29", + "chapter": "n-api", + "kind": "module", + "name": "deciding_whether_to_keep_the_process_running", + "signature": "Deciding whether to keep the process running", + "label": "Deciding whether to keep the process running", + "apiSymbol": "deciding_whether_to_keep_the_process_running", + "depth": 2, + "scope": "documentation", + "anchor": "deciding-whether-to-keep-the-process-running", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:35e30597b1ea", + "chapter": "n-api", + "kind": "module", + "name": "`napi_create_threadsafe_function`", + "signature": "`napi_create_threadsafe_function`", + "label": "napi_create_threadsafe_function", + "apiSymbol": "napi_create_threadsafe_function", + "depth": 2, + "scope": "api", + "anchor": "napi_create_threadsafe_function", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:f8620f2f71e9", + "chapter": "n-api", + "kind": "module", + "name": "`napi_get_threadsafe_function_context`", + "signature": "`napi_get_threadsafe_function_context`", + "label": "napi_get_threadsafe_function_context", + "apiSymbol": "napi_get_threadsafe_function_context", + "depth": 2, + "scope": "api", + "anchor": "napi_get_threadsafe_function_context", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:4cf1ffd71f5f", + "chapter": "n-api", + "kind": "module", + "name": "`napi_call_threadsafe_function`", + "signature": "`napi_call_threadsafe_function`", + "label": "napi_call_threadsafe_function", + "apiSymbol": "napi_call_threadsafe_function", + "depth": 2, + "scope": "api", + "anchor": "napi_call_threadsafe_function", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:a448e73d7109", + "chapter": "n-api", + "kind": "module", + "name": "`napi_acquire_threadsafe_function`", + "signature": "`napi_acquire_threadsafe_function`", + "label": "napi_acquire_threadsafe_function", + "apiSymbol": "napi_acquire_threadsafe_function", + "depth": 2, + "scope": "api", + "anchor": "napi_acquire_threadsafe_function", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:bd12bcd13c80", + "chapter": "n-api", + "kind": "module", + "name": "`napi_release_threadsafe_function`", + "signature": "`napi_release_threadsafe_function`", + "label": "napi_release_threadsafe_function", + "apiSymbol": "napi_release_threadsafe_function", + "depth": 2, + "scope": "api", + "anchor": "napi_release_threadsafe_function", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:46e86c97cfd5", + "chapter": "n-api", + "kind": "module", + "name": "`napi_ref_threadsafe_function`", + "signature": "`napi_ref_threadsafe_function`", + "label": "napi_ref_threadsafe_function", + "apiSymbol": "napi_ref_threadsafe_function", + "depth": 2, + "scope": "api", + "anchor": "napi_ref_threadsafe_function", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:345ef7816526", + "chapter": "n-api", + "kind": "module", + "name": "`napi_unref_threadsafe_function`", + "signature": "`napi_unref_threadsafe_function`", + "label": "napi_unref_threadsafe_function", + "apiSymbol": "napi_unref_threadsafe_function", + "depth": 2, + "scope": "api", + "anchor": "napi_unref_threadsafe_function", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:ac45519eb301", + "chapter": "n-api", + "kind": "misc", + "name": "miscellaneous_utilities", + "signature": "Miscellaneous utilities", + "label": "Miscellaneous utilities", + "apiSymbol": "miscellaneous_utilities", + "depth": 1, + "scope": "documentation", + "anchor": "miscellaneous-utilities", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "n-api:ed41a4d5549a", + "chapter": "n-api", + "kind": "module", + "name": "`node_api_get_module_file_name`", + "signature": "`node_api_get_module_file_name`", + "label": "node_api_get_module_file_name", + "apiSymbol": "node_api_get_module_file_name", + "depth": 2, + "scope": "api", + "anchor": "node_api_get_module_file_name", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:n-api" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:n-api" + }, + "anchorSource": "exact" + }, + { + "id": "embedding:8f4f595734f9", + "chapter": "embedding", + "kind": "module", + "name": "c++_embedder_api", + "signature": "C++ embedder API", + "label": "C++ embedder API", + "apiSymbol": "c++_embedder_api", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:embedding" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:embedding" + }, + "anchorSource": "chapter" + }, + { + "id": "embedding:a3eb40e84074", + "chapter": "embedding", + "kind": "module", + "name": "setting_up_a_per-process_state", + "signature": "Setting up a per-process state", + "label": "Setting up a per-process state", + "apiSymbol": "setting_up_a_per-process_state", + "depth": 1, + "scope": "documentation", + "anchor": "setting-up-a-per-process-state", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "embedding:091388bb2ae8", + "chapter": "embedding", + "kind": "module", + "name": "setting_up_a_per-instance_state", + "signature": "Setting up a per-instance state", + "label": "Setting up a per-instance state", + "apiSymbol": "setting_up_a_per-instance_state", + "depth": 1, + "scope": "documentation", + "anchor": "setting-up-a-per-instance-state", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "child_process:2ea7d697b4fb", + "chapter": "child_process", + "kind": "module", + "name": "child_process", + "signature": "Child process", + "label": "Child process", + "apiSymbol": "child_process", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/corpus/1361-spawn-events.ts", + "tests/corpus/1565-spawn-pipe-streams.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "derived:descendants" + }, + "anchorSource": "chapter" + }, + { + "id": "child_process:e1419b8b5468", + "chapter": "child_process", + "kind": "module", + "name": "asynchronous_process_creation", + "signature": "Asynchronous process creation", + "label": "Asynchronous process creation", + "apiSymbol": "asynchronous_process_creation", + "depth": 1, + "scope": "documentation", + "anchor": "asynchronous-process-creation", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "child_process:e9644f54deb2", + "chapter": "child_process", + "kind": "module", + "name": "spawning_`.bat`_and_`.cmd`_files_on_windows", + "signature": "Spawning `.bat` and `.cmd` files on Windows", + "label": "Spawning .bat and .cmd files on Windows", + "apiSymbol": ".bat", + "depth": 2, + "scope": "api", + "anchor": "spawning-bat-and-cmd-files-on-windows", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:child_process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:child_process" + }, + "anchorSource": "exact" + }, + { + "id": "child_process:f47f2a8c7ca3", + "chapter": "child_process", + "kind": "method", + "name": "exec", + "signature": "`child_process.exec(command[, options][, callback])`", + "label": "child_process.exec(command[, options][, callback])", + "apiSymbol": "child_process.exec", + "depth": 2, + "scope": "api", + "anchor": "child_processexeccommand-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:child_process" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:child_process.exec" + }, + "anchorSource": "exact" + }, + { + "id": "child_process:208c270740f5", + "chapter": "child_process", + "kind": "method", + "name": "execFile", + "signature": "`child_process.execFile(file[, args][, options][, callback])`", + "label": "child_process.execFile(file[, args][, options][, callback])", + "apiSymbol": "child_process.execFile", + "depth": 2, + "scope": "api", + "anchor": "child_processexecfilefile-args-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.child_process.execFile" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:child_process.execFile" + }, + "anchorSource": "exact" + }, + { + "id": "child_process:7f42373d1e50", + "chapter": "child_process", + "kind": "method", + "name": "fork", + "signature": "`child_process.fork(modulePath[, args][, options])`", + "label": "child_process.fork(modulePath[, args][, options])", + "apiSymbol": "child_process.fork", + "depth": 2, + "scope": "api", + "anchor": "child_processforkmodulepath-args-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:child_process" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:child_process.fork" + }, + "anchorSource": "exact" + }, + { + "id": "child_process:68579f790657", + "chapter": "child_process", + "kind": "method", + "name": "spawn", + "signature": "`child_process.spawn(command[, args][, options])`", + "label": "child_process.spawn(command[, args][, options])", + "apiSymbol": "child_process.spawn", + "depth": 2, + "scope": "api", + "anchor": "child_processspawncommand-args-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.child_process.spawn", + "tests": [ + "tests/corpus/1361-spawn-events.ts", + "tests/corpus/1565-spawn-pipe-streams.ts" + ] + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:child_process.spawn" + }, + "anchorSource": "exact" + }, + { + "id": "child_process:abebcbcb71aa", + "chapter": "child_process", + "kind": "section", + "name": "detached", + "signature": "`options.detached`", + "label": "options.detached", + "apiSymbol": "options.detached", + "depth": 3, + "scope": "api", + "anchor": "optionsdetached", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:child_process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:child_process" + }, + "anchorSource": "exact" + }, + { + "id": "child_process:2b641feb4d00", + "chapter": "child_process", + "kind": "section", + "name": "stdio", + "signature": "`options.stdio`", + "label": "options.stdio", + "apiSymbol": "options.stdio", + "depth": 3, + "scope": "api", + "anchor": "optionsstdio", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:child_process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:child_process" + }, + "anchorSource": "exact" + }, + { + "id": "child_process:fe0e7565e526", + "chapter": "child_process", + "kind": "module", + "name": "synchronous_process_creation", + "signature": "Synchronous process creation", + "label": "Synchronous process creation", + "apiSymbol": "synchronous_process_creation", + "depth": 1, + "scope": "documentation", + "anchor": "synchronous-process-creation", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "child_process:80ea5d759f8a", + "chapter": "child_process", + "kind": "method", + "name": "execFileSync", + "signature": "`child_process.execFileSync(file[, args][, options])`", + "label": "child_process.execFileSync(file[, args][, options])", + "apiSymbol": "child_process.execFileSync", + "depth": 2, + "scope": "api", + "anchor": "child_processexecfilesyncfile-args-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.child_process.execFileSync", + "tests": [ + "tests/corpus/1361-spawn-events.ts", + "tests/corpus/1565-spawn-pipe-streams.ts" + ] + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:child_process.execFileSync" + }, + "anchorSource": "exact" + }, + { + "id": "child_process:79505e139e9d", + "chapter": "child_process", + "kind": "method", + "name": "execSync", + "signature": "`child_process.execSync(command[, options])`", + "label": "child_process.execSync(command[, options])", + "apiSymbol": "child_process.execSync", + "depth": 2, + "scope": "api", + "anchor": "child_processexecsynccommand-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.child_process.execSync", + "tests": [ + "tests/corpus/1361-spawn-events.ts", + "tests/corpus/1565-spawn-pipe-streams.ts" + ] + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:child_process.execSync" + }, + "anchorSource": "exact" + }, + { + "id": "child_process:47169de929e0", + "chapter": "child_process", + "kind": "method", + "name": "spawnSync", + "signature": "`child_process.spawnSync(command[, args][, options])`", + "label": "child_process.spawnSync(command[, args][, options])", + "apiSymbol": "child_process.spawnSync", + "depth": 2, + "scope": "api", + "anchor": "child_processspawnsynccommand-args-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.child_process.spawnSync", + "tests": [ + "tests/corpus/1361-spawn-events.ts", + "tests/corpus/1565-spawn-pipe-streams.ts" + ] + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:child_process.spawnSync" + }, + "anchorSource": "exact" + }, + { + "id": "child_process:9a9c99d0f1ba", + "chapter": "child_process", + "kind": "module", + "name": "`maxbuffer`_and_unicode", + "signature": "`maxBuffer` and Unicode", + "label": "maxBuffer", + "apiSymbol": "maxBuffer", + "depth": 1, + "scope": "api", + "anchor": "maxbuffer-and-unicode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:child_process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:child_process" + }, + "anchorSource": "exact" + }, + { + "id": "child_process:9e33fcd62384", + "chapter": "child_process", + "kind": "module", + "name": "shell_requirements", + "signature": "Shell requirements", + "label": "Shell requirements", + "apiSymbol": "shell_requirements", + "depth": 1, + "scope": "documentation", + "anchor": "shell-requirements", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "child_process:d8f92db34ab0", + "chapter": "child_process", + "kind": "module", + "name": "default_windows_shell", + "signature": "Default Windows shell", + "label": "Default Windows shell", + "apiSymbol": "default_windows_shell", + "depth": 1, + "scope": "documentation", + "anchor": "default-windows-shell", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "child_process:4fc62b55e169", + "chapter": "child_process", + "kind": "module", + "name": "advanced_serialization", + "signature": "Advanced serialization", + "label": "Advanced serialization", + "apiSymbol": "advanced_serialization", + "depth": 1, + "scope": "documentation", + "anchor": "advanced-serialization", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "child_process:6f70df179b46", + "chapter": "child_process", + "kind": "class", + "name": "ChildProcess", + "signature": "Class: `ChildProcess`", + "label": "ChildProcess", + "apiSymbol": "ChildProcess", + "depth": 1, + "scope": "api", + "anchor": "class-childprocess", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:child_process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:child_process" + }, + "anchorSource": "exact" + }, + { + "id": "child_process:8b0c27fbae1f", + "chapter": "child_process", + "kind": "method", + "name": "disconnect", + "signature": "`subprocess.disconnect()`", + "label": "subprocess.disconnect()", + "apiSymbol": "subprocess.disconnect", + "depth": 2, + "scope": "api", + "anchor": "subprocessdisconnect", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:child_process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:child_process" + }, + "anchorSource": "exact" + }, + { + "id": "child_process:0099993e166e", + "chapter": "child_process", + "kind": "method", + "name": "kill", + "signature": "`subprocess.kill([signal])`", + "label": "subprocess.kill([signal])", + "apiSymbol": "subprocess.kill", + "depth": 2, + "scope": "api", + "anchor": "subprocesskillsignal", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:child_process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:child_process" + }, + "anchorSource": "exact" + }, + { + "id": "child_process:4665a40edf20", + "chapter": "child_process", + "kind": "method", + "name": "[Symbol.dispose]", + "signature": "`subprocess[Symbol.dispose]()`", + "label": "subprocess[Symbol.dispose]()", + "apiSymbol": "subprocess", + "depth": 2, + "scope": "api", + "anchor": "subprocesssymboldispose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:child_process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:child_process" + }, + "anchorSource": "exact" + }, + { + "id": "child_process:5851394dacfe", + "chapter": "child_process", + "kind": "method", + "name": "ref", + "signature": "`subprocess.ref()`", + "label": "subprocess.ref()", + "apiSymbol": "subprocess.ref", + "depth": 2, + "scope": "api", + "anchor": "subprocessref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:child_process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:child_process" + }, + "anchorSource": "exact" + }, + { + "id": "child_process:4efd845b6ae7", + "chapter": "child_process", + "kind": "method", + "name": "send", + "signature": "`subprocess.send(message[, sendHandle[, options]][, callback])`", + "label": "subprocess.send(message[, sendHandle[, options]][, callback])", + "apiSymbol": "subprocess.send", + "depth": 2, + "scope": "api", + "anchor": "subprocesssendmessage-sendhandle-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:child_process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:child_process" + }, + "anchorSource": "exact" + }, + { + "id": "child_process:5342bcc81b6f", + "chapter": "child_process", + "kind": "method", + "name": "unref", + "signature": "`subprocess.unref()`", + "label": "subprocess.unref()", + "apiSymbol": "subprocess.unref", + "depth": 2, + "scope": "api", + "anchor": "subprocessunref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:child_process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:child_process" + }, + "anchorSource": "exact" + }, + { + "id": "child_process:0212900a85b9", + "chapter": "child_process", + "kind": "Object", + "name": "Type", + "signature": "`channel` Type: {Object} A pipe representing the IPC channel to the child process.", + "label": "channel", + "apiSymbol": "channel", + "depth": 2, + "scope": "api", + "anchor": "class-childprocess", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:child_process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:child_process" + }, + "anchorSource": "ancestor" + }, + { + "id": "child_process:ac51764b6efd", + "chapter": "child_process", + "kind": "method", + "name": "ref", + "signature": "`subprocess.channel.ref()`", + "label": "subprocess.channel.ref()", + "apiSymbol": "subprocess.channel.ref", + "depth": 3, + "scope": "api", + "anchor": "subprocesschannelref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:child_process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:child_process" + }, + "anchorSource": "exact" + }, + { + "id": "child_process:ed0094174606", + "chapter": "child_process", + "kind": "method", + "name": "unref", + "signature": "`subprocess.channel.unref()`", + "label": "subprocess.channel.unref()", + "apiSymbol": "subprocess.channel.unref", + "depth": 3, + "scope": "api", + "anchor": "subprocesschannelunref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:child_process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:child_process" + }, + "anchorSource": "exact" + }, + { + "id": "child_process:9bdf04cea3e8", + "chapter": "child_process", + "kind": "boolean", + "name": "Type", + "signature": "`connected` Type: {boolean} Set to `false` after `subprocess.disconnect()` is called.", + "label": "connected", + "apiSymbol": "connected", + "depth": 2, + "scope": "api", + "anchor": "class-childprocess", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:child_process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:child_process" + }, + "anchorSource": "ancestor" + }, + { + "id": "child_process:4e67eefefd3a", + "chapter": "child_process", + "kind": "integer", + "name": "Type", + "signature": "`exitCode` Type: {integer}", + "label": "exitCode", + "apiSymbol": "exitCode", + "depth": 2, + "scope": "api", + "anchor": "class-childprocess", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:child_process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:child_process" + }, + "anchorSource": "ancestor" + }, + { + "id": "child_process:b0811a57c0c9", + "chapter": "child_process", + "kind": "boolean", + "name": "Type", + "signature": "`killed` Type: {boolean} Set to `true` after `subprocess.kill()` is used to successfully send a signal to the child process.", + "label": "killed", + "apiSymbol": "killed", + "depth": 2, + "scope": "api", + "anchor": "class-childprocess", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:child_process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:child_process" + }, + "anchorSource": "ancestor" + }, + { + "id": "child_process:bc5b80a98b48", + "chapter": "child_process", + "kind": "integer|undefined", + "name": "Type", + "signature": "`pid` Type: {integer|undefined}", + "label": "pid", + "apiSymbol": "pid", + "depth": 2, + "scope": "api", + "anchor": "class-childprocess", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:child_process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:child_process" + }, + "anchorSource": "ancestor" + }, + { + "id": "child_process:ecd0e632d88a", + "chapter": "child_process", + "kind": "string|null", + "name": "Type", + "signature": "`signalCode` Type: {string|null}", + "label": "signalCode", + "apiSymbol": "signalCode", + "depth": 2, + "scope": "api", + "anchor": "class-childprocess", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:child_process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:child_process" + }, + "anchorSource": "ancestor" + }, + { + "id": "child_process:31d67b68a96d", + "chapter": "child_process", + "kind": "Array", + "name": "Type", + "signature": "`spawnargs` Type: {Array}", + "label": "spawnargs", + "apiSymbol": "spawnargs", + "depth": 2, + "scope": "api", + "anchor": "class-childprocess", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:child_process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:child_process" + }, + "anchorSource": "ancestor" + }, + { + "id": "child_process:3afbde068ec9", + "chapter": "child_process", + "kind": "string", + "name": "Type", + "signature": "`spawnfile` Type: {string}", + "label": "spawnfile", + "apiSymbol": "spawnfile", + "depth": 2, + "scope": "api", + "anchor": "class-childprocess", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:child_process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:child_process" + }, + "anchorSource": "ancestor" + }, + { + "id": "child_process:ee449711cf20", + "chapter": "child_process", + "kind": "stream.Readable|null|undefined", + "name": "Type", + "signature": "`stderr` Type: {stream.Readable|null|undefined}", + "label": "stderr", + "apiSymbol": "stderr", + "depth": 2, + "scope": "api", + "anchor": "class-childprocess", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:child_process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:child_process" + }, + "anchorSource": "ancestor" + }, + { + "id": "child_process:468dee97bdda", + "chapter": "child_process", + "kind": "stream.Writable|null|undefined", + "name": "Type", + "signature": "`stdin` Type: {stream.Writable|null|undefined}", + "label": "stdin", + "apiSymbol": "stdin", + "depth": 2, + "scope": "api", + "anchor": "class-childprocess", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:child_process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:child_process" + }, + "anchorSource": "ancestor" + }, + { + "id": "child_process:673be4a4f0af", + "chapter": "child_process", + "kind": "Array", + "name": "Type", + "signature": "`stdio` Type: {Array}", + "label": "stdio", + "apiSymbol": "stdio", + "depth": 2, + "scope": "api", + "anchor": "class-childprocess", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:child_process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:child_process" + }, + "anchorSource": "ancestor" + }, + { + "id": "child_process:2a294374a4c4", + "chapter": "child_process", + "kind": "stream.Readable|null|undefined", + "name": "Type", + "signature": "`stdout` Type: {stream.Readable|null|undefined}", + "label": "stdout", + "apiSymbol": "stdout", + "depth": 2, + "scope": "api", + "anchor": "class-childprocess", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:child_process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:child_process" + }, + "anchorSource": "ancestor" + }, + { + "id": "child_process:215cd22379d9", + "chapter": "child_process", + "kind": "event", + "name": "close", + "signature": "Event: `'close'`", + "label": "'close'", + "apiSymbol": "'close'", + "depth": 2, + "scope": "api", + "anchor": "event-close", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:child_process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:child_process" + }, + "anchorSource": "exact" + }, + { + "id": "child_process:40cfcd7f8ece", + "chapter": "child_process", + "kind": "event", + "name": "disconnect", + "signature": "Event: `'disconnect'`", + "label": "'disconnect'", + "apiSymbol": "'disconnect'", + "depth": 2, + "scope": "api", + "anchor": "event-disconnect", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:child_process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:child_process" + }, + "anchorSource": "exact" + }, + { + "id": "child_process:184191eb8629", + "chapter": "child_process", + "kind": "event", + "name": "error", + "signature": "Event: `'error'`", + "label": "'error'", + "apiSymbol": "'error'", + "depth": 2, + "scope": "api", + "anchor": "event-error", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:child_process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:child_process" + }, + "anchorSource": "exact" + }, + { + "id": "child_process:1dd54cb977fe", + "chapter": "child_process", + "kind": "event", + "name": "exit", + "signature": "Event: `'exit'`", + "label": "'exit'", + "apiSymbol": "'exit'", + "depth": 2, + "scope": "api", + "anchor": "event-exit", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:child_process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:child_process" + }, + "anchorSource": "exact" + }, + { + "id": "child_process:cf1754c71d45", + "chapter": "child_process", + "kind": "event", + "name": "message", + "signature": "Event: `'message'`", + "label": "'message'", + "apiSymbol": "'message'", + "depth": 2, + "scope": "api", + "anchor": "event-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:child_process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:child_process" + }, + "anchorSource": "exact" + }, + { + "id": "child_process:3094f339cf99", + "chapter": "child_process", + "kind": "event", + "name": "spawn", + "signature": "Event: `'spawn'`", + "label": "'spawn'", + "apiSymbol": "'spawn'", + "depth": 2, + "scope": "api", + "anchor": "event-spawn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:child_process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:child_process" + }, + "anchorSource": "exact" + }, + { + "id": "cluster:e6937e252823", + "chapter": "cluster", + "kind": "module", + "name": "cluster", + "signature": "Cluster", + "label": "Cluster", + "apiSymbol": "cluster", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/corpus/957-builtins-namespace.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "derived:descendants" + }, + "anchorSource": "chapter" + }, + { + "id": "cluster:a2f3c70d4b2b", + "chapter": "cluster", + "kind": "class", + "name": "Worker", + "signature": "Class: `Worker`", + "label": "Worker", + "apiSymbol": "Worker", + "depth": 1, + "scope": "api", + "anchor": "class-worker", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:cluster" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:cluster" + }, + "anchorSource": "exact" + }, + { + "id": "cluster:907b84307f2c", + "chapter": "cluster", + "kind": "method", + "name": "disconnect", + "signature": "`worker.disconnect()`", + "label": "worker.disconnect()", + "apiSymbol": "worker.disconnect", + "depth": 2, + "scope": "api", + "anchor": "workerdisconnect", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:cluster" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:cluster" + }, + "anchorSource": "exact" + }, + { + "id": "cluster:797617eb8b67", + "chapter": "cluster", + "kind": "method", + "name": "isConnected", + "signature": "`worker.isConnected()`", + "label": "worker.isConnected()", + "apiSymbol": "worker.isConnected", + "depth": 2, + "scope": "api", + "anchor": "workerisconnected", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:cluster" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:cluster" + }, + "anchorSource": "exact" + }, + { + "id": "cluster:ced794997b27", + "chapter": "cluster", + "kind": "method", + "name": "isDead", + "signature": "`worker.isDead()`", + "label": "worker.isDead()", + "apiSymbol": "worker.isDead", + "depth": 2, + "scope": "api", + "anchor": "workerisdead", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:cluster" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:cluster" + }, + "anchorSource": "exact" + }, + { + "id": "cluster:d7b8a5ae8983", + "chapter": "cluster", + "kind": "method", + "name": "kill", + "signature": "`worker.kill([signal])`", + "label": "worker.kill([signal])", + "apiSymbol": "worker.kill", + "depth": 2, + "scope": "api", + "anchor": "workerkillsignal", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:cluster" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:cluster" + }, + "anchorSource": "exact" + }, + { + "id": "cluster:e5a8eca75432", + "chapter": "cluster", + "kind": "method", + "name": "send", + "signature": "`worker.send(message[, sendHandle[, options]][, callback])`", + "label": "worker.send(message[, sendHandle[, options]][, callback])", + "apiSymbol": "worker.send", + "depth": 2, + "scope": "api", + "anchor": "workersendmessage-sendhandle-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:cluster" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:cluster" + }, + "anchorSource": "exact" + }, + { + "id": "cluster:43f1ee9ec417", + "chapter": "cluster", + "kind": "boolean", + "name": "Type", + "signature": "`exitedAfterDisconnect` Type: {boolean}", + "label": "exitedAfterDisconnect", + "apiSymbol": "exitedAfterDisconnect", + "depth": 2, + "scope": "api", + "anchor": "class-worker", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:cluster" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:cluster" + }, + "anchorSource": "ancestor" + }, + { + "id": "cluster:5b52c572e788", + "chapter": "cluster", + "kind": "integer", + "name": "Type", + "signature": "`id` Type: {integer}", + "label": "id", + "apiSymbol": "id", + "depth": 2, + "scope": "api", + "anchor": "class-worker", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:cluster" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:cluster" + }, + "anchorSource": "ancestor" + }, + { + "id": "cluster:eb657c2022e6", + "chapter": "cluster", + "kind": "ChildProcess", + "name": "Type", + "signature": "`process` Type: {ChildProcess}", + "label": "process", + "apiSymbol": "process", + "depth": 2, + "scope": "api", + "anchor": "class-worker", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:cluster" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:cluster" + }, + "anchorSource": "ancestor" + }, + { + "id": "cluster:31f39c6892bc", + "chapter": "cluster", + "kind": "event", + "name": "disconnect", + "signature": "Event: `'disconnect'`", + "label": "'disconnect'", + "apiSymbol": "'disconnect'", + "depth": 2, + "scope": "api", + "anchor": "event-disconnect", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:cluster" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:cluster" + }, + "anchorSource": "exact" + }, + { + "id": "cluster:a2eca8edee57", + "chapter": "cluster", + "kind": "event", + "name": "error", + "signature": "Event: `'error'`", + "label": "'error'", + "apiSymbol": "'error'", + "depth": 2, + "scope": "api", + "anchor": "event-error", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:cluster" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:cluster" + }, + "anchorSource": "exact" + }, + { + "id": "cluster:fa1a393e3bb6", + "chapter": "cluster", + "kind": "event", + "name": "exit", + "signature": "Event: `'exit'`", + "label": "'exit'", + "apiSymbol": "'exit'", + "depth": 2, + "scope": "api", + "anchor": "event-exit", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:cluster" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:cluster" + }, + "anchorSource": "exact" + }, + { + "id": "cluster:865458d82d7a", + "chapter": "cluster", + "kind": "event", + "name": "listening", + "signature": "Event: `'listening'`", + "label": "'listening'", + "apiSymbol": "'listening'", + "depth": 2, + "scope": "api", + "anchor": "event-listening", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:cluster" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:cluster" + }, + "anchorSource": "exact" + }, + { + "id": "cluster:53778d100561", + "chapter": "cluster", + "kind": "event", + "name": "message", + "signature": "Event: `'message'`", + "label": "'message'", + "apiSymbol": "'message'", + "depth": 2, + "scope": "api", + "anchor": "event-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:cluster" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:cluster" + }, + "anchorSource": "exact" + }, + { + "id": "cluster:f24b23e3064e", + "chapter": "cluster", + "kind": "event", + "name": "online", + "signature": "Event: `'online'`", + "label": "'online'", + "apiSymbol": "'online'", + "depth": 2, + "scope": "api", + "anchor": "event-online", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:cluster" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:cluster" + }, + "anchorSource": "exact" + }, + { + "id": "cluster:513f9f07bbc3", + "chapter": "cluster", + "kind": "method", + "name": "disconnect", + "signature": "`cluster.disconnect([callback])`", + "label": "cluster.disconnect([callback])", + "apiSymbol": "cluster.disconnect", + "depth": 1, + "scope": "api", + "anchor": "clusterdisconnectcallback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:cluster" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:cluster" + }, + "anchorSource": "exact" + }, + { + "id": "cluster:603004ae11ec", + "chapter": "cluster", + "kind": "method", + "name": "fork", + "signature": "`cluster.fork([env])`", + "label": "cluster.fork([env])", + "apiSymbol": "cluster.fork", + "depth": 1, + "scope": "api", + "anchor": "clusterforkenv", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:cluster" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:cluster" + }, + "anchorSource": "exact" + }, + { + "id": "cluster:ec2151dccc18", + "chapter": "cluster", + "kind": "method", + "name": "setupMaster", + "signature": "`cluster.setupMaster([settings])`", + "label": "cluster.setupMaster([settings])", + "apiSymbol": "cluster.setupMaster", + "depth": 1, + "scope": "api", + "anchor": "clustersetupmastersettings", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:cluster" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:cluster" + }, + "anchorSource": "exact" + }, + { + "id": "cluster:3c5104745205", + "chapter": "cluster", + "kind": "method", + "name": "setupPrimary", + "signature": "`cluster.setupPrimary([settings])`", + "label": "cluster.setupPrimary([settings])", + "apiSymbol": "cluster.setupPrimary", + "depth": 1, + "scope": "api", + "anchor": "clustersetupprimarysettings", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:cluster" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:cluster" + }, + "anchorSource": "exact" + }, + { + "id": "cluster:585ce489996d", + "chapter": "cluster", + "kind": "section", + "name": "isMaster", + "signature": "`cluster.isMaster`", + "label": "cluster.isMaster", + "apiSymbol": "cluster.isMaster", + "depth": 1, + "scope": "api", + "anchor": "clusterismaster", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": false + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.cluster.isMaster", + "tests": [ + "tests/corpus/957-builtins-namespace.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:cluster" + }, + "anchorSource": "exact" + }, + { + "id": "cluster:d581a10dce7a", + "chapter": "cluster", + "kind": "boolean", + "name": "Type", + "signature": "`isPrimary` Type: {boolean}", + "label": "isPrimary", + "apiSymbol": "isPrimary", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.cluster.isPrimary", + "tests": [ + "tests/corpus/957-builtins-namespace.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:cluster" + }, + "anchorSource": "chapter" + }, + { + "id": "cluster:3086f12a11d7", + "chapter": "cluster", + "kind": "boolean", + "name": "Type", + "signature": "`isWorker` Type: {boolean}", + "label": "isWorker", + "apiSymbol": "isWorker", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.cluster.isWorker", + "tests": [ + "tests/corpus/957-builtins-namespace.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:cluster" + }, + "anchorSource": "chapter" + }, + { + "id": "cluster:55e8f77822d1", + "chapter": "cluster", + "kind": "section", + "name": "schedulingPolicy", + "signature": "`cluster.schedulingPolicy`", + "label": "cluster.schedulingPolicy", + "apiSymbol": "cluster.schedulingPolicy", + "depth": 1, + "scope": "api", + "anchor": "clusterschedulingpolicy", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:cluster" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:cluster" + }, + "anchorSource": "exact" + }, + { + "id": "cluster:06708de43d4d", + "chapter": "cluster", + "kind": "Object", + "name": "Type", + "signature": "`settings` Type: {Object}", + "label": "settings", + "apiSymbol": "settings", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:cluster" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:cluster" + }, + "anchorSource": "chapter" + }, + { + "id": "cluster:30af577cb351", + "chapter": "cluster", + "kind": "Object", + "name": "Type", + "signature": "`worker` Type: {Object}", + "label": "worker", + "apiSymbol": "worker", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:cluster" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:cluster" + }, + "anchorSource": "chapter" + }, + { + "id": "cluster:8404aafb01df", + "chapter": "cluster", + "kind": "Object", + "name": "Type", + "signature": "`workers` Type: {Object}", + "label": "workers", + "apiSymbol": "workers", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:cluster" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:cluster" + }, + "anchorSource": "chapter" + }, + { + "id": "cluster:e85acbbc2103", + "chapter": "cluster", + "kind": "event", + "name": "disconnect", + "signature": "Event: `'disconnect'`", + "label": "'disconnect'", + "apiSymbol": "'disconnect'", + "depth": 1, + "scope": "api", + "anchor": "event-disconnect_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:cluster" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:cluster" + }, + "anchorSource": "exact" + }, + { + "id": "cluster:0125161acbcd", + "chapter": "cluster", + "kind": "event", + "name": "exit", + "signature": "Event: `'exit'`", + "label": "'exit'", + "apiSymbol": "'exit'", + "depth": 1, + "scope": "api", + "anchor": "event-exit_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:cluster" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:cluster" + }, + "anchorSource": "exact" + }, + { + "id": "cluster:828e25c5eabb", + "chapter": "cluster", + "kind": "event", + "name": "fork", + "signature": "Event: `'fork'`", + "label": "'fork'", + "apiSymbol": "'fork'", + "depth": 1, + "scope": "api", + "anchor": "event-fork", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:cluster" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:cluster" + }, + "anchorSource": "exact" + }, + { + "id": "cluster:86dbf766e47a", + "chapter": "cluster", + "kind": "event", + "name": "listening", + "signature": "Event: `'listening'`", + "label": "'listening'", + "apiSymbol": "'listening'", + "depth": 1, + "scope": "api", + "anchor": "event-listening_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:cluster" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:cluster" + }, + "anchorSource": "exact" + }, + { + "id": "cluster:9bdfd1a39174", + "chapter": "cluster", + "kind": "event", + "name": "message", + "signature": "Event: `'message'`", + "label": "'message'", + "apiSymbol": "'message'", + "depth": 1, + "scope": "api", + "anchor": "event-message_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:cluster" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:cluster" + }, + "anchorSource": "exact" + }, + { + "id": "cluster:7cc469a78395", + "chapter": "cluster", + "kind": "event", + "name": "online", + "signature": "Event: `'online'`", + "label": "'online'", + "apiSymbol": "'online'", + "depth": 1, + "scope": "api", + "anchor": "event-online_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:cluster" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:cluster" + }, + "anchorSource": "exact" + }, + { + "id": "cluster:4c8ea265d664", + "chapter": "cluster", + "kind": "event", + "name": "setup", + "signature": "Event: `'setup'`", + "label": "'setup'", + "apiSymbol": "'setup'", + "depth": 1, + "scope": "api", + "anchor": "event-setup", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:cluster" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:cluster" + }, + "anchorSource": "exact" + }, + { + "id": "cluster:207e88d61999", + "chapter": "cluster", + "kind": "misc", + "name": "How it works", + "signature": "How it works", + "label": "How it works", + "apiSymbol": "How it works", + "depth": 1, + "scope": "documentation", + "anchor": "how-it-works", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "cli:7c00792f9705", + "chapter": "cli", + "kind": "misc", + "name": "Command-line API", + "signature": "Command-line API", + "label": "Command-line API", + "apiSymbol": "Command-line API", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:cli" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:cli" + }, + "anchorSource": "chapter" + }, + { + "id": "cli:5ea9f3aa27de", + "chapter": "cli", + "kind": "misc", + "name": "synopsis", + "signature": "Synopsis", + "label": "Synopsis", + "apiSymbol": "synopsis", + "depth": 1, + "scope": "configuration", + "anchor": "synopsis", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:483a91b0a782", + "chapter": "cli", + "kind": "misc", + "name": "program_entry_point", + "signature": "Program entry point", + "label": "Program entry point", + "apiSymbol": "program_entry_point", + "depth": 1, + "scope": "configuration", + "anchor": "program-entry-point", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:eed069df0577", + "chapter": "cli", + "kind": "misc", + "name": "options", + "signature": "Options", + "label": "Options", + "apiSymbol": "options", + "depth": 1, + "scope": "configuration", + "anchor": "options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:54afe130e175", + "chapter": "cli", + "kind": "module", + "name": "`-`", + "signature": "`-`", + "label": "-", + "apiSymbol": "-", + "depth": 2, + "scope": "configuration", + "anchor": "-", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:806b9b0b3870", + "chapter": "cli", + "kind": "module", + "name": "`--`", + "signature": "`--`", + "label": "--", + "apiSymbol": "--", + "depth": 2, + "scope": "configuration", + "anchor": "--", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:6de2afb41a81", + "chapter": "cli", + "kind": "module", + "name": "`--abort-on-uncaught-exception`", + "signature": "`--abort-on-uncaught-exception`", + "label": "--abort-on-uncaught-exception", + "apiSymbol": "--abort-on-uncaught-exception", + "depth": 2, + "scope": "configuration", + "anchor": "--abort-on-uncaught-exception", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:d757d3e16920", + "chapter": "cli", + "kind": "module", + "name": "`--allow-addons`", + "signature": "`--allow-addons`", + "label": "--allow-addons", + "apiSymbol": "--allow-addons", + "depth": 2, + "scope": "configuration", + "anchor": "--allow-addons", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:87be1726e421", + "chapter": "cli", + "kind": "module", + "name": "`--allow-child-process`", + "signature": "`--allow-child-process`", + "label": "--allow-child-process", + "apiSymbol": "--allow-child-process", + "depth": 2, + "scope": "configuration", + "anchor": "--allow-child-process", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:7cebb31f9347", + "chapter": "cli", + "kind": "module", + "name": "`--allow-fs-read`", + "signature": "`--allow-fs-read`", + "label": "--allow-fs-read", + "apiSymbol": "--allow-fs-read", + "depth": 2, + "scope": "configuration", + "anchor": "--allow-fs-read", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:d08614fec5c7", + "chapter": "cli", + "kind": "module", + "name": "`--allow-fs-write`", + "signature": "`--allow-fs-write`", + "label": "--allow-fs-write", + "apiSymbol": "--allow-fs-write", + "depth": 2, + "scope": "configuration", + "anchor": "--allow-fs-write", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:309fc96ba8d4", + "chapter": "cli", + "kind": "module", + "name": "`--allow-inspector`", + "signature": "`--allow-inspector`", + "label": "--allow-inspector", + "apiSymbol": "--allow-inspector", + "depth": 2, + "scope": "configuration", + "anchor": "--allow-inspector", + "nodeStability": { + "index": "1.0", + "level": 1, + "text": "Early development", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:c79231d42230", + "chapter": "cli", + "kind": "module", + "name": "`--allow-wasi`", + "signature": "`--allow-wasi`", + "label": "--allow-wasi", + "apiSymbol": "--allow-wasi", + "depth": 2, + "scope": "configuration", + "anchor": "--allow-wasi", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:677ed9dbd662", + "chapter": "cli", + "kind": "module", + "name": "`--allow-worker`", + "signature": "`--allow-worker`", + "label": "--allow-worker", + "apiSymbol": "--allow-worker", + "depth": 2, + "scope": "configuration", + "anchor": "--allow-worker", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:4f8cd6b4f6d4", + "chapter": "cli", + "kind": "module", + "name": "`--build-snapshot`", + "signature": "`--build-snapshot`", + "label": "--build-snapshot", + "apiSymbol": "--build-snapshot", + "depth": 2, + "scope": "configuration", + "anchor": "--build-snapshot", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:2fdaf63485c5", + "chapter": "cli", + "kind": "module", + "name": "`--build-snapshot-config`", + "signature": "`--build-snapshot-config`", + "label": "--build-snapshot-config", + "apiSymbol": "--build-snapshot-config", + "depth": 2, + "scope": "configuration", + "anchor": "--build-snapshot-config", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:dfbc6687ba20", + "chapter": "cli", + "kind": "module", + "name": "`-c`,_`--check`", + "signature": "`-c`, `--check`", + "label": "-c", + "apiSymbol": "-c", + "depth": 2, + "scope": "configuration", + "anchor": "-c---check", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:50db488cdea0", + "chapter": "cli", + "kind": "module", + "name": "`--completion-bash`", + "signature": "`--completion-bash`", + "label": "--completion-bash", + "apiSymbol": "--completion-bash", + "depth": 2, + "scope": "configuration", + "anchor": "--completion-bash", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:5f4daff9e9a6", + "chapter": "cli", + "kind": "module", + "name": "`-c_condition`,_`--conditions=condition`", + "signature": "`-C condition`, `--conditions=condition`", + "label": "-C condition", + "apiSymbol": "-C condition", + "depth": 2, + "scope": "configuration", + "anchor": "-c-condition---conditionscondition", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:fd35a814bd7f", + "chapter": "cli", + "kind": "module", + "name": "`--cpu-prof`", + "signature": "`--cpu-prof`", + "label": "--cpu-prof", + "apiSymbol": "--cpu-prof", + "depth": 2, + "scope": "configuration", + "anchor": "--cpu-prof", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:b12f20a278c8", + "chapter": "cli", + "kind": "module", + "name": "`--cpu-prof-dir`", + "signature": "`--cpu-prof-dir`", + "label": "--cpu-prof-dir", + "apiSymbol": "--cpu-prof-dir", + "depth": 2, + "scope": "configuration", + "anchor": "--cpu-prof-dir", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:de47d99e06d0", + "chapter": "cli", + "kind": "module", + "name": "`--cpu-prof-interval`", + "signature": "`--cpu-prof-interval`", + "label": "--cpu-prof-interval", + "apiSymbol": "--cpu-prof-interval", + "depth": 2, + "scope": "configuration", + "anchor": "--cpu-prof-interval", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:fce8f6087788", + "chapter": "cli", + "kind": "module", + "name": "`--cpu-prof-name`", + "signature": "`--cpu-prof-name`", + "label": "--cpu-prof-name", + "apiSymbol": "--cpu-prof-name", + "depth": 2, + "scope": "configuration", + "anchor": "--cpu-prof-name", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:c4d3b2433313", + "chapter": "cli", + "kind": "module", + "name": "`--diagnostic-dir=directory`", + "signature": "`--diagnostic-dir=directory`", + "label": "--diagnostic-dir=directory", + "apiSymbol": "--diagnostic-dir", + "depth": 2, + "scope": "configuration", + "anchor": "--diagnostic-dirdirectory", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:af8973ca489b", + "chapter": "cli", + "kind": "module", + "name": "`--disable-proto=mode`", + "signature": "`--disable-proto=mode`", + "label": "--disable-proto=mode", + "apiSymbol": "--disable-proto", + "depth": 2, + "scope": "configuration", + "anchor": "--disable-protomode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:742e693c9ea0", + "chapter": "cli", + "kind": "module", + "name": "`--disable-sigusr1`", + "signature": "`--disable-sigusr1`", + "label": "--disable-sigusr1", + "apiSymbol": "--disable-sigusr1", + "depth": 2, + "scope": "configuration", + "anchor": "--disable-sigusr1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:ca068b8d8ef4", + "chapter": "cli", + "kind": "module", + "name": "`--disable-warning=code-or-type`", + "signature": "`--disable-warning=code-or-type`", + "label": "--disable-warning=code-or-type", + "apiSymbol": "--disable-warning", + "depth": 2, + "scope": "configuration", + "anchor": "--disable-warningcode-or-type", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:318fc4b4a9f2", + "chapter": "cli", + "kind": "module", + "name": "`--disable-wasm-trap-handler`", + "signature": "`--disable-wasm-trap-handler`", + "label": "--disable-wasm-trap-handler", + "apiSymbol": "--disable-wasm-trap-handler", + "depth": 2, + "scope": "configuration", + "anchor": "--disable-wasm-trap-handler", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:1f71af5b448b", + "chapter": "cli", + "kind": "module", + "name": "`--disallow-code-generation-from-strings`", + "signature": "`--disallow-code-generation-from-strings`", + "label": "--disallow-code-generation-from-strings", + "apiSymbol": "--disallow-code-generation-from-strings", + "depth": 2, + "scope": "configuration", + "anchor": "--disallow-code-generation-from-strings", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:4403327809f1", + "chapter": "cli", + "kind": "module", + "name": "`--dns-result-order=order`", + "signature": "`--dns-result-order=order`", + "label": "--dns-result-order=order", + "apiSymbol": "--dns-result-order", + "depth": 2, + "scope": "configuration", + "anchor": "--dns-result-orderorder", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:a7ee8db395e6", + "chapter": "cli", + "kind": "module", + "name": "`--enable-fips`", + "signature": "`--enable-fips`", + "label": "--enable-fips", + "apiSymbol": "--enable-fips", + "depth": 2, + "scope": "configuration", + "anchor": "--enable-fips", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:c77c57884fa6", + "chapter": "cli", + "kind": "module", + "name": "`--enable-network-family-autoselection`", + "signature": "`--enable-network-family-autoselection`", + "label": "--enable-network-family-autoselection", + "apiSymbol": "--enable-network-family-autoselection", + "depth": 2, + "scope": "configuration", + "anchor": "--enable-network-family-autoselection", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:8fcbf82b9c6d", + "chapter": "cli", + "kind": "module", + "name": "`--enable-source-maps`", + "signature": "`--enable-source-maps`", + "label": "--enable-source-maps", + "apiSymbol": "--enable-source-maps", + "depth": 2, + "scope": "configuration", + "anchor": "--enable-source-maps", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:7ed5364ffc15", + "chapter": "cli", + "kind": "module", + "name": "`--entry-url`", + "signature": "`--entry-url`", + "label": "--entry-url", + "apiSymbol": "--entry-url", + "depth": 2, + "scope": "configuration", + "anchor": "--entry-url", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:18654b768d38", + "chapter": "cli", + "kind": "module", + "name": "`--env-file-if-exists=file`", + "signature": "`--env-file-if-exists=file`", + "label": "--env-file-if-exists=file", + "apiSymbol": "--env-file-if-exists", + "depth": 2, + "scope": "configuration", + "anchor": "--env-file-if-existsfile", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:5a895ed47cb7", + "chapter": "cli", + "kind": "module", + "name": "`--env-file=file`", + "signature": "`--env-file=file`", + "label": "--env-file=file", + "apiSymbol": "--env-file", + "depth": 2, + "scope": "configuration", + "anchor": "--env-filefile", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:708be6845077", + "chapter": "cli", + "kind": "module", + "name": "`-e`,_`--eval_\"script\"`", + "signature": "`-e`, `--eval \"script\"`", + "label": "-e", + "apiSymbol": "-e", + "depth": 2, + "scope": "configuration", + "anchor": "-e---eval-script", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:1ce4412a6a71", + "chapter": "cli", + "kind": "module", + "name": "`--experimental-addon-modules`", + "signature": "`--experimental-addon-modules`", + "label": "--experimental-addon-modules", + "apiSymbol": "--experimental-addon-modules", + "depth": 2, + "scope": "configuration", + "anchor": "--experimental-addon-modules", + "nodeStability": { + "index": "1.0", + "level": 1, + "text": "Early development", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:f064fad60fae", + "chapter": "cli", + "kind": "module", + "name": "`--experimental-config-file=config`", + "signature": "`--experimental-config-file=config`", + "label": "--experimental-config-file=config", + "apiSymbol": "--experimental-config-file", + "depth": 2, + "scope": "configuration", + "anchor": "--experimental-config-fileconfig", + "nodeStability": { + "index": "1.0", + "level": 1, + "text": "Early development", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:efbb1e232998", + "chapter": "cli", + "kind": "module", + "name": "`--experimental-default-config-file`", + "signature": "`--experimental-default-config-file`", + "label": "--experimental-default-config-file", + "apiSymbol": "--experimental-default-config-file", + "depth": 2, + "scope": "configuration", + "anchor": "--experimental-default-config-file", + "nodeStability": { + "index": "1.0", + "level": 1, + "text": "Early development", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:ee1a0f0fe1d0", + "chapter": "cli", + "kind": "module", + "name": "`--experimental-eventsource`", + "signature": "`--experimental-eventsource`", + "label": "--experimental-eventsource", + "apiSymbol": "--experimental-eventsource", + "depth": 2, + "scope": "configuration", + "anchor": "--experimental-eventsource", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:a41c19d1853f", + "chapter": "cli", + "kind": "module", + "name": "`--experimental-import-meta-resolve`", + "signature": "`--experimental-import-meta-resolve`", + "label": "--experimental-import-meta-resolve", + "apiSymbol": "--experimental-import-meta-resolve", + "depth": 2, + "scope": "configuration", + "anchor": "--experimental-import-meta-resolve", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:842968df74c9", + "chapter": "cli", + "kind": "module", + "name": "`--experimental-inspector-network-resource`", + "signature": "`--experimental-inspector-network-resource`", + "label": "--experimental-inspector-network-resource", + "apiSymbol": "--experimental-inspector-network-resource", + "depth": 2, + "scope": "configuration", + "anchor": "--experimental-inspector-network-resource", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active Development", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:8664210bbd66", + "chapter": "cli", + "kind": "module", + "name": "`--experimental-loader=module`", + "signature": "`--experimental-loader=module`", + "label": "--experimental-loader=module", + "apiSymbol": "--experimental-loader", + "depth": 2, + "scope": "configuration", + "anchor": "--experimental-loadermodule", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:914f83df945c", + "chapter": "cli", + "kind": "module", + "name": "`--experimental-network-inspection`", + "signature": "`--experimental-network-inspection`", + "label": "--experimental-network-inspection", + "apiSymbol": "--experimental-network-inspection", + "depth": 2, + "scope": "configuration", + "anchor": "--experimental-network-inspection", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:fc6a77b0e751", + "chapter": "cli", + "kind": "module", + "name": "`--experimental-print-required-tla`", + "signature": "`--experimental-print-required-tla`", + "label": "--experimental-print-required-tla", + "apiSymbol": "--experimental-print-required-tla", + "depth": 2, + "scope": "configuration", + "anchor": "--experimental-print-required-tla", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:c7c8b16d47b8", + "chapter": "cli", + "kind": "module", + "name": "`--experimental-sea-config`", + "signature": "`--experimental-sea-config`", + "label": "--experimental-sea-config", + "apiSymbol": "--experimental-sea-config", + "depth": 2, + "scope": "configuration", + "anchor": "--experimental-sea-config", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:e234276000cf", + "chapter": "cli", + "kind": "module", + "name": "`--experimental-shadow-realm`", + "signature": "`--experimental-shadow-realm`", + "label": "--experimental-shadow-realm", + "apiSymbol": "--experimental-shadow-realm", + "depth": 2, + "scope": "configuration", + "anchor": "--experimental-shadow-realm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:3181e8e3620c", + "chapter": "cli", + "kind": "module", + "name": "`--experimental-test-coverage`", + "signature": "`--experimental-test-coverage`", + "label": "--experimental-test-coverage", + "apiSymbol": "--experimental-test-coverage", + "depth": 2, + "scope": "configuration", + "anchor": "--experimental-test-coverage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:c4a00d6486b5", + "chapter": "cli", + "kind": "module", + "name": "`--experimental-test-module-mocks`", + "signature": "`--experimental-test-module-mocks`", + "label": "--experimental-test-module-mocks", + "apiSymbol": "--experimental-test-module-mocks", + "depth": 2, + "scope": "configuration", + "anchor": "--experimental-test-module-mocks", + "nodeStability": { + "index": "1.0", + "level": 1, + "text": "Early development", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:aa3990200003", + "chapter": "cli", + "kind": "module", + "name": "`--experimental-transform-types`", + "signature": "`--experimental-transform-types`", + "label": "--experimental-transform-types", + "apiSymbol": "--experimental-transform-types", + "depth": 2, + "scope": "configuration", + "anchor": "--experimental-transform-types", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:6368f5a87ba2", + "chapter": "cli", + "kind": "module", + "name": "`--experimental-vm-modules`", + "signature": "`--experimental-vm-modules`", + "label": "--experimental-vm-modules", + "apiSymbol": "--experimental-vm-modules", + "depth": 2, + "scope": "configuration", + "anchor": "--experimental-vm-modules", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:8d627ff9c6d0", + "chapter": "cli", + "kind": "module", + "name": "`--experimental-wasi-unstable-preview1`", + "signature": "`--experimental-wasi-unstable-preview1`", + "label": "--experimental-wasi-unstable-preview1", + "apiSymbol": "--experimental-wasi-unstable-preview1", + "depth": 2, + "scope": "configuration", + "anchor": "--experimental-wasi-unstable-preview1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:8446668ebfb8", + "chapter": "cli", + "kind": "module", + "name": "`--experimental-webstorage`", + "signature": "`--experimental-webstorage`", + "label": "--experimental-webstorage", + "apiSymbol": "--experimental-webstorage", + "depth": 2, + "scope": "configuration", + "anchor": "--experimental-webstorage", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:962da177f990", + "chapter": "cli", + "kind": "module", + "name": "`--experimental-worker-inspection`", + "signature": "`--experimental-worker-inspection`", + "label": "--experimental-worker-inspection", + "apiSymbol": "--experimental-worker-inspection", + "depth": 2, + "scope": "configuration", + "anchor": "--experimental-worker-inspection", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active Development", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:b77431a408ae", + "chapter": "cli", + "kind": "module", + "name": "`--expose-gc`", + "signature": "`--expose-gc`", + "label": "--expose-gc", + "apiSymbol": "--expose-gc", + "depth": 2, + "scope": "configuration", + "anchor": "--expose-gc", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. This flag is inherited from V8 and is subject to change upstream.", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:69ce4c329bc6", + "chapter": "cli", + "kind": "module", + "name": "`--force-context-aware`", + "signature": "`--force-context-aware`", + "label": "--force-context-aware", + "apiSymbol": "--force-context-aware", + "depth": 2, + "scope": "configuration", + "anchor": "--force-context-aware", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:8733c070f553", + "chapter": "cli", + "kind": "module", + "name": "`--force-fips`", + "signature": "`--force-fips`", + "label": "--force-fips", + "apiSymbol": "--force-fips", + "depth": 2, + "scope": "configuration", + "anchor": "--force-fips", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:698a4267698a", + "chapter": "cli", + "kind": "module", + "name": "`--force-node-api-uncaught-exceptions-policy`", + "signature": "`--force-node-api-uncaught-exceptions-policy`", + "label": "--force-node-api-uncaught-exceptions-policy", + "apiSymbol": "--force-node-api-uncaught-exceptions-policy", + "depth": 2, + "scope": "configuration", + "anchor": "--force-node-api-uncaught-exceptions-policy", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:62f0661d6b7b", + "chapter": "cli", + "kind": "module", + "name": "`--frozen-intrinsics`", + "signature": "`--frozen-intrinsics`", + "label": "--frozen-intrinsics", + "apiSymbol": "--frozen-intrinsics", + "depth": 2, + "scope": "configuration", + "anchor": "--frozen-intrinsics", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:e12b1e4c3280", + "chapter": "cli", + "kind": "module", + "name": "`--heap-prof`", + "signature": "`--heap-prof`", + "label": "--heap-prof", + "apiSymbol": "--heap-prof", + "depth": 2, + "scope": "configuration", + "anchor": "--heap-prof", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:0800c0e69515", + "chapter": "cli", + "kind": "module", + "name": "`--heap-prof-dir`", + "signature": "`--heap-prof-dir`", + "label": "--heap-prof-dir", + "apiSymbol": "--heap-prof-dir", + "depth": 2, + "scope": "configuration", + "anchor": "--heap-prof-dir", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:7c13af642c34", + "chapter": "cli", + "kind": "module", + "name": "`--heap-prof-interval`", + "signature": "`--heap-prof-interval`", + "label": "--heap-prof-interval", + "apiSymbol": "--heap-prof-interval", + "depth": 2, + "scope": "configuration", + "anchor": "--heap-prof-interval", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:2598a377dfc7", + "chapter": "cli", + "kind": "module", + "name": "`--heap-prof-name`", + "signature": "`--heap-prof-name`", + "label": "--heap-prof-name", + "apiSymbol": "--heap-prof-name", + "depth": 2, + "scope": "configuration", + "anchor": "--heap-prof-name", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:0dc24659d7fd", + "chapter": "cli", + "kind": "module", + "name": "`--heapsnapshot-near-heap-limit=max_count`", + "signature": "`--heapsnapshot-near-heap-limit=max_count`", + "label": "--heapsnapshot-near-heap-limit=max_count", + "apiSymbol": "--heapsnapshot-near-heap-limit", + "depth": 2, + "scope": "configuration", + "anchor": "--heapsnapshot-near-heap-limitmax_count", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:76726f77e0db", + "chapter": "cli", + "kind": "module", + "name": "`--heapsnapshot-signal=signal`", + "signature": "`--heapsnapshot-signal=signal`", + "label": "--heapsnapshot-signal=signal", + "apiSymbol": "--heapsnapshot-signal", + "depth": 2, + "scope": "configuration", + "anchor": "--heapsnapshot-signalsignal", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:a46c6512697a", + "chapter": "cli", + "kind": "module", + "name": "`-h`,_`--help`", + "signature": "`-h`, `--help`", + "label": "-h", + "apiSymbol": "-h", + "depth": 2, + "scope": "configuration", + "anchor": "-h---help", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:f2e8992d4eb5", + "chapter": "cli", + "kind": "module", + "name": "`--icu-data-dir=file`", + "signature": "`--icu-data-dir=file`", + "label": "--icu-data-dir=file", + "apiSymbol": "--icu-data-dir", + "depth": 2, + "scope": "configuration", + "anchor": "--icu-data-dirfile", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:c923f32c2d95", + "chapter": "cli", + "kind": "module", + "name": "`--import=module`", + "signature": "`--import=module`", + "label": "--import=module", + "apiSymbol": "--import", + "depth": 2, + "scope": "configuration", + "anchor": "--importmodule", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:4328d7d059e7", + "chapter": "cli", + "kind": "module", + "name": "`--input-type=type`", + "signature": "`--input-type=type`", + "label": "--input-type=type", + "apiSymbol": "--input-type", + "depth": 2, + "scope": "configuration", + "anchor": "--input-typetype", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:b2a2f34bc48c", + "chapter": "cli", + "kind": "module", + "name": "`--insecure-http-parser`", + "signature": "`--insecure-http-parser`", + "label": "--insecure-http-parser", + "apiSymbol": "--insecure-http-parser", + "depth": 2, + "scope": "configuration", + "anchor": "--insecure-http-parser", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:7e24687526cb", + "chapter": "cli", + "kind": "module", + "name": "`--inspect-brk[=[host:]port]`", + "signature": "`--inspect-brk[=[host:]port]`", + "label": "--inspect-brk[=[host:]port]", + "apiSymbol": "--inspect-brk", + "depth": 2, + "scope": "configuration", + "anchor": "--inspect-brkhostport", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:d026ff988c75", + "chapter": "cli", + "kind": "module", + "name": "`--inspect-port=[host:]port`", + "signature": "`--inspect-port=[host:]port`", + "label": "--inspect-port=[host:]port", + "apiSymbol": "--inspect-port", + "depth": 2, + "scope": "configuration", + "anchor": "--inspect-porthostport", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:f7806115c3f3", + "chapter": "cli", + "kind": "module", + "name": "`--inspect-publish-uid=stderr,http`", + "signature": "`--inspect-publish-uid=stderr,http`", + "label": "--inspect-publish-uid=stderr,http", + "apiSymbol": "--inspect-publish-uid", + "depth": 2, + "scope": "configuration", + "anchor": "--inspect-publish-uidstderrhttp", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:fcc7990d2632", + "chapter": "cli", + "kind": "module", + "name": "`--inspect-wait[=[host:]port]`", + "signature": "`--inspect-wait[=[host:]port]`", + "label": "--inspect-wait[=[host:]port]", + "apiSymbol": "--inspect-wait", + "depth": 2, + "scope": "configuration", + "anchor": "--inspect-waithostport", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:545229de2583", + "chapter": "cli", + "kind": "module", + "name": "`--inspect[=[host:]port]`", + "signature": "`--inspect[=[host:]port]`", + "label": "--inspect[=[host:]port]", + "apiSymbol": "--inspect", + "depth": 2, + "scope": "configuration", + "anchor": "--inspecthostport", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:8ece76e4bd52", + "chapter": "cli", + "kind": "module", + "name": "warning:_binding_inspector_to_a_public_ip:port_combination_is_insecure", + "signature": "Warning: binding inspector to a public IP:port combination is insecure", + "label": "Warning: binding inspector to a public IP:port combination is insecure", + "apiSymbol": "warning:_binding_inspector_to_a_public_ip:port_combination_is_insecure", + "depth": 3, + "scope": "configuration", + "anchor": "warning-binding-inspector-to-a-public-ipport-combination-is-insecure", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:0709c51115c4", + "chapter": "cli", + "kind": "module", + "name": "`-i`,_`--interactive`", + "signature": "`-i`, `--interactive`", + "label": "-i", + "apiSymbol": "-i", + "depth": 2, + "scope": "configuration", + "anchor": "-i---interactive", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:9d3cc75e01cf", + "chapter": "cli", + "kind": "module", + "name": "`--jitless`", + "signature": "`--jitless`", + "label": "--jitless", + "apiSymbol": "--jitless", + "depth": 2, + "scope": "configuration", + "anchor": "--jitless", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. This flag is inherited from V8 and is subject to change upstream.", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:5d384f59cb0b", + "chapter": "cli", + "kind": "module", + "name": "`--localstorage-file=file`", + "signature": "`--localstorage-file=file`", + "label": "--localstorage-file=file", + "apiSymbol": "--localstorage-file", + "depth": 2, + "scope": "configuration", + "anchor": "--localstorage-filefile", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate. Enable this API with [`--experimental-webstorage`][].", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:75a8677b7bbb", + "chapter": "cli", + "kind": "module", + "name": "`--max-http-header-size=size`", + "signature": "`--max-http-header-size=size`", + "label": "--max-http-header-size=size", + "apiSymbol": "--max-http-header-size", + "depth": 2, + "scope": "configuration", + "anchor": "--max-http-header-sizesize", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:af385925c335", + "chapter": "cli", + "kind": "module", + "name": "`--max-old-space-size-percentage=percentage`", + "signature": "`--max-old-space-size-percentage=percentage`", + "label": "--max-old-space-size-percentage=percentage", + "apiSymbol": "--max-old-space-size-percentage", + "depth": 2, + "scope": "configuration", + "anchor": "--max-old-space-size-percentagepercentage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:276ecc0e24f9", + "chapter": "cli", + "kind": "module", + "name": "`--napi-modules`", + "signature": "`--napi-modules`", + "label": "--napi-modules", + "apiSymbol": "--napi-modules", + "depth": 2, + "scope": "configuration", + "anchor": "--napi-modules", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:9148c571df3c", + "chapter": "cli", + "kind": "module", + "name": "`--network-family-autoselection-attempt-timeout`", + "signature": "`--network-family-autoselection-attempt-timeout`", + "label": "--network-family-autoselection-attempt-timeout", + "apiSymbol": "--network-family-autoselection-attempt-timeout", + "depth": 2, + "scope": "configuration", + "anchor": "--network-family-autoselection-attempt-timeout", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:bc6d0b2fa007", + "chapter": "cli", + "kind": "module", + "name": "`--no-addons`", + "signature": "`--no-addons`", + "label": "--no-addons", + "apiSymbol": "--no-addons", + "depth": 2, + "scope": "configuration", + "anchor": "--no-addons", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:3b0a9cab69c7", + "chapter": "cli", + "kind": "module", + "name": "`--no-async-context-frame`", + "signature": "`--no-async-context-frame`", + "label": "--no-async-context-frame", + "apiSymbol": "--no-async-context-frame", + "depth": 2, + "scope": "configuration", + "anchor": "--no-async-context-frame", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:19869ebac605", + "chapter": "cli", + "kind": "module", + "name": "`--no-deprecation`", + "signature": "`--no-deprecation`", + "label": "--no-deprecation", + "apiSymbol": "--no-deprecation", + "depth": 2, + "scope": "configuration", + "anchor": "--no-deprecation", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:f86074cbfb1b", + "chapter": "cli", + "kind": "module", + "name": "`--no-experimental-detect-module`", + "signature": "`--no-experimental-detect-module`", + "label": "--no-experimental-detect-module", + "apiSymbol": "--no-experimental-detect-module", + "depth": 2, + "scope": "configuration", + "anchor": "--no-experimental-detect-module", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:0548bebda606", + "chapter": "cli", + "kind": "module", + "name": "`--no-experimental-global-navigator`", + "signature": "`--no-experimental-global-navigator`", + "label": "--no-experimental-global-navigator", + "apiSymbol": "--no-experimental-global-navigator", + "depth": 2, + "scope": "configuration", + "anchor": "--no-experimental-global-navigator", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:2f83f802fcd1", + "chapter": "cli", + "kind": "module", + "name": "`--no-experimental-repl-await`", + "signature": "`--no-experimental-repl-await`", + "label": "--no-experimental-repl-await", + "apiSymbol": "--no-experimental-repl-await", + "depth": 2, + "scope": "configuration", + "anchor": "--no-experimental-repl-await", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:af524abf200c", + "chapter": "cli", + "kind": "module", + "name": "`--no-experimental-require-module`", + "signature": "`--no-experimental-require-module`", + "label": "--no-experimental-require-module", + "apiSymbol": "--no-experimental-require-module", + "depth": 2, + "scope": "configuration", + "anchor": "--no-experimental-require-module", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use [`--no-require-module`][] instead.", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:f74dfddb2cee", + "chapter": "cli", + "kind": "module", + "name": "`--no-experimental-sqlite`", + "signature": "`--no-experimental-sqlite`", + "label": "--no-experimental-sqlite", + "apiSymbol": "--no-experimental-sqlite", + "depth": 2, + "scope": "configuration", + "anchor": "--no-experimental-sqlite", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:41f02960c671", + "chapter": "cli", + "kind": "module", + "name": "`--no-experimental-websocket`", + "signature": "`--no-experimental-websocket`", + "label": "--no-experimental-websocket", + "apiSymbol": "--no-experimental-websocket", + "depth": 2, + "scope": "configuration", + "anchor": "--no-experimental-websocket", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:52207344b3d9", + "chapter": "cli", + "kind": "module", + "name": "`--no-extra-info-on-fatal-exception`", + "signature": "`--no-extra-info-on-fatal-exception`", + "label": "--no-extra-info-on-fatal-exception", + "apiSymbol": "--no-extra-info-on-fatal-exception", + "depth": 2, + "scope": "configuration", + "anchor": "--no-extra-info-on-fatal-exception", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:c6dd4c9a944a", + "chapter": "cli", + "kind": "module", + "name": "`--no-force-async-hooks-checks`", + "signature": "`--no-force-async-hooks-checks`", + "label": "--no-force-async-hooks-checks", + "apiSymbol": "--no-force-async-hooks-checks", + "depth": 2, + "scope": "configuration", + "anchor": "--no-force-async-hooks-checks", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:57640b3df8ea", + "chapter": "cli", + "kind": "module", + "name": "`--no-global-search-paths`", + "signature": "`--no-global-search-paths`", + "label": "--no-global-search-paths", + "apiSymbol": "--no-global-search-paths", + "depth": 2, + "scope": "configuration", + "anchor": "--no-global-search-paths", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:54fcb45f26a5", + "chapter": "cli", + "kind": "module", + "name": "`--no-network-family-autoselection`", + "signature": "`--no-network-family-autoselection`", + "label": "--no-network-family-autoselection", + "apiSymbol": "--no-network-family-autoselection", + "depth": 2, + "scope": "configuration", + "anchor": "--no-network-family-autoselection", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:366a3169ac01", + "chapter": "cli", + "kind": "module", + "name": "`--no-require-module`", + "signature": "`--no-require-module`", + "label": "--no-require-module", + "apiSymbol": "--no-require-module", + "depth": 2, + "scope": "configuration", + "anchor": "--no-require-module", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:13095eba8ad3", + "chapter": "cli", + "kind": "module", + "name": "`--no-strip-types`", + "signature": "`--no-strip-types`", + "label": "--no-strip-types", + "apiSymbol": "--no-strip-types", + "depth": 2, + "scope": "configuration", + "anchor": "--no-strip-types", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:4b9067eacaa1", + "chapter": "cli", + "kind": "module", + "name": "`--no-warnings`", + "signature": "`--no-warnings`", + "label": "--no-warnings", + "apiSymbol": "--no-warnings", + "depth": 2, + "scope": "configuration", + "anchor": "--no-warnings", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:6699e5a0fd34", + "chapter": "cli", + "kind": "module", + "name": "`--node-memory-debug`", + "signature": "`--node-memory-debug`", + "label": "--node-memory-debug", + "apiSymbol": "--node-memory-debug", + "depth": 2, + "scope": "configuration", + "anchor": "--node-memory-debug", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:6c72fbe376c7", + "chapter": "cli", + "kind": "module", + "name": "`--openssl-config=file`", + "signature": "`--openssl-config=file`", + "label": "--openssl-config=file", + "apiSymbol": "--openssl-config", + "depth": 2, + "scope": "configuration", + "anchor": "--openssl-configfile", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:e2dcf3f2356c", + "chapter": "cli", + "kind": "module", + "name": "`--openssl-legacy-provider`", + "signature": "`--openssl-legacy-provider`", + "label": "--openssl-legacy-provider", + "apiSymbol": "--openssl-legacy-provider", + "depth": 2, + "scope": "configuration", + "anchor": "--openssl-legacy-provider", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:89fdbeac4179", + "chapter": "cli", + "kind": "module", + "name": "`--openssl-shared-config`", + "signature": "`--openssl-shared-config`", + "label": "--openssl-shared-config", + "apiSymbol": "--openssl-shared-config", + "depth": 2, + "scope": "configuration", + "anchor": "--openssl-shared-config", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:545002f77abf", + "chapter": "cli", + "kind": "module", + "name": "`--pending-deprecation`", + "signature": "`--pending-deprecation`", + "label": "--pending-deprecation", + "apiSymbol": "--pending-deprecation", + "depth": 2, + "scope": "configuration", + "anchor": "--pending-deprecation", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:133e60862cd8", + "chapter": "cli", + "kind": "module", + "name": "`--permission`", + "signature": "`--permission`", + "label": "--permission", + "apiSymbol": "--permission", + "depth": 2, + "scope": "configuration", + "anchor": "--permission", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:181fba1bad2e", + "chapter": "cli", + "kind": "module", + "name": "`--preserve-symlinks`", + "signature": "`--preserve-symlinks`", + "label": "--preserve-symlinks", + "apiSymbol": "--preserve-symlinks", + "depth": 2, + "scope": "configuration", + "anchor": "--preserve-symlinks", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:5ecf05ea7da0", + "chapter": "cli", + "kind": "module", + "name": "`--preserve-symlinks-main`", + "signature": "`--preserve-symlinks-main`", + "label": "--preserve-symlinks-main", + "apiSymbol": "--preserve-symlinks-main", + "depth": 2, + "scope": "configuration", + "anchor": "--preserve-symlinks-main", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:dbb3e43ec7ca", + "chapter": "cli", + "kind": "module", + "name": "`-p`,_`--print_\"script\"`", + "signature": "`-p`, `--print \"script\"`", + "label": "-p", + "apiSymbol": "-p", + "depth": 2, + "scope": "configuration", + "anchor": "-p---print-script", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:a790587dc8a0", + "chapter": "cli", + "kind": "module", + "name": "`--prof`", + "signature": "`--prof`", + "label": "--prof", + "apiSymbol": "--prof", + "depth": 2, + "scope": "configuration", + "anchor": "--prof", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:e655d340a723", + "chapter": "cli", + "kind": "module", + "name": "`--prof-process`", + "signature": "`--prof-process`", + "label": "--prof-process", + "apiSymbol": "--prof-process", + "depth": 2, + "scope": "configuration", + "anchor": "--prof-process", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:0f05a17a8f33", + "chapter": "cli", + "kind": "module", + "name": "`--redirect-warnings=file`", + "signature": "`--redirect-warnings=file`", + "label": "--redirect-warnings=file", + "apiSymbol": "--redirect-warnings", + "depth": 2, + "scope": "configuration", + "anchor": "--redirect-warningsfile", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:99476696b8ab", + "chapter": "cli", + "kind": "module", + "name": "`--report-compact`", + "signature": "`--report-compact`", + "label": "--report-compact", + "apiSymbol": "--report-compact", + "depth": 2, + "scope": "configuration", + "anchor": "--report-compact", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:41c26c2416a4", + "chapter": "cli", + "kind": "module", + "name": "`--report-dir=directory`,_`report-directory=directory`", + "signature": "`--report-dir=directory`, `report-directory=directory`", + "label": "--report-dir=directory", + "apiSymbol": "--report-dir", + "depth": 2, + "scope": "configuration", + "anchor": "--report-dirdirectory-report-directorydirectory", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:38e548df0773", + "chapter": "cli", + "kind": "module", + "name": "`--report-exclude-env`", + "signature": "`--report-exclude-env`", + "label": "--report-exclude-env", + "apiSymbol": "--report-exclude-env", + "depth": 2, + "scope": "configuration", + "anchor": "--report-exclude-env", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:5c05a5ba3a6e", + "chapter": "cli", + "kind": "module", + "name": "`--report-exclude-network`", + "signature": "`--report-exclude-network`", + "label": "--report-exclude-network", + "apiSymbol": "--report-exclude-network", + "depth": 2, + "scope": "configuration", + "anchor": "--report-exclude-network", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:6e34e30c937f", + "chapter": "cli", + "kind": "module", + "name": "`--report-filename=filename`", + "signature": "`--report-filename=filename`", + "label": "--report-filename=filename", + "apiSymbol": "--report-filename", + "depth": 2, + "scope": "configuration", + "anchor": "--report-filenamefilename", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:fcd130fad4b1", + "chapter": "cli", + "kind": "module", + "name": "`--report-on-fatalerror`", + "signature": "`--report-on-fatalerror`", + "label": "--report-on-fatalerror", + "apiSymbol": "--report-on-fatalerror", + "depth": 2, + "scope": "configuration", + "anchor": "--report-on-fatalerror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:d65c8652854f", + "chapter": "cli", + "kind": "module", + "name": "`--report-on-signal`", + "signature": "`--report-on-signal`", + "label": "--report-on-signal", + "apiSymbol": "--report-on-signal", + "depth": 2, + "scope": "configuration", + "anchor": "--report-on-signal", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:6f6ee0bbee09", + "chapter": "cli", + "kind": "module", + "name": "`--report-signal=signal`", + "signature": "`--report-signal=signal`", + "label": "--report-signal=signal", + "apiSymbol": "--report-signal", + "depth": 2, + "scope": "configuration", + "anchor": "--report-signalsignal", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:26c6adf5fa21", + "chapter": "cli", + "kind": "module", + "name": "`--report-uncaught-exception`", + "signature": "`--report-uncaught-exception`", + "label": "--report-uncaught-exception", + "apiSymbol": "--report-uncaught-exception", + "depth": 2, + "scope": "configuration", + "anchor": "--report-uncaught-exception", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:809196a585ed", + "chapter": "cli", + "kind": "module", + "name": "`-r`,_`--require_module`", + "signature": "`-r`, `--require module`", + "label": "-r", + "apiSymbol": "-r", + "depth": 2, + "scope": "configuration", + "anchor": "-r---require-module", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:780ba3ade7ec", + "chapter": "cli", + "kind": "module", + "name": "`--run`", + "signature": "`--run`", + "label": "--run", + "apiSymbol": "--run", + "depth": 2, + "scope": "configuration", + "anchor": "--run", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:29c0a610db13", + "chapter": "cli", + "kind": "module", + "name": "intentional_limitations", + "signature": "Intentional limitations", + "label": "Intentional limitations", + "apiSymbol": "intentional_limitations", + "depth": 3, + "scope": "configuration", + "anchor": "intentional-limitations", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:a56b01e8b830", + "chapter": "cli", + "kind": "module", + "name": "environment_variables", + "signature": "Environment variables", + "label": "Environment variables", + "apiSymbol": "environment_variables", + "depth": 3, + "scope": "configuration", + "anchor": "environment-variables", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:362c7d389bed", + "chapter": "cli", + "kind": "module", + "name": "`--secure-heap-min=n`", + "signature": "`--secure-heap-min=n`", + "label": "--secure-heap-min=n", + "apiSymbol": "--secure-heap-min", + "depth": 2, + "scope": "configuration", + "anchor": "--secure-heap-minn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:911ca1cc264e", + "chapter": "cli", + "kind": "module", + "name": "`--secure-heap=n`", + "signature": "`--secure-heap=n`", + "label": "--secure-heap=n", + "apiSymbol": "--secure-heap", + "depth": 2, + "scope": "configuration", + "anchor": "--secure-heapn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:621b70646dbc", + "chapter": "cli", + "kind": "module", + "name": "`--snapshot-blob=path`", + "signature": "`--snapshot-blob=path`", + "label": "--snapshot-blob=path", + "apiSymbol": "--snapshot-blob", + "depth": 2, + "scope": "configuration", + "anchor": "--snapshot-blobpath", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:c973cddeafe2", + "chapter": "cli", + "kind": "module", + "name": "`--test`", + "signature": "`--test`", + "label": "--test", + "apiSymbol": "--test", + "depth": 2, + "scope": "configuration", + "anchor": "--test", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:cc124779f7b2", + "chapter": "cli", + "kind": "module", + "name": "`--test-concurrency`", + "signature": "`--test-concurrency`", + "label": "--test-concurrency", + "apiSymbol": "--test-concurrency", + "depth": 2, + "scope": "configuration", + "anchor": "--test-concurrency", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:31d6c125e710", + "chapter": "cli", + "kind": "module", + "name": "`--test-coverage-branches=threshold`", + "signature": "`--test-coverage-branches=threshold`", + "label": "--test-coverage-branches=threshold", + "apiSymbol": "--test-coverage-branches", + "depth": 2, + "scope": "configuration", + "anchor": "--test-coverage-branchesthreshold", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:f270c4b8a85d", + "chapter": "cli", + "kind": "module", + "name": "`--test-coverage-exclude`", + "signature": "`--test-coverage-exclude`", + "label": "--test-coverage-exclude", + "apiSymbol": "--test-coverage-exclude", + "depth": 2, + "scope": "configuration", + "anchor": "--test-coverage-exclude", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:33c37f654c19", + "chapter": "cli", + "kind": "module", + "name": "`--test-coverage-functions=threshold`", + "signature": "`--test-coverage-functions=threshold`", + "label": "--test-coverage-functions=threshold", + "apiSymbol": "--test-coverage-functions", + "depth": 2, + "scope": "configuration", + "anchor": "--test-coverage-functionsthreshold", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:5e3dda0a12d9", + "chapter": "cli", + "kind": "module", + "name": "`--test-coverage-include`", + "signature": "`--test-coverage-include`", + "label": "--test-coverage-include", + "apiSymbol": "--test-coverage-include", + "depth": 2, + "scope": "configuration", + "anchor": "--test-coverage-include", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:25e384f474b7", + "chapter": "cli", + "kind": "module", + "name": "`--test-coverage-lines=threshold`", + "signature": "`--test-coverage-lines=threshold`", + "label": "--test-coverage-lines=threshold", + "apiSymbol": "--test-coverage-lines", + "depth": 2, + "scope": "configuration", + "anchor": "--test-coverage-linesthreshold", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:5ba839049557", + "chapter": "cli", + "kind": "module", + "name": "`--test-force-exit`", + "signature": "`--test-force-exit`", + "label": "--test-force-exit", + "apiSymbol": "--test-force-exit", + "depth": 2, + "scope": "configuration", + "anchor": "--test-force-exit", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:dfc1b629aabf", + "chapter": "cli", + "kind": "module", + "name": "`--test-global-setup=module`", + "signature": "`--test-global-setup=module`", + "label": "--test-global-setup=module", + "apiSymbol": "--test-global-setup", + "depth": 2, + "scope": "configuration", + "anchor": "--test-global-setupmodule", + "nodeStability": { + "index": "1.0", + "level": 1, + "text": "Early development", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:ee0d2542143b", + "chapter": "cli", + "kind": "module", + "name": "`--test-isolation=mode`", + "signature": "`--test-isolation=mode`", + "label": "--test-isolation=mode", + "apiSymbol": "--test-isolation", + "depth": 2, + "scope": "configuration", + "anchor": "--test-isolationmode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:378f5d7455ce", + "chapter": "cli", + "kind": "module", + "name": "`--test-name-pattern`", + "signature": "`--test-name-pattern`", + "label": "--test-name-pattern", + "apiSymbol": "--test-name-pattern", + "depth": 2, + "scope": "configuration", + "anchor": "--test-name-pattern", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:571c10ef3cf0", + "chapter": "cli", + "kind": "module", + "name": "`--test-only`", + "signature": "`--test-only`", + "label": "--test-only", + "apiSymbol": "--test-only", + "depth": 2, + "scope": "configuration", + "anchor": "--test-only", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:27374445e9d5", + "chapter": "cli", + "kind": "module", + "name": "`--test-reporter`", + "signature": "`--test-reporter`", + "label": "--test-reporter", + "apiSymbol": "--test-reporter", + "depth": 2, + "scope": "configuration", + "anchor": "--test-reporter", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:104f0d25f351", + "chapter": "cli", + "kind": "module", + "name": "`--test-reporter-destination`", + "signature": "`--test-reporter-destination`", + "label": "--test-reporter-destination", + "apiSymbol": "--test-reporter-destination", + "depth": 2, + "scope": "configuration", + "anchor": "--test-reporter-destination", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:1f2d3164b694", + "chapter": "cli", + "kind": "module", + "name": "`--test-rerun-failures`", + "signature": "`--test-rerun-failures`", + "label": "--test-rerun-failures", + "apiSymbol": "--test-rerun-failures", + "depth": 2, + "scope": "configuration", + "anchor": "--test-rerun-failures", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:66ead44c1fc7", + "chapter": "cli", + "kind": "module", + "name": "`--test-shard`", + "signature": "`--test-shard`", + "label": "--test-shard", + "apiSymbol": "--test-shard", + "depth": 2, + "scope": "configuration", + "anchor": "--test-shard", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:a1e64613e4db", + "chapter": "cli", + "kind": "module", + "name": "`--test-skip-pattern`", + "signature": "`--test-skip-pattern`", + "label": "--test-skip-pattern", + "apiSymbol": "--test-skip-pattern", + "depth": 2, + "scope": "configuration", + "anchor": "--test-skip-pattern", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:5aaefcf13736", + "chapter": "cli", + "kind": "module", + "name": "`--test-timeout`", + "signature": "`--test-timeout`", + "label": "--test-timeout", + "apiSymbol": "--test-timeout", + "depth": 2, + "scope": "configuration", + "anchor": "--test-timeout", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:72c713150501", + "chapter": "cli", + "kind": "module", + "name": "`--test-update-snapshots`", + "signature": "`--test-update-snapshots`", + "label": "--test-update-snapshots", + "apiSymbol": "--test-update-snapshots", + "depth": 2, + "scope": "configuration", + "anchor": "--test-update-snapshots", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:55ce5079503f", + "chapter": "cli", + "kind": "module", + "name": "`--throw-deprecation`", + "signature": "`--throw-deprecation`", + "label": "--throw-deprecation", + "apiSymbol": "--throw-deprecation", + "depth": 2, + "scope": "configuration", + "anchor": "--throw-deprecation", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:411dae884952", + "chapter": "cli", + "kind": "module", + "name": "`--title=title`", + "signature": "`--title=title`", + "label": "--title=title", + "apiSymbol": "--title", + "depth": 2, + "scope": "configuration", + "anchor": "--titletitle", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:2c92f74e34db", + "chapter": "cli", + "kind": "module", + "name": "`--tls-cipher-list=list`", + "signature": "`--tls-cipher-list=list`", + "label": "--tls-cipher-list=list", + "apiSymbol": "--tls-cipher-list", + "depth": 2, + "scope": "configuration", + "anchor": "--tls-cipher-listlist", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:7b73bbb0f61f", + "chapter": "cli", + "kind": "module", + "name": "`--tls-keylog=file`", + "signature": "`--tls-keylog=file`", + "label": "--tls-keylog=file", + "apiSymbol": "--tls-keylog", + "depth": 2, + "scope": "configuration", + "anchor": "--tls-keylogfile", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:a37fcc19681d", + "chapter": "cli", + "kind": "module", + "name": "`--tls-max-v1.2`", + "signature": "`--tls-max-v1.2`", + "label": "--tls-max-v1.2", + "apiSymbol": "--tls-max-v1.2", + "depth": 2, + "scope": "configuration", + "anchor": "--tls-max-v12", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:3ced9ca71074", + "chapter": "cli", + "kind": "module", + "name": "`--tls-max-v1.3`", + "signature": "`--tls-max-v1.3`", + "label": "--tls-max-v1.3", + "apiSymbol": "--tls-max-v1.3", + "depth": 2, + "scope": "configuration", + "anchor": "--tls-max-v13", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:237aafdc99ad", + "chapter": "cli", + "kind": "module", + "name": "`--tls-min-v1.0`", + "signature": "`--tls-min-v1.0`", + "label": "--tls-min-v1.0", + "apiSymbol": "--tls-min-v1.0", + "depth": 2, + "scope": "configuration", + "anchor": "--tls-min-v10", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:7d6b5e86ac98", + "chapter": "cli", + "kind": "module", + "name": "`--tls-min-v1.1`", + "signature": "`--tls-min-v1.1`", + "label": "--tls-min-v1.1", + "apiSymbol": "--tls-min-v1.1", + "depth": 2, + "scope": "configuration", + "anchor": "--tls-min-v11", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:8485cec38041", + "chapter": "cli", + "kind": "module", + "name": "`--tls-min-v1.2`", + "signature": "`--tls-min-v1.2`", + "label": "--tls-min-v1.2", + "apiSymbol": "--tls-min-v1.2", + "depth": 2, + "scope": "configuration", + "anchor": "--tls-min-v12", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:ff73ac2d3459", + "chapter": "cli", + "kind": "module", + "name": "`--tls-min-v1.3`", + "signature": "`--tls-min-v1.3`", + "label": "--tls-min-v1.3", + "apiSymbol": "--tls-min-v1.3", + "depth": 2, + "scope": "configuration", + "anchor": "--tls-min-v13", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:41f8357f0f00", + "chapter": "cli", + "kind": "module", + "name": "`--trace-deprecation`", + "signature": "`--trace-deprecation`", + "label": "--trace-deprecation", + "apiSymbol": "--trace-deprecation", + "depth": 2, + "scope": "configuration", + "anchor": "--trace-deprecation", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:0da40ce905fb", + "chapter": "cli", + "kind": "module", + "name": "`--trace-env`", + "signature": "`--trace-env`", + "label": "--trace-env", + "apiSymbol": "--trace-env", + "depth": 2, + "scope": "configuration", + "anchor": "--trace-env", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:11e792bbe346", + "chapter": "cli", + "kind": "module", + "name": "`--trace-env-js-stack`", + "signature": "`--trace-env-js-stack`", + "label": "--trace-env-js-stack", + "apiSymbol": "--trace-env-js-stack", + "depth": 2, + "scope": "configuration", + "anchor": "--trace-env-js-stack", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:e32fdb663f72", + "chapter": "cli", + "kind": "module", + "name": "`--trace-env-native-stack`", + "signature": "`--trace-env-native-stack`", + "label": "--trace-env-native-stack", + "apiSymbol": "--trace-env-native-stack", + "depth": 2, + "scope": "configuration", + "anchor": "--trace-env-native-stack", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:fdc73a815541", + "chapter": "cli", + "kind": "module", + "name": "`--trace-event-categories`", + "signature": "`--trace-event-categories`", + "label": "--trace-event-categories", + "apiSymbol": "--trace-event-categories", + "depth": 2, + "scope": "configuration", + "anchor": "--trace-event-categories", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:9af2cf395301", + "chapter": "cli", + "kind": "module", + "name": "`--trace-event-file-pattern`", + "signature": "`--trace-event-file-pattern`", + "label": "--trace-event-file-pattern", + "apiSymbol": "--trace-event-file-pattern", + "depth": 2, + "scope": "configuration", + "anchor": "--trace-event-file-pattern", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:83b6ba36038a", + "chapter": "cli", + "kind": "module", + "name": "`--trace-events-enabled`", + "signature": "`--trace-events-enabled`", + "label": "--trace-events-enabled", + "apiSymbol": "--trace-events-enabled", + "depth": 2, + "scope": "configuration", + "anchor": "--trace-events-enabled", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:021e22c2f826", + "chapter": "cli", + "kind": "module", + "name": "`--trace-exit`", + "signature": "`--trace-exit`", + "label": "--trace-exit", + "apiSymbol": "--trace-exit", + "depth": 2, + "scope": "configuration", + "anchor": "--trace-exit", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:5ff65f5d6bf2", + "chapter": "cli", + "kind": "module", + "name": "`--trace-require-module=mode`", + "signature": "`--trace-require-module=mode`", + "label": "--trace-require-module=mode", + "apiSymbol": "--trace-require-module", + "depth": 2, + "scope": "configuration", + "anchor": "--trace-require-modulemode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:617896c39794", + "chapter": "cli", + "kind": "module", + "name": "`--trace-sigint`", + "signature": "`--trace-sigint`", + "label": "--trace-sigint", + "apiSymbol": "--trace-sigint", + "depth": 2, + "scope": "configuration", + "anchor": "--trace-sigint", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:6508c2e0162e", + "chapter": "cli", + "kind": "module", + "name": "`--trace-sync-io`", + "signature": "`--trace-sync-io`", + "label": "--trace-sync-io", + "apiSymbol": "--trace-sync-io", + "depth": 2, + "scope": "configuration", + "anchor": "--trace-sync-io", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:fb970b78b949", + "chapter": "cli", + "kind": "module", + "name": "`--trace-tls`", + "signature": "`--trace-tls`", + "label": "--trace-tls", + "apiSymbol": "--trace-tls", + "depth": 2, + "scope": "configuration", + "anchor": "--trace-tls", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:bc0fb5811ae5", + "chapter": "cli", + "kind": "module", + "name": "`--trace-uncaught`", + "signature": "`--trace-uncaught`", + "label": "--trace-uncaught", + "apiSymbol": "--trace-uncaught", + "depth": 2, + "scope": "configuration", + "anchor": "--trace-uncaught", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:294b2f573e19", + "chapter": "cli", + "kind": "module", + "name": "`--trace-warnings`", + "signature": "`--trace-warnings`", + "label": "--trace-warnings", + "apiSymbol": "--trace-warnings", + "depth": 2, + "scope": "configuration", + "anchor": "--trace-warnings", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:9204a3f2c1f8", + "chapter": "cli", + "kind": "module", + "name": "`--track-heap-objects`", + "signature": "`--track-heap-objects`", + "label": "--track-heap-objects", + "apiSymbol": "--track-heap-objects", + "depth": 2, + "scope": "configuration", + "anchor": "--track-heap-objects", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:e8d6d286639b", + "chapter": "cli", + "kind": "module", + "name": "`--unhandled-rejections=mode`", + "signature": "`--unhandled-rejections=mode`", + "label": "--unhandled-rejections=mode", + "apiSymbol": "--unhandled-rejections", + "depth": 2, + "scope": "configuration", + "anchor": "--unhandled-rejectionsmode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:a3b364879378", + "chapter": "cli", + "kind": "module", + "name": "`--use-bundled-ca`,_`--use-openssl-ca`", + "signature": "`--use-bundled-ca`, `--use-openssl-ca`", + "label": "--use-bundled-ca", + "apiSymbol": "--use-bundled-ca", + "depth": 2, + "scope": "configuration", + "anchor": "--use-bundled-ca---use-openssl-ca", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:d0c7dc61bf29", + "chapter": "cli", + "kind": "module", + "name": "`--use-env-proxy`", + "signature": "`--use-env-proxy`", + "label": "--use-env-proxy", + "apiSymbol": "--use-env-proxy", + "depth": 2, + "scope": "configuration", + "anchor": "--use-env-proxy", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active Development", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:553477125008", + "chapter": "cli", + "kind": "module", + "name": "`--use-largepages=mode`", + "signature": "`--use-largepages=mode`", + "label": "--use-largepages=mode", + "apiSymbol": "--use-largepages", + "depth": 2, + "scope": "configuration", + "anchor": "--use-largepagesmode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:d9d3214aa445", + "chapter": "cli", + "kind": "module", + "name": "`--use-system-ca`", + "signature": "`--use-system-ca`", + "label": "--use-system-ca", + "apiSymbol": "--use-system-ca", + "depth": 2, + "scope": "configuration", + "anchor": "--use-system-ca", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:0afb8514376a", + "chapter": "cli", + "kind": "module", + "name": "`--v8-options`", + "signature": "`--v8-options`", + "label": "--v8-options", + "apiSymbol": "--v8-options", + "depth": 2, + "scope": "configuration", + "anchor": "--v8-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:83a8c6806bce", + "chapter": "cli", + "kind": "module", + "name": "`--v8-pool-size=num`", + "signature": "`--v8-pool-size=num`", + "label": "--v8-pool-size=num", + "apiSymbol": "--v8-pool-size", + "depth": 2, + "scope": "configuration", + "anchor": "--v8-pool-sizenum", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:9e7c4e807a61", + "chapter": "cli", + "kind": "module", + "name": "`-v`,_`--version`", + "signature": "`-v`, `--version`", + "label": "-v", + "apiSymbol": "-v", + "depth": 2, + "scope": "configuration", + "anchor": "-v---version", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:9d358aee287b", + "chapter": "cli", + "kind": "module", + "name": "`--watch`", + "signature": "`--watch`", + "label": "--watch", + "apiSymbol": "--watch", + "depth": 2, + "scope": "configuration", + "anchor": "--watch", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:660861652a1f", + "chapter": "cli", + "kind": "module", + "name": "`--watch-kill-signal`", + "signature": "`--watch-kill-signal`", + "label": "--watch-kill-signal", + "apiSymbol": "--watch-kill-signal", + "depth": 2, + "scope": "configuration", + "anchor": "--watch-kill-signal", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active Development", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:6b46f488663c", + "chapter": "cli", + "kind": "module", + "name": "`--watch-path`", + "signature": "`--watch-path`", + "label": "--watch-path", + "apiSymbol": "--watch-path", + "depth": 2, + "scope": "configuration", + "anchor": "--watch-path", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:c3a2f3ff1721", + "chapter": "cli", + "kind": "module", + "name": "`--watch-preserve-output`", + "signature": "`--watch-preserve-output`", + "label": "--watch-preserve-output", + "apiSymbol": "--watch-preserve-output", + "depth": 2, + "scope": "configuration", + "anchor": "--watch-preserve-output", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:511de9afa5b1", + "chapter": "cli", + "kind": "module", + "name": "`--zero-fill-buffers`", + "signature": "`--zero-fill-buffers`", + "label": "--zero-fill-buffers", + "apiSymbol": "--zero-fill-buffers", + "depth": 2, + "scope": "configuration", + "anchor": "--zero-fill-buffers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:d83b8ba52eed", + "chapter": "cli", + "kind": "misc", + "name": "environment_variables", + "signature": "Environment variables", + "label": "Environment variables", + "apiSymbol": "environment_variables", + "depth": 1, + "scope": "configuration", + "anchor": "environment-variables_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:c582d14f1504", + "chapter": "cli", + "kind": "module", + "name": "`force_color=[1,_2,_3]`", + "signature": "`FORCE_COLOR=[1, 2, 3]`", + "label": "FORCE_COLOR=[1, 2, 3]", + "apiSymbol": "FORCE_COLOR", + "depth": 2, + "scope": "configuration", + "anchor": "force_color1-2-3", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:38f56beee0e0", + "chapter": "cli", + "kind": "module", + "name": "`node_compile_cache=dir`", + "signature": "`NODE_COMPILE_CACHE=dir`", + "label": "NODE_COMPILE_CACHE=dir", + "apiSymbol": "NODE_COMPILE_CACHE", + "depth": 2, + "scope": "configuration", + "anchor": "node_compile_cachedir", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:fca0dfaedadc", + "chapter": "cli", + "kind": "module", + "name": "`node_compile_cache_portable=1`", + "signature": "`NODE_COMPILE_CACHE_PORTABLE=1`", + "label": "NODE_COMPILE_CACHE_PORTABLE=1", + "apiSymbol": "NODE_COMPILE_CACHE_PORTABLE", + "depth": 2, + "scope": "configuration", + "anchor": "node_compile_cache_portable1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:4f8b4b39231c", + "chapter": "cli", + "kind": "module", + "name": "`node_debug=module[,…]`", + "signature": "`NODE_DEBUG=module[,…]`", + "label": "NODE_DEBUG=module[,…]", + "apiSymbol": "NODE_DEBUG", + "depth": 2, + "scope": "configuration", + "anchor": "node_debugmodule", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:ff7691406a05", + "chapter": "cli", + "kind": "module", + "name": "`node_debug_native=module[,…]`", + "signature": "`NODE_DEBUG_NATIVE=module[,…]`", + "label": "NODE_DEBUG_NATIVE=module[,…]", + "apiSymbol": "NODE_DEBUG_NATIVE", + "depth": 2, + "scope": "configuration", + "anchor": "node_debug_nativemodule", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:2b4d0792de89", + "chapter": "cli", + "kind": "module", + "name": "`node_disable_colors=1`", + "signature": "`NODE_DISABLE_COLORS=1`", + "label": "NODE_DISABLE_COLORS=1", + "apiSymbol": "NODE_DISABLE_COLORS", + "depth": 2, + "scope": "configuration", + "anchor": "node_disable_colors1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:8b236890da8a", + "chapter": "cli", + "kind": "module", + "name": "`node_disable_compile_cache=1`", + "signature": "`NODE_DISABLE_COMPILE_CACHE=1`", + "label": "NODE_DISABLE_COMPILE_CACHE=1", + "apiSymbol": "NODE_DISABLE_COMPILE_CACHE", + "depth": 2, + "scope": "configuration", + "anchor": "node_disable_compile_cache1", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active Development", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:ffcaf7175800", + "chapter": "cli", + "kind": "module", + "name": "`node_extra_ca_certs=file`", + "signature": "`NODE_EXTRA_CA_CERTS=file`", + "label": "NODE_EXTRA_CA_CERTS=file", + "apiSymbol": "NODE_EXTRA_CA_CERTS", + "depth": 2, + "scope": "configuration", + "anchor": "node_extra_ca_certsfile", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:492dab768017", + "chapter": "cli", + "kind": "module", + "name": "`node_icu_data=file`", + "signature": "`NODE_ICU_DATA=file`", + "label": "NODE_ICU_DATA=file", + "apiSymbol": "NODE_ICU_DATA", + "depth": 2, + "scope": "configuration", + "anchor": "node_icu_datafile", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:ccb56e2e0a60", + "chapter": "cli", + "kind": "module", + "name": "`node_no_warnings=1`", + "signature": "`NODE_NO_WARNINGS=1`", + "label": "NODE_NO_WARNINGS=1", + "apiSymbol": "NODE_NO_WARNINGS", + "depth": 2, + "scope": "configuration", + "anchor": "node_no_warnings1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:13565554c9d6", + "chapter": "cli", + "kind": "module", + "name": "`node_options=options...`", + "signature": "`NODE_OPTIONS=options...`", + "label": "NODE_OPTIONS=options...", + "apiSymbol": "NODE_OPTIONS", + "depth": 2, + "scope": "configuration", + "anchor": "node_optionsoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:8c127ee3977b", + "chapter": "cli", + "kind": "module", + "name": "`node_path=path[:…]`", + "signature": "`NODE_PATH=path[:…]`", + "label": "NODE_PATH=path[:…]", + "apiSymbol": "NODE_PATH", + "depth": 2, + "scope": "configuration", + "anchor": "node_pathpath", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:017585167e49", + "chapter": "cli", + "kind": "module", + "name": "`node_pending_deprecation=1`", + "signature": "`NODE_PENDING_DEPRECATION=1`", + "label": "NODE_PENDING_DEPRECATION=1", + "apiSymbol": "NODE_PENDING_DEPRECATION", + "depth": 2, + "scope": "configuration", + "anchor": "node_pending_deprecation1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:53ebe13f5e06", + "chapter": "cli", + "kind": "module", + "name": "`node_pending_pipe_instances=instances`", + "signature": "`NODE_PENDING_PIPE_INSTANCES=instances`", + "label": "NODE_PENDING_PIPE_INSTANCES=instances", + "apiSymbol": "NODE_PENDING_PIPE_INSTANCES", + "depth": 2, + "scope": "configuration", + "anchor": "node_pending_pipe_instancesinstances", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:f13f68f60f33", + "chapter": "cli", + "kind": "module", + "name": "`node_preserve_symlinks=1`", + "signature": "`NODE_PRESERVE_SYMLINKS=1`", + "label": "NODE_PRESERVE_SYMLINKS=1", + "apiSymbol": "NODE_PRESERVE_SYMLINKS", + "depth": 2, + "scope": "configuration", + "anchor": "node_preserve_symlinks1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:323d0b2fb8ee", + "chapter": "cli", + "kind": "module", + "name": "`node_redirect_warnings=file`", + "signature": "`NODE_REDIRECT_WARNINGS=file`", + "label": "NODE_REDIRECT_WARNINGS=file", + "apiSymbol": "NODE_REDIRECT_WARNINGS", + "depth": 2, + "scope": "configuration", + "anchor": "node_redirect_warningsfile", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:60df28792264", + "chapter": "cli", + "kind": "module", + "name": "`node_repl_external_module=file`", + "signature": "`NODE_REPL_EXTERNAL_MODULE=file`", + "label": "NODE_REPL_EXTERNAL_MODULE=file", + "apiSymbol": "NODE_REPL_EXTERNAL_MODULE", + "depth": 2, + "scope": "configuration", + "anchor": "node_repl_external_modulefile", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:829a8faf1662", + "chapter": "cli", + "kind": "module", + "name": "`node_repl_history=file`", + "signature": "`NODE_REPL_HISTORY=file`", + "label": "NODE_REPL_HISTORY=file", + "apiSymbol": "NODE_REPL_HISTORY", + "depth": 2, + "scope": "configuration", + "anchor": "node_repl_historyfile", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:8a5ac233afd2", + "chapter": "cli", + "kind": "module", + "name": "`node_skip_platform_check=value`", + "signature": "`NODE_SKIP_PLATFORM_CHECK=value`", + "label": "NODE_SKIP_PLATFORM_CHECK=value", + "apiSymbol": "NODE_SKIP_PLATFORM_CHECK", + "depth": 2, + "scope": "configuration", + "anchor": "node_skip_platform_checkvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:f4921739c532", + "chapter": "cli", + "kind": "module", + "name": "`node_test_context=value`", + "signature": "`NODE_TEST_CONTEXT=value`", + "label": "NODE_TEST_CONTEXT=value", + "apiSymbol": "NODE_TEST_CONTEXT", + "depth": 2, + "scope": "configuration", + "anchor": "node_test_contextvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:90d8662e1052", + "chapter": "cli", + "kind": "module", + "name": "`node_tls_reject_unauthorized=value`", + "signature": "`NODE_TLS_REJECT_UNAUTHORIZED=value`", + "label": "NODE_TLS_REJECT_UNAUTHORIZED=value", + "apiSymbol": "NODE_TLS_REJECT_UNAUTHORIZED", + "depth": 2, + "scope": "configuration", + "anchor": "node_tls_reject_unauthorizedvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:27986a40911c", + "chapter": "cli", + "kind": "module", + "name": "`node_use_env_proxy=1`", + "signature": "`NODE_USE_ENV_PROXY=1`", + "label": "NODE_USE_ENV_PROXY=1", + "apiSymbol": "NODE_USE_ENV_PROXY", + "depth": 2, + "scope": "configuration", + "anchor": "node_use_env_proxy1", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active Development", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:355d669447fa", + "chapter": "cli", + "kind": "module", + "name": "`node_use_system_ca=1`", + "signature": "`NODE_USE_SYSTEM_CA=1`", + "label": "NODE_USE_SYSTEM_CA=1", + "apiSymbol": "NODE_USE_SYSTEM_CA", + "depth": 2, + "scope": "configuration", + "anchor": "node_use_system_ca1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:e1c454616dde", + "chapter": "cli", + "kind": "module", + "name": "`node_v8_coverage=dir`", + "signature": "`NODE_V8_COVERAGE=dir`", + "label": "NODE_V8_COVERAGE=dir", + "apiSymbol": "NODE_V8_COVERAGE", + "depth": 2, + "scope": "configuration", + "anchor": "node_v8_coveragedir", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:51a79002959c", + "chapter": "cli", + "kind": "module", + "name": "coverage_output", + "signature": "Coverage output", + "label": "Coverage output", + "apiSymbol": "coverage_output", + "depth": 3, + "scope": "configuration", + "anchor": "coverage-output", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:340fb08328c8", + "chapter": "cli", + "kind": "module", + "name": "source_map_cache", + "signature": "Source map cache", + "label": "Source map cache", + "apiSymbol": "source_map_cache", + "depth": 3, + "scope": "configuration", + "anchor": "source-map-cache", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:fa2deafbd21a", + "chapter": "cli", + "kind": "module", + "name": "`no_color=`", + "signature": "`NO_COLOR=`", + "label": "NO_COLOR=", + "apiSymbol": "NO_COLOR", + "depth": 2, + "scope": "configuration", + "anchor": "no_colorany", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:3f51cb2c0ea3", + "chapter": "cli", + "kind": "module", + "name": "`openssl_conf=file`", + "signature": "`OPENSSL_CONF=file`", + "label": "OPENSSL_CONF=file", + "apiSymbol": "OPENSSL_CONF", + "depth": 2, + "scope": "configuration", + "anchor": "openssl_conffile", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:9d6be41257f0", + "chapter": "cli", + "kind": "module", + "name": "`ssl_cert_dir=dir`", + "signature": "`SSL_CERT_DIR=dir`", + "label": "SSL_CERT_DIR=dir", + "apiSymbol": "SSL_CERT_DIR", + "depth": 2, + "scope": "configuration", + "anchor": "ssl_cert_dirdir", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:7f867310f452", + "chapter": "cli", + "kind": "module", + "name": "`ssl_cert_file=file`", + "signature": "`SSL_CERT_FILE=file`", + "label": "SSL_CERT_FILE=file", + "apiSymbol": "SSL_CERT_FILE", + "depth": 2, + "scope": "configuration", + "anchor": "ssl_cert_filefile", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:e71d9fea2bf1", + "chapter": "cli", + "kind": "module", + "name": "`tz`", + "signature": "`TZ`", + "label": "TZ", + "apiSymbol": "TZ", + "depth": 2, + "scope": "configuration", + "anchor": "tz", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:9bba8f341c1d", + "chapter": "cli", + "kind": "module", + "name": "`uv_threadpool_size=size`", + "signature": "`UV_THREADPOOL_SIZE=size`", + "label": "UV_THREADPOOL_SIZE=size", + "apiSymbol": "UV_THREADPOOL_SIZE", + "depth": 2, + "scope": "configuration", + "anchor": "uv_threadpool_sizesize", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:21affd8984c2", + "chapter": "cli", + "kind": "misc", + "name": "useful_v8_options", + "signature": "Useful V8 options", + "label": "Useful V8 options", + "apiSymbol": "useful_v8_options", + "depth": 1, + "scope": "configuration", + "anchor": "useful-v8-options", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:03c49783aacb", + "chapter": "cli", + "kind": "module", + "name": "`--abort-on-uncaught-exception`", + "signature": "`--abort-on-uncaught-exception`", + "label": "--abort-on-uncaught-exception", + "apiSymbol": "--abort-on-uncaught-exception", + "depth": 2, + "scope": "configuration", + "anchor": "--abort-on-uncaught-exception_1", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:f53e70a569f5", + "chapter": "cli", + "kind": "module", + "name": "`--disallow-code-generation-from-strings`", + "signature": "`--disallow-code-generation-from-strings`", + "label": "--disallow-code-generation-from-strings", + "apiSymbol": "--disallow-code-generation-from-strings", + "depth": 2, + "scope": "configuration", + "anchor": "--disallow-code-generation-from-strings_1", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:5e89b1770c8f", + "chapter": "cli", + "kind": "module", + "name": "`--enable-etw-stack-walking`", + "signature": "`--enable-etw-stack-walking`", + "label": "--enable-etw-stack-walking", + "apiSymbol": "--enable-etw-stack-walking", + "depth": 2, + "scope": "configuration", + "anchor": "--enable-etw-stack-walking", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:33f661f5c932", + "chapter": "cli", + "kind": "module", + "name": "`--expose-gc`", + "signature": "`--expose-gc`", + "label": "--expose-gc", + "apiSymbol": "--expose-gc", + "depth": 2, + "scope": "configuration", + "anchor": "--expose-gc_1", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:35c70c8a42a3", + "chapter": "cli", + "kind": "module", + "name": "`--harmony-shadow-realm`", + "signature": "`--harmony-shadow-realm`", + "label": "--harmony-shadow-realm", + "apiSymbol": "--harmony-shadow-realm", + "depth": 2, + "scope": "configuration", + "anchor": "--harmony-shadow-realm", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:475488d03a55", + "chapter": "cli", + "kind": "module", + "name": "`--heap-snapshot-on-oom`", + "signature": "`--heap-snapshot-on-oom`", + "label": "--heap-snapshot-on-oom", + "apiSymbol": "--heap-snapshot-on-oom", + "depth": 2, + "scope": "configuration", + "anchor": "--heap-snapshot-on-oom", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:b3f7b93738ff", + "chapter": "cli", + "kind": "module", + "name": "`--interpreted-frames-native-stack`", + "signature": "`--interpreted-frames-native-stack`", + "label": "--interpreted-frames-native-stack", + "apiSymbol": "--interpreted-frames-native-stack", + "depth": 2, + "scope": "configuration", + "anchor": "--interpreted-frames-native-stack", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:769ba57b4078", + "chapter": "cli", + "kind": "module", + "name": "`--jitless`", + "signature": "`--jitless`", + "label": "--jitless", + "apiSymbol": "--jitless", + "depth": 2, + "scope": "configuration", + "anchor": "--jitless_1", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:212a5b649d19", + "chapter": "cli", + "kind": "module", + "name": "`--max-heap-size`", + "signature": "`--max-heap-size`", + "label": "--max-heap-size", + "apiSymbol": "--max-heap-size", + "depth": 2, + "scope": "configuration", + "anchor": "--max-heap-size", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:640083974053", + "chapter": "cli", + "kind": "module", + "name": "`--max-old-space-size=size`_(in_mib)", + "signature": "`--max-old-space-size=SIZE` (in MiB)", + "label": "--max-old-space-size=SIZE", + "apiSymbol": "--max-old-space-size", + "depth": 2, + "scope": "configuration", + "anchor": "--max-old-space-sizesize-in-mib", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:555e5f2b7a89", + "chapter": "cli", + "kind": "module", + "name": "`--max-semi-space-size=size`_(in_mib)", + "signature": "`--max-semi-space-size=SIZE` (in MiB)", + "label": "--max-semi-space-size=SIZE", + "apiSymbol": "--max-semi-space-size", + "depth": 2, + "scope": "configuration", + "anchor": "--max-semi-space-sizesize-in-mib", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:73fb08d3295e", + "chapter": "cli", + "kind": "module", + "name": "`--perf-basic-prof`", + "signature": "`--perf-basic-prof`", + "label": "--perf-basic-prof", + "apiSymbol": "--perf-basic-prof", + "depth": 2, + "scope": "configuration", + "anchor": "--perf-basic-prof", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:9e0fa1136899", + "chapter": "cli", + "kind": "module", + "name": "`--perf-basic-prof-only-functions`", + "signature": "`--perf-basic-prof-only-functions`", + "label": "--perf-basic-prof-only-functions", + "apiSymbol": "--perf-basic-prof-only-functions", + "depth": 2, + "scope": "configuration", + "anchor": "--perf-basic-prof-only-functions", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:60944249d805", + "chapter": "cli", + "kind": "module", + "name": "`--perf-prof`", + "signature": "`--perf-prof`", + "label": "--perf-prof", + "apiSymbol": "--perf-prof", + "depth": 2, + "scope": "configuration", + "anchor": "--perf-prof", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:a969dacb3c80", + "chapter": "cli", + "kind": "module", + "name": "`--perf-prof-unwinding-info`", + "signature": "`--perf-prof-unwinding-info`", + "label": "--perf-prof-unwinding-info", + "apiSymbol": "--perf-prof-unwinding-info", + "depth": 2, + "scope": "configuration", + "anchor": "--perf-prof-unwinding-info", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:be043c6add49", + "chapter": "cli", + "kind": "module", + "name": "`--prof`", + "signature": "`--prof`", + "label": "--prof", + "apiSymbol": "--prof", + "depth": 2, + "scope": "configuration", + "anchor": "--prof_1", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:9800b0aac6c9", + "chapter": "cli", + "kind": "module", + "name": "`--security-revert`", + "signature": "`--security-revert`", + "label": "--security-revert", + "apiSymbol": "--security-revert", + "depth": 2, + "scope": "configuration", + "anchor": "--security-revert", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "cli:7f066b0fc58a", + "chapter": "cli", + "kind": "module", + "name": "`--stack-trace-limit=limit`", + "signature": "`--stack-trace-limit=limit`", + "label": "--stack-trace-limit=limit", + "apiSymbol": "--stack-trace-limit", + "depth": 2, + "scope": "configuration", + "anchor": "--stack-trace-limitlimit", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "console:0448912a2c1f", + "chapter": "console", + "kind": "module", + "name": "console", + "signature": "Console", + "label": "Console", + "apiSymbol": "console", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/corpus/1460-console-error-warn.ts", + "tests/corpus/2440-console-inspect-args.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "console:28f80671b295", + "chapter": "console", + "kind": "module", + "name": "inspector_only_methods", + "signature": "Inspector only methods", + "label": "Inspector only methods", + "apiSymbol": "inspector_only_methods", + "depth": 1, + "scope": "documentation", + "anchor": "inspector-only-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "console:d5e7718ea460", + "chapter": "console", + "kind": "method", + "name": "profile", + "signature": "`console.profile([label])`", + "label": "console.profile([label])", + "apiSymbol": "console.profile", + "depth": 2, + "scope": "api", + "anchor": "consoleprofilelabel", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:console" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:console" + }, + "anchorSource": "exact" + }, + { + "id": "console:0d1dfa0b9e5f", + "chapter": "console", + "kind": "method", + "name": "profileEnd", + "signature": "`console.profileEnd([label])`", + "label": "console.profileEnd([label])", + "apiSymbol": "console.profileEnd", + "depth": 2, + "scope": "api", + "anchor": "consoleprofileendlabel", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:console" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:console" + }, + "anchorSource": "exact" + }, + { + "id": "console:412a0f4ec0cd", + "chapter": "console", + "kind": "method", + "name": "timeStamp", + "signature": "`console.timeStamp([label])`", + "label": "console.timeStamp([label])", + "apiSymbol": "console.timeStamp", + "depth": 2, + "scope": "api", + "anchor": "consoletimestamplabel", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:console" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:console" + }, + "anchorSource": "exact" + }, + { + "id": "console:10b99ddc9b4a", + "chapter": "console", + "kind": "class", + "name": "Console", + "signature": "Class: `Console`", + "label": "Console", + "apiSymbol": "Console", + "depth": 1, + "scope": "api", + "anchor": "class-console", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:console" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:console.Console", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "console:a7b252061a64", + "chapter": "console", + "kind": "method", + "name": "assert", + "signature": "`console.assert(value[, ...message])`", + "label": "console.assert(value[, ...message])", + "apiSymbol": "console.assert", + "depth": 2, + "scope": "api", + "anchor": "consoleassertvalue-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:console" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:console.assert", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "console:14c8a00abc52", + "chapter": "console", + "kind": "method", + "name": "clear", + "signature": "`console.clear()`", + "label": "console.clear()", + "apiSymbol": "console.clear", + "depth": 2, + "scope": "api", + "anchor": "consoleclear", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:console" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:console.clear", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "console:3239f2dcfbc7", + "chapter": "console", + "kind": "method", + "name": "count", + "signature": "`console.count([label])`", + "label": "console.count([label])", + "apiSymbol": "console.count", + "depth": 2, + "scope": "api", + "anchor": "consolecountlabel", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:console" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:console.count", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "console:38a3e7029f90", + "chapter": "console", + "kind": "method", + "name": "countReset", + "signature": "`console.countReset([label])`", + "label": "console.countReset([label])", + "apiSymbol": "console.countReset", + "depth": 2, + "scope": "api", + "anchor": "consolecountresetlabel", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:console" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:console.countReset", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "console:9110e9b01ca9", + "chapter": "console", + "kind": "method", + "name": "debug", + "signature": "`console.debug(data[, ...args])`", + "label": "console.debug(data[, ...args])", + "apiSymbol": "console.debug", + "depth": 2, + "scope": "api", + "anchor": "consoledebugdata-args", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:console.debug", + "tests": [ + "tests/corpus/1460-console-error-warn.ts", + "tests/corpus/2440-console-inspect-args.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:console.debug", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "console:6bb0882d404c", + "chapter": "console", + "kind": "method", + "name": "dir", + "signature": "`console.dir(obj[, options])`", + "label": "console.dir(obj[, options])", + "apiSymbol": "console.dir", + "depth": 2, + "scope": "api", + "anchor": "consoledirobj-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:console" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:console.dir", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "console:3032d448c24b", + "chapter": "console", + "kind": "method", + "name": "dirxml", + "signature": "`console.dirxml(...data)`", + "label": "console.dirxml(...data)", + "apiSymbol": "console.dirxml", + "depth": 2, + "scope": "api", + "anchor": "consoledirxmldata", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:console" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:console" + }, + "anchorSource": "exact" + }, + { + "id": "console:8716b01c7a7c", + "chapter": "console", + "kind": "method", + "name": "error", + "signature": "`console.error([data][, ...args])`", + "label": "console.error([data][, ...args])", + "apiSymbol": "console.error", + "depth": 2, + "scope": "api", + "anchor": "consoleerrordata-args", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:console.error", + "tests": [ + "tests/corpus/1460-console-error-warn.ts", + "tests/corpus/2440-console-inspect-args.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:console.error", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "console:77ee6e5ea308", + "chapter": "console", + "kind": "method", + "name": "group", + "signature": "`console.group([...label])`", + "label": "console.group([...label])", + "apiSymbol": "console.group", + "depth": 2, + "scope": "api", + "anchor": "consolegrouplabel", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:console" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:console.group", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "console:b348d794e50a", + "chapter": "console", + "kind": "method", + "name": "groupCollapsed", + "signature": "`console.groupCollapsed()`", + "label": "console.groupCollapsed()", + "apiSymbol": "console.groupCollapsed", + "depth": 2, + "scope": "api", + "anchor": "consolegroupcollapsed", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:console" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:console" + }, + "anchorSource": "exact" + }, + { + "id": "console:45045a57f5ec", + "chapter": "console", + "kind": "method", + "name": "groupEnd", + "signature": "`console.groupEnd()`", + "label": "console.groupEnd()", + "apiSymbol": "console.groupEnd", + "depth": 2, + "scope": "api", + "anchor": "consolegroupend", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:console" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:console.groupEnd", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "console:0ed260294c26", + "chapter": "console", + "kind": "method", + "name": "info", + "signature": "`console.info([data][, ...args])`", + "label": "console.info([data][, ...args])", + "apiSymbol": "console.info", + "depth": 2, + "scope": "api", + "anchor": "consoleinfodata-args", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:console.info", + "tests": [ + "tests/corpus/1460-console-error-warn.ts", + "tests/corpus/2440-console-inspect-args.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:console.info", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "console:fe5504b52a3a", + "chapter": "console", + "kind": "method", + "name": "log", + "signature": "`console.log([data][, ...args])`", + "label": "console.log([data][, ...args])", + "apiSymbol": "console.log", + "depth": 2, + "scope": "api", + "anchor": "consolelogdata-args", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:console.log", + "tests": [ + "tests/corpus/1460-console-error-warn.ts", + "tests/corpus/2440-console-inspect-args.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:console.log", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "console:fbcc1d146f54", + "chapter": "console", + "kind": "method", + "name": "table", + "signature": "`console.table(tabularData[, properties])`", + "label": "console.table(tabularData[, properties])", + "apiSymbol": "console.table", + "depth": 2, + "scope": "api", + "anchor": "consoletabletabulardata-properties", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:console" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:console.table", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "console:0bd8bcffbbfd", + "chapter": "console", + "kind": "method", + "name": "time", + "signature": "`console.time([label])`", + "label": "console.time([label])", + "apiSymbol": "console.time", + "depth": 2, + "scope": "api", + "anchor": "consoletimelabel", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:console" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:console.time", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "console:5a06bf7ae635", + "chapter": "console", + "kind": "method", + "name": "timeEnd", + "signature": "`console.timeEnd([label])`", + "label": "console.timeEnd([label])", + "apiSymbol": "console.timeEnd", + "depth": 2, + "scope": "api", + "anchor": "consoletimeendlabel", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:console" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:console.timeEnd", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "console:0682b025ea9e", + "chapter": "console", + "kind": "method", + "name": "timeLog", + "signature": "`console.timeLog([label][, ...data])`", + "label": "console.timeLog([label][, ...data])", + "apiSymbol": "console.timeLog", + "depth": 2, + "scope": "api", + "anchor": "consoletimeloglabel-data", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:console" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:console" + }, + "anchorSource": "exact" + }, + { + "id": "console:8d9fa8d9afcd", + "chapter": "console", + "kind": "method", + "name": "trace", + "signature": "`console.trace([message][, ...args])`", + "label": "console.trace([message][, ...args])", + "apiSymbol": "console.trace", + "depth": 2, + "scope": "api", + "anchor": "consoletracemessage-args", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:console" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:console.trace", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "console:d7625e260cc9", + "chapter": "console", + "kind": "method", + "name": "warn", + "signature": "`console.warn([data][, ...args])`", + "label": "console.warn([data][, ...args])", + "apiSymbol": "console.warn", + "depth": 2, + "scope": "api", + "anchor": "consolewarndata-args", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:console.warn", + "tests": [ + "tests/corpus/1460-console-error-warn.ts", + "tests/corpus/2440-console-inspect-args.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:console.warn", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "crypto:0b6bcfdf1c4a", + "chapter": "crypto", + "kind": "module", + "name": "crypto", + "signature": "Crypto", + "label": "Crypto", + "apiSymbol": "crypto", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/corpus/1358-crypto-random.ts", + "tests/corpus/1534-crypto-hash-chain.ts", + "tests/corpus/2556-crypto-introspection.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "crypto:8b8fc1a63202", + "chapter": "crypto", + "kind": "module", + "name": "determining_if_crypto_support_is_unavailable", + "signature": "Determining if crypto support is unavailable", + "label": "Determining if crypto support is unavailable", + "apiSymbol": "determining_if_crypto_support_is_unavailable", + "depth": 1, + "scope": "documentation", + "anchor": "determining-if-crypto-support-is-unavailable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:7e577a11d955", + "chapter": "crypto", + "kind": "module", + "name": "asymmetric_key_types", + "signature": "Asymmetric key types", + "label": "Asymmetric key types", + "apiSymbol": "asymmetric_key_types", + "depth": 1, + "scope": "documentation", + "anchor": "asymmetric-key-types", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:a310a63feb27", + "chapter": "crypto", + "kind": "module", + "name": "key_formats", + "signature": "Key formats", + "label": "Key formats", + "apiSymbol": "key_formats", + "depth": 2, + "scope": "documentation", + "anchor": "key-formats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:3bb3b8aee491", + "chapter": "crypto", + "kind": "module", + "name": "keyobject", + "signature": "KeyObject", + "label": "KeyObject", + "apiSymbol": "keyobject", + "depth": 3, + "scope": "documentation", + "anchor": "keyobject", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:465a83075202", + "chapter": "crypto", + "kind": "module", + "name": "pem_and_der", + "signature": "PEM and DER", + "label": "PEM and DER", + "apiSymbol": "pem_and_der", + "depth": 3, + "scope": "documentation", + "anchor": "pem-and-der", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:86bb7d5d9347", + "chapter": "crypto", + "kind": "module", + "name": "json_web_key_(jwk)", + "signature": "JSON Web Key (JWK)", + "label": "JSON Web Key (JWK)", + "apiSymbol": "json_web_key_", + "depth": 3, + "scope": "documentation", + "anchor": "json-web-key-jwk", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:f71e50687126", + "chapter": "crypto", + "kind": "module", + "name": "raw_key_formats", + "signature": "Raw key formats", + "label": "Raw key formats", + "apiSymbol": "raw_key_formats", + "depth": 3, + "scope": "documentation", + "anchor": "raw-key-formats", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:8e8865cbea6f", + "chapter": "crypto", + "kind": "module", + "name": "choosing_a_key_format", + "signature": "Choosing a key format", + "label": "Choosing a key format", + "apiSymbol": "choosing_a_key_format", + "depth": 2, + "scope": "documentation", + "anchor": "choosing-a-key-format", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:727041d0cff5", + "chapter": "crypto", + "kind": "module", + "name": "importing_keys", + "signature": "Importing keys", + "label": "Importing keys", + "apiSymbol": "importing_keys", + "depth": 3, + "scope": "documentation", + "anchor": "importing-keys", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:f8816122d8d0", + "chapter": "crypto", + "kind": "module", + "name": "inline_key_material_in_operations", + "signature": "Inline key material in operations", + "label": "Inline key material in operations", + "apiSymbol": "inline_key_material_in_operations", + "depth": 3, + "scope": "documentation", + "anchor": "inline-key-material-in-operations", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:fc032ceb2cfd", + "chapter": "crypto", + "kind": "module", + "name": "`node:crypto`_module_methods_and_properties", + "signature": "`node:crypto` module methods and properties", + "label": "node:crypto", + "apiSymbol": "node:crypto", + "depth": 1, + "scope": "api", + "anchor": "nodecrypto-module-methods-and-properties", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:ac6e3d78bddd", + "chapter": "crypto", + "kind": "method", + "name": "argon2", + "signature": "`crypto.argon2(algorithm, parameters, callback)`", + "label": "crypto.argon2(algorithm, parameters, callback)", + "apiSymbol": "crypto.argon2", + "depth": 2, + "scope": "api", + "anchor": "cryptoargon2algorithm-parameters-callback", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:7516d604858d", + "chapter": "crypto", + "kind": "method", + "name": "argon2Sync", + "signature": "`crypto.argon2Sync(algorithm, parameters)`", + "label": "crypto.argon2Sync(algorithm, parameters)", + "apiSymbol": "crypto.argon2Sync", + "depth": 2, + "scope": "api", + "anchor": "cryptoargon2syncalgorithm-parameters", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:93c11d6b797c", + "chapter": "crypto", + "kind": "method", + "name": "checkPrime", + "signature": "`crypto.checkPrime(candidate[, options], callback)`", + "label": "crypto.checkPrime(candidate[, options], callback)", + "apiSymbol": "crypto.checkPrime", + "depth": 2, + "scope": "api", + "anchor": "cryptocheckprimecandidate-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:crypto.checkPrime" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:23ff59a813ff", + "chapter": "crypto", + "kind": "method", + "name": "checkPrimeSync", + "signature": "`crypto.checkPrimeSync(candidate[, options])`", + "label": "crypto.checkPrimeSync(candidate[, options])", + "apiSymbol": "crypto.checkPrimeSync", + "depth": 2, + "scope": "api", + "anchor": "cryptocheckprimesynccandidate-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:crypto.checkPrimeSync" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:e5cfdf7f141d", + "chapter": "crypto", + "kind": "method", + "name": "createCipheriv", + "signature": "`crypto.createCipheriv(algorithm, key, iv[, options])`", + "label": "crypto.createCipheriv(algorithm, key, iv[, options])", + "apiSymbol": "crypto.createCipheriv", + "depth": 2, + "scope": "api", + "anchor": "cryptocreatecipherivalgorithm-key-iv-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.crypto.createCipheriv" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:crypto.createCipheriv" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:c7f997a76b46", + "chapter": "crypto", + "kind": "method", + "name": "createDecipheriv", + "signature": "`crypto.createDecipheriv(algorithm, key, iv[, options])`", + "label": "crypto.createDecipheriv(algorithm, key, iv[, options])", + "apiSymbol": "crypto.createDecipheriv", + "depth": 2, + "scope": "api", + "anchor": "cryptocreatedecipherivalgorithm-key-iv-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.crypto.createDecipheriv" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:crypto.createDecipheriv" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:4773e5e82ab8", + "chapter": "crypto", + "kind": "method", + "name": "createDiffieHellman", + "signature": "`crypto.createDiffieHellman(prime[, primeEncoding][, generator][, generatorEncoding])`", + "label": "crypto.createDiffieHellman(prime[, primeEncoding][, generator][, generatorEncoding])", + "apiSymbol": "crypto.createDiffieHellman", + "depth": 2, + "scope": "api", + "anchor": "cryptocreatediffiehellmanprime-primeencoding-generator-generatorencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.crypto.createDiffieHellman" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:crypto.createDiffieHellman" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:13af8af3a2c1", + "chapter": "crypto", + "kind": "method", + "name": "createDiffieHellman", + "signature": "`crypto.createDiffieHellman(primeLength[, generator])`", + "label": "crypto.createDiffieHellman(primeLength[, generator])", + "apiSymbol": "crypto.createDiffieHellman", + "depth": 2, + "scope": "api", + "anchor": "cryptocreatediffiehellmanprimelength-generator", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.crypto.createDiffieHellman" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:crypto.createDiffieHellman" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:4f02ea28db46", + "chapter": "crypto", + "kind": "method", + "name": "createDiffieHellmanGroup", + "signature": "`crypto.createDiffieHellmanGroup(name)`", + "label": "crypto.createDiffieHellmanGroup(name)", + "apiSymbol": "crypto.createDiffieHellmanGroup", + "depth": 2, + "scope": "api", + "anchor": "cryptocreatediffiehellmangroupname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.crypto.createDiffieHellmanGroup" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:064eef4115c3", + "chapter": "crypto", + "kind": "method", + "name": "createECDH", + "signature": "`crypto.createECDH(curveName)`", + "label": "crypto.createECDH(curveName)", + "apiSymbol": "crypto.createECDH", + "depth": 2, + "scope": "api", + "anchor": "cryptocreateecdhcurvename", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.crypto.createECDH" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:crypto.createECDH" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:846439408342", + "chapter": "crypto", + "kind": "method", + "name": "createHash", + "signature": "`crypto.createHash(algorithm[, options])`", + "label": "crypto.createHash(algorithm[, options])", + "apiSymbol": "crypto.createHash", + "depth": 2, + "scope": "api", + "anchor": "cryptocreatehashalgorithm-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.crypto.createHash" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:crypto.createHash", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "crypto:63db60cd1844", + "chapter": "crypto", + "kind": "method", + "name": "createHmac", + "signature": "`crypto.createHmac(algorithm, key[, options])`", + "label": "crypto.createHmac(algorithm, key[, options])", + "apiSymbol": "crypto.createHmac", + "depth": 2, + "scope": "api", + "anchor": "cryptocreatehmacalgorithm-key-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.crypto.createHmac" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:crypto.createHmac", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "crypto:a91640a96ead", + "chapter": "crypto", + "kind": "method", + "name": "createPrivateKey", + "signature": "`crypto.createPrivateKey(key)`", + "label": "crypto.createPrivateKey(key)", + "apiSymbol": "crypto.createPrivateKey", + "depth": 2, + "scope": "api", + "anchor": "cryptocreateprivatekeykey", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.crypto.createPrivateKey" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:crypto.createPrivateKey" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:850de15dc8d0", + "chapter": "crypto", + "kind": "method", + "name": "createPublicKey", + "signature": "`crypto.createPublicKey(key)`", + "label": "crypto.createPublicKey(key)", + "apiSymbol": "crypto.createPublicKey", + "depth": 2, + "scope": "api", + "anchor": "cryptocreatepublickeykey", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.crypto.createPublicKey" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:crypto.createPublicKey" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:0f82aa9a8526", + "chapter": "crypto", + "kind": "method", + "name": "createSecretKey", + "signature": "`crypto.createSecretKey(key[, encoding])`", + "label": "crypto.createSecretKey(key[, encoding])", + "apiSymbol": "crypto.createSecretKey", + "depth": 2, + "scope": "api", + "anchor": "cryptocreatesecretkeykey-encoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.crypto.createSecretKey" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:crypto.createSecretKey" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:a1ee1d7ba01a", + "chapter": "crypto", + "kind": "method", + "name": "createSign", + "signature": "`crypto.createSign(algorithm[, options])`", + "label": "crypto.createSign(algorithm[, options])", + "apiSymbol": "crypto.createSign", + "depth": 2, + "scope": "api", + "anchor": "cryptocreatesignalgorithm-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.crypto.createSign" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:crypto.createSign" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:66b20a9bfb7f", + "chapter": "crypto", + "kind": "method", + "name": "createVerify", + "signature": "`crypto.createVerify(algorithm[, options])`", + "label": "crypto.createVerify(algorithm[, options])", + "apiSymbol": "crypto.createVerify", + "depth": 2, + "scope": "api", + "anchor": "cryptocreateverifyalgorithm-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.crypto.createVerify" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:crypto.createVerify" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:dcde4645d6cb", + "chapter": "crypto", + "kind": "method", + "name": "decapsulate", + "signature": "`crypto.decapsulate(key, ciphertext[, callback])`", + "label": "crypto.decapsulate(key, ciphertext[, callback])", + "apiSymbol": "crypto.decapsulate", + "depth": 2, + "scope": "api", + "anchor": "cryptodecapsulatekey-ciphertext-callback", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:a73deddc6957", + "chapter": "crypto", + "kind": "method", + "name": "diffieHellman", + "signature": "`crypto.diffieHellman(options[, callback])`", + "label": "crypto.diffieHellman(options[, callback])", + "apiSymbol": "crypto.diffieHellman", + "depth": 2, + "scope": "api", + "anchor": "cryptodiffiehellmanoptions-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.crypto.diffieHellman" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:crypto.diffieHellman" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:0f44865d3a04", + "chapter": "crypto", + "kind": "method", + "name": "encapsulate", + "signature": "`crypto.encapsulate(key[, callback])`", + "label": "crypto.encapsulate(key[, callback])", + "apiSymbol": "crypto.encapsulate", + "depth": 2, + "scope": "api", + "anchor": "cryptoencapsulatekey-callback", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:bb6642ab8937", + "chapter": "crypto", + "kind": "method", + "name": "generateKey", + "signature": "`crypto.generateKey(type, options, callback)`", + "label": "crypto.generateKey(type, options, callback)", + "apiSymbol": "crypto.generateKey", + "depth": 2, + "scope": "api", + "anchor": "cryptogeneratekeytype-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.crypto.generateKey" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:crypto.generateKey" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:fc42f1bad4d1", + "chapter": "crypto", + "kind": "method", + "name": "generateKeyPair", + "signature": "`crypto.generateKeyPair(type, options, callback)`", + "label": "crypto.generateKeyPair(type, options, callback)", + "apiSymbol": "crypto.generateKeyPair", + "depth": 2, + "scope": "api", + "anchor": "cryptogeneratekeypairtype-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.crypto.generateKeyPair" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:crypto.generateKeyPair" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:5808394b3781", + "chapter": "crypto", + "kind": "method", + "name": "generateKeyPairSync", + "signature": "`crypto.generateKeyPairSync(type, options)`", + "label": "crypto.generateKeyPairSync(type, options)", + "apiSymbol": "crypto.generateKeyPairSync", + "depth": 2, + "scope": "api", + "anchor": "cryptogeneratekeypairsynctype-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.crypto.generateKeyPairSync" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:crypto.generateKeyPairSync" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:75cc34446e28", + "chapter": "crypto", + "kind": "method", + "name": "generateKeySync", + "signature": "`crypto.generateKeySync(type, options)`", + "label": "crypto.generateKeySync(type, options)", + "apiSymbol": "crypto.generateKeySync", + "depth": 2, + "scope": "api", + "anchor": "cryptogeneratekeysynctype-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.crypto.generateKeySync" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:crypto.generateKeySync" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:e07cbcbe9ed1", + "chapter": "crypto", + "kind": "method", + "name": "generatePrime", + "signature": "`crypto.generatePrime(size[, options], callback)`", + "label": "crypto.generatePrime(size[, options], callback)", + "apiSymbol": "crypto.generatePrime", + "depth": 2, + "scope": "api", + "anchor": "cryptogenerateprimesize-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:crypto.generatePrime" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:63fe6df1a09a", + "chapter": "crypto", + "kind": "method", + "name": "generatePrimeSync", + "signature": "`crypto.generatePrimeSync(size[, options])`", + "label": "crypto.generatePrimeSync(size[, options])", + "apiSymbol": "crypto.generatePrimeSync", + "depth": 2, + "scope": "api", + "anchor": "cryptogenerateprimesyncsize-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:crypto.generatePrimeSync" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:7c8bb668e4c8", + "chapter": "crypto", + "kind": "method", + "name": "getCipherInfo", + "signature": "`crypto.getCipherInfo(nameOrNid[, options])`", + "label": "crypto.getCipherInfo(nameOrNid[, options])", + "apiSymbol": "crypto.getCipherInfo", + "depth": 2, + "scope": "api", + "anchor": "cryptogetcipherinfonameornid-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.crypto.getCipherInfo" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:9ebd425a428e", + "chapter": "crypto", + "kind": "method", + "name": "getCiphers", + "signature": "`crypto.getCiphers()`", + "label": "crypto.getCiphers()", + "apiSymbol": "crypto.getCiphers", + "depth": 2, + "scope": "api", + "anchor": "cryptogetciphers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:crypto.getCiphers", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "crypto:874132c86691", + "chapter": "crypto", + "kind": "method", + "name": "getCurves", + "signature": "`crypto.getCurves()`", + "label": "crypto.getCurves()", + "apiSymbol": "crypto.getCurves", + "depth": 2, + "scope": "api", + "anchor": "cryptogetcurves", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:crypto.getCurves", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "crypto:6049d733b35d", + "chapter": "crypto", + "kind": "method", + "name": "getDiffieHellman", + "signature": "`crypto.getDiffieHellman(groupName)`", + "label": "crypto.getDiffieHellman(groupName)", + "apiSymbol": "crypto.getDiffieHellman", + "depth": 2, + "scope": "api", + "anchor": "cryptogetdiffiehellmangroupname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.crypto.getDiffieHellman" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:d3a713d6958d", + "chapter": "crypto", + "kind": "method", + "name": "getFips", + "signature": "`crypto.getFips()`", + "label": "crypto.getFips()", + "apiSymbol": "crypto.getFips", + "depth": 2, + "scope": "api", + "anchor": "cryptogetfips", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:crypto.getFips", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "crypto:0ad4144fc921", + "chapter": "crypto", + "kind": "method", + "name": "getHashes", + "signature": "`crypto.getHashes()`", + "label": "crypto.getHashes()", + "apiSymbol": "crypto.getHashes", + "depth": 2, + "scope": "api", + "anchor": "cryptogethashes", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:crypto.getHashes", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "crypto:2ab8394e29a7", + "chapter": "crypto", + "kind": "method", + "name": "getRandomValues", + "signature": "`crypto.getRandomValues(typedArray)`", + "label": "crypto.getRandomValues(typedArray)", + "apiSymbol": "crypto.getRandomValues", + "depth": 2, + "scope": "api", + "anchor": "cryptogetrandomvaluestypedarray", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:crypto.getRandomValues", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "crypto:21f22c71fb61", + "chapter": "crypto", + "kind": "method", + "name": "hash", + "signature": "`crypto.hash(algorithm, data[, options])`", + "label": "crypto.hash(algorithm, data[, options])", + "apiSymbol": "crypto.hash", + "depth": 2, + "scope": "api", + "anchor": "cryptohashalgorithm-data-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.crypto.hash" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:crypto.hash", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "crypto:3d310ed07414", + "chapter": "crypto", + "kind": "method", + "name": "hkdf", + "signature": "`crypto.hkdf(digest, ikm, salt, info, keylen, callback)`", + "label": "crypto.hkdf(digest, ikm, salt, info, keylen, callback)", + "apiSymbol": "crypto.hkdf", + "depth": 2, + "scope": "api", + "anchor": "cryptohkdfdigest-ikm-salt-info-keylen-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.crypto.hkdf" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:crypto.hkdf" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:0a05b645a564", + "chapter": "crypto", + "kind": "method", + "name": "hkdfSync", + "signature": "`crypto.hkdfSync(digest, ikm, salt, info, keylen)`", + "label": "crypto.hkdfSync(digest, ikm, salt, info, keylen)", + "apiSymbol": "crypto.hkdfSync", + "depth": 2, + "scope": "api", + "anchor": "cryptohkdfsyncdigest-ikm-salt-info-keylen", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.crypto.hkdfSync" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:crypto.hkdfSync" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:cb974006b4f5", + "chapter": "crypto", + "kind": "method", + "name": "pbkdf2", + "signature": "`crypto.pbkdf2(password, salt, iterations, keylen, digest, callback)`", + "label": "crypto.pbkdf2(password, salt, iterations, keylen, digest, callback)", + "apiSymbol": "crypto.pbkdf2", + "depth": 2, + "scope": "api", + "anchor": "cryptopbkdf2password-salt-iterations-keylen-digest-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.crypto.pbkdf2" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:crypto.pbkdf2", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "crypto:01aba8f47f6c", + "chapter": "crypto", + "kind": "method", + "name": "pbkdf2Sync", + "signature": "`crypto.pbkdf2Sync(password, salt, iterations, keylen, digest)`", + "label": "crypto.pbkdf2Sync(password, salt, iterations, keylen, digest)", + "apiSymbol": "crypto.pbkdf2Sync", + "depth": 2, + "scope": "api", + "anchor": "cryptopbkdf2syncpassword-salt-iterations-keylen-digest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.crypto.pbkdf2Sync" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:crypto.pbkdf2Sync", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "crypto:18079d0b276e", + "chapter": "crypto", + "kind": "method", + "name": "privateDecrypt", + "signature": "`crypto.privateDecrypt(privateKey, buffer)`", + "label": "crypto.privateDecrypt(privateKey, buffer)", + "apiSymbol": "crypto.privateDecrypt", + "depth": 2, + "scope": "api", + "anchor": "cryptoprivatedecryptprivatekey-buffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.crypto.privateDecrypt" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:crypto.privateDecrypt" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:2df78bda430e", + "chapter": "crypto", + "kind": "method", + "name": "privateEncrypt", + "signature": "`crypto.privateEncrypt(privateKey, buffer)`", + "label": "crypto.privateEncrypt(privateKey, buffer)", + "apiSymbol": "crypto.privateEncrypt", + "depth": 2, + "scope": "api", + "anchor": "cryptoprivateencryptprivatekey-buffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.crypto.privateEncrypt" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:crypto.privateEncrypt" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:5a9fa19ab36b", + "chapter": "crypto", + "kind": "method", + "name": "publicDecrypt", + "signature": "`crypto.publicDecrypt(key, buffer)`", + "label": "crypto.publicDecrypt(key, buffer)", + "apiSymbol": "crypto.publicDecrypt", + "depth": 2, + "scope": "api", + "anchor": "cryptopublicdecryptkey-buffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.crypto.publicDecrypt" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:crypto.publicDecrypt" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:a1084819aea0", + "chapter": "crypto", + "kind": "method", + "name": "publicEncrypt", + "signature": "`crypto.publicEncrypt(key, buffer)`", + "label": "crypto.publicEncrypt(key, buffer)", + "apiSymbol": "crypto.publicEncrypt", + "depth": 2, + "scope": "api", + "anchor": "cryptopublicencryptkey-buffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.crypto.publicEncrypt" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:crypto.publicEncrypt" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:94f9996a010b", + "chapter": "crypto", + "kind": "method", + "name": "randomBytes", + "signature": "`crypto.randomBytes(size[, callback])`", + "label": "crypto.randomBytes(size[, callback])", + "apiSymbol": "crypto.randomBytes", + "depth": 2, + "scope": "api", + "anchor": "cryptorandombytessize-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.crypto.randomBytes", + "tests": [ + "tests/corpus/1358-crypto-random.ts", + "tests/corpus/1534-crypto-hash-chain.ts", + "tests/corpus/2556-crypto-introspection.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:crypto.randomBytes", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "crypto:974195d3b725", + "chapter": "crypto", + "kind": "method", + "name": "randomFill", + "signature": "`crypto.randomFill(buffer[, offset][, size], callback)`", + "label": "crypto.randomFill(buffer[, offset][, size], callback)", + "apiSymbol": "crypto.randomFill", + "depth": 2, + "scope": "api", + "anchor": "cryptorandomfillbuffer-offset-size-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:crypto.randomFill", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "crypto:9a954164ef2a", + "chapter": "crypto", + "kind": "method", + "name": "randomFillSync", + "signature": "`crypto.randomFillSync(buffer[, offset][, size])`", + "label": "crypto.randomFillSync(buffer[, offset][, size])", + "apiSymbol": "crypto.randomFillSync", + "depth": 2, + "scope": "api", + "anchor": "cryptorandomfillsyncbuffer-offset-size", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:crypto.randomFillSync", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "crypto:a403de3874bc", + "chapter": "crypto", + "kind": "method", + "name": "randomInt", + "signature": "`crypto.randomInt([min, ]max[, callback])`", + "label": "crypto.randomInt([min, ]max[, callback])", + "apiSymbol": "crypto.randomInt", + "depth": 2, + "scope": "api", + "anchor": "cryptorandomintmin-max-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:crypto.randomInt", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "crypto:0d3bcb43072b", + "chapter": "crypto", + "kind": "method", + "name": "randomUUID", + "signature": "`crypto.randomUUID([options])`", + "label": "crypto.randomUUID([options])", + "apiSymbol": "crypto.randomUUID", + "depth": 2, + "scope": "api", + "anchor": "cryptorandomuuidoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.crypto.randomUUID", + "tests": [ + "tests/corpus/1358-crypto-random.ts", + "tests/corpus/1534-crypto-hash-chain.ts", + "tests/corpus/2556-crypto-introspection.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:crypto.randomUUID", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "crypto:10402b3c70ca", + "chapter": "crypto", + "kind": "method", + "name": "scrypt", + "signature": "`crypto.scrypt(password, salt, keylen[, options], callback)`", + "label": "crypto.scrypt(password, salt, keylen[, options], callback)", + "apiSymbol": "crypto.scrypt", + "depth": 2, + "scope": "api", + "anchor": "cryptoscryptpassword-salt-keylen-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.crypto.scrypt" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:crypto.scrypt" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:63b476fb71db", + "chapter": "crypto", + "kind": "method", + "name": "scryptSync", + "signature": "`crypto.scryptSync(password, salt, keylen[, options])`", + "label": "crypto.scryptSync(password, salt, keylen[, options])", + "apiSymbol": "crypto.scryptSync", + "depth": 2, + "scope": "api", + "anchor": "cryptoscryptsyncpassword-salt-keylen-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.crypto.scryptSync" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:crypto.scryptSync" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:f05cc6926023", + "chapter": "crypto", + "kind": "method", + "name": "secureHeapUsed", + "signature": "`crypto.secureHeapUsed()`", + "label": "crypto.secureHeapUsed()", + "apiSymbol": "crypto.secureHeapUsed", + "depth": 2, + "scope": "api", + "anchor": "cryptosecureheapused", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:crypto.secureHeapUsed" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:2ef08279a30e", + "chapter": "crypto", + "kind": "method", + "name": "setEngine", + "signature": "`crypto.setEngine(engine[, flags])`", + "label": "crypto.setEngine(engine[, flags])", + "apiSymbol": "crypto.setEngine", + "depth": 2, + "scope": "api", + "anchor": "cryptosetengineengine-flags", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:crypto.setEngine" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:d61ebc090db7", + "chapter": "crypto", + "kind": "method", + "name": "setFips", + "signature": "`crypto.setFips(bool)`", + "label": "crypto.setFips(bool)", + "apiSymbol": "crypto.setFips", + "depth": 2, + "scope": "api", + "anchor": "cryptosetfipsbool", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.crypto.setFips" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:crypto.setFips", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "crypto:5d370d84944c", + "chapter": "crypto", + "kind": "method", + "name": "sign", + "signature": "`crypto.sign(algorithm, data, key[, callback])`", + "label": "crypto.sign(algorithm, data, key[, callback])", + "apiSymbol": "crypto.sign", + "depth": 2, + "scope": "api", + "anchor": "cryptosignalgorithm-data-key-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.crypto.sign" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:crypto.sign" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:6ed432bf0cfd", + "chapter": "crypto", + "kind": "method", + "name": "timingSafeEqual", + "signature": "`crypto.timingSafeEqual(a, b)`", + "label": "crypto.timingSafeEqual(a, b)", + "apiSymbol": "crypto.timingSafeEqual", + "depth": 2, + "scope": "api", + "anchor": "cryptotimingsafeequala-b", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:crypto.timingSafeEqual", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "crypto:82c455f50fd0", + "chapter": "crypto", + "kind": "method", + "name": "verify", + "signature": "`crypto.verify(algorithm, data, key, signature[, callback])`", + "label": "crypto.verify(algorithm, data, key, signature[, callback])", + "apiSymbol": "crypto.verify", + "depth": 2, + "scope": "api", + "anchor": "cryptoverifyalgorithm-data-key-signature-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.crypto.verify" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:crypto.verify" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:de32b59d0bf8", + "chapter": "crypto", + "kind": "Object", + "name": "Type", + "signature": "`constants` Type: {Object}", + "label": "constants", + "apiSymbol": "constants", + "depth": 2, + "scope": "api", + "anchor": "nodecrypto-module-methods-and-properties", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:crypto.constants", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + }, + "anchorSource": "ancestor" + }, + { + "id": "crypto:ba0605358b38", + "chapter": "crypto", + "kind": "section", + "name": "fips", + "signature": "`crypto.fips`", + "label": "crypto.fips", + "apiSymbol": "crypto.fips", + "depth": 2, + "scope": "api", + "anchor": "cryptofips", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:548174ec78f8", + "chapter": "crypto", + "kind": "SubtleCrypto", + "name": "Type", + "signature": "`subtle` Type: {SubtleCrypto}", + "label": "subtle", + "apiSymbol": "subtle", + "depth": 2, + "scope": "api", + "anchor": "nodecrypto-module-methods-and-properties", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:crypto.subtle", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + }, + "anchorSource": "ancestor" + }, + { + "id": "crypto:c3b378f7da8d", + "chapter": "crypto", + "kind": "section", + "name": "webcrypto", + "signature": "`crypto.webcrypto`", + "label": "crypto.webcrypto", + "apiSymbol": "crypto.webcrypto", + "depth": 2, + "scope": "api", + "anchor": "cryptowebcrypto", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.crypto.webcrypto" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:crypto.webcrypto", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "crypto:869fe0f310d2", + "chapter": "crypto", + "kind": "module", + "name": "notes", + "signature": "Notes", + "label": "Notes", + "apiSymbol": "notes", + "depth": 1, + "scope": "documentation", + "anchor": "notes", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:45c8db8dc15f", + "chapter": "crypto", + "kind": "module", + "name": "using_strings_as_inputs_to_cryptographic_apis", + "signature": "Using strings as inputs to cryptographic APIs", + "label": "Using strings as inputs to cryptographic APIs", + "apiSymbol": "using_strings_as_inputs_to_cryptographic_apis", + "depth": 2, + "scope": "documentation", + "anchor": "using-strings-as-inputs-to-cryptographic-apis", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:fc1019233ee7", + "chapter": "crypto", + "kind": "module", + "name": "legacy_streams_api_(prior_to_node.js_0.10)", + "signature": "Legacy streams API (prior to Node.js 0.10)", + "label": "Legacy streams API (prior to Node.js 0.10)", + "apiSymbol": "legacy_streams_api_", + "depth": 2, + "scope": "documentation", + "anchor": "legacy-streams-api-prior-to-nodejs-010", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:137d41150388", + "chapter": "crypto", + "kind": "module", + "name": "support_for_weak_or_compromised_algorithms", + "signature": "Support for weak or compromised algorithms", + "label": "Support for weak or compromised algorithms", + "apiSymbol": "support_for_weak_or_compromised_algorithms", + "depth": 2, + "scope": "documentation", + "anchor": "support-for-weak-or-compromised-algorithms", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:11b7bf13e2fd", + "chapter": "crypto", + "kind": "module", + "name": "ccm_mode", + "signature": "CCM mode", + "label": "CCM mode", + "apiSymbol": "ccm_mode", + "depth": 2, + "scope": "documentation", + "anchor": "ccm-mode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:87bf6a295193", + "chapter": "crypto", + "kind": "module", + "name": "fips_mode", + "signature": "FIPS mode", + "label": "FIPS mode", + "apiSymbol": "fips_mode", + "depth": 2, + "scope": "documentation", + "anchor": "fips-mode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:f7de5ff8a31a", + "chapter": "crypto", + "kind": "module", + "name": "crypto_constants", + "signature": "Crypto constants", + "label": "Crypto constants", + "apiSymbol": "crypto_constants", + "depth": 1, + "scope": "documentation", + "anchor": "crypto-constants", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:569e632e46ec", + "chapter": "crypto", + "kind": "module", + "name": "openssl_options", + "signature": "OpenSSL options", + "label": "OpenSSL options", + "apiSymbol": "openssl_options", + "depth": 2, + "scope": "documentation", + "anchor": "openssl-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:1e36473112de", + "chapter": "crypto", + "kind": "module", + "name": "openssl_engine_constants", + "signature": "OpenSSL engine constants", + "label": "OpenSSL engine constants", + "apiSymbol": "openssl_engine_constants", + "depth": 2, + "scope": "documentation", + "anchor": "openssl-engine-constants", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:a29adf1357ec", + "chapter": "crypto", + "kind": "module", + "name": "other_openssl_constants", + "signature": "Other OpenSSL constants", + "label": "Other OpenSSL constants", + "apiSymbol": "other_openssl_constants", + "depth": 2, + "scope": "documentation", + "anchor": "other-openssl-constants", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:379c5fdecd3c", + "chapter": "crypto", + "kind": "module", + "name": "node.js_crypto_constants", + "signature": "Node.js crypto constants", + "label": "Node.js crypto constants", + "apiSymbol": "node.js_crypto_constants", + "depth": 2, + "scope": "documentation", + "anchor": "nodejs-crypto-constants", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:ec97f1991446", + "chapter": "crypto", + "kind": "class", + "name": "Certificate", + "signature": "Class: `Certificate`", + "label": "Certificate", + "apiSymbol": "Certificate", + "depth": 1, + "scope": "api", + "anchor": "class-certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:crypto.Certificate" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:8191fd1cda95", + "chapter": "crypto", + "kind": "module", + "name": "legacy_api", + "signature": "Legacy API", + "label": "Legacy API", + "apiSymbol": "legacy_api", + "depth": 2, + "scope": "documentation", + "anchor": "legacy-api", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:fd2f88142073", + "chapter": "crypto", + "kind": "method", + "name": "exportChallenge", + "signature": "`certificate.exportChallenge(spkac[, encoding])`", + "label": "certificate.exportChallenge(spkac[, encoding])", + "apiSymbol": "certificate.exportChallenge", + "depth": 3, + "scope": "api", + "anchor": "certificateexportchallengespkac-encoding", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:7e1be5373df5", + "chapter": "crypto", + "kind": "method", + "name": "exportPublicKey", + "signature": "`certificate.exportPublicKey(spkac[, encoding])`", + "label": "certificate.exportPublicKey(spkac[, encoding])", + "apiSymbol": "certificate.exportPublicKey", + "depth": 3, + "scope": "api", + "anchor": "certificateexportpublickeyspkac-encoding", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:eeda6a11b532", + "chapter": "crypto", + "kind": "method", + "name": "verifySpkac", + "signature": "`certificate.verifySpkac(spkac[, encoding])`", + "label": "certificate.verifySpkac(spkac[, encoding])", + "apiSymbol": "certificate.verifySpkac", + "depth": 3, + "scope": "api", + "anchor": "certificateverifyspkacspkac-encoding", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:b9c273cbab39", + "chapter": "crypto", + "kind": "class", + "name": "Cipheriv", + "signature": "Class: `Cipheriv`", + "label": "Cipheriv", + "apiSymbol": "Cipheriv", + "depth": 1, + "scope": "api", + "anchor": "class-cipheriv", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:700daa6ff9f9", + "chapter": "crypto", + "kind": "method", + "name": "final", + "signature": "`cipher.final([outputEncoding])`", + "label": "cipher.final([outputEncoding])", + "apiSymbol": "cipher.final", + "depth": 2, + "scope": "api", + "anchor": "cipherfinaloutputencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:8b816d8b8aae", + "chapter": "crypto", + "kind": "method", + "name": "getAuthTag", + "signature": "`cipher.getAuthTag()`", + "label": "cipher.getAuthTag()", + "apiSymbol": "cipher.getAuthTag", + "depth": 2, + "scope": "api", + "anchor": "ciphergetauthtag", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:eec0c6c93bc7", + "chapter": "crypto", + "kind": "method", + "name": "setAAD", + "signature": "`cipher.setAAD(buffer[, options])`", + "label": "cipher.setAAD(buffer[, options])", + "apiSymbol": "cipher.setAAD", + "depth": 2, + "scope": "api", + "anchor": "ciphersetaadbuffer-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:979cc100d122", + "chapter": "crypto", + "kind": "method", + "name": "setAutoPadding", + "signature": "`cipher.setAutoPadding([autoPadding])`", + "label": "cipher.setAutoPadding([autoPadding])", + "apiSymbol": "cipher.setAutoPadding", + "depth": 2, + "scope": "api", + "anchor": "ciphersetautopaddingautopadding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:114053049b29", + "chapter": "crypto", + "kind": "method", + "name": "update", + "signature": "`cipher.update(data[, inputEncoding][, outputEncoding])`", + "label": "cipher.update(data[, inputEncoding][, outputEncoding])", + "apiSymbol": "cipher.update", + "depth": 2, + "scope": "api", + "anchor": "cipherupdatedata-inputencoding-outputencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:9c956f80d347", + "chapter": "crypto", + "kind": "class", + "name": "Decipheriv", + "signature": "Class: `Decipheriv`", + "label": "Decipheriv", + "apiSymbol": "Decipheriv", + "depth": 1, + "scope": "api", + "anchor": "class-decipheriv", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:d13ee411d37c", + "chapter": "crypto", + "kind": "method", + "name": "final", + "signature": "`decipher.final([outputEncoding])`", + "label": "decipher.final([outputEncoding])", + "apiSymbol": "decipher.final", + "depth": 2, + "scope": "api", + "anchor": "decipherfinaloutputencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:a8e4d1bd740f", + "chapter": "crypto", + "kind": "method", + "name": "setAAD", + "signature": "`decipher.setAAD(buffer[, options])`", + "label": "decipher.setAAD(buffer[, options])", + "apiSymbol": "decipher.setAAD", + "depth": 2, + "scope": "api", + "anchor": "deciphersetaadbuffer-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:931f37a91f62", + "chapter": "crypto", + "kind": "method", + "name": "setAuthTag", + "signature": "`decipher.setAuthTag(buffer[, encoding])`", + "label": "decipher.setAuthTag(buffer[, encoding])", + "apiSymbol": "decipher.setAuthTag", + "depth": 2, + "scope": "api", + "anchor": "deciphersetauthtagbuffer-encoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:9ca24a440c70", + "chapter": "crypto", + "kind": "method", + "name": "setAutoPadding", + "signature": "`decipher.setAutoPadding([autoPadding])`", + "label": "decipher.setAutoPadding([autoPadding])", + "apiSymbol": "decipher.setAutoPadding", + "depth": 2, + "scope": "api", + "anchor": "deciphersetautopaddingautopadding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:2e92de121be5", + "chapter": "crypto", + "kind": "method", + "name": "update", + "signature": "`decipher.update(data[, inputEncoding][, outputEncoding])`", + "label": "decipher.update(data[, inputEncoding][, outputEncoding])", + "apiSymbol": "decipher.update", + "depth": 2, + "scope": "api", + "anchor": "decipherupdatedata-inputencoding-outputencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:4f72a2bdb4f3", + "chapter": "crypto", + "kind": "class", + "name": "DiffieHellman", + "signature": "Class: `DiffieHellman`", + "label": "DiffieHellman", + "apiSymbol": "DiffieHellman", + "depth": 1, + "scope": "api", + "anchor": "class-diffiehellman", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:23014d576554", + "chapter": "crypto", + "kind": "method", + "name": "computeSecret", + "signature": "`diffieHellman.computeSecret(otherPublicKey[, inputEncoding][, outputEncoding])`", + "label": "diffieHellman.computeSecret(otherPublicKey[, inputEncoding][, outputEncoding])", + "apiSymbol": "diffieHellman.computeSecret", + "depth": 2, + "scope": "api", + "anchor": "diffiehellmancomputesecretotherpublickey-inputencoding-outputencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:285040b024fb", + "chapter": "crypto", + "kind": "method", + "name": "generateKeys", + "signature": "`diffieHellman.generateKeys([encoding])`", + "label": "diffieHellman.generateKeys([encoding])", + "apiSymbol": "diffieHellman.generateKeys", + "depth": 2, + "scope": "api", + "anchor": "diffiehellmangeneratekeysencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:f981e631eadc", + "chapter": "crypto", + "kind": "method", + "name": "getGenerator", + "signature": "`diffieHellman.getGenerator([encoding])`", + "label": "diffieHellman.getGenerator([encoding])", + "apiSymbol": "diffieHellman.getGenerator", + "depth": 2, + "scope": "api", + "anchor": "diffiehellmangetgeneratorencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:1bc38308e8e0", + "chapter": "crypto", + "kind": "method", + "name": "getPrime", + "signature": "`diffieHellman.getPrime([encoding])`", + "label": "diffieHellman.getPrime([encoding])", + "apiSymbol": "diffieHellman.getPrime", + "depth": 2, + "scope": "api", + "anchor": "diffiehellmangetprimeencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:6ae8ed1c16aa", + "chapter": "crypto", + "kind": "method", + "name": "getPrivateKey", + "signature": "`diffieHellman.getPrivateKey([encoding])`", + "label": "diffieHellman.getPrivateKey([encoding])", + "apiSymbol": "diffieHellman.getPrivateKey", + "depth": 2, + "scope": "api", + "anchor": "diffiehellmangetprivatekeyencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:9069ec158cfb", + "chapter": "crypto", + "kind": "method", + "name": "getPublicKey", + "signature": "`diffieHellman.getPublicKey([encoding])`", + "label": "diffieHellman.getPublicKey([encoding])", + "apiSymbol": "diffieHellman.getPublicKey", + "depth": 2, + "scope": "api", + "anchor": "diffiehellmangetpublickeyencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:d3723dc39029", + "chapter": "crypto", + "kind": "method", + "name": "setPrivateKey", + "signature": "`diffieHellman.setPrivateKey(privateKey[, encoding])`", + "label": "diffieHellman.setPrivateKey(privateKey[, encoding])", + "apiSymbol": "diffieHellman.setPrivateKey", + "depth": 2, + "scope": "api", + "anchor": "diffiehellmansetprivatekeyprivatekey-encoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:16362019d0a0", + "chapter": "crypto", + "kind": "method", + "name": "setPublicKey", + "signature": "`diffieHellman.setPublicKey(publicKey[, encoding])`", + "label": "diffieHellman.setPublicKey(publicKey[, encoding])", + "apiSymbol": "diffieHellman.setPublicKey", + "depth": 2, + "scope": "api", + "anchor": "diffiehellmansetpublickeypublickey-encoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:64a2a8e6f521", + "chapter": "crypto", + "kind": "section", + "name": "verifyError", + "signature": "`diffieHellman.verifyError`", + "label": "diffieHellman.verifyError", + "apiSymbol": "diffieHellman.verifyError", + "depth": 2, + "scope": "api", + "anchor": "diffiehellmanverifyerror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:d8a35058e2b8", + "chapter": "crypto", + "kind": "class", + "name": "DiffieHellmanGroup", + "signature": "Class: `DiffieHellmanGroup`", + "label": "DiffieHellmanGroup", + "apiSymbol": "DiffieHellmanGroup", + "depth": 1, + "scope": "api", + "anchor": "class-diffiehellmangroup", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:12976329983d", + "chapter": "crypto", + "kind": "class", + "name": "ECDH", + "signature": "Class: `ECDH`", + "label": "ECDH", + "apiSymbol": "ECDH", + "depth": 1, + "scope": "api", + "anchor": "class-ecdh", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:90286cb0202e", + "chapter": "crypto", + "kind": "method", + "name": "computeSecret", + "signature": "`ecdh.computeSecret(otherPublicKey[, inputEncoding][, outputEncoding])`", + "label": "ecdh.computeSecret(otherPublicKey[, inputEncoding][, outputEncoding])", + "apiSymbol": "ecdh.computeSecret", + "depth": 2, + "scope": "api", + "anchor": "ecdhcomputesecretotherpublickey-inputencoding-outputencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:152f6b5531a6", + "chapter": "crypto", + "kind": "method", + "name": "generateKeys", + "signature": "`ecdh.generateKeys([encoding[, format]])`", + "label": "ecdh.generateKeys([encoding[, format]])", + "apiSymbol": "ecdh.generateKeys", + "depth": 2, + "scope": "api", + "anchor": "ecdhgeneratekeysencoding-format", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:1d7a0a99229b", + "chapter": "crypto", + "kind": "method", + "name": "getPrivateKey", + "signature": "`ecdh.getPrivateKey([encoding])`", + "label": "ecdh.getPrivateKey([encoding])", + "apiSymbol": "ecdh.getPrivateKey", + "depth": 2, + "scope": "api", + "anchor": "ecdhgetprivatekeyencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:31a28a09eb16", + "chapter": "crypto", + "kind": "method", + "name": "getPublicKey", + "signature": "`ecdh.getPublicKey([encoding][, format])`", + "label": "ecdh.getPublicKey([encoding][, format])", + "apiSymbol": "ecdh.getPublicKey", + "depth": 2, + "scope": "api", + "anchor": "ecdhgetpublickeyencoding-format", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:d54f215087e4", + "chapter": "crypto", + "kind": "method", + "name": "setPrivateKey", + "signature": "`ecdh.setPrivateKey(privateKey[, encoding])`", + "label": "ecdh.setPrivateKey(privateKey[, encoding])", + "apiSymbol": "ecdh.setPrivateKey", + "depth": 2, + "scope": "api", + "anchor": "ecdhsetprivatekeyprivatekey-encoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:ac963ede7945", + "chapter": "crypto", + "kind": "method", + "name": "setPublicKey", + "signature": "`ecdh.setPublicKey(publicKey[, encoding])`", + "label": "ecdh.setPublicKey(publicKey[, encoding])", + "apiSymbol": "ecdh.setPublicKey", + "depth": 2, + "scope": "api", + "anchor": "ecdhsetpublickeypublickey-encoding", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:a4f0b3c152f1", + "chapter": "crypto", + "kind": "class", + "name": "Hash", + "signature": "Class: `Hash`", + "label": "Hash", + "apiSymbol": "Hash", + "depth": 1, + "scope": "api", + "anchor": "class-hash", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:crypto.Hash", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "crypto:d3963279f285", + "chapter": "crypto", + "kind": "method", + "name": "copy", + "signature": "`hash.copy([options])`", + "label": "hash.copy([options])", + "apiSymbol": "hash.copy", + "depth": 2, + "scope": "api", + "anchor": "hashcopyoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:crypto.hash.copy", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "crypto:59585e0a2438", + "chapter": "crypto", + "kind": "method", + "name": "digest", + "signature": "`hash.digest([encoding])`", + "label": "hash.digest([encoding])", + "apiSymbol": "hash.digest", + "depth": 2, + "scope": "api", + "anchor": "hashdigestencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:crypto.hash.digest", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "crypto:a73c2c671736", + "chapter": "crypto", + "kind": "method", + "name": "update", + "signature": "`hash.update(data[, inputEncoding])`", + "label": "hash.update(data[, inputEncoding])", + "apiSymbol": "hash.update", + "depth": 2, + "scope": "api", + "anchor": "hashupdatedata-inputencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:crypto.hash.update", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "crypto:c15e8a6a36cf", + "chapter": "crypto", + "kind": "class", + "name": "Hmac", + "signature": "Class: `Hmac`", + "label": "Hmac", + "apiSymbol": "Hmac", + "depth": 1, + "scope": "api", + "anchor": "class-hmac", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:crypto.Hmac", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "crypto:8b80f07883fa", + "chapter": "crypto", + "kind": "method", + "name": "digest", + "signature": "`hmac.digest([encoding])`", + "label": "hmac.digest([encoding])", + "apiSymbol": "hmac.digest", + "depth": 2, + "scope": "api", + "anchor": "hmacdigestencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:crypto.hmac.digest", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "crypto:89653e25c6cd", + "chapter": "crypto", + "kind": "method", + "name": "update", + "signature": "`hmac.update(data[, inputEncoding])`", + "label": "hmac.update(data[, inputEncoding])", + "apiSymbol": "hmac.update", + "depth": 2, + "scope": "api", + "anchor": "hmacupdatedata-inputencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:crypto.hmac.update", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "crypto:2b66d6d94c1b", + "chapter": "crypto", + "kind": "class", + "name": "KeyObject", + "signature": "Class: `KeyObject`", + "label": "KeyObject", + "apiSymbol": "KeyObject", + "depth": 1, + "scope": "api", + "anchor": "class-keyobject", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:crypto.KeyObject" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:6f2bcfb156ac", + "chapter": "crypto", + "kind": "method", + "name": "equals", + "signature": "`keyObject.equals(otherKeyObject)`", + "label": "keyObject.equals(otherKeyObject)", + "apiSymbol": "keyObject.equals", + "depth": 2, + "scope": "api", + "anchor": "keyobjectequalsotherkeyobject", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:85e85102b244", + "chapter": "crypto", + "kind": "method", + "name": "export", + "signature": "`keyObject.export([options])`", + "label": "keyObject.export([options])", + "apiSymbol": "keyObject.export", + "depth": 2, + "scope": "api", + "anchor": "keyobjectexportoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:e353651be6c6", + "chapter": "crypto", + "kind": "method", + "name": "toCryptoKey", + "signature": "`keyObject.toCryptoKey(algorithm, extractable, keyUsages)`", + "label": "keyObject.toCryptoKey(algorithm, extractable, keyUsages)", + "apiSymbol": "keyObject.toCryptoKey", + "depth": 2, + "scope": "api", + "anchor": "keyobjecttocryptokeyalgorithm-extractable-keyusages", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:a0364b2ad9ac", + "chapter": "crypto", + "kind": "Object", + "name": "Type", + "signature": "`asymmetricKeyDetails` Type: {Object}", + "label": "asymmetricKeyDetails", + "apiSymbol": "asymmetricKeyDetails", + "depth": 2, + "scope": "api", + "anchor": "class-keyobject", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "crypto:485527857ce7", + "chapter": "crypto", + "kind": "string", + "name": "Type", + "signature": "`asymmetricKeyType` Type: {string}", + "label": "asymmetricKeyType", + "apiSymbol": "asymmetricKeyType", + "depth": 2, + "scope": "api", + "anchor": "class-keyobject", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "crypto:50b2afeb1043", + "chapter": "crypto", + "kind": "number", + "name": "Type", + "signature": "`symmetricKeySize` Type: {number}", + "label": "symmetricKeySize", + "apiSymbol": "symmetricKeySize", + "depth": 2, + "scope": "api", + "anchor": "class-keyobject", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "crypto:5995cb82e2ad", + "chapter": "crypto", + "kind": "string", + "name": "Type", + "signature": "`type` Type: {string}", + "label": "type", + "apiSymbol": "type", + "depth": 2, + "scope": "api", + "anchor": "class-keyobject", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "crypto:1f80502ef093", + "chapter": "crypto", + "kind": "class", + "name": "Sign", + "signature": "Class: `Sign`", + "label": "Sign", + "apiSymbol": "Sign", + "depth": 1, + "scope": "api", + "anchor": "class-sign", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:f0d4c38cb195", + "chapter": "crypto", + "kind": "method", + "name": "sign", + "signature": "`sign.sign(privateKey[, outputEncoding])`", + "label": "sign.sign(privateKey[, outputEncoding])", + "apiSymbol": "sign.sign", + "depth": 2, + "scope": "api", + "anchor": "signsignprivatekey-outputencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:1a7934a06f56", + "chapter": "crypto", + "kind": "method", + "name": "update", + "signature": "`sign.update(data[, inputEncoding])`", + "label": "sign.update(data[, inputEncoding])", + "apiSymbol": "sign.update", + "depth": 2, + "scope": "api", + "anchor": "signupdatedata-inputencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:27bc6401cdef", + "chapter": "crypto", + "kind": "class", + "name": "Verify", + "signature": "Class: `Verify`", + "label": "Verify", + "apiSymbol": "Verify", + "depth": 1, + "scope": "api", + "anchor": "class-verify", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:3268d2b63eaf", + "chapter": "crypto", + "kind": "method", + "name": "update", + "signature": "`verify.update(data[, inputEncoding])`", + "label": "verify.update(data[, inputEncoding])", + "apiSymbol": "verify.update", + "depth": 2, + "scope": "api", + "anchor": "verifyupdatedata-inputencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:16511e6f27c0", + "chapter": "crypto", + "kind": "method", + "name": "verify", + "signature": "`verify.verify(object, signature[, signatureEncoding])`", + "label": "verify.verify(object, signature[, signatureEncoding])", + "apiSymbol": "verify.verify", + "depth": 2, + "scope": "api", + "anchor": "verifyverifyobject-signature-signatureencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:21193c8007c3", + "chapter": "crypto", + "kind": "class", + "name": "X509Certificate", + "signature": "Class: `X509Certificate`", + "label": "X509Certificate", + "apiSymbol": "X509Certificate", + "depth": 1, + "scope": "api", + "anchor": "class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:crypto.X509Certificate" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:782c3f6355f4", + "chapter": "crypto", + "kind": "method", + "name": "checkEmail", + "signature": "`x509.checkEmail(email[, options])`", + "label": "x509.checkEmail(email[, options])", + "apiSymbol": "x509.checkEmail", + "depth": 2, + "scope": "api", + "anchor": "x509checkemailemail-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:7bd4defaa6f6", + "chapter": "crypto", + "kind": "method", + "name": "checkHost", + "signature": "`x509.checkHost(name[, options])`", + "label": "x509.checkHost(name[, options])", + "apiSymbol": "x509.checkHost", + "depth": 2, + "scope": "api", + "anchor": "x509checkhostname-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:a552ac77f041", + "chapter": "crypto", + "kind": "method", + "name": "checkIP", + "signature": "`x509.checkIP(ip)`", + "label": "x509.checkIP(ip)", + "apiSymbol": "x509.checkIP", + "depth": 2, + "scope": "api", + "anchor": "x509checkipip", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:5e0b7bb3139e", + "chapter": "crypto", + "kind": "method", + "name": "checkIssued", + "signature": "`x509.checkIssued(otherCert)`", + "label": "x509.checkIssued(otherCert)", + "apiSymbol": "x509.checkIssued", + "depth": 2, + "scope": "api", + "anchor": "x509checkissuedothercert", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:9bb6177d2e64", + "chapter": "crypto", + "kind": "method", + "name": "checkPrivateKey", + "signature": "`x509.checkPrivateKey(privateKey)`", + "label": "x509.checkPrivateKey(privateKey)", + "apiSymbol": "x509.checkPrivateKey", + "depth": 2, + "scope": "api", + "anchor": "x509checkprivatekeyprivatekey", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:f8b12d2ad75d", + "chapter": "crypto", + "kind": "method", + "name": "toJSON", + "signature": "`x509.toJSON()`", + "label": "x509.toJSON()", + "apiSymbol": "x509.toJSON", + "depth": 2, + "scope": "api", + "anchor": "x509tojson", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:c1ed50d74df9", + "chapter": "crypto", + "kind": "method", + "name": "toLegacyObject", + "signature": "`x509.toLegacyObject()`", + "label": "x509.toLegacyObject()", + "apiSymbol": "x509.toLegacyObject", + "depth": 2, + "scope": "api", + "anchor": "x509tolegacyobject", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:01179d9bc0fa", + "chapter": "crypto", + "kind": "method", + "name": "toString", + "signature": "`x509.toString()`", + "label": "x509.toString()", + "apiSymbol": "x509.toString", + "depth": 2, + "scope": "api", + "anchor": "x509tostring", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:22923e49e9e2", + "chapter": "crypto", + "kind": "method", + "name": "verify", + "signature": "`x509.verify(publicKey)`", + "label": "x509.verify(publicKey)", + "apiSymbol": "x509.verify", + "depth": 2, + "scope": "api", + "anchor": "x509verifypublickey", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "exact" + }, + { + "id": "crypto:384f09c59f83", + "chapter": "crypto", + "kind": "boolean", + "name": "Type", + "signature": "`ca` Type: {boolean} Will be `true` if this is a Certificate Authority (CA) certificate.", + "label": "ca", + "apiSymbol": "ca", + "depth": 2, + "scope": "api", + "anchor": "class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "crypto:033a5471ea87", + "chapter": "crypto", + "kind": "string", + "name": "Type", + "signature": "`fingerprint` Type: {string}", + "label": "fingerprint", + "apiSymbol": "fingerprint", + "depth": 2, + "scope": "api", + "anchor": "class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "crypto:54e236e6cbb1", + "chapter": "crypto", + "kind": "string", + "name": "Type", + "signature": "`fingerprint256` Type: {string}", + "label": "fingerprint256", + "apiSymbol": "fingerprint256", + "depth": 2, + "scope": "api", + "anchor": "class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "crypto:99b8d79428f9", + "chapter": "crypto", + "kind": "string", + "name": "Type", + "signature": "`fingerprint512` Type: {string}", + "label": "fingerprint512", + "apiSymbol": "fingerprint512", + "depth": 2, + "scope": "api", + "anchor": "class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "crypto:8d64fdd4d74d", + "chapter": "crypto", + "kind": "string", + "name": "Type", + "signature": "`infoAccess` Type: {string}", + "label": "infoAccess", + "apiSymbol": "infoAccess", + "depth": 2, + "scope": "api", + "anchor": "class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "crypto:961336842e1d", + "chapter": "crypto", + "kind": "string", + "name": "Type", + "signature": "`issuer` Type: {string}", + "label": "issuer", + "apiSymbol": "issuer", + "depth": 2, + "scope": "api", + "anchor": "class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "crypto:8dbb2c55f9f1", + "chapter": "crypto", + "kind": "X509Certificate", + "name": "Type", + "signature": "`issuerCertificate` Type: {X509Certificate}", + "label": "issuerCertificate", + "apiSymbol": "issuerCertificate", + "depth": 2, + "scope": "api", + "anchor": "class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "crypto:8d468947b609", + "chapter": "crypto", + "kind": "string\\[]", + "name": "Type", + "signature": "`keyUsage` Type: {string\\[]}", + "label": "keyUsage", + "apiSymbol": "keyUsage", + "depth": 2, + "scope": "api", + "anchor": "class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "crypto:889b2e52ecb8", + "chapter": "crypto", + "kind": "KeyObject", + "name": "Type", + "signature": "`publicKey` Type: {KeyObject}", + "label": "publicKey", + "apiSymbol": "publicKey", + "depth": 2, + "scope": "api", + "anchor": "class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "crypto:0ea854d0e858", + "chapter": "crypto", + "kind": "Buffer", + "name": "Type", + "signature": "`raw` Type: {Buffer}", + "label": "raw", + "apiSymbol": "raw", + "depth": 2, + "scope": "api", + "anchor": "class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "crypto:31308b99a231", + "chapter": "crypto", + "kind": "string", + "name": "Type", + "signature": "`serialNumber` Type: {string}", + "label": "serialNumber", + "apiSymbol": "serialNumber", + "depth": 2, + "scope": "api", + "anchor": "class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "crypto:4f31985db14a", + "chapter": "crypto", + "kind": "string", + "name": "Type", + "signature": "`subject` Type: {string}", + "label": "subject", + "apiSymbol": "subject", + "depth": 2, + "scope": "api", + "anchor": "class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "crypto:39b2be69dd3e", + "chapter": "crypto", + "kind": "string", + "name": "Type", + "signature": "`subjectAltName` Type: {string}", + "label": "subjectAltName", + "apiSymbol": "subjectAltName", + "depth": 2, + "scope": "api", + "anchor": "class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "crypto:2599c820624c", + "chapter": "crypto", + "kind": "string", + "name": "Type", + "signature": "`validFrom` Type: {string}", + "label": "validFrom", + "apiSymbol": "validFrom", + "depth": 2, + "scope": "api", + "anchor": "class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "crypto:1cd0e31c665e", + "chapter": "crypto", + "kind": "Date", + "name": "Type", + "signature": "`validFromDate` Type: {Date}", + "label": "validFromDate", + "apiSymbol": "validFromDate", + "depth": 2, + "scope": "api", + "anchor": "class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "crypto:015b61fc4aed", + "chapter": "crypto", + "kind": "string", + "name": "Type", + "signature": "`validTo` Type: {string}", + "label": "validTo", + "apiSymbol": "validTo", + "depth": 2, + "scope": "api", + "anchor": "class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "crypto:12cadeecd77d", + "chapter": "crypto", + "kind": "Date", + "name": "Type", + "signature": "`validToDate` Type: {Date}", + "label": "validToDate", + "apiSymbol": "validToDate", + "depth": 2, + "scope": "api", + "anchor": "class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "crypto:dd666ee892cd", + "chapter": "crypto", + "kind": "string|undefined", + "name": "Type", + "signature": "`signatureAlgorithm` Type: {string|undefined}", + "label": "signatureAlgorithm", + "apiSymbol": "signatureAlgorithm", + "depth": 2, + "scope": "api", + "anchor": "class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "crypto:3a62d3a86672", + "chapter": "crypto", + "kind": "string", + "name": "Type", + "signature": "`signatureAlgorithmOid` Type: {string}", + "label": "signatureAlgorithmOid", + "apiSymbol": "signatureAlgorithmOid", + "depth": 2, + "scope": "api", + "anchor": "class-x509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:crypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:crypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "debugger:b71b5b3bf058", + "chapter": "debugger", + "kind": "misc", + "name": "Debugger", + "signature": "Debugger", + "label": "Debugger", + "apiSymbol": "Debugger", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:debugger" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:debugger" + }, + "anchorSource": "chapter" + }, + { + "id": "debugger:75e91e1776b1", + "chapter": "debugger", + "kind": "misc", + "name": "watchers", + "signature": "Watchers", + "label": "Watchers", + "apiSymbol": "watchers", + "depth": 1, + "scope": "documentation", + "anchor": "watchers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "debugger:f845f5b4effa", + "chapter": "debugger", + "kind": "misc", + "name": "command_reference", + "signature": "Command reference", + "label": "Command reference", + "apiSymbol": "command_reference", + "depth": 1, + "scope": "documentation", + "anchor": "command-reference", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "debugger:add409ce14a0", + "chapter": "debugger", + "kind": "module", + "name": "stepping", + "signature": "Stepping", + "label": "Stepping", + "apiSymbol": "stepping", + "depth": 2, + "scope": "documentation", + "anchor": "stepping", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "debugger:d36ce15c455a", + "chapter": "debugger", + "kind": "module", + "name": "breakpoints", + "signature": "Breakpoints", + "label": "Breakpoints", + "apiSymbol": "breakpoints", + "depth": 2, + "scope": "documentation", + "anchor": "breakpoints", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "debugger:00622531ef77", + "chapter": "debugger", + "kind": "module", + "name": "information", + "signature": "Information", + "label": "Information", + "apiSymbol": "information", + "depth": 2, + "scope": "documentation", + "anchor": "information", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "debugger:b001c5222f48", + "chapter": "debugger", + "kind": "module", + "name": "execution_control", + "signature": "Execution control", + "label": "Execution control", + "apiSymbol": "execution_control", + "depth": 2, + "scope": "documentation", + "anchor": "execution-control", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "debugger:cef6ad7a5934", + "chapter": "debugger", + "kind": "module", + "name": "various", + "signature": "Various", + "label": "Various", + "apiSymbol": "various", + "depth": 2, + "scope": "documentation", + "anchor": "various", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "debugger:03040216bb84", + "chapter": "debugger", + "kind": "misc", + "name": "advanced_usage", + "signature": "Advanced usage", + "label": "Advanced usage", + "apiSymbol": "advanced_usage", + "depth": 1, + "scope": "documentation", + "anchor": "advanced-usage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "debugger:c33238129b16", + "chapter": "debugger", + "kind": "module", + "name": "v8_inspector_integration_for_node.js", + "signature": "V8 inspector integration for Node.js", + "label": "V8 inspector integration for Node.js", + "apiSymbol": "v8_inspector_integration_for_node.js", + "depth": 2, + "scope": "documentation", + "anchor": "v8-inspector-integration-for-nodejs", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:66fa5be60243", + "chapter": "deprecations", + "kind": "misc", + "name": "Deprecated APIs", + "signature": "Deprecated APIs", + "label": "Deprecated APIs", + "apiSymbol": "Deprecated APIs", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "chapter" + }, + { + "id": "deprecations:9408685a159b", + "chapter": "deprecations", + "kind": "misc", + "name": "revoking_deprecations", + "signature": "Revoking deprecations", + "label": "Revoking deprecations", + "apiSymbol": "revoking_deprecations", + "depth": 1, + "scope": "metadata", + "anchor": "revoking-deprecations", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:bfb02c45fa2c", + "chapter": "deprecations", + "kind": "misc", + "name": "list_of_deprecated_apis", + "signature": "List of deprecated APIs", + "label": "List of deprecated APIs", + "apiSymbol": "list_of_deprecated_apis", + "depth": 1, + "scope": "metadata", + "anchor": "list-of-deprecated-apis", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:34ce160c9fd8", + "chapter": "deprecations", + "kind": "module", + "name": "dep0001:_`http.outgoingmessage.prototype.flush`", + "signature": "DEP0001: `http.OutgoingMessage.prototype.flush`", + "label": "DEP0001: http.OutgoingMessage.prototype.flush", + "apiSymbol": "http.OutgoingMessage.prototype.flush", + "depth": 2, + "scope": "metadata", + "anchor": "dep0001-httpoutgoingmessageprototypeflush", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:48ae500ea546", + "chapter": "deprecations", + "kind": "module", + "name": "dep0002:_`require('_linklist')`", + "signature": "DEP0002: `require('_linklist')`", + "label": "DEP0002: require('_linklist')", + "apiSymbol": "require", + "depth": 2, + "scope": "metadata", + "anchor": "dep0002-require_linklist", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:680d0000224b", + "chapter": "deprecations", + "kind": "module", + "name": "dep0003:_`_writablestate.buffer`", + "signature": "DEP0003: `_writableState.buffer`", + "label": "DEP0003: _writableState.buffer", + "apiSymbol": "_writableState.buffer", + "depth": 2, + "scope": "metadata", + "anchor": "dep0003-_writablestatebuffer", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:e949724abb83", + "chapter": "deprecations", + "kind": "module", + "name": "dep0004:_`cryptostream.prototype.readystate`", + "signature": "DEP0004: `CryptoStream.prototype.readyState`", + "label": "DEP0004: CryptoStream.prototype.readyState", + "apiSymbol": "CryptoStream.prototype.readyState", + "depth": 2, + "scope": "metadata", + "anchor": "dep0004-cryptostreamprototypereadystate", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:3f409e6f31fc", + "chapter": "deprecations", + "kind": "module", + "name": "dep0005:_`buffer()`_constructor", + "signature": "DEP0005: `Buffer()` constructor", + "label": "DEP0005: Buffer() constructor", + "apiSymbol": "Buffer", + "depth": 2, + "scope": "metadata", + "anchor": "dep0005-buffer-constructor", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:f374cf5c05f5", + "chapter": "deprecations", + "kind": "module", + "name": "dep0006:_`child_process`_`options.customfds`", + "signature": "DEP0006: `child_process` `options.customFds`", + "label": "DEP0006: child_process options.customFds", + "apiSymbol": "child_process", + "depth": 2, + "scope": "metadata", + "anchor": "dep0006-child_process-optionscustomfds", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:218d5dcde0fd", + "chapter": "deprecations", + "kind": "module", + "name": "dep0007:_replace_`cluster`_`worker.suicide`_with_`worker.exitedafterdisconnect`", + "signature": "DEP0007: Replace `cluster` `worker.suicide` with `worker.exitedAfterDisconnect`", + "label": "DEP0007: Replace cluster worker.suicide with worker.exitedAfterDisconnect", + "apiSymbol": "cluster", + "depth": 2, + "scope": "metadata", + "anchor": "dep0007-replace-cluster-workersuicide-with-workerexitedafterdisconnect", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:b5014c5ce599", + "chapter": "deprecations", + "kind": "module", + "name": "dep0008:_`require('node:constants')`", + "signature": "DEP0008: `require('node:constants')`", + "label": "DEP0008: require('node:constants')", + "apiSymbol": "require", + "depth": 2, + "scope": "metadata", + "anchor": "dep0008-requirenodeconstants", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:f1df9cb591b8", + "chapter": "deprecations", + "kind": "module", + "name": "dep0009:_`crypto.pbkdf2`_without_digest", + "signature": "DEP0009: `crypto.pbkdf2` without digest", + "label": "DEP0009: crypto.pbkdf2 without digest", + "apiSymbol": "crypto.pbkdf2", + "depth": 2, + "scope": "metadata", + "anchor": "dep0009-cryptopbkdf2-without-digest", + "nodeStability": null, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.crypto.pbkdf2" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:c67dc23e94e9", + "chapter": "deprecations", + "kind": "module", + "name": "dep0010:_`crypto.createcredentials`", + "signature": "DEP0010: `crypto.createCredentials`", + "label": "DEP0010: crypto.createCredentials", + "apiSymbol": "crypto.createCredentials", + "depth": 2, + "scope": "metadata", + "anchor": "dep0010-cryptocreatecredentials", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:65a893974446", + "chapter": "deprecations", + "kind": "module", + "name": "dep0011:_`crypto.credentials`", + "signature": "DEP0011: `crypto.Credentials`", + "label": "DEP0011: crypto.Credentials", + "apiSymbol": "crypto.Credentials", + "depth": 2, + "scope": "metadata", + "anchor": "dep0011-cryptocredentials", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:7fa2efea23c1", + "chapter": "deprecations", + "kind": "module", + "name": "dep0012:_`domain.dispose`", + "signature": "DEP0012: `Domain.dispose`", + "label": "DEP0012: Domain.dispose", + "apiSymbol": "Domain.dispose", + "depth": 2, + "scope": "metadata", + "anchor": "dep0012-domaindispose", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:cea97d3330a7", + "chapter": "deprecations", + "kind": "module", + "name": "dep0013:_`fs`_asynchronous_function_without_callback", + "signature": "DEP0013: `fs` asynchronous function without callback", + "label": "DEP0013: fs asynchronous function without callback", + "apiSymbol": "fs", + "depth": 2, + "scope": "metadata", + "anchor": "dep0013-fs-asynchronous-function-without-callback", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:d99b2d7c4ef9", + "chapter": "deprecations", + "kind": "module", + "name": "dep0014:_`fs.read`_legacy_string_interface", + "signature": "DEP0014: `fs.read` legacy String interface", + "label": "DEP0014: fs.read legacy String interface", + "apiSymbol": "fs.read", + "depth": 2, + "scope": "metadata", + "anchor": "dep0014-fsread-legacy-string-interface", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:c6dc25f7892b", + "chapter": "deprecations", + "kind": "module", + "name": "dep0015:_`fs.readsync`_legacy_string_interface", + "signature": "DEP0015: `fs.readSync` legacy String interface", + "label": "DEP0015: fs.readSync legacy String interface", + "apiSymbol": "fs.readSync", + "depth": 2, + "scope": "metadata", + "anchor": "dep0015-fsreadsync-legacy-string-interface", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.fs.readSync", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:519f9f345f7c", + "chapter": "deprecations", + "kind": "module", + "name": "dep0016:_`global`/`root`", + "signature": "DEP0016: `GLOBAL`/`root`", + "label": "DEP0016: GLOBAL/root", + "apiSymbol": "GLOBAL", + "depth": 2, + "scope": "metadata", + "anchor": "dep0016-globalroot", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:724032e8b04d", + "chapter": "deprecations", + "kind": "module", + "name": "dep0017:_`intl.v8breakiterator`", + "signature": "DEP0017: `Intl.v8BreakIterator`", + "label": "DEP0017: Intl.v8BreakIterator", + "apiSymbol": "Intl.v8BreakIterator", + "depth": 2, + "scope": "metadata", + "anchor": "dep0017-intlv8breakiterator", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:5285a36fa621", + "chapter": "deprecations", + "kind": "module", + "name": "dep0018:_unhandled_promise_rejections", + "signature": "DEP0018: Unhandled promise rejections", + "label": "DEP0018: Unhandled promise rejections", + "apiSymbol": "dep0018:_unhandled_promise_rejections", + "depth": 2, + "scope": "metadata", + "anchor": "dep0018-unhandled-promise-rejections", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:75300046297c", + "chapter": "deprecations", + "kind": "module", + "name": "dep0019:_`require('.')`_resolved_outside_directory", + "signature": "DEP0019: `require('.')` resolved outside directory", + "label": "DEP0019: require('.') resolved outside directory", + "apiSymbol": "require", + "depth": 2, + "scope": "metadata", + "anchor": "dep0019-require-resolved-outside-directory", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:fd3e6c39190a", + "chapter": "deprecations", + "kind": "module", + "name": "dep0020:_`server.connections`", + "signature": "DEP0020: `Server.connections`", + "label": "DEP0020: Server.connections", + "apiSymbol": "Server.connections", + "depth": 2, + "scope": "metadata", + "anchor": "dep0020-serverconnections", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:f80408f735cd", + "chapter": "deprecations", + "kind": "module", + "name": "dep0021:_`server.listenfd`", + "signature": "DEP0021: `Server.listenFD`", + "label": "DEP0021: Server.listenFD", + "apiSymbol": "Server.listenFD", + "depth": 2, + "scope": "metadata", + "anchor": "dep0021-serverlistenfd", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:a559814fb3b8", + "chapter": "deprecations", + "kind": "module", + "name": "dep0022:_`os.tmpdir()`", + "signature": "DEP0022: `os.tmpDir()`", + "label": "DEP0022: os.tmpDir()", + "apiSymbol": "os.tmpDir", + "depth": 2, + "scope": "metadata", + "anchor": "dep0022-ostmpdir", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:5c6bec88ccf3", + "chapter": "deprecations", + "kind": "module", + "name": "dep0023:_`os.getnetworkinterfaces()`", + "signature": "DEP0023: `os.getNetworkInterfaces()`", + "label": "DEP0023: os.getNetworkInterfaces()", + "apiSymbol": "os.getNetworkInterfaces", + "depth": 2, + "scope": "metadata", + "anchor": "dep0023-osgetnetworkinterfaces", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:c514b1fac42a", + "chapter": "deprecations", + "kind": "module", + "name": "dep0024:_`replserver.prototype.converttocontext()`", + "signature": "DEP0024: `REPLServer.prototype.convertToContext()`", + "label": "DEP0024: REPLServer.prototype.convertToContext()", + "apiSymbol": "REPLServer.prototype.convertToContext", + "depth": 2, + "scope": "metadata", + "anchor": "dep0024-replserverprototypeconverttocontext", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:fed39b3f0045", + "chapter": "deprecations", + "kind": "module", + "name": "dep0025:_`require('node:sys')`", + "signature": "DEP0025: `require('node:sys')`", + "label": "DEP0025: require('node:sys')", + "apiSymbol": "require", + "depth": 2, + "scope": "metadata", + "anchor": "dep0025-requirenodesys", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:ee0d48d14c59", + "chapter": "deprecations", + "kind": "module", + "name": "dep0026:_`util.print()`", + "signature": "DEP0026: `util.print()`", + "label": "DEP0026: util.print()", + "apiSymbol": "util.print", + "depth": 2, + "scope": "metadata", + "anchor": "dep0026-utilprint", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:45544a7bcfc0", + "chapter": "deprecations", + "kind": "module", + "name": "dep0027:_`util.puts()`", + "signature": "DEP0027: `util.puts()`", + "label": "DEP0027: util.puts()", + "apiSymbol": "util.puts", + "depth": 2, + "scope": "metadata", + "anchor": "dep0027-utilputs", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:44bea0356972", + "chapter": "deprecations", + "kind": "module", + "name": "dep0028:_`util.debug()`", + "signature": "DEP0028: `util.debug()`", + "label": "DEP0028: util.debug()", + "apiSymbol": "util.debug", + "depth": 2, + "scope": "metadata", + "anchor": "dep0028-utildebug", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:c31f2b065b51", + "chapter": "deprecations", + "kind": "module", + "name": "dep0029:_`util.error()`", + "signature": "DEP0029: `util.error()`", + "label": "DEP0029: util.error()", + "apiSymbol": "util.error", + "depth": 2, + "scope": "metadata", + "anchor": "dep0029-utilerror", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:43ff5d08c3be", + "chapter": "deprecations", + "kind": "module", + "name": "dep0030:_`slowbuffer`", + "signature": "DEP0030: `SlowBuffer`", + "label": "DEP0030: SlowBuffer", + "apiSymbol": "SlowBuffer", + "depth": 2, + "scope": "metadata", + "anchor": "dep0030-slowbuffer", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:5a5aee524f53", + "chapter": "deprecations", + "kind": "module", + "name": "dep0031:_`ecdh.setpublickey()`", + "signature": "DEP0031: `ecdh.setPublicKey()`", + "label": "DEP0031: ecdh.setPublicKey()", + "apiSymbol": "ecdh.setPublicKey", + "depth": 2, + "scope": "metadata", + "anchor": "dep0031-ecdhsetpublickey", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:7ff28c9cebef", + "chapter": "deprecations", + "kind": "module", + "name": "dep0032:_`node:domain`_module", + "signature": "DEP0032: `node:domain` module", + "label": "DEP0032: node:domain module", + "apiSymbol": "node:domain", + "depth": 2, + "scope": "metadata", + "anchor": "dep0032-nodedomain-module", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:efd020773f99", + "chapter": "deprecations", + "kind": "module", + "name": "dep0033:_`eventemitter.listenercount()`", + "signature": "DEP0033: `EventEmitter.listenerCount()`", + "label": "DEP0033: EventEmitter.listenerCount()", + "apiSymbol": "EventEmitter.listenerCount", + "depth": 2, + "scope": "metadata", + "anchor": "dep0033-eventemitterlistenercount", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:9eec6a955ea9", + "chapter": "deprecations", + "kind": "module", + "name": "dep0034:_`fs.exists(path,_callback)`", + "signature": "DEP0034: `fs.exists(path, callback)`", + "label": "DEP0034: fs.exists(path, callback)", + "apiSymbol": "fs.exists", + "depth": 2, + "scope": "metadata", + "anchor": "dep0034-fsexistspath-callback", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:b539d02a564c", + "chapter": "deprecations", + "kind": "module", + "name": "dep0035:_`fs.lchmod(path,_mode,_callback)`", + "signature": "DEP0035: `fs.lchmod(path, mode, callback)`", + "label": "DEP0035: fs.lchmod(path, mode, callback)", + "apiSymbol": "fs.lchmod", + "depth": 2, + "scope": "metadata", + "anchor": "dep0035-fslchmodpath-mode-callback", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:082d0b99fd0a", + "chapter": "deprecations", + "kind": "module", + "name": "dep0036:_`fs.lchmodsync(path,_mode)`", + "signature": "DEP0036: `fs.lchmodSync(path, mode)`", + "label": "DEP0036: fs.lchmodSync(path, mode)", + "apiSymbol": "fs.lchmodSync", + "depth": 2, + "scope": "metadata", + "anchor": "dep0036-fslchmodsyncpath-mode", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:fd2ae7bf086f", + "chapter": "deprecations", + "kind": "module", + "name": "dep0037:_`fs.lchown(path,_uid,_gid,_callback)`", + "signature": "DEP0037: `fs.lchown(path, uid, gid, callback)`", + "label": "DEP0037: fs.lchown(path, uid, gid, callback)", + "apiSymbol": "fs.lchown", + "depth": 2, + "scope": "metadata", + "anchor": "dep0037-fslchownpath-uid-gid-callback", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:3f23d38ebc3a", + "chapter": "deprecations", + "kind": "module", + "name": "dep0038:_`fs.lchownsync(path,_uid,_gid)`", + "signature": "DEP0038: `fs.lchownSync(path, uid, gid)`", + "label": "DEP0038: fs.lchownSync(path, uid, gid)", + "apiSymbol": "fs.lchownSync", + "depth": 2, + "scope": "metadata", + "anchor": "dep0038-fslchownsyncpath-uid-gid", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:ffd783e5fd9c", + "chapter": "deprecations", + "kind": "module", + "name": "dep0039:_`require.extensions`", + "signature": "DEP0039: `require.extensions`", + "label": "DEP0039: require.extensions", + "apiSymbol": "require.extensions", + "depth": 2, + "scope": "metadata", + "anchor": "dep0039-requireextensions", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:902b2d54e667", + "chapter": "deprecations", + "kind": "module", + "name": "dep0040:_`node:punycode`_module", + "signature": "DEP0040: `node:punycode` module", + "label": "DEP0040: node:punycode module", + "apiSymbol": "node:punycode", + "depth": 2, + "scope": "metadata", + "anchor": "dep0040-nodepunycode-module", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:86d8c3577306", + "chapter": "deprecations", + "kind": "module", + "name": "dep0041:_`node_repl_history_file`_environment_variable", + "signature": "DEP0041: `NODE_REPL_HISTORY_FILE` environment variable", + "label": "DEP0041: NODE_REPL_HISTORY_FILE environment variable", + "apiSymbol": "NODE_REPL_HISTORY_FILE", + "depth": 2, + "scope": "metadata", + "anchor": "dep0041-node_repl_history_file-environment-variable", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:f4b9d2a576b4", + "chapter": "deprecations", + "kind": "module", + "name": "dep0042:_`tls.cryptostream`", + "signature": "DEP0042: `tls.CryptoStream`", + "label": "DEP0042: tls.CryptoStream", + "apiSymbol": "tls.CryptoStream", + "depth": 2, + "scope": "metadata", + "anchor": "dep0042-tlscryptostream", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:de4498089857", + "chapter": "deprecations", + "kind": "module", + "name": "dep0043:_`tls.securepair`", + "signature": "DEP0043: `tls.SecurePair`", + "label": "DEP0043: tls.SecurePair", + "apiSymbol": "tls.SecurePair", + "depth": 2, + "scope": "metadata", + "anchor": "dep0043-tlssecurepair", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:9a88fc08b3b6", + "chapter": "deprecations", + "kind": "module", + "name": "dep0044:_`util.isarray()`", + "signature": "DEP0044: `util.isArray()`", + "label": "DEP0044: util.isArray()", + "apiSymbol": "util.isArray", + "depth": 2, + "scope": "metadata", + "anchor": "dep0044-utilisarray", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:daab36af41eb", + "chapter": "deprecations", + "kind": "module", + "name": "dep0045:_`util.isboolean()`", + "signature": "DEP0045: `util.isBoolean()`", + "label": "DEP0045: util.isBoolean()", + "apiSymbol": "util.isBoolean", + "depth": 2, + "scope": "metadata", + "anchor": "dep0045-utilisboolean", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:f93f094e388a", + "chapter": "deprecations", + "kind": "module", + "name": "dep0046:_`util.isbuffer()`", + "signature": "DEP0046: `util.isBuffer()`", + "label": "DEP0046: util.isBuffer()", + "apiSymbol": "util.isBuffer", + "depth": 2, + "scope": "metadata", + "anchor": "dep0046-utilisbuffer", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:93a1e982f0ff", + "chapter": "deprecations", + "kind": "module", + "name": "dep0047:_`util.isdate()`", + "signature": "DEP0047: `util.isDate()`", + "label": "DEP0047: util.isDate()", + "apiSymbol": "util.isDate", + "depth": 2, + "scope": "metadata", + "anchor": "dep0047-utilisdate", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:0da52546d9fb", + "chapter": "deprecations", + "kind": "module", + "name": "dep0048:_`util.iserror()`", + "signature": "DEP0048: `util.isError()`", + "label": "DEP0048: util.isError()", + "apiSymbol": "util.isError", + "depth": 2, + "scope": "metadata", + "anchor": "dep0048-utiliserror", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:14e6d236f315", + "chapter": "deprecations", + "kind": "module", + "name": "dep0049:_`util.isfunction()`", + "signature": "DEP0049: `util.isFunction()`", + "label": "DEP0049: util.isFunction()", + "apiSymbol": "util.isFunction", + "depth": 2, + "scope": "metadata", + "anchor": "dep0049-utilisfunction", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:945b408c5588", + "chapter": "deprecations", + "kind": "module", + "name": "dep0050:_`util.isnull()`", + "signature": "DEP0050: `util.isNull()`", + "label": "DEP0050: util.isNull()", + "apiSymbol": "util.isNull", + "depth": 2, + "scope": "metadata", + "anchor": "dep0050-utilisnull", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:55298bcf0eea", + "chapter": "deprecations", + "kind": "module", + "name": "dep0051:_`util.isnullorundefined()`", + "signature": "DEP0051: `util.isNullOrUndefined()`", + "label": "DEP0051: util.isNullOrUndefined()", + "apiSymbol": "util.isNullOrUndefined", + "depth": 2, + "scope": "metadata", + "anchor": "dep0051-utilisnullorundefined", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:41a59ed2435f", + "chapter": "deprecations", + "kind": "module", + "name": "dep0052:_`util.isnumber()`", + "signature": "DEP0052: `util.isNumber()`", + "label": "DEP0052: util.isNumber()", + "apiSymbol": "util.isNumber", + "depth": 2, + "scope": "metadata", + "anchor": "dep0052-utilisnumber", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:a3fcc137df4e", + "chapter": "deprecations", + "kind": "module", + "name": "dep0053:_`util.isobject()`", + "signature": "DEP0053: `util.isObject()`", + "label": "DEP0053: util.isObject()", + "apiSymbol": "util.isObject", + "depth": 2, + "scope": "metadata", + "anchor": "dep0053-utilisobject", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:0ccc579e7e02", + "chapter": "deprecations", + "kind": "module", + "name": "dep0054:_`util.isprimitive()`", + "signature": "DEP0054: `util.isPrimitive()`", + "label": "DEP0054: util.isPrimitive()", + "apiSymbol": "util.isPrimitive", + "depth": 2, + "scope": "metadata", + "anchor": "dep0054-utilisprimitive", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:232c8b72b00f", + "chapter": "deprecations", + "kind": "module", + "name": "dep0055:_`util.isregexp()`", + "signature": "DEP0055: `util.isRegExp()`", + "label": "DEP0055: util.isRegExp()", + "apiSymbol": "util.isRegExp", + "depth": 2, + "scope": "metadata", + "anchor": "dep0055-utilisregexp", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:a30c1091b462", + "chapter": "deprecations", + "kind": "module", + "name": "dep0056:_`util.isstring()`", + "signature": "DEP0056: `util.isString()`", + "label": "DEP0056: util.isString()", + "apiSymbol": "util.isString", + "depth": 2, + "scope": "metadata", + "anchor": "dep0056-utilisstring", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:a40506c39019", + "chapter": "deprecations", + "kind": "module", + "name": "dep0057:_`util.issymbol()`", + "signature": "DEP0057: `util.isSymbol()`", + "label": "DEP0057: util.isSymbol()", + "apiSymbol": "util.isSymbol", + "depth": 2, + "scope": "metadata", + "anchor": "dep0057-utilissymbol", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:68ab80453d5a", + "chapter": "deprecations", + "kind": "module", + "name": "dep0058:_`util.isundefined()`", + "signature": "DEP0058: `util.isUndefined()`", + "label": "DEP0058: util.isUndefined()", + "apiSymbol": "util.isUndefined", + "depth": 2, + "scope": "metadata", + "anchor": "dep0058-utilisundefined", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:df0de3a6603e", + "chapter": "deprecations", + "kind": "module", + "name": "dep0059:_`util.log()`", + "signature": "DEP0059: `util.log()`", + "label": "DEP0059: util.log()", + "apiSymbol": "util.log", + "depth": 2, + "scope": "metadata", + "anchor": "dep0059-utillog", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:4522f66ee3d1", + "chapter": "deprecations", + "kind": "module", + "name": "dep0060:_`util._extend()`", + "signature": "DEP0060: `util._extend()`", + "label": "DEP0060: util._extend()", + "apiSymbol": "util._extend", + "depth": 2, + "scope": "metadata", + "anchor": "dep0060-util_extend", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:ffc1949420a4", + "chapter": "deprecations", + "kind": "module", + "name": "dep0061:_`fs.syncwritestream`", + "signature": "DEP0061: `fs.SyncWriteStream`", + "label": "DEP0061: fs.SyncWriteStream", + "apiSymbol": "fs.SyncWriteStream", + "depth": 2, + "scope": "metadata", + "anchor": "dep0061-fssyncwritestream", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:340fafa89fba", + "chapter": "deprecations", + "kind": "module", + "name": "dep0062:_`node_--debug`", + "signature": "DEP0062: `node --debug`", + "label": "DEP0062: node --debug", + "apiSymbol": "node --debug", + "depth": 2, + "scope": "metadata", + "anchor": "dep0062-node---debug", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:9882f6077c98", + "chapter": "deprecations", + "kind": "module", + "name": "dep0063:_`serverresponse.prototype.writeheader()`", + "signature": "DEP0063: `ServerResponse.prototype.writeHeader()`", + "label": "DEP0063: ServerResponse.prototype.writeHeader()", + "apiSymbol": "ServerResponse.prototype.writeHeader", + "depth": 2, + "scope": "metadata", + "anchor": "dep0063-serverresponseprototypewriteheader", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:0cc23fc82e63", + "chapter": "deprecations", + "kind": "module", + "name": "dep0064:_`tls.createsecurepair()`", + "signature": "DEP0064: `tls.createSecurePair()`", + "label": "DEP0064: tls.createSecurePair()", + "apiSymbol": "tls.createSecurePair", + "depth": 2, + "scope": "metadata", + "anchor": "dep0064-tlscreatesecurepair", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:28655b818fbc", + "chapter": "deprecations", + "kind": "module", + "name": "dep0065:_`repl.repl_mode_magic`_and_`node_repl_mode=magic`", + "signature": "DEP0065: `repl.REPL_MODE_MAGIC` and `NODE_REPL_MODE=magic`", + "label": "DEP0065: repl.REPL_MODE_MAGIC and NODE_REPL_MODE=magic", + "apiSymbol": "repl.REPL_MODE_MAGIC", + "depth": 2, + "scope": "metadata", + "anchor": "dep0065-replrepl_mode_magic-and-node_repl_modemagic", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:06b3e0663f1d", + "chapter": "deprecations", + "kind": "module", + "name": "dep0066:_`outgoingmessage.prototype._headers,_outgoingmessage.prototype._headernames`", + "signature": "DEP0066: `OutgoingMessage.prototype._headers, OutgoingMessage.prototype._headerNames`", + "label": "DEP0066: OutgoingMessage.prototype._headers, OutgoingMessage.prototype._headerNames", + "apiSymbol": "OutgoingMessage.prototype._headers, OutgoingMessage.prototype._headerNames", + "depth": 2, + "scope": "metadata", + "anchor": "dep0066-outgoingmessageprototype_headers-outgoingmessageprototype_headernames", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:67ebe56cd152", + "chapter": "deprecations", + "kind": "module", + "name": "dep0067:_`outgoingmessage.prototype._renderheaders`", + "signature": "DEP0067: `OutgoingMessage.prototype._renderHeaders`", + "label": "DEP0067: OutgoingMessage.prototype._renderHeaders", + "apiSymbol": "OutgoingMessage.prototype._renderHeaders", + "depth": 2, + "scope": "metadata", + "anchor": "dep0067-outgoingmessageprototype_renderheaders", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:613bfd16bfee", + "chapter": "deprecations", + "kind": "module", + "name": "dep0068:_`node_debug`", + "signature": "DEP0068: `node debug`", + "label": "DEP0068: node debug", + "apiSymbol": "node debug", + "depth": 2, + "scope": "metadata", + "anchor": "dep0068-node-debug", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:207bf27b502e", + "chapter": "deprecations", + "kind": "module", + "name": "dep0069:_`vm.runindebugcontext(string)`", + "signature": "DEP0069: `vm.runInDebugContext(string)`", + "label": "DEP0069: vm.runInDebugContext(string)", + "apiSymbol": "vm.runInDebugContext", + "depth": 2, + "scope": "metadata", + "anchor": "dep0069-vmrunindebugcontextstring", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:6a257cf580b8", + "chapter": "deprecations", + "kind": "module", + "name": "dep0070:_`async_hooks.currentid()`", + "signature": "DEP0070: `async_hooks.currentId()`", + "label": "DEP0070: async_hooks.currentId()", + "apiSymbol": "async_hooks.currentId", + "depth": 2, + "scope": "metadata", + "anchor": "dep0070-async_hookscurrentid", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:51045424c24f", + "chapter": "deprecations", + "kind": "module", + "name": "dep0071:_`async_hooks.triggerid()`", + "signature": "DEP0071: `async_hooks.triggerId()`", + "label": "DEP0071: async_hooks.triggerId()", + "apiSymbol": "async_hooks.triggerId", + "depth": 2, + "scope": "metadata", + "anchor": "dep0071-async_hookstriggerid", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:79f809d475e8", + "chapter": "deprecations", + "kind": "module", + "name": "dep0072:_`async_hooks.asyncresource.triggerid()`", + "signature": "DEP0072: `async_hooks.AsyncResource.triggerId()`", + "label": "DEP0072: async_hooks.AsyncResource.triggerId()", + "apiSymbol": "async_hooks.AsyncResource.triggerId", + "depth": 2, + "scope": "metadata", + "anchor": "dep0072-async_hooksasyncresourcetriggerid", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:eed7b8998c5e", + "chapter": "deprecations", + "kind": "module", + "name": "dep0073:_several_internal_properties_of_`net.server`", + "signature": "DEP0073: Several internal properties of `net.Server`", + "label": "DEP0073: Several internal properties of net.Server", + "apiSymbol": "net.Server", + "depth": 2, + "scope": "metadata", + "anchor": "dep0073-several-internal-properties-of-netserver", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:a6e60652f717", + "chapter": "deprecations", + "kind": "module", + "name": "dep0074:_`replserver.bufferedcommand`", + "signature": "DEP0074: `REPLServer.bufferedCommand`", + "label": "DEP0074: REPLServer.bufferedCommand", + "apiSymbol": "REPLServer.bufferedCommand", + "depth": 2, + "scope": "metadata", + "anchor": "dep0074-replserverbufferedcommand", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:582e6941fd68", + "chapter": "deprecations", + "kind": "module", + "name": "dep0075:_`replserver.parsereplkeyword()`", + "signature": "DEP0075: `REPLServer.parseREPLKeyword()`", + "label": "DEP0075: REPLServer.parseREPLKeyword()", + "apiSymbol": "REPLServer.parseREPLKeyword", + "depth": 2, + "scope": "metadata", + "anchor": "dep0075-replserverparsereplkeyword", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:60a3c56bb931", + "chapter": "deprecations", + "kind": "module", + "name": "dep0076:_`tls.parsecertstring()`", + "signature": "DEP0076: `tls.parseCertString()`", + "label": "DEP0076: tls.parseCertString()", + "apiSymbol": "tls.parseCertString", + "depth": 2, + "scope": "metadata", + "anchor": "dep0076-tlsparsecertstring", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:e694bea91357", + "chapter": "deprecations", + "kind": "module", + "name": "dep0077:_`module._debug()`", + "signature": "DEP0077: `Module._debug()`", + "label": "DEP0077: Module._debug()", + "apiSymbol": "Module._debug", + "depth": 2, + "scope": "metadata", + "anchor": "dep0077-module_debug", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:2f582c94fa3f", + "chapter": "deprecations", + "kind": "module", + "name": "dep0078:_`replserver.turnoffeditormode()`", + "signature": "DEP0078: `REPLServer.turnOffEditorMode()`", + "label": "DEP0078: REPLServer.turnOffEditorMode()", + "apiSymbol": "REPLServer.turnOffEditorMode", + "depth": 2, + "scope": "metadata", + "anchor": "dep0078-replserverturnoffeditormode", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:358e5e55ae55", + "chapter": "deprecations", + "kind": "module", + "name": "dep0079:_custom_inspection_function_on_objects_via_`.inspect()`", + "signature": "DEP0079: Custom inspection function on objects via `.inspect()`", + "label": "DEP0079: Custom inspection function on objects via .inspect()", + "apiSymbol": ".inspect", + "depth": 2, + "scope": "metadata", + "anchor": "dep0079-custom-inspection-function-on-objects-via-inspect", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:5f581b63e78b", + "chapter": "deprecations", + "kind": "module", + "name": "dep0080:_`path._makelong()`", + "signature": "DEP0080: `path._makeLong()`", + "label": "DEP0080: path._makeLong()", + "apiSymbol": "path._makeLong", + "depth": 2, + "scope": "metadata", + "anchor": "dep0080-path_makelong", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:d252692fbc85", + "chapter": "deprecations", + "kind": "module", + "name": "dep0081:_`fs.truncate()`_using_a_file_descriptor", + "signature": "DEP0081: `fs.truncate()` using a file descriptor", + "label": "DEP0081: fs.truncate() using a file descriptor", + "apiSymbol": "fs.truncate", + "depth": 2, + "scope": "metadata", + "anchor": "dep0081-fstruncate-using-a-file-descriptor", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:e4858bdb4af6", + "chapter": "deprecations", + "kind": "module", + "name": "dep0082:_`replserver.prototype.memory()`", + "signature": "DEP0082: `REPLServer.prototype.memory()`", + "label": "DEP0082: REPLServer.prototype.memory()", + "apiSymbol": "REPLServer.prototype.memory", + "depth": 2, + "scope": "metadata", + "anchor": "dep0082-replserverprototypememory", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:cdf4531269f6", + "chapter": "deprecations", + "kind": "module", + "name": "dep0083:_disabling_ecdh_by_setting_`ecdhcurve`_to_`false`", + "signature": "DEP0083: Disabling ECDH by setting `ecdhCurve` to `false`", + "label": "DEP0083: Disabling ECDH by setting ecdhCurve to false", + "apiSymbol": "ecdhCurve", + "depth": 2, + "scope": "metadata", + "anchor": "dep0083-disabling-ecdh-by-setting-ecdhcurve-to-false", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:6e68ad551173", + "chapter": "deprecations", + "kind": "module", + "name": "dep0084:_requiring_bundled_internal_dependencies", + "signature": "DEP0084: requiring bundled internal dependencies", + "label": "DEP0084: requiring bundled internal dependencies", + "apiSymbol": "dep0084:_requiring_bundled_internal_dependencies", + "depth": 2, + "scope": "metadata", + "anchor": "dep0084-requiring-bundled-internal-dependencies", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:99cdcc779733", + "chapter": "deprecations", + "kind": "module", + "name": "dep0085:_asynchooks_sensitive_api", + "signature": "DEP0085: AsyncHooks sensitive API", + "label": "DEP0085: AsyncHooks sensitive API", + "apiSymbol": "dep0085:_asynchooks_sensitive_api", + "depth": 2, + "scope": "metadata", + "anchor": "dep0085-asynchooks-sensitive-api", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:99ebd8b8f01d", + "chapter": "deprecations", + "kind": "module", + "name": "dep0086:_remove_`runinasyncidscope`", + "signature": "DEP0086: Remove `runInAsyncIdScope`", + "label": "DEP0086: Remove runInAsyncIdScope", + "apiSymbol": "runInAsyncIdScope", + "depth": 2, + "scope": "metadata", + "anchor": "dep0086-remove-runinasyncidscope", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:d678d33e03d8", + "chapter": "deprecations", + "kind": "module", + "name": "dep0089:_`require('node:assert')`", + "signature": "DEP0089: `require('node:assert')`", + "label": "DEP0089: require('node:assert')", + "apiSymbol": "require", + "depth": 2, + "scope": "metadata", + "anchor": "dep0089-requirenodeassert", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:16e55985c0e6", + "chapter": "deprecations", + "kind": "module", + "name": "dep0090:_invalid_gcm_authentication_tag_lengths", + "signature": "DEP0090: Invalid GCM authentication tag lengths", + "label": "DEP0090: Invalid GCM authentication tag lengths", + "apiSymbol": "dep0090:_invalid_gcm_authentication_tag_lengths", + "depth": 2, + "scope": "metadata", + "anchor": "dep0090-invalid-gcm-authentication-tag-lengths", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:8cd04a13fe92", + "chapter": "deprecations", + "kind": "module", + "name": "dep0091:_`crypto.default_encoding`", + "signature": "DEP0091: `crypto.DEFAULT_ENCODING`", + "label": "DEP0091: crypto.DEFAULT_ENCODING", + "apiSymbol": "crypto.DEFAULT_ENCODING", + "depth": 2, + "scope": "metadata", + "anchor": "dep0091-cryptodefault_encoding", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:e75a2820e9f3", + "chapter": "deprecations", + "kind": "module", + "name": "dep0092:_top-level_`this`_bound_to_`module.exports`", + "signature": "DEP0092: Top-level `this` bound to `module.exports`", + "label": "DEP0092: Top-level this bound to module.exports", + "apiSymbol": "this", + "depth": 2, + "scope": "metadata", + "anchor": "dep0092-top-level-this-bound-to-moduleexports", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:f9a308818785", + "chapter": "deprecations", + "kind": "module", + "name": "dep0093:_`crypto.fips`_is_deprecated_and_replaced", + "signature": "DEP0093: `crypto.fips` is deprecated and replaced", + "label": "DEP0093: crypto.fips is deprecated and replaced", + "apiSymbol": "crypto.fips", + "depth": 2, + "scope": "metadata", + "anchor": "dep0093-cryptofips-is-deprecated-and-replaced", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:f235f13da5bc", + "chapter": "deprecations", + "kind": "module", + "name": "dep0094:_using_`assert.fail()`_with_more_than_one_argument", + "signature": "DEP0094: Using `assert.fail()` with more than one argument", + "label": "DEP0094: Using assert.fail() with more than one argument", + "apiSymbol": "assert.fail", + "depth": 2, + "scope": "metadata", + "anchor": "dep0094-using-assertfail-with-more-than-one-argument", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:assert.fail", + "tests": [ + "tests/corpus/1600-assert-passing.ts", + "tests/corpus/1604-assert-deep-structures.ts", + "tests/corpus/1609-assert-async.ts", + "tests/corpus/1721-assert-throws-regex-class.ts" + ] + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:9488ff6f5325", + "chapter": "deprecations", + "kind": "module", + "name": "dep0095:_`timers.enroll()`", + "signature": "DEP0095: `timers.enroll()`", + "label": "DEP0095: timers.enroll()", + "apiSymbol": "timers.enroll", + "depth": 2, + "scope": "metadata", + "anchor": "dep0095-timersenroll", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:7f50936c9f40", + "chapter": "deprecations", + "kind": "module", + "name": "dep0096:_`timers.unenroll()`", + "signature": "DEP0096: `timers.unenroll()`", + "label": "DEP0096: timers.unenroll()", + "apiSymbol": "timers.unenroll", + "depth": 2, + "scope": "metadata", + "anchor": "dep0096-timersunenroll", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:56021b490659", + "chapter": "deprecations", + "kind": "module", + "name": "dep0097:_`makecallback`_with_`domain`_property", + "signature": "DEP0097: `MakeCallback` with `domain` property", + "label": "DEP0097: MakeCallback with domain property", + "apiSymbol": "MakeCallback", + "depth": 2, + "scope": "metadata", + "anchor": "dep0097-makecallback-with-domain-property", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:6a8f5e258cd3", + "chapter": "deprecations", + "kind": "module", + "name": "dep0098:_asynchooks_embedder_`asyncresource.emitbefore`_and_`asyncresource.emitafter`_apis", + "signature": "DEP0098: AsyncHooks embedder `AsyncResource.emitBefore` and `AsyncResource.emitAfter` APIs", + "label": "DEP0098: AsyncHooks embedder AsyncResource.emitBefore and AsyncResource.emitAfter APIs", + "apiSymbol": "AsyncResource.emitBefore", + "depth": 2, + "scope": "metadata", + "anchor": "dep0098-asynchooks-embedder-asyncresourceemitbefore-and-asyncresourceemitafter-apis", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:21fa51be4b72", + "chapter": "deprecations", + "kind": "module", + "name": "dep0099:_async_context-unaware_`node::makecallback`_c++_apis", + "signature": "DEP0099: Async context-unaware `node::MakeCallback` C++ APIs", + "label": "DEP0099: Async context-unaware node::MakeCallback C++ APIs", + "apiSymbol": "node::MakeCallback", + "depth": 2, + "scope": "metadata", + "anchor": "dep0099-async-context-unaware-nodemakecallback-c-apis", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:91babfbc7da9", + "chapter": "deprecations", + "kind": "module", + "name": "dep0100:_`process.assert()`", + "signature": "DEP0100: `process.assert()`", + "label": "DEP0100: process.assert()", + "apiSymbol": "process.assert", + "depth": 2, + "scope": "metadata", + "anchor": "dep0100-processassert", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:08777636cc74", + "chapter": "deprecations", + "kind": "module", + "name": "dep0101:_`--with-lttng`", + "signature": "DEP0101: `--with-lttng`", + "label": "DEP0101: --with-lttng", + "apiSymbol": "--with-lttng", + "depth": 2, + "scope": "configuration", + "anchor": "dep0101---with-lttng", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:cc64001c3d8f", + "chapter": "deprecations", + "kind": "module", + "name": "dep0102:_using_`noassert`_in_`buffer#(read|write)`_operations", + "signature": "DEP0102: Using `noAssert` in `Buffer#(read|write)` operations", + "label": "DEP0102: Using noAssert in Buffer#(read|write) operations", + "apiSymbol": "noAssert", + "depth": 2, + "scope": "metadata", + "anchor": "dep0102-using-noassert-in-bufferreadwrite-operations", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:fd652412f9d0", + "chapter": "deprecations", + "kind": "module", + "name": "dep0103:_`process.binding('util').is[...]`_typechecks", + "signature": "DEP0103: `process.binding('util').is[...]` typechecks", + "label": "DEP0103: process.binding('util').is[...] typechecks", + "apiSymbol": "process.binding", + "depth": 2, + "scope": "metadata", + "anchor": "dep0103-processbindingutilis-typechecks", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:be783ece7c5a", + "chapter": "deprecations", + "kind": "module", + "name": "dep0104:_`process.env`_string_coercion", + "signature": "DEP0104: `process.env` string coercion", + "label": "DEP0104: process.env string coercion", + "apiSymbol": "process.env", + "depth": 2, + "scope": "metadata", + "anchor": "dep0104-processenv-string-coercion", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.process.env", + "tests": [ + "tests/corpus/990-process-basics.ts", + "tests/corpus/2314-process-introspection.ts" + ] + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:8829b8a27af1", + "chapter": "deprecations", + "kind": "module", + "name": "dep0105:_`decipher.finaltol`", + "signature": "DEP0105: `decipher.finaltol`", + "label": "DEP0105: decipher.finaltol", + "apiSymbol": "decipher.finaltol", + "depth": 2, + "scope": "metadata", + "anchor": "dep0105-decipherfinaltol", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:638dc228f756", + "chapter": "deprecations", + "kind": "module", + "name": "dep0106:_`crypto.createcipher`_and_`crypto.createdecipher`", + "signature": "DEP0106: `crypto.createCipher` and `crypto.createDecipher`", + "label": "DEP0106: crypto.createCipher and crypto.createDecipher", + "apiSymbol": "crypto.createCipher", + "depth": 2, + "scope": "metadata", + "anchor": "dep0106-cryptocreatecipher-and-cryptocreatedecipher", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:d0100f839f94", + "chapter": "deprecations", + "kind": "module", + "name": "dep0107:_`tls.convertnpnprotocols()`", + "signature": "DEP0107: `tls.convertNPNProtocols()`", + "label": "DEP0107: tls.convertNPNProtocols()", + "apiSymbol": "tls.convertNPNProtocols", + "depth": 2, + "scope": "metadata", + "anchor": "dep0107-tlsconvertnpnprotocols", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:2e7cbc2b86bc", + "chapter": "deprecations", + "kind": "module", + "name": "dep0108:_`zlib.bytesread`", + "signature": "DEP0108: `zlib.bytesRead`", + "label": "DEP0108: zlib.bytesRead", + "apiSymbol": "zlib.bytesRead", + "depth": 2, + "scope": "metadata", + "anchor": "dep0108-zlibbytesread", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:c9a385028143", + "chapter": "deprecations", + "kind": "module", + "name": "dep0109:_`http`,_`https`,_and_`tls`_support_for_invalid_urls", + "signature": "DEP0109: `http`, `https`, and `tls` support for invalid URLs", + "label": "DEP0109: http, https, and tls support for invalid URLs", + "apiSymbol": "http", + "depth": 2, + "scope": "metadata", + "anchor": "dep0109-http-https-and-tls-support-for-invalid-urls", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:41114de0a1fd", + "chapter": "deprecations", + "kind": "module", + "name": "dep0110:_`vm.script`_cached_data", + "signature": "DEP0110: `vm.Script` cached data", + "label": "DEP0110: vm.Script cached data", + "apiSymbol": "vm.Script", + "depth": 2, + "scope": "metadata", + "anchor": "dep0110-vmscript-cached-data", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:6fd30843bd14", + "chapter": "deprecations", + "kind": "module", + "name": "dep0111:_`process.binding()`", + "signature": "DEP0111: `process.binding()`", + "label": "DEP0111: process.binding()", + "apiSymbol": "process.binding", + "depth": 2, + "scope": "metadata", + "anchor": "dep0111-processbinding", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:f92a1f31ff99", + "chapter": "deprecations", + "kind": "module", + "name": "dep0112:_`dgram`_private_apis", + "signature": "DEP0112: `dgram` private APIs", + "label": "DEP0112: dgram private APIs", + "apiSymbol": "dgram", + "depth": 2, + "scope": "metadata", + "anchor": "dep0112-dgram-private-apis", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:30031d570cff", + "chapter": "deprecations", + "kind": "module", + "name": "dep0113:_`cipher.setauthtag()`,_`decipher.getauthtag()`", + "signature": "DEP0113: `Cipher.setAuthTag()`, `Decipher.getAuthTag()`", + "label": "DEP0113: Cipher.setAuthTag(), Decipher.getAuthTag()", + "apiSymbol": "Cipher.setAuthTag", + "depth": 2, + "scope": "metadata", + "anchor": "dep0113-ciphersetauthtag-deciphergetauthtag", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:7d77d3c61c83", + "chapter": "deprecations", + "kind": "module", + "name": "dep0114:_`crypto._tobuf()`", + "signature": "DEP0114: `crypto._toBuf()`", + "label": "DEP0114: crypto._toBuf()", + "apiSymbol": "crypto._toBuf", + "depth": 2, + "scope": "metadata", + "anchor": "dep0114-crypto_tobuf", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:a3ec7e631e76", + "chapter": "deprecations", + "kind": "module", + "name": "dep0115:_`crypto.prng()`,_`crypto.pseudorandombytes()`,_`crypto.rng()`", + "signature": "DEP0115: `crypto.prng()`, `crypto.pseudoRandomBytes()`, `crypto.rng()`", + "label": "DEP0115: crypto.prng(), crypto.pseudoRandomBytes(), crypto.rng()", + "apiSymbol": "crypto.prng", + "depth": 2, + "scope": "metadata", + "anchor": "dep0115-cryptoprng-cryptopseudorandombytes-cryptorng", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:162eda2530d5", + "chapter": "deprecations", + "kind": "module", + "name": "dep0116:_legacy_url_api", + "signature": "DEP0116: Legacy URL API", + "label": "DEP0116: Legacy URL API", + "apiSymbol": "dep0116:_legacy_url_api", + "depth": 2, + "scope": "metadata", + "anchor": "dep0116-legacy-url-api", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:c0b8fde37285", + "chapter": "deprecations", + "kind": "module", + "name": "dep0117:_native_crypto_handles", + "signature": "DEP0117: Native crypto handles", + "label": "DEP0117: Native crypto handles", + "apiSymbol": "dep0117:_native_crypto_handles", + "depth": 2, + "scope": "metadata", + "anchor": "dep0117-native-crypto-handles", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:43b7623dc793", + "chapter": "deprecations", + "kind": "module", + "name": "dep0118:_`dns.lookup()`_support_for_a_falsy_host_name", + "signature": "DEP0118: `dns.lookup()` support for a falsy host name", + "label": "DEP0118: dns.lookup() support for a falsy host name", + "apiSymbol": "dns.lookup", + "depth": 2, + "scope": "metadata", + "anchor": "dep0118-dnslookup-support-for-a-falsy-host-name", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:c7dede155193", + "chapter": "deprecations", + "kind": "module", + "name": "dep0119:_`process.binding('uv').errname()`_private_api", + "signature": "DEP0119: `process.binding('uv').errname()` private API", + "label": "DEP0119: process.binding('uv').errname() private API", + "apiSymbol": "process.binding", + "depth": 2, + "scope": "metadata", + "anchor": "dep0119-processbindinguverrname-private-api", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:97f45c562892", + "chapter": "deprecations", + "kind": "module", + "name": "dep0120:_windows_performance_counter_support", + "signature": "DEP0120: Windows Performance Counter support", + "label": "DEP0120: Windows Performance Counter support", + "apiSymbol": "dep0120:_windows_performance_counter_support", + "depth": 2, + "scope": "metadata", + "anchor": "dep0120-windows-performance-counter-support", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:129af730e40a", + "chapter": "deprecations", + "kind": "module", + "name": "dep0121:_`net._setsimultaneousaccepts()`", + "signature": "DEP0121: `net._setSimultaneousAccepts()`", + "label": "DEP0121: net._setSimultaneousAccepts()", + "apiSymbol": "net._setSimultaneousAccepts", + "depth": 2, + "scope": "metadata", + "anchor": "dep0121-net_setsimultaneousaccepts", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:72688d6e7f20", + "chapter": "deprecations", + "kind": "module", + "name": "dep0122:_`tls`_`server.prototype.setoptions()`", + "signature": "DEP0122: `tls` `Server.prototype.setOptions()`", + "label": "DEP0122: tls Server.prototype.setOptions()", + "apiSymbol": "tls", + "depth": 2, + "scope": "metadata", + "anchor": "dep0122-tls-serverprototypesetoptions", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:fad3a7ca9571", + "chapter": "deprecations", + "kind": "module", + "name": "dep0123:_setting_the_tls_servername_to_an_ip_address", + "signature": "DEP0123: setting the TLS ServerName to an IP address", + "label": "DEP0123: setting the TLS ServerName to an IP address", + "apiSymbol": "dep0123:_setting_the_tls_servername_to_an_ip_address", + "depth": 2, + "scope": "metadata", + "anchor": "dep0123-setting-the-tls-servername-to-an-ip-address", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:deac8f13f67b", + "chapter": "deprecations", + "kind": "module", + "name": "dep0124:_using_`replserver.rli`", + "signature": "DEP0124: using `REPLServer.rli`", + "label": "DEP0124: using REPLServer.rli", + "apiSymbol": "REPLServer.rli", + "depth": 2, + "scope": "metadata", + "anchor": "dep0124-using-replserverrli", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:6944da1160e7", + "chapter": "deprecations", + "kind": "module", + "name": "dep0125:_`require('node:_stream_wrap')`", + "signature": "DEP0125: `require('node:_stream_wrap')`", + "label": "DEP0125: require('node:_stream_wrap')", + "apiSymbol": "require", + "depth": 2, + "scope": "metadata", + "anchor": "dep0125-requirenode_stream_wrap", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:2b07728cdd01", + "chapter": "deprecations", + "kind": "module", + "name": "dep0126:_`timers.active()`", + "signature": "DEP0126: `timers.active()`", + "label": "DEP0126: timers.active()", + "apiSymbol": "timers.active", + "depth": 2, + "scope": "metadata", + "anchor": "dep0126-timersactive", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:3908dc7d0b2d", + "chapter": "deprecations", + "kind": "module", + "name": "dep0127:_`timers._unrefactive()`", + "signature": "DEP0127: `timers._unrefActive()`", + "label": "DEP0127: timers._unrefActive()", + "apiSymbol": "timers._unrefActive", + "depth": 2, + "scope": "metadata", + "anchor": "dep0127-timers_unrefactive", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:83eb86512bac", + "chapter": "deprecations", + "kind": "module", + "name": "dep0128:_modules_with_an_invalid_`main`_entry_and_an_`index.js`_file", + "signature": "DEP0128: modules with an invalid `main` entry and an `index.js` file", + "label": "DEP0128: modules with an invalid main entry and an index.js file", + "apiSymbol": "main", + "depth": 2, + "scope": "metadata", + "anchor": "dep0128-modules-with-an-invalid-main-entry-and-an-indexjs-file", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:e6064f8cc424", + "chapter": "deprecations", + "kind": "module", + "name": "dep0129:_`childprocess._channel`", + "signature": "DEP0129: `ChildProcess._channel`", + "label": "DEP0129: ChildProcess._channel", + "apiSymbol": "ChildProcess._channel", + "depth": 2, + "scope": "metadata", + "anchor": "dep0129-childprocess_channel", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:f6b98390dbc8", + "chapter": "deprecations", + "kind": "module", + "name": "dep0130:_`module.createrequirefrompath()`", + "signature": "DEP0130: `Module.createRequireFromPath()`", + "label": "DEP0130: Module.createRequireFromPath()", + "apiSymbol": "Module.createRequireFromPath", + "depth": 2, + "scope": "metadata", + "anchor": "dep0130-modulecreaterequirefrompath", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:ffc15f811bb4", + "chapter": "deprecations", + "kind": "module", + "name": "dep0131:_legacy_http_parser", + "signature": "DEP0131: Legacy HTTP parser", + "label": "DEP0131: Legacy HTTP parser", + "apiSymbol": "dep0131:_legacy_http_parser", + "depth": 2, + "scope": "metadata", + "anchor": "dep0131-legacy-http-parser", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:abd3f154fc30", + "chapter": "deprecations", + "kind": "module", + "name": "dep0132:_`worker.terminate()`_with_callback", + "signature": "DEP0132: `worker.terminate()` with callback", + "label": "DEP0132: worker.terminate() with callback", + "apiSymbol": "worker.terminate", + "depth": 2, + "scope": "metadata", + "anchor": "dep0132-workerterminate-with-callback", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:2d436d32e7e7", + "chapter": "deprecations", + "kind": "module", + "name": "dep0133:_`http`_`connection`", + "signature": "DEP0133: `http` `connection`", + "label": "DEP0133: http connection", + "apiSymbol": "http", + "depth": 2, + "scope": "metadata", + "anchor": "dep0133-http-connection", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:96ba208971c1", + "chapter": "deprecations", + "kind": "module", + "name": "dep0134:_`process._tickcallback`", + "signature": "DEP0134: `process._tickCallback`", + "label": "DEP0134: process._tickCallback", + "apiSymbol": "process._tickCallback", + "depth": 2, + "scope": "metadata", + "anchor": "dep0134-process_tickcallback", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:99add72d0e8c", + "chapter": "deprecations", + "kind": "module", + "name": "dep0135:_`writestream.open()`_and_`readstream.open()`_are_internal", + "signature": "DEP0135: `WriteStream.open()` and `ReadStream.open()` are internal", + "label": "DEP0135: WriteStream.open() and ReadStream.open() are internal", + "apiSymbol": "WriteStream.open", + "depth": 2, + "scope": "metadata", + "anchor": "dep0135-writestreamopen-and-readstreamopen-are-internal", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:b84d345cdacf", + "chapter": "deprecations", + "kind": "module", + "name": "dep0136:_`http`_`finished`", + "signature": "DEP0136: `http` `finished`", + "label": "DEP0136: http finished", + "apiSymbol": "http", + "depth": 2, + "scope": "metadata", + "anchor": "dep0136-http-finished", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:490f5eb3ee1d", + "chapter": "deprecations", + "kind": "module", + "name": "dep0137:_closing_fs.filehandle_on_garbage_collection", + "signature": "DEP0137: Closing fs.FileHandle on garbage collection", + "label": "DEP0137: Closing fs.FileHandle on garbage collection", + "apiSymbol": "dep0137:_closing_fs.filehandle_on_garbage_collection", + "depth": 2, + "scope": "metadata", + "anchor": "dep0137-closing-fsfilehandle-on-garbage-collection", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:2f8115552226", + "chapter": "deprecations", + "kind": "module", + "name": "dep0138:_`process.mainmodule`", + "signature": "DEP0138: `process.mainModule`", + "label": "DEP0138: process.mainModule", + "apiSymbol": "process.mainModule", + "depth": 2, + "scope": "metadata", + "anchor": "dep0138-processmainmodule", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:82677a785cf8", + "chapter": "deprecations", + "kind": "module", + "name": "dep0139:_`process.umask()`_with_no_arguments", + "signature": "DEP0139: `process.umask()` with no arguments", + "label": "DEP0139: process.umask() with no arguments", + "apiSymbol": "process.umask", + "depth": 2, + "scope": "metadata", + "anchor": "dep0139-processumask-with-no-arguments", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.process.umask", + "tests": [ + "tests/corpus/990-process-basics.ts", + "tests/corpus/2314-process-introspection.ts" + ] + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:670d3f505674", + "chapter": "deprecations", + "kind": "module", + "name": "dep0140:_use_`request.destroy()`_instead_of_`request.abort()`", + "signature": "DEP0140: Use `request.destroy()` instead of `request.abort()`", + "label": "DEP0140: Use request.destroy() instead of request.abort()", + "apiSymbol": "request.destroy", + "depth": 2, + "scope": "metadata", + "anchor": "dep0140-use-requestdestroy-instead-of-requestabort", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:request.destroy", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:06e576cbaf5c", + "chapter": "deprecations", + "kind": "module", + "name": "dep0141:_`repl.inputstream`_and_`repl.outputstream`", + "signature": "DEP0141: `repl.inputStream` and `repl.outputStream`", + "label": "DEP0141: repl.inputStream and repl.outputStream", + "apiSymbol": "repl.inputStream", + "depth": 2, + "scope": "metadata", + "anchor": "dep0141-replinputstream-and-reploutputstream", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:cf8321aa6b8e", + "chapter": "deprecations", + "kind": "module", + "name": "dep0142:_`repl._builtinlibs`", + "signature": "DEP0142: `repl._builtinLibs`", + "label": "DEP0142: repl._builtinLibs", + "apiSymbol": "repl._builtinLibs", + "depth": 2, + "scope": "metadata", + "anchor": "dep0142-repl_builtinlibs", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:b221a463f2ae", + "chapter": "deprecations", + "kind": "module", + "name": "dep0143:_`transform._transformstate`", + "signature": "DEP0143: `Transform._transformState`", + "label": "DEP0143: Transform._transformState", + "apiSymbol": "Transform._transformState", + "depth": 2, + "scope": "metadata", + "anchor": "dep0143-transform_transformstate", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:912544acf665", + "chapter": "deprecations", + "kind": "module", + "name": "dep0144:_`module.parent`", + "signature": "DEP0144: `module.parent`", + "label": "DEP0144: module.parent", + "apiSymbol": "module.parent", + "depth": 2, + "scope": "metadata", + "anchor": "dep0144-moduleparent", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:1a54d309baa5", + "chapter": "deprecations", + "kind": "module", + "name": "dep0145:_`socket.buffersize`", + "signature": "DEP0145: `socket.bufferSize`", + "label": "DEP0145: socket.bufferSize", + "apiSymbol": "socket.bufferSize", + "depth": 2, + "scope": "metadata", + "anchor": "dep0145-socketbuffersize", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:157222357112", + "chapter": "deprecations", + "kind": "module", + "name": "dep0146:_`new_crypto.certificate()`", + "signature": "DEP0146: `new crypto.Certificate()`", + "label": "DEP0146: new crypto.Certificate()", + "apiSymbol": "crypto.Certificate", + "depth": 2, + "scope": "metadata", + "anchor": "dep0146-new-cryptocertificate", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:b05ee71b9923", + "chapter": "deprecations", + "kind": "module", + "name": "dep0147:_`fs.rmdir(path,_{_recursive:_true_})`", + "signature": "DEP0147: `fs.rmdir(path, { recursive: true })`", + "label": "DEP0147: fs.rmdir(path, { recursive: true })", + "apiSymbol": "fs.rmdir", + "depth": 2, + "scope": "metadata", + "anchor": "dep0147-fsrmdirpath--recursive-true-", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:e91d34091dc2", + "chapter": "deprecations", + "kind": "module", + "name": "dep0148:_folder_mappings_in_`\"exports\"`_(trailing_`\"/\"`)", + "signature": "DEP0148: Folder mappings in `\"exports\"` (trailing `\"/\"`)", + "label": "DEP0148: Folder mappings in \"exports\" (trailing \"/\")", + "apiSymbol": "\"exports\"", + "depth": 2, + "scope": "metadata", + "anchor": "dep0148-folder-mappings-in-exports-trailing-", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:e3dc36b690dd", + "chapter": "deprecations", + "kind": "module", + "name": "dep0149:_`http.incomingmessage#connection`", + "signature": "DEP0149: `http.IncomingMessage#connection`", + "label": "DEP0149: http.IncomingMessage#connection", + "apiSymbol": "http.IncomingMessage#connection", + "depth": 2, + "scope": "metadata", + "anchor": "dep0149-httpincomingmessageconnection", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:51b2cb93c38c", + "chapter": "deprecations", + "kind": "module", + "name": "dep0150:_changing_the_value_of_`process.config`", + "signature": "DEP0150: Changing the value of `process.config`", + "label": "DEP0150: Changing the value of process.config", + "apiSymbol": "process.config", + "depth": 2, + "scope": "metadata", + "anchor": "dep0150-changing-the-value-of-processconfig", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:127c5e3c8829", + "chapter": "deprecations", + "kind": "module", + "name": "dep0151:_main_index_lookup_and_extension_searching", + "signature": "DEP0151: Main index lookup and extension searching", + "label": "DEP0151: Main index lookup and extension searching", + "apiSymbol": "dep0151:_main_index_lookup_and_extension_searching", + "depth": 2, + "scope": "metadata", + "anchor": "dep0151-main-index-lookup-and-extension-searching", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:d6145f2c95cf", + "chapter": "deprecations", + "kind": "module", + "name": "dep0152:_extension_performanceentry_properties", + "signature": "DEP0152: Extension PerformanceEntry properties", + "label": "DEP0152: Extension PerformanceEntry properties", + "apiSymbol": "dep0152:_extension_performanceentry_properties", + "depth": 2, + "scope": "metadata", + "anchor": "dep0152-extension-performanceentry-properties", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:2dd33b3fbabe", + "chapter": "deprecations", + "kind": "module", + "name": "dep0153:_`dns.lookup`_and_`dnspromises.lookup`_options_type_coercion", + "signature": "DEP0153: `dns.lookup` and `dnsPromises.lookup` options type coercion", + "label": "DEP0153: dns.lookup and dnsPromises.lookup options type coercion", + "apiSymbol": "dns.lookup", + "depth": 2, + "scope": "metadata", + "anchor": "dep0153-dnslookup-and-dnspromiseslookup-options-type-coercion", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:0674d61feb16", + "chapter": "deprecations", + "kind": "module", + "name": "dep0154:_rsa-pss_generate_key_pair_options", + "signature": "DEP0154: RSA-PSS generate key pair options", + "label": "DEP0154: RSA-PSS generate key pair options", + "apiSymbol": "dep0154:_rsa-pss_generate_key_pair_options", + "depth": 2, + "scope": "metadata", + "anchor": "dep0154-rsa-pss-generate-key-pair-options", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:b671fcf7227f", + "chapter": "deprecations", + "kind": "module", + "name": "dep0155:_trailing_slashes_in_pattern_specifier_resolutions", + "signature": "DEP0155: Trailing slashes in pattern specifier resolutions", + "label": "DEP0155: Trailing slashes in pattern specifier resolutions", + "apiSymbol": "dep0155:_trailing_slashes_in_pattern_specifier_resolutions", + "depth": 2, + "scope": "metadata", + "anchor": "dep0155-trailing-slashes-in-pattern-specifier-resolutions", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:d88970b2ae8f", + "chapter": "deprecations", + "kind": "module", + "name": "dep0156:_`.aborted`_property_and_`'abort'`,_`'aborted'`_event_in_`http`", + "signature": "DEP0156: `.aborted` property and `'abort'`, `'aborted'` event in `http`", + "label": "DEP0156: .aborted property and 'abort', 'aborted' event in http", + "apiSymbol": ".aborted", + "depth": 2, + "scope": "metadata", + "anchor": "dep0156-aborted-property-and-abort-aborted-event-in-http", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:6f4a7fb14962", + "chapter": "deprecations", + "kind": "module", + "name": "dep0157:_thenable_support_in_streams", + "signature": "DEP0157: Thenable support in streams", + "label": "DEP0157: Thenable support in streams", + "apiSymbol": "dep0157:_thenable_support_in_streams", + "depth": 2, + "scope": "metadata", + "anchor": "dep0157-thenable-support-in-streams", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:55ace72f80d6", + "chapter": "deprecations", + "kind": "module", + "name": "dep0158:_`buffer.slice(start,_end)`", + "signature": "DEP0158: `buffer.slice(start, end)`", + "label": "DEP0158: buffer.slice(start, end)", + "apiSymbol": "buffer.slice", + "depth": 2, + "scope": "metadata", + "anchor": "dep0158-bufferslicestart-end", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:f7979a85d7b1", + "chapter": "deprecations", + "kind": "module", + "name": "dep0159:_`err_invalid_callback`", + "signature": "DEP0159: `ERR_INVALID_CALLBACK`", + "label": "DEP0159: ERR_INVALID_CALLBACK", + "apiSymbol": "ERR_INVALID_CALLBACK", + "depth": 2, + "scope": "metadata", + "anchor": "dep0159-err_invalid_callback", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:79b6b059fc1b", + "chapter": "deprecations", + "kind": "module", + "name": "dep0160:_`process.on('multipleresolves',_handler)`", + "signature": "DEP0160: `process.on('multipleResolves', handler)`", + "label": "DEP0160: process.on('multipleResolves', handler)", + "apiSymbol": "process.on", + "depth": 2, + "scope": "metadata", + "anchor": "dep0160-processonmultipleresolves-handler", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:49ab16af8b95", + "chapter": "deprecations", + "kind": "module", + "name": "dep0161:_`process._getactiverequests()`_and_`process._getactivehandles()`", + "signature": "DEP0161: `process._getActiveRequests()` and `process._getActiveHandles()`", + "label": "DEP0161: process._getActiveRequests() and process._getActiveHandles()", + "apiSymbol": "process._getActiveRequests", + "depth": 2, + "scope": "metadata", + "anchor": "dep0161-process_getactiverequests-and-process_getactivehandles", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:5da8b646b1c5", + "chapter": "deprecations", + "kind": "module", + "name": "dep0162:_`fs.write()`,_`fs.writefilesync()`_coercion_to_string", + "signature": "DEP0162: `fs.write()`, `fs.writeFileSync()` coercion to string", + "label": "DEP0162: fs.write(), fs.writeFileSync() coercion to string", + "apiSymbol": "fs.write", + "depth": 2, + "scope": "metadata", + "anchor": "dep0162-fswrite-fswritefilesync-coercion-to-string", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:7501f08eaec1", + "chapter": "deprecations", + "kind": "module", + "name": "dep0163:_`channel.subscribe(onmessage)`,_`channel.unsubscribe(onmessage)`", + "signature": "DEP0163: `channel.subscribe(onMessage)`, `channel.unsubscribe(onMessage)`", + "label": "DEP0163: channel.subscribe(onMessage), channel.unsubscribe(onMessage)", + "apiSymbol": "channel.subscribe", + "depth": 2, + "scope": "metadata", + "anchor": "dep0163-channelsubscribeonmessage-channelunsubscribeonmessage", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:1ec9ca160429", + "chapter": "deprecations", + "kind": "module", + "name": "dep0164:_`process.exit(code)`,_`process.exitcode`_coercion_to_integer", + "signature": "DEP0164: `process.exit(code)`, `process.exitCode` coercion to integer", + "label": "DEP0164: process.exit(code), process.exitCode coercion to integer", + "apiSymbol": "process.exit", + "depth": 2, + "scope": "metadata", + "anchor": "dep0164-processexitcode-processexitcode-coercion-to-integer", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.process.exit", + "tests": [ + "tests/corpus/990-process-basics.ts", + "tests/corpus/2314-process-introspection.ts" + ] + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:6453434569d0", + "chapter": "deprecations", + "kind": "module", + "name": "dep0165:_`--trace-atomics-wait`", + "signature": "DEP0165: `--trace-atomics-wait`", + "label": "DEP0165: --trace-atomics-wait", + "apiSymbol": "--trace-atomics-wait", + "depth": 2, + "scope": "configuration", + "anchor": "dep0165---trace-atomics-wait", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:e5f2d3428422", + "chapter": "deprecations", + "kind": "module", + "name": "dep0166:_double_slashes_in_imports_and_exports_targets", + "signature": "DEP0166: Double slashes in imports and exports targets", + "label": "DEP0166: Double slashes in imports and exports targets", + "apiSymbol": "dep0166:_double_slashes_in_imports_and_exports_targets", + "depth": 2, + "scope": "metadata", + "anchor": "dep0166-double-slashes-in-imports-and-exports-targets", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:b2f17e592206", + "chapter": "deprecations", + "kind": "module", + "name": "dep0167:_weak_`diffiehellmangroup`_instances_(`modp1`,_`modp2`,_`modp5`)", + "signature": "DEP0167: Weak `DiffieHellmanGroup` instances (`modp1`, `modp2`, `modp5`)", + "label": "DEP0167: Weak DiffieHellmanGroup instances (modp1, modp2, modp5)", + "apiSymbol": "DiffieHellmanGroup", + "depth": 2, + "scope": "metadata", + "anchor": "dep0167-weak-diffiehellmangroup-instances-modp1-modp2-modp5", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:6026760045d4", + "chapter": "deprecations", + "kind": "module", + "name": "dep0168:_unhandled_exception_in_node-api_callbacks", + "signature": "DEP0168: Unhandled exception in Node-API callbacks", + "label": "DEP0168: Unhandled exception in Node-API callbacks", + "apiSymbol": "dep0168:_unhandled_exception_in_node-api_callbacks", + "depth": 2, + "scope": "metadata", + "anchor": "dep0168-unhandled-exception-in-node-api-callbacks", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:a8d8c3de47a3", + "chapter": "deprecations", + "kind": "module", + "name": "dep0169:_insecure_url.parse()", + "signature": "DEP0169: Insecure url.parse()", + "label": "DEP0169: Insecure url.parse()", + "apiSymbol": "dep0169:_insecure_url.parse", + "depth": 2, + "scope": "metadata", + "anchor": "dep0169-insecure-urlparse", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:8d4084776409", + "chapter": "deprecations", + "kind": "module", + "name": "dep0170:_invalid_port_when_using_`url.parse()`", + "signature": "DEP0170: Invalid port when using `url.parse()`", + "label": "DEP0170: Invalid port when using url.parse()", + "apiSymbol": "url.parse", + "depth": 2, + "scope": "metadata", + "anchor": "dep0170-invalid-port-when-using-urlparse", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:8fa0b0290da0", + "chapter": "deprecations", + "kind": "module", + "name": "dep0171:_setters_for_`http.incomingmessage`_headers_and_trailers", + "signature": "DEP0171: Setters for `http.IncomingMessage` headers and trailers", + "label": "DEP0171: Setters for http.IncomingMessage headers and trailers", + "apiSymbol": "http.IncomingMessage", + "depth": 2, + "scope": "metadata", + "anchor": "dep0171-setters-for-httpincomingmessage-headers-and-trailers", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:aa6a9fbe5c49", + "chapter": "deprecations", + "kind": "module", + "name": "dep0172:_the_`asyncresource`_property_of_`asyncresource`_bound_functions", + "signature": "DEP0172: The `asyncResource` property of `AsyncResource` bound functions", + "label": "DEP0172: The asyncResource property of AsyncResource bound functions", + "apiSymbol": "asyncResource", + "depth": 2, + "scope": "metadata", + "anchor": "dep0172-the-asyncresource-property-of-asyncresource-bound-functions", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:a6394fa42321", + "chapter": "deprecations", + "kind": "module", + "name": "dep0173:_the_`assert.calltracker`_class", + "signature": "DEP0173: the `assert.CallTracker` class", + "label": "DEP0173: the assert.CallTracker class", + "apiSymbol": "assert.CallTracker", + "depth": 2, + "scope": "metadata", + "anchor": "dep0173-the-assertcalltracker-class", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:77370438456c", + "chapter": "deprecations", + "kind": "module", + "name": "dep0174:_calling_`promisify`_on_a_function_that_returns_a_`promise`", + "signature": "DEP0174: calling `promisify` on a function that returns a `Promise`", + "label": "DEP0174: calling promisify on a function that returns a Promise", + "apiSymbol": "promisify", + "depth": 2, + "scope": "metadata", + "anchor": "dep0174-calling-promisify-on-a-function-that-returns-a-promise", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:6f406d660079", + "chapter": "deprecations", + "kind": "module", + "name": "dep0175:_`util.tousvstring`", + "signature": "DEP0175: `util.toUSVString`", + "label": "DEP0175: util.toUSVString", + "apiSymbol": "util.toUSVString", + "depth": 2, + "scope": "metadata", + "anchor": "dep0175-utiltousvstring", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:78c05eb2a740", + "chapter": "deprecations", + "kind": "module", + "name": "dep0176:_`fs.f_ok`,_`fs.r_ok`,_`fs.w_ok`,_`fs.x_ok`", + "signature": "DEP0176: `fs.F_OK`, `fs.R_OK`, `fs.W_OK`, `fs.X_OK`", + "label": "DEP0176: fs.F_OK, fs.R_OK, fs.W_OK, fs.X_OK", + "apiSymbol": "fs.F_OK", + "depth": 2, + "scope": "metadata", + "anchor": "dep0176-fsf_ok-fsr_ok-fsw_ok-fsx_ok", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:8f9866d21f90", + "chapter": "deprecations", + "kind": "module", + "name": "dep0177:_`util.types.iswebassemblycompiledmodule`", + "signature": "DEP0177: `util.types.isWebAssemblyCompiledModule`", + "label": "DEP0177: util.types.isWebAssemblyCompiledModule", + "apiSymbol": "util.types.isWebAssemblyCompiledModule", + "depth": 2, + "scope": "metadata", + "anchor": "dep0177-utiltypesiswebassemblycompiledmodule", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:6d6af82139a1", + "chapter": "deprecations", + "kind": "module", + "name": "dep0178:_`dirent.path`", + "signature": "DEP0178: `dirent.path`", + "label": "DEP0178: dirent.path", + "apiSymbol": "dirent.path", + "depth": 2, + "scope": "metadata", + "anchor": "dep0178-direntpath", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:464572e6a18f", + "chapter": "deprecations", + "kind": "module", + "name": "dep0179:_`hash`_constructor", + "signature": "DEP0179: `Hash` constructor", + "label": "DEP0179: Hash constructor", + "apiSymbol": "Hash", + "depth": 2, + "scope": "metadata", + "anchor": "dep0179-hash-constructor", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:31e2c8d8fac1", + "chapter": "deprecations", + "kind": "module", + "name": "dep0180:_`fs.stats`_constructor", + "signature": "DEP0180: `fs.Stats` constructor", + "label": "DEP0180: fs.Stats constructor", + "apiSymbol": "fs.Stats", + "depth": 2, + "scope": "metadata", + "anchor": "dep0180-fsstats-constructor", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:1dcb279c548c", + "chapter": "deprecations", + "kind": "module", + "name": "dep0181:_`hmac`_constructor", + "signature": "DEP0181: `Hmac` constructor", + "label": "DEP0181: Hmac constructor", + "apiSymbol": "Hmac", + "depth": 2, + "scope": "metadata", + "anchor": "dep0181-hmac-constructor", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:150eab222053", + "chapter": "deprecations", + "kind": "module", + "name": "dep0182:_short_gcm_authentication_tags_without_explicit_`authtaglength`", + "signature": "DEP0182: Short GCM authentication tags without explicit `authTagLength`", + "label": "DEP0182: Short GCM authentication tags without explicit authTagLength", + "apiSymbol": "authTagLength", + "depth": 2, + "scope": "metadata", + "anchor": "dep0182-short-gcm-authentication-tags-without-explicit-authtaglength", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:65ad37dc2f3e", + "chapter": "deprecations", + "kind": "module", + "name": "dep0183:_openssl_engine-based_apis", + "signature": "DEP0183: OpenSSL engine-based APIs", + "label": "DEP0183: OpenSSL engine-based APIs", + "apiSymbol": "dep0183:_openssl_engine-based_apis", + "depth": 2, + "scope": "metadata", + "anchor": "dep0183-openssl-engine-based-apis", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:3726dc97afe3", + "chapter": "deprecations", + "kind": "module", + "name": "dep0184:_instantiating_`node:zlib`_classes_without_`new`", + "signature": "DEP0184: Instantiating `node:zlib` classes without `new`", + "label": "DEP0184: Instantiating node:zlib classes without new", + "apiSymbol": "node:zlib", + "depth": 2, + "scope": "metadata", + "anchor": "dep0184-instantiating-nodezlib-classes-without-new", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:351b16cb2165", + "chapter": "deprecations", + "kind": "module", + "name": "dep0185:_instantiating_`node:repl`_classes_without_`new`", + "signature": "DEP0185: Instantiating `node:repl` classes without `new`", + "label": "DEP0185: Instantiating node:repl classes without new", + "apiSymbol": "node:repl", + "depth": 2, + "scope": "metadata", + "anchor": "dep0185-instantiating-noderepl-classes-without-new", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:0a06ba13e884", + "chapter": "deprecations", + "kind": "module", + "name": "dep0187:_passing_invalid_argument_types_to_`fs.existssync`", + "signature": "DEP0187: Passing invalid argument types to `fs.existsSync`", + "label": "DEP0187: Passing invalid argument types to fs.existsSync", + "apiSymbol": "fs.existsSync", + "depth": 2, + "scope": "metadata", + "anchor": "dep0187-passing-invalid-argument-types-to-fsexistssync", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.fs.existsSync", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:aecf44897692", + "chapter": "deprecations", + "kind": "module", + "name": "dep0188:_`process.features.ipv6`_and_`process.features.uv`", + "signature": "DEP0188: `process.features.ipv6` and `process.features.uv`", + "label": "DEP0188: process.features.ipv6 and process.features.uv", + "apiSymbol": "process.features.ipv6", + "depth": 2, + "scope": "metadata", + "anchor": "dep0188-processfeaturesipv6-and-processfeaturesuv", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:577056fd9884", + "chapter": "deprecations", + "kind": "module", + "name": "dep0189:_`process.features.tls_*`", + "signature": "DEP0189: `process.features.tls_*`", + "label": "DEP0189: process.features.tls_*", + "apiSymbol": "process.features.tls_*", + "depth": 2, + "scope": "metadata", + "anchor": "dep0189-processfeaturestls_", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:c39b429c5262", + "chapter": "deprecations", + "kind": "module", + "name": "dep0190:_passing_`args`_to_`node:child_process`_`execfile`/`spawn`_with_`shell`_option", + "signature": "DEP0190: Passing `args` to `node:child_process` `execFile`/`spawn` with `shell` option", + "label": "DEP0190: Passing args to node:child_process execFile/spawn with shell option", + "apiSymbol": "args", + "depth": 2, + "scope": "metadata", + "anchor": "dep0190-passing-args-to-nodechild_process-execfilespawn-with-shell-option", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:c27b449f77ee", + "chapter": "deprecations", + "kind": "module", + "name": "dep0191:_`repl.builtinmodules`", + "signature": "DEP0191: `repl.builtinModules`", + "label": "DEP0191: repl.builtinModules", + "apiSymbol": "repl.builtinModules", + "depth": 2, + "scope": "metadata", + "anchor": "dep0191-replbuiltinmodules", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:9e24ce988ee8", + "chapter": "deprecations", + "kind": "module", + "name": "dep0192:_`require('node:_tls_common')`_and_`require('node:_tls_wrap')`", + "signature": "DEP0192: `require('node:_tls_common')` and `require('node:_tls_wrap')`", + "label": "DEP0192: require('node:_tls_common') and require('node:_tls_wrap')", + "apiSymbol": "require", + "depth": 2, + "scope": "metadata", + "anchor": "dep0192-requirenode_tls_common-and-requirenode_tls_wrap", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:85ebe7c7ca65", + "chapter": "deprecations", + "kind": "module", + "name": "dep0193:_`require('node:_stream_*')`", + "signature": "DEP0193: `require('node:_stream_*')`", + "label": "DEP0193: require('node:_stream_*')", + "apiSymbol": "require", + "depth": 2, + "scope": "metadata", + "anchor": "dep0193-requirenode_stream_", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:54c66f31c994", + "chapter": "deprecations", + "kind": "module", + "name": "dep0194:_http/2_priority_signaling", + "signature": "DEP0194: HTTP/2 priority signaling", + "label": "DEP0194: HTTP/2 priority signaling", + "apiSymbol": "dep0194:_http/2_priority_signaling", + "depth": 2, + "scope": "metadata", + "anchor": "dep0194-http2-priority-signaling", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:728b8cfe5159", + "chapter": "deprecations", + "kind": "module", + "name": "dep0195:_instantiating_`node:http`_classes_without_`new`", + "signature": "DEP0195: Instantiating `node:http` classes without `new`", + "label": "DEP0195: Instantiating node:http classes without new", + "apiSymbol": "node:http", + "depth": 2, + "scope": "metadata", + "anchor": "dep0195-instantiating-nodehttp-classes-without-new", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:77787da7c74a", + "chapter": "deprecations", + "kind": "module", + "name": "dep0196:_calling_`node:child_process`_functions_with_`options.shell`_as_an_empty_string", + "signature": "DEP0196: Calling `node:child_process` functions with `options.shell` as an empty string", + "label": "DEP0196: Calling node:child_process functions with options.shell as an empty string", + "apiSymbol": "node:child_process", + "depth": 2, + "scope": "metadata", + "anchor": "dep0196-calling-nodechild_process-functions-with-optionsshell-as-an-empty-string", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:b18de13b5574", + "chapter": "deprecations", + "kind": "module", + "name": "dep0197:_`util.types.isnativeerror()`", + "signature": "DEP0197: `util.types.isNativeError()`", + "label": "DEP0197: util.types.isNativeError()", + "apiSymbol": "util.types.isNativeError", + "depth": 2, + "scope": "metadata", + "anchor": "dep0197-utiltypesisnativeerror", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:df9851987264", + "chapter": "deprecations", + "kind": "module", + "name": "dep0198:_creating_shake-128_and_shake-256_digests_without_an_explicit_`options.outputlength`", + "signature": "DEP0198: Creating SHAKE-128 and SHAKE-256 digests without an explicit `options.outputLength`", + "label": "DEP0198: Creating SHAKE-128 and SHAKE-256 digests without an explicit options.outputLength", + "apiSymbol": "options.outputLength", + "depth": 2, + "scope": "metadata", + "anchor": "dep0198-creating-shake-128-and-shake-256-digests-without-an-explicit-optionsoutputlength", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:8dac8f806aa4", + "chapter": "deprecations", + "kind": "module", + "name": "dep0199:_`require('node:_http_*')`", + "signature": "DEP0199: `require('node:_http_*')`", + "label": "DEP0199: require('node:_http_*')", + "apiSymbol": "require", + "depth": 2, + "scope": "metadata", + "anchor": "dep0199-requirenode_http_", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:378d238d801f", + "chapter": "deprecations", + "kind": "module", + "name": "dep0200:_closing_fs.dir_on_garbage_collection", + "signature": "DEP0200: Closing fs.Dir on garbage collection", + "label": "DEP0200: Closing fs.Dir on garbage collection", + "apiSymbol": "dep0200:_closing_fs.dir_on_garbage_collection", + "depth": 2, + "scope": "metadata", + "anchor": "dep0200-closing-fsdir-on-garbage-collection", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:d1b39d1ae4e4", + "chapter": "deprecations", + "kind": "module", + "name": "dep0201:_passing_`options.type`_to_`duplex.toweb()`", + "signature": "DEP0201: Passing `options.type` to `Duplex.toWeb()`", + "label": "DEP0201: Passing options.type to Duplex.toWeb()", + "apiSymbol": "options.type", + "depth": 2, + "scope": "metadata", + "anchor": "dep0201-passing-optionstype-to-duplextoweb", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:7944288eca8d", + "chapter": "deprecations", + "kind": "module", + "name": "dep0202:_`http1incomingmessage`_and_`http1serverresponse`_options_of_http/2_servers", + "signature": "DEP0202: `Http1IncomingMessage` and `Http1ServerResponse` options of HTTP/2 servers", + "label": "DEP0202: Http1IncomingMessage and Http1ServerResponse options of HTTP/2 servers", + "apiSymbol": "Http1IncomingMessage", + "depth": 2, + "scope": "metadata", + "anchor": "dep0202-http1incomingmessage-and-http1serverresponse-options-of-http2-servers", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:e9bc5ececc4f", + "chapter": "deprecations", + "kind": "module", + "name": "dep0203:_passing_`cryptokey`_to_`node:crypto`_apis", + "signature": "DEP0203: Passing `CryptoKey` to `node:crypto` APIs", + "label": "DEP0203: Passing CryptoKey to node:crypto APIs", + "apiSymbol": "CryptoKey", + "depth": 2, + "scope": "metadata", + "anchor": "dep0203-passing-cryptokey-to-nodecrypto-apis", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:ce7196366681", + "chapter": "deprecations", + "kind": "module", + "name": "dep0204:_`keyobject.from()`_with_non-extractable_`cryptokey`", + "signature": "DEP0204: `KeyObject.from()` with non-extractable `CryptoKey`", + "label": "DEP0204: KeyObject.from() with non-extractable CryptoKey", + "apiSymbol": "KeyObject.from", + "depth": 2, + "scope": "metadata", + "anchor": "dep0204-keyobjectfrom-with-non-extractable-cryptokey", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "deprecations:a4706ba70d4e", + "chapter": "deprecations", + "kind": "module", + "name": "dep0205:_`module.register()`", + "signature": "DEP0205: `module.register()`", + "label": "DEP0205: module.register()", + "apiSymbol": "module.register", + "depth": 2, + "scope": "metadata", + "anchor": "dep0205-moduleregister", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:deprecations" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:deprecations" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:11bd5c8c605b", + "chapter": "diagnostics_channel", + "kind": "module", + "name": "diagnostics_channel", + "signature": "Diagnostics Channel", + "label": "Diagnostics Channel", + "apiSymbol": "diagnostics_channel", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/corpus/2214-dc-bind-store.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "diagnostics_channel:dec126d55b40", + "chapter": "diagnostics_channel", + "kind": "module", + "name": "public_api", + "signature": "Public API", + "label": "Public API", + "apiSymbol": "public_api", + "depth": 1, + "scope": "documentation", + "anchor": "public-api", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:3acc06ae11d7", + "chapter": "diagnostics_channel", + "kind": "module", + "name": "overview", + "signature": "Overview", + "label": "Overview", + "apiSymbol": "overview", + "depth": 2, + "scope": "documentation", + "anchor": "overview", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:3a83bf4c0f02", + "chapter": "diagnostics_channel", + "kind": "method", + "name": "hasSubscribers", + "signature": "`diagnostics_channel.hasSubscribers(name)`", + "label": "diagnostics_channel.hasSubscribers(name)", + "apiSymbol": "diagnostics_channel.hasSubscribers", + "depth": 3, + "scope": "api", + "anchor": "diagnostics_channelhassubscribersname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.diagnostics_channel.hasSubscribers", + "tests": [ + "tests/corpus/2214-dc-bind-store.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:diagnostics_channel.hasSubscribers", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:5dc721bef53e", + "chapter": "diagnostics_channel", + "kind": "method", + "name": "channel", + "signature": "`diagnostics_channel.channel(name)`", + "label": "diagnostics_channel.channel(name)", + "apiSymbol": "diagnostics_channel.channel", + "depth": 3, + "scope": "api", + "anchor": "diagnostics_channelchannelname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.diagnostics_channel.channel", + "tests": [ + "tests/corpus/2214-dc-bind-store.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:diagnostics_channel.channel", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:58098a420ca7", + "chapter": "diagnostics_channel", + "kind": "method", + "name": "subscribe", + "signature": "`diagnostics_channel.subscribe(name, onMessage)`", + "label": "diagnostics_channel.subscribe(name, onMessage)", + "apiSymbol": "diagnostics_channel.subscribe", + "depth": 3, + "scope": "api", + "anchor": "diagnostics_channelsubscribename-onmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.diagnostics_channel.subscribe", + "tests": [ + "tests/corpus/2214-dc-bind-store.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:diagnostics_channel.subscribe", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:610af18774f3", + "chapter": "diagnostics_channel", + "kind": "method", + "name": "unsubscribe", + "signature": "`diagnostics_channel.unsubscribe(name, onMessage)`", + "label": "diagnostics_channel.unsubscribe(name, onMessage)", + "apiSymbol": "diagnostics_channel.unsubscribe", + "depth": 3, + "scope": "api", + "anchor": "diagnostics_channelunsubscribename-onmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.diagnostics_channel.unsubscribe", + "tests": [ + "tests/corpus/2214-dc-bind-store.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:diagnostics_channel.unsubscribe", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:b3b8c4de5108", + "chapter": "diagnostics_channel", + "kind": "method", + "name": "tracingChannel", + "signature": "`diagnostics_channel.tracingChannel(nameOrChannels)`", + "label": "diagnostics_channel.tracingChannel(nameOrChannels)", + "apiSymbol": "diagnostics_channel.tracingChannel", + "depth": 3, + "scope": "api", + "anchor": "diagnostics_channeltracingchannelnameorchannels", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.diagnostics_channel.tracingChannel", + "tests": [ + "tests/corpus/2214-dc-bind-store.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:diagnostics_channel.tracingChannel", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:26a4d2836385", + "chapter": "diagnostics_channel", + "kind": "module", + "name": "tracingchannel_channels", + "signature": "TracingChannel Channels", + "label": "TracingChannel Channels", + "apiSymbol": "tracingchannel_channels", + "depth": 2, + "scope": "documentation", + "anchor": "tracingchannel-channels", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:e7b043d069d2", + "chapter": "diagnostics_channel", + "kind": "method", + "name": "start", + "signature": "`start(event)`", + "label": "start(event)", + "apiSymbol": "start", + "depth": 3, + "scope": "api", + "anchor": "startevent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:diagnostics_channel" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:ad43c540a991", + "chapter": "diagnostics_channel", + "kind": "method", + "name": "end", + "signature": "`end(event)`", + "label": "end(event)", + "apiSymbol": "end", + "depth": 3, + "scope": "api", + "anchor": "endevent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:diagnostics_channel" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:ca9b1fb81fe7", + "chapter": "diagnostics_channel", + "kind": "method", + "name": "asyncStart", + "signature": "`asyncStart(event)`", + "label": "asyncStart(event)", + "apiSymbol": "asyncStart", + "depth": 3, + "scope": "api", + "anchor": "asyncstartevent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:diagnostics_channel" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:5c9a2f6b6212", + "chapter": "diagnostics_channel", + "kind": "method", + "name": "asyncEnd", + "signature": "`asyncEnd(event)`", + "label": "asyncEnd(event)", + "apiSymbol": "asyncEnd", + "depth": 3, + "scope": "api", + "anchor": "asyncendevent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:diagnostics_channel" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:e1c5179dc980", + "chapter": "diagnostics_channel", + "kind": "method", + "name": "error", + "signature": "`error(event)`", + "label": "error(event)", + "apiSymbol": "error", + "depth": 3, + "scope": "api", + "anchor": "errorevent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:diagnostics_channel" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:3065fc3f7ad2", + "chapter": "diagnostics_channel", + "kind": "module", + "name": "built-in_channels", + "signature": "Built-in Channels", + "label": "Built-in Channels", + "apiSymbol": "built-in_channels", + "depth": 2, + "scope": "documentation", + "anchor": "built-in-channels", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:2faab891d9ba", + "chapter": "diagnostics_channel", + "kind": "module", + "name": "console", + "signature": "Console", + "label": "Console", + "apiSymbol": "console", + "depth": 3, + "scope": "documentation", + "anchor": "console", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:3c8b9230f22c", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "console.log", + "signature": "Event: `'console.log'`", + "label": "'console.log'", + "apiSymbol": "'console.log'", + "depth": 4, + "scope": "api", + "anchor": "event-consolelog", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:diagnostics_channel" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:192addcfe8d5", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "console.info", + "signature": "Event: `'console.info'`", + "label": "'console.info'", + "apiSymbol": "'console.info'", + "depth": 4, + "scope": "api", + "anchor": "event-consoleinfo", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:diagnostics_channel" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:5825be615c37", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "console.debug", + "signature": "Event: `'console.debug'`", + "label": "'console.debug'", + "apiSymbol": "'console.debug'", + "depth": 4, + "scope": "api", + "anchor": "event-consoledebug", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:diagnostics_channel" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:e7c098f4a4be", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "console.warn", + "signature": "Event: `'console.warn'`", + "label": "'console.warn'", + "apiSymbol": "'console.warn'", + "depth": 4, + "scope": "api", + "anchor": "event-consolewarn", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:diagnostics_channel" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:f5d8f7c48fef", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "console.error", + "signature": "Event: `'console.error'`", + "label": "'console.error'", + "apiSymbol": "'console.error'", + "depth": 4, + "scope": "api", + "anchor": "event-consoleerror", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:diagnostics_channel" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:007a09e0a6f2", + "chapter": "diagnostics_channel", + "kind": "module", + "name": "http", + "signature": "HTTP", + "label": "HTTP", + "apiSymbol": "http", + "depth": 3, + "scope": "documentation", + "anchor": "http", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:50a76b004ae9", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "http.client.request.created", + "signature": "Event: `'http.client.request.created'`", + "label": "'http.client.request.created'", + "apiSymbol": "'http.client.request.created'", + "depth": 4, + "scope": "api", + "anchor": "event-httpclientrequestcreated", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:diagnostics_channel" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:d19d2098844d", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "http.client.request.start", + "signature": "Event: `'http.client.request.start'`", + "label": "'http.client.request.start'", + "apiSymbol": "'http.client.request.start'", + "depth": 4, + "scope": "api", + "anchor": "event-httpclientrequeststart", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:diagnostics_channel" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:0efc0584b099", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "http.client.request.error", + "signature": "Event: `'http.client.request.error'`", + "label": "'http.client.request.error'", + "apiSymbol": "'http.client.request.error'", + "depth": 4, + "scope": "api", + "anchor": "event-httpclientrequesterror", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:diagnostics_channel" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:04e5ed42f276", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "http.client.response.finish", + "signature": "Event: `'http.client.response.finish'`", + "label": "'http.client.response.finish'", + "apiSymbol": "'http.client.response.finish'", + "depth": 4, + "scope": "api", + "anchor": "event-httpclientresponsefinish", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:diagnostics_channel" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:c4b514e9fd58", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "http.server.request.start", + "signature": "Event: `'http.server.request.start'`", + "label": "'http.server.request.start'", + "apiSymbol": "'http.server.request.start'", + "depth": 4, + "scope": "api", + "anchor": "event-httpserverrequeststart", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:diagnostics_channel" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:30048d6b5d93", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "http.server.response.created", + "signature": "Event: `'http.server.response.created'`", + "label": "'http.server.response.created'", + "apiSymbol": "'http.server.response.created'", + "depth": 4, + "scope": "api", + "anchor": "event-httpserverresponsecreated", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:diagnostics_channel" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:b9fcb7b3c176", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "http.server.response.finish", + "signature": "Event: `'http.server.response.finish'`", + "label": "'http.server.response.finish'", + "apiSymbol": "'http.server.response.finish'", + "depth": 4, + "scope": "api", + "anchor": "event-httpserverresponsefinish", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:diagnostics_channel" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:3f2f2d6c8b62", + "chapter": "diagnostics_channel", + "kind": "module", + "name": "http/2", + "signature": "HTTP/2", + "label": "HTTP/2", + "apiSymbol": "http/2", + "depth": 3, + "scope": "documentation", + "anchor": "http2", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:f371268e3e6e", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "http2.client.stream.created", + "signature": "Event: `'http2.client.stream.created'`", + "label": "'http2.client.stream.created'", + "apiSymbol": "'http2.client.stream.created'", + "depth": 4, + "scope": "api", + "anchor": "event-http2clientstreamcreated", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:diagnostics_channel" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:5c461371ec2f", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "http2.client.stream.start", + "signature": "Event: `'http2.client.stream.start'`", + "label": "'http2.client.stream.start'", + "apiSymbol": "'http2.client.stream.start'", + "depth": 4, + "scope": "api", + "anchor": "event-http2clientstreamstart", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:diagnostics_channel" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:0d58e966dbf6", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "http2.client.stream.error", + "signature": "Event: `'http2.client.stream.error'`", + "label": "'http2.client.stream.error'", + "apiSymbol": "'http2.client.stream.error'", + "depth": 4, + "scope": "api", + "anchor": "event-http2clientstreamerror", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:diagnostics_channel" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:b6fb66c771d4", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "http2.client.stream.finish", + "signature": "Event: `'http2.client.stream.finish'`", + "label": "'http2.client.stream.finish'", + "apiSymbol": "'http2.client.stream.finish'", + "depth": 4, + "scope": "api", + "anchor": "event-http2clientstreamfinish", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:diagnostics_channel" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:718e824eefa2", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "http2.client.stream.bodyChunkSent", + "signature": "Event: `'http2.client.stream.bodyChunkSent'`", + "label": "'http2.client.stream.bodyChunkSent'", + "apiSymbol": "'http2.client.stream.bodyChunkSent'", + "depth": 4, + "scope": "api", + "anchor": "event-http2clientstreambodychunksent", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:diagnostics_channel" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:401ed3ea2963", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "http2.client.stream.bodySent", + "signature": "Event: `'http2.client.stream.bodySent'`", + "label": "'http2.client.stream.bodySent'", + "apiSymbol": "'http2.client.stream.bodySent'", + "depth": 4, + "scope": "api", + "anchor": "event-http2clientstreambodysent", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:diagnostics_channel" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:9b614c2de9e4", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "http2.client.stream.close", + "signature": "Event: `'http2.client.stream.close'`", + "label": "'http2.client.stream.close'", + "apiSymbol": "'http2.client.stream.close'", + "depth": 4, + "scope": "api", + "anchor": "event-http2clientstreamclose", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:diagnostics_channel" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:83a09c52f2c6", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "http2.server.stream.created", + "signature": "Event: `'http2.server.stream.created'`", + "label": "'http2.server.stream.created'", + "apiSymbol": "'http2.server.stream.created'", + "depth": 4, + "scope": "api", + "anchor": "event-http2serverstreamcreated", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:diagnostics_channel" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:e25b6f904e15", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "http2.server.stream.start", + "signature": "Event: `'http2.server.stream.start'`", + "label": "'http2.server.stream.start'", + "apiSymbol": "'http2.server.stream.start'", + "depth": 4, + "scope": "api", + "anchor": "event-http2serverstreamstart", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:diagnostics_channel" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:16fd6ad9a398", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "http2.server.stream.error", + "signature": "Event: `'http2.server.stream.error'`", + "label": "'http2.server.stream.error'", + "apiSymbol": "'http2.server.stream.error'", + "depth": 4, + "scope": "api", + "anchor": "event-http2serverstreamerror", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:diagnostics_channel" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:838230e7598c", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "http2.server.stream.finish", + "signature": "Event: `'http2.server.stream.finish'`", + "label": "'http2.server.stream.finish'", + "apiSymbol": "'http2.server.stream.finish'", + "depth": 4, + "scope": "api", + "anchor": "event-http2serverstreamfinish", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:diagnostics_channel" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:ad7084327c33", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "http2.server.stream.close", + "signature": "Event: `'http2.server.stream.close'`", + "label": "'http2.server.stream.close'", + "apiSymbol": "'http2.server.stream.close'", + "depth": 4, + "scope": "api", + "anchor": "event-http2serverstreamclose", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:diagnostics_channel" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:2f537e296ad6", + "chapter": "diagnostics_channel", + "kind": "module", + "name": "modules", + "signature": "Modules", + "label": "Modules", + "apiSymbol": "modules", + "depth": 3, + "scope": "documentation", + "anchor": "modules", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:d1c41884e542", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "module.require.start", + "signature": "Event: `'module.require.start'`", + "label": "'module.require.start'", + "apiSymbol": "'module.require.start'", + "depth": 4, + "scope": "api", + "anchor": "event-modulerequirestart", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:diagnostics_channel" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:4cd1c32b77c6", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "module.require.end", + "signature": "Event: `'module.require.end'`", + "label": "'module.require.end'", + "apiSymbol": "'module.require.end'", + "depth": 4, + "scope": "api", + "anchor": "event-modulerequireend", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:diagnostics_channel" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:cd31d16f125f", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "module.require.error", + "signature": "Event: `'module.require.error'`", + "label": "'module.require.error'", + "apiSymbol": "'module.require.error'", + "depth": 4, + "scope": "api", + "anchor": "event-modulerequireerror", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:diagnostics_channel" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:a2840f3e48cc", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "module.import.asyncStart", + "signature": "Event: `'module.import.asyncStart'`", + "label": "'module.import.asyncStart'", + "apiSymbol": "'module.import.asyncStart'", + "depth": 4, + "scope": "api", + "anchor": "event-moduleimportasyncstart", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:diagnostics_channel" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:730d6618877f", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "module.import.asyncEnd", + "signature": "Event: `'module.import.asyncEnd'`", + "label": "'module.import.asyncEnd'", + "apiSymbol": "'module.import.asyncEnd'", + "depth": 4, + "scope": "api", + "anchor": "event-moduleimportasyncend", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:diagnostics_channel" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:b94f162dfbad", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "module.import.error", + "signature": "Event: `'module.import.error'`", + "label": "'module.import.error'", + "apiSymbol": "'module.import.error'", + "depth": 4, + "scope": "api", + "anchor": "event-moduleimporterror", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:diagnostics_channel" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:0f3aec4615cb", + "chapter": "diagnostics_channel", + "kind": "module", + "name": "net", + "signature": "NET", + "label": "NET", + "apiSymbol": "net", + "depth": 3, + "scope": "documentation", + "anchor": "net", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:96f699c20c83", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "net.client.socket", + "signature": "Event: `'net.client.socket'`", + "label": "'net.client.socket'", + "apiSymbol": "'net.client.socket'", + "depth": 4, + "scope": "api", + "anchor": "event-netclientsocket", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:diagnostics_channel" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:a4ac7822e041", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "net.server.socket", + "signature": "Event: `'net.server.socket'`", + "label": "'net.server.socket'", + "apiSymbol": "'net.server.socket'", + "depth": 4, + "scope": "api", + "anchor": "event-netserversocket", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:diagnostics_channel" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:8fb6ed70db09", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "tracing:net.server.listen:asyncStart", + "signature": "Event: `'tracing:net.server.listen:asyncStart'`", + "label": "'tracing:net.server.listen:asyncStart'", + "apiSymbol": "'tracing:net.server.listen:asyncStart'", + "depth": 4, + "scope": "api", + "anchor": "event-tracingnetserverlistenasyncstart", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:diagnostics_channel" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:227fa6e52c85", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "tracing:net.server.listen:asyncEnd", + "signature": "Event: `'tracing:net.server.listen:asyncEnd'`", + "label": "'tracing:net.server.listen:asyncEnd'", + "apiSymbol": "'tracing:net.server.listen:asyncEnd'", + "depth": 4, + "scope": "api", + "anchor": "event-tracingnetserverlistenasyncend", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:diagnostics_channel" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:2ab98bc47cfd", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "tracing:net.server.listen:error", + "signature": "Event: `'tracing:net.server.listen:error'`", + "label": "'tracing:net.server.listen:error'", + "apiSymbol": "'tracing:net.server.listen:error'", + "depth": 4, + "scope": "api", + "anchor": "event-tracingnetserverlistenerror", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:diagnostics_channel" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:9bd59b056f7d", + "chapter": "diagnostics_channel", + "kind": "module", + "name": "udp", + "signature": "UDP", + "label": "UDP", + "apiSymbol": "udp", + "depth": 3, + "scope": "documentation", + "anchor": "udp", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:b2b7e4c01971", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "udp.socket", + "signature": "Event: `'udp.socket'`", + "label": "'udp.socket'", + "apiSymbol": "'udp.socket'", + "depth": 4, + "scope": "api", + "anchor": "event-udpsocket", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:diagnostics_channel" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:c04c6bd00013", + "chapter": "diagnostics_channel", + "kind": "module", + "name": "process", + "signature": "Process", + "label": "Process", + "apiSymbol": "process", + "depth": 3, + "scope": "documentation", + "anchor": "process", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:d80660abc192", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "child_process", + "signature": "Event: `'child_process'`", + "label": "'child_process'", + "apiSymbol": "'child_process'", + "depth": 4, + "scope": "api", + "anchor": "event-child_process", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:diagnostics_channel" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:3e684ab90652", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "execve", + "signature": "Event: `'execve'`", + "label": "'execve'", + "apiSymbol": "'execve'", + "depth": 4, + "scope": "api", + "anchor": "event-execve", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:diagnostics_channel" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:b186c31a459a", + "chapter": "diagnostics_channel", + "kind": "module", + "name": "web_locks", + "signature": "Web Locks", + "label": "Web Locks", + "apiSymbol": "web_locks", + "depth": 3, + "scope": "documentation", + "anchor": "web-locks", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:2150baf1c289", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "locks.request.start", + "signature": "Event: `'locks.request.start'`", + "label": "'locks.request.start'", + "apiSymbol": "'locks.request.start'", + "depth": 4, + "scope": "api", + "anchor": "event-locksrequeststart", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:diagnostics_channel" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:ff0186747334", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "locks.request.grant", + "signature": "Event: `'locks.request.grant'`", + "label": "'locks.request.grant'", + "apiSymbol": "'locks.request.grant'", + "depth": 4, + "scope": "api", + "anchor": "event-locksrequestgrant", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:diagnostics_channel" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:e52bc3bff166", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "locks.request.miss", + "signature": "Event: `'locks.request.miss'`", + "label": "'locks.request.miss'", + "apiSymbol": "'locks.request.miss'", + "depth": 4, + "scope": "api", + "anchor": "event-locksrequestmiss", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:diagnostics_channel" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:357e89691f43", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "locks.request.end", + "signature": "Event: `'locks.request.end'`", + "label": "'locks.request.end'", + "apiSymbol": "'locks.request.end'", + "depth": 4, + "scope": "api", + "anchor": "event-locksrequestend", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:diagnostics_channel" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:72cd0ebeb35f", + "chapter": "diagnostics_channel", + "kind": "module", + "name": "worker_thread", + "signature": "Worker Thread", + "label": "Worker Thread", + "apiSymbol": "worker_thread", + "depth": 3, + "scope": "documentation", + "anchor": "worker-thread", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:d4ce0a297579", + "chapter": "diagnostics_channel", + "kind": "event", + "name": "worker_threads", + "signature": "Event: `'worker_threads'`", + "label": "'worker_threads'", + "apiSymbol": "'worker_threads'", + "depth": 4, + "scope": "api", + "anchor": "event-worker_threads", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:diagnostics_channel" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:e311810f8dca", + "chapter": "diagnostics_channel", + "kind": "class", + "name": "Channel", + "signature": "Class: `Channel`", + "label": "Channel", + "apiSymbol": "Channel", + "depth": 2, + "scope": "api", + "anchor": "class-channel", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:diagnostics_channel" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:4546c9960c41", + "chapter": "diagnostics_channel", + "kind": "method", + "name": "publish", + "signature": "`channel.publish(message)`", + "label": "channel.publish(message)", + "apiSymbol": "channel.publish", + "depth": 3, + "scope": "api", + "anchor": "channelpublishmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:diagnostics_channel.channel.publish", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:9b216a62d8a3", + "chapter": "diagnostics_channel", + "kind": "method", + "name": "subscribe", + "signature": "`channel.subscribe(onMessage)`", + "label": "channel.subscribe(onMessage)", + "apiSymbol": "channel.subscribe", + "depth": 3, + "scope": "api", + "anchor": "channelsubscribeonmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:diagnostics_channel.channel.subscribe", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:b6526124c5e9", + "chapter": "diagnostics_channel", + "kind": "method", + "name": "unsubscribe", + "signature": "`channel.unsubscribe(onMessage)`", + "label": "channel.unsubscribe(onMessage)", + "apiSymbol": "channel.unsubscribe", + "depth": 3, + "scope": "api", + "anchor": "channelunsubscribeonmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:diagnostics_channel.channel.unsubscribe", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:67cdfaab1d61", + "chapter": "diagnostics_channel", + "kind": "method", + "name": "bindStore", + "signature": "`channel.bindStore(store[, transform])`", + "label": "channel.bindStore(store[, transform])", + "apiSymbol": "channel.bindStore", + "depth": 3, + "scope": "api", + "anchor": "channelbindstorestore-transform", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:diagnostics_channel" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:8e15a4c4f731", + "chapter": "diagnostics_channel", + "kind": "method", + "name": "unbindStore", + "signature": "`channel.unbindStore(store)`", + "label": "channel.unbindStore(store)", + "apiSymbol": "channel.unbindStore", + "depth": 3, + "scope": "api", + "anchor": "channelunbindstorestore", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:diagnostics_channel" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:5999206126f6", + "chapter": "diagnostics_channel", + "kind": "method", + "name": "runStores", + "signature": "`channel.runStores(context, fn[, thisArg[, ...args]])`", + "label": "channel.runStores(context, fn[, thisArg[, ...args]])", + "apiSymbol": "channel.runStores", + "depth": 3, + "scope": "api", + "anchor": "channelrunstorescontext-fn-thisarg-args", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:diagnostics_channel" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:d8ea9d9486e4", + "chapter": "diagnostics_channel", + "kind": "boolean", + "name": "return", + "signature": "`hasSubscribers` Returns: {boolean} If there are active subscribers", + "label": "hasSubscribers", + "apiSymbol": "hasSubscribers", + "depth": 3, + "scope": "api", + "anchor": "class-channel", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.diagnostics_channel.hasSubscribers", + "tests": [ + "tests/corpus/2214-dc-bind-store.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:diagnostics_channel.hasSubscribers", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + }, + "anchorSource": "ancestor" + }, + { + "id": "diagnostics_channel:514c35ea453b", + "chapter": "diagnostics_channel", + "kind": "class", + "name": "TracingChannel", + "signature": "Class: `TracingChannel`", + "label": "TracingChannel", + "apiSymbol": "TracingChannel", + "depth": 2, + "scope": "api", + "anchor": "class-tracingchannel", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:diagnostics_channel" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:4d97dbb25c78", + "chapter": "diagnostics_channel", + "kind": "method", + "name": "subscribe", + "signature": "`tracingChannel.subscribe(subscribers)`", + "label": "tracingChannel.subscribe(subscribers)", + "apiSymbol": "tracingChannel.subscribe", + "depth": 3, + "scope": "api", + "anchor": "tracingchannelsubscribesubscribers", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:diagnostics_channel" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:02d20863fa22", + "chapter": "diagnostics_channel", + "kind": "method", + "name": "unsubscribe", + "signature": "`tracingChannel.unsubscribe(subscribers)`", + "label": "tracingChannel.unsubscribe(subscribers)", + "apiSymbol": "tracingChannel.unsubscribe", + "depth": 3, + "scope": "api", + "anchor": "tracingchannelunsubscribesubscribers", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:diagnostics_channel" + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:02999c2ba90c", + "chapter": "diagnostics_channel", + "kind": "method", + "name": "traceSync", + "signature": "`tracingChannel.traceSync(fn[, context[, thisArg[, ...args]]])`", + "label": "tracingChannel.traceSync(fn[, context[, thisArg[, ...args]]])", + "apiSymbol": "tracingChannel.traceSync", + "depth": 3, + "scope": "api", + "anchor": "tracingchanneltracesyncfn-context-thisarg-args", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:diagnostics_channel.tracingChannel.traceSync", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:841661fad045", + "chapter": "diagnostics_channel", + "kind": "method", + "name": "tracePromise", + "signature": "`tracingChannel.tracePromise(fn[, context[, thisArg[, ...args]]])`", + "label": "tracingChannel.tracePromise(fn[, context[, thisArg[, ...args]]])", + "apiSymbol": "tracingChannel.tracePromise", + "depth": 3, + "scope": "api", + "anchor": "tracingchanneltracepromisefn-context-thisarg-args", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:diagnostics_channel.tracingChannel.tracePromise", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:eefec38bb12a", + "chapter": "diagnostics_channel", + "kind": "method", + "name": "traceCallback", + "signature": "`tracingChannel.traceCallback(fn[, position[, context[, thisArg[, ...args]]]])`", + "label": "tracingChannel.traceCallback(fn[, position[, context[, thisArg[, ...args]]]])", + "apiSymbol": "tracingChannel.traceCallback", + "depth": 3, + "scope": "api", + "anchor": "tracingchanneltracecallbackfn-position-context-thisarg-args", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:diagnostics_channel" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:diagnostics_channel.tracingChannel.traceCallback", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "diagnostics_channel:ce732ca56277", + "chapter": "diagnostics_channel", + "kind": "boolean", + "name": "return", + "signature": "`hasSubscribers` Returns: {boolean} `true` if any of the individual channels has a subscriber, `false` if not.", + "label": "hasSubscribers", + "apiSymbol": "hasSubscribers", + "depth": 3, + "scope": "api", + "anchor": "class-tracingchannel", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.diagnostics_channel.hasSubscribers", + "tests": [ + "tests/corpus/2214-dc-bind-store.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:diagnostics_channel.hasSubscribers", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + }, + "anchorSource": "ancestor" + }, + { + "id": "dns:710020a91c93", + "chapter": "dns", + "kind": "module", + "name": "dns", + "signature": "DNS", + "label": "DNS", + "apiSymbol": "dns", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "derived:descendants" + }, + "dynamic": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "dns:93196865a952", + "chapter": "dns", + "kind": "module", + "name": "dns_promises_api", + "signature": "DNS promises API", + "label": "DNS promises API", + "apiSymbol": "dns_promises_api", + "depth": 1, + "scope": "documentation", + "anchor": "dns-promises-api", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "dns:9d26a757b216", + "chapter": "dns", + "kind": "class", + "name": "dnsPromises.Resolver", + "signature": "Class: `dnsPromises.Resolver`", + "label": "dnsPromises.Resolver", + "apiSymbol": "dnsPromises.Resolver", + "depth": 2, + "scope": "api", + "anchor": "class-dnspromisesresolver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dns" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:dns" + }, + "anchorSource": "exact" + }, + { + "id": "dns:31c9728fecd0", + "chapter": "dns", + "kind": "method", + "name": "cancel", + "signature": "`resolver.cancel()`", + "label": "resolver.cancel()", + "apiSymbol": "resolver.cancel", + "depth": 2, + "scope": "api", + "anchor": "resolvercancel", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dns" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:dns" + }, + "anchorSource": "exact" + }, + { + "id": "dns:4fc0b8fec32c", + "chapter": "dns", + "kind": "method", + "name": "getServers", + "signature": "`dnsPromises.getServers()`", + "label": "dnsPromises.getServers()", + "apiSymbol": "dnsPromises.getServers", + "depth": 2, + "scope": "api", + "anchor": "dnspromisesgetservers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dns" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:dns" + }, + "anchorSource": "exact" + }, + { + "id": "dns:1684d350fdc7", + "chapter": "dns", + "kind": "method", + "name": "lookup", + "signature": "`dnsPromises.lookup(hostname[, options])`", + "label": "dnsPromises.lookup(hostname[, options])", + "apiSymbol": "dnsPromises.lookup", + "depth": 2, + "scope": "api", + "anchor": "dnspromiseslookuphostname-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dns" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:dns" + }, + "anchorSource": "exact" + }, + { + "id": "dns:788013947c49", + "chapter": "dns", + "kind": "method", + "name": "lookupService", + "signature": "`dnsPromises.lookupService(address, port)`", + "label": "dnsPromises.lookupService(address, port)", + "apiSymbol": "dnsPromises.lookupService", + "depth": 2, + "scope": "api", + "anchor": "dnspromiseslookupserviceaddress-port", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dns" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:dns" + }, + "anchorSource": "exact" + }, + { + "id": "dns:7da68553b6ed", + "chapter": "dns", + "kind": "method", + "name": "resolve", + "signature": "`dnsPromises.resolve(hostname[, rrtype])`", + "label": "dnsPromises.resolve(hostname[, rrtype])", + "apiSymbol": "dnsPromises.resolve", + "depth": 2, + "scope": "api", + "anchor": "dnspromisesresolvehostname-rrtype", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dns" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:dns" + }, + "anchorSource": "exact" + }, + { + "id": "dns:48e279c9cd32", + "chapter": "dns", + "kind": "method", + "name": "resolve4", + "signature": "`dnsPromises.resolve4(hostname[, options])`", + "label": "dnsPromises.resolve4(hostname[, options])", + "apiSymbol": "dnsPromises.resolve4", + "depth": 2, + "scope": "api", + "anchor": "dnspromisesresolve4hostname-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dns" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:dns" + }, + "anchorSource": "exact" + }, + { + "id": "dns:8f9ed07a487f", + "chapter": "dns", + "kind": "method", + "name": "resolve6", + "signature": "`dnsPromises.resolve6(hostname[, options])`", + "label": "dnsPromises.resolve6(hostname[, options])", + "apiSymbol": "dnsPromises.resolve6", + "depth": 2, + "scope": "api", + "anchor": "dnspromisesresolve6hostname-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dns" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:dns" + }, + "anchorSource": "exact" + }, + { + "id": "dns:d23a1715b8ba", + "chapter": "dns", + "kind": "method", + "name": "resolveAny", + "signature": "`dnsPromises.resolveAny(hostname)`", + "label": "dnsPromises.resolveAny(hostname)", + "apiSymbol": "dnsPromises.resolveAny", + "depth": 2, + "scope": "api", + "anchor": "dnspromisesresolveanyhostname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dns" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:dns" + }, + "anchorSource": "exact" + }, + { + "id": "dns:590da03e70db", + "chapter": "dns", + "kind": "method", + "name": "resolveCaa", + "signature": "`dnsPromises.resolveCaa(hostname)`", + "label": "dnsPromises.resolveCaa(hostname)", + "apiSymbol": "dnsPromises.resolveCaa", + "depth": 2, + "scope": "api", + "anchor": "dnspromisesresolvecaahostname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dns" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:dns" + }, + "anchorSource": "exact" + }, + { + "id": "dns:a803d1e0a192", + "chapter": "dns", + "kind": "method", + "name": "resolveCname", + "signature": "`dnsPromises.resolveCname(hostname)`", + "label": "dnsPromises.resolveCname(hostname)", + "apiSymbol": "dnsPromises.resolveCname", + "depth": 2, + "scope": "api", + "anchor": "dnspromisesresolvecnamehostname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dns" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:dns" + }, + "anchorSource": "exact" + }, + { + "id": "dns:586462ef8ad5", + "chapter": "dns", + "kind": "method", + "name": "resolveMx", + "signature": "`dnsPromises.resolveMx(hostname)`", + "label": "dnsPromises.resolveMx(hostname)", + "apiSymbol": "dnsPromises.resolveMx", + "depth": 2, + "scope": "api", + "anchor": "dnspromisesresolvemxhostname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dns" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:dns" + }, + "anchorSource": "exact" + }, + { + "id": "dns:847b7d14469d", + "chapter": "dns", + "kind": "method", + "name": "resolveNaptr", + "signature": "`dnsPromises.resolveNaptr(hostname)`", + "label": "dnsPromises.resolveNaptr(hostname)", + "apiSymbol": "dnsPromises.resolveNaptr", + "depth": 2, + "scope": "api", + "anchor": "dnspromisesresolvenaptrhostname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dns" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:dns" + }, + "anchorSource": "exact" + }, + { + "id": "dns:a4fec6893c05", + "chapter": "dns", + "kind": "method", + "name": "resolveNs", + "signature": "`dnsPromises.resolveNs(hostname)`", + "label": "dnsPromises.resolveNs(hostname)", + "apiSymbol": "dnsPromises.resolveNs", + "depth": 2, + "scope": "api", + "anchor": "dnspromisesresolvenshostname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dns" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:dns" + }, + "anchorSource": "exact" + }, + { + "id": "dns:a777492fa26f", + "chapter": "dns", + "kind": "method", + "name": "resolvePtr", + "signature": "`dnsPromises.resolvePtr(hostname)`", + "label": "dnsPromises.resolvePtr(hostname)", + "apiSymbol": "dnsPromises.resolvePtr", + "depth": 2, + "scope": "api", + "anchor": "dnspromisesresolveptrhostname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dns" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:dns" + }, + "anchorSource": "exact" + }, + { + "id": "dns:2356d15798d1", + "chapter": "dns", + "kind": "method", + "name": "resolveSoa", + "signature": "`dnsPromises.resolveSoa(hostname)`", + "label": "dnsPromises.resolveSoa(hostname)", + "apiSymbol": "dnsPromises.resolveSoa", + "depth": 2, + "scope": "api", + "anchor": "dnspromisesresolvesoahostname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dns" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:dns" + }, + "anchorSource": "exact" + }, + { + "id": "dns:8bc5eb74d643", + "chapter": "dns", + "kind": "method", + "name": "resolveSrv", + "signature": "`dnsPromises.resolveSrv(hostname)`", + "label": "dnsPromises.resolveSrv(hostname)", + "apiSymbol": "dnsPromises.resolveSrv", + "depth": 2, + "scope": "api", + "anchor": "dnspromisesresolvesrvhostname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dns" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:dns" + }, + "anchorSource": "exact" + }, + { + "id": "dns:3d950352573b", + "chapter": "dns", + "kind": "method", + "name": "resolveTlsa", + "signature": "`dnsPromises.resolveTlsa(hostname)`", + "label": "dnsPromises.resolveTlsa(hostname)", + "apiSymbol": "dnsPromises.resolveTlsa", + "depth": 2, + "scope": "api", + "anchor": "dnspromisesresolvetlsahostname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dns" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:dns" + }, + "anchorSource": "exact" + }, + { + "id": "dns:4b4bc3e24563", + "chapter": "dns", + "kind": "method", + "name": "resolveTxt", + "signature": "`dnsPromises.resolveTxt(hostname)`", + "label": "dnsPromises.resolveTxt(hostname)", + "apiSymbol": "dnsPromises.resolveTxt", + "depth": 2, + "scope": "api", + "anchor": "dnspromisesresolvetxthostname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dns" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:dns" + }, + "anchorSource": "exact" + }, + { + "id": "dns:1a354e828d63", + "chapter": "dns", + "kind": "method", + "name": "reverse", + "signature": "`dnsPromises.reverse(ip)`", + "label": "dnsPromises.reverse(ip)", + "apiSymbol": "dnsPromises.reverse", + "depth": 2, + "scope": "api", + "anchor": "dnspromisesreverseip", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dns" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:dns" + }, + "anchorSource": "exact" + }, + { + "id": "dns:a49662b82ac5", + "chapter": "dns", + "kind": "method", + "name": "setDefaultResultOrder", + "signature": "`dnsPromises.setDefaultResultOrder(order)`", + "label": "dnsPromises.setDefaultResultOrder(order)", + "apiSymbol": "dnsPromises.setDefaultResultOrder", + "depth": 2, + "scope": "api", + "anchor": "dnspromisessetdefaultresultorderorder", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dns" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:dns" + }, + "anchorSource": "exact" + }, + { + "id": "dns:fc12fbc986e7", + "chapter": "dns", + "kind": "method", + "name": "getDefaultResultOrder", + "signature": "`dnsPromises.getDefaultResultOrder()`", + "label": "dnsPromises.getDefaultResultOrder()", + "apiSymbol": "dnsPromises.getDefaultResultOrder", + "depth": 2, + "scope": "api", + "anchor": "dnspromisesgetdefaultresultorder", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dns" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:dns" + }, + "anchorSource": "exact" + }, + { + "id": "dns:ba0f65188cd3", + "chapter": "dns", + "kind": "method", + "name": "setServers", + "signature": "`dnsPromises.setServers(servers)`", + "label": "dnsPromises.setServers(servers)", + "apiSymbol": "dnsPromises.setServers", + "depth": 2, + "scope": "api", + "anchor": "dnspromisessetserversservers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dns" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:dns" + }, + "anchorSource": "exact" + }, + { + "id": "dns:2d69767ad759", + "chapter": "dns", + "kind": "module", + "name": "error_codes", + "signature": "Error codes", + "label": "Error codes", + "apiSymbol": "error_codes", + "depth": 1, + "scope": "documentation", + "anchor": "error-codes", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "dns:4709adb4c37c", + "chapter": "dns", + "kind": "module", + "name": "implementation_considerations", + "signature": "Implementation considerations", + "label": "Implementation considerations", + "apiSymbol": "implementation_considerations", + "depth": 1, + "scope": "documentation", + "anchor": "implementation-considerations", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "dns:5c15fbdbc51c", + "chapter": "dns", + "kind": "module", + "name": "`dns.resolve()`,_`dns.resolve*()`,_and_`dns.reverse()`", + "signature": "`dns.resolve()`, `dns.resolve*()`, and `dns.reverse()`", + "label": "dns.resolve()", + "apiSymbol": "dns.resolve", + "depth": 2, + "scope": "api", + "anchor": "dnsresolve-dnsresolve-and-dnsreverse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dns" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:dns.resolve" + }, + "anchorSource": "exact" + }, + { + "id": "dns:01cf87ede032", + "chapter": "dns", + "kind": "method", + "name": "lookup", + "signature": "`dns.lookup()`", + "label": "dns.lookup()", + "apiSymbol": "dns.lookup", + "depth": 2, + "scope": "api", + "anchor": "dnslookup", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dns" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:dns.lookup" + }, + "anchorSource": "exact" + }, + { + "id": "dns:0adacb1439b4", + "chapter": "dns", + "kind": "class", + "name": "dns.Resolver", + "signature": "Class: `dns.Resolver`", + "label": "dns.Resolver", + "apiSymbol": "dns.Resolver", + "depth": 1, + "scope": "api", + "anchor": "class-dnsresolver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dns" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:dns.Resolver", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "dns:f3fcd24bac63", + "chapter": "dns", + "kind": "method", + "name": "Resolver", + "signature": "`Resolver([options])`", + "label": "Resolver([options])", + "apiSymbol": "Resolver", + "depth": 2, + "scope": "api", + "anchor": "resolveroptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dns" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:dns.Resolver", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "dns:af580faea35d", + "chapter": "dns", + "kind": "method", + "name": "cancel", + "signature": "`resolver.cancel()`", + "label": "resolver.cancel()", + "apiSymbol": "resolver.cancel", + "depth": 2, + "scope": "api", + "anchor": "resolvercancel_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dns" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:dns" + }, + "anchorSource": "exact" + }, + { + "id": "dns:3ba2a74d3a16", + "chapter": "dns", + "kind": "method", + "name": "setLocalAddress", + "signature": "`resolver.setLocalAddress([ipv4][, ipv6])`", + "label": "resolver.setLocalAddress([ipv4][, ipv6])", + "apiSymbol": "resolver.setLocalAddress", + "depth": 2, + "scope": "api", + "anchor": "resolversetlocaladdressipv4-ipv6", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dns" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:dns" + }, + "anchorSource": "exact" + }, + { + "id": "dns:6ab027166169", + "chapter": "dns", + "kind": "method", + "name": "getServers", + "signature": "`dns.getServers()`", + "label": "dns.getServers()", + "apiSymbol": "dns.getServers", + "depth": 1, + "scope": "api", + "anchor": "dnsgetservers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dns" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:dns.getServers", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "dns:e258f26e9af5", + "chapter": "dns", + "kind": "method", + "name": "lookup", + "signature": "`dns.lookup(hostname[, options], callback)`", + "label": "dns.lookup(hostname[, options], callback)", + "apiSymbol": "dns.lookup", + "depth": 1, + "scope": "api", + "anchor": "dnslookuphostname-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dns" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:dns.lookup" + }, + "anchorSource": "exact" + }, + { + "id": "dns:ec5a42ff4a13", + "chapter": "dns", + "kind": "module", + "name": "supported_getaddrinfo_flags", + "signature": "Supported getaddrinfo flags", + "label": "Supported getaddrinfo flags", + "apiSymbol": "supported_getaddrinfo_flags", + "depth": 2, + "scope": "documentation", + "anchor": "supported-getaddrinfo-flags", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "dns:a8b5aee78cf2", + "chapter": "dns", + "kind": "method", + "name": "lookupService", + "signature": "`dns.lookupService(address, port, callback)`", + "label": "dns.lookupService(address, port, callback)", + "apiSymbol": "dns.lookupService", + "depth": 1, + "scope": "api", + "anchor": "dnslookupserviceaddress-port-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dns" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:dns.lookupService" + }, + "anchorSource": "exact" + }, + { + "id": "dns:6034cfc8acea", + "chapter": "dns", + "kind": "method", + "name": "resolve", + "signature": "`dns.resolve(hostname[, rrtype], callback)`", + "label": "dns.resolve(hostname[, rrtype], callback)", + "apiSymbol": "dns.resolve", + "depth": 1, + "scope": "api", + "anchor": "dnsresolvehostname-rrtype-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dns" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:dns.resolve" + }, + "anchorSource": "exact" + }, + { + "id": "dns:c8af21a1f17d", + "chapter": "dns", + "kind": "method", + "name": "resolve4", + "signature": "`dns.resolve4(hostname[, options], callback)`", + "label": "dns.resolve4(hostname[, options], callback)", + "apiSymbol": "dns.resolve4", + "depth": 1, + "scope": "api", + "anchor": "dnsresolve4hostname-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dns" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:dns.resolve4" + }, + "anchorSource": "exact" + }, + { + "id": "dns:bd35ee54a04f", + "chapter": "dns", + "kind": "method", + "name": "resolve6", + "signature": "`dns.resolve6(hostname[, options], callback)`", + "label": "dns.resolve6(hostname[, options], callback)", + "apiSymbol": "dns.resolve6", + "depth": 1, + "scope": "api", + "anchor": "dnsresolve6hostname-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dns" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:dns.resolve6" + }, + "anchorSource": "exact" + }, + { + "id": "dns:5c85b8ecb063", + "chapter": "dns", + "kind": "method", + "name": "resolveAny", + "signature": "`dns.resolveAny(hostname, callback)`", + "label": "dns.resolveAny(hostname, callback)", + "apiSymbol": "dns.resolveAny", + "depth": 1, + "scope": "api", + "anchor": "dnsresolveanyhostname-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dns" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:dns" + }, + "anchorSource": "exact" + }, + { + "id": "dns:b7d56eafc408", + "chapter": "dns", + "kind": "method", + "name": "resolveCname", + "signature": "`dns.resolveCname(hostname, callback)`", + "label": "dns.resolveCname(hostname, callback)", + "apiSymbol": "dns.resolveCname", + "depth": 1, + "scope": "api", + "anchor": "dnsresolvecnamehostname-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dns" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:dns.resolveCname" + }, + "anchorSource": "exact" + }, + { + "id": "dns:ad576c0b1cac", + "chapter": "dns", + "kind": "method", + "name": "resolveCaa", + "signature": "`dns.resolveCaa(hostname, callback)`", + "label": "dns.resolveCaa(hostname, callback)", + "apiSymbol": "dns.resolveCaa", + "depth": 1, + "scope": "api", + "anchor": "dnsresolvecaahostname-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dns" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:dns" + }, + "anchorSource": "exact" + }, + { + "id": "dns:e96ebf0f4340", + "chapter": "dns", + "kind": "method", + "name": "resolveMx", + "signature": "`dns.resolveMx(hostname, callback)`", + "label": "dns.resolveMx(hostname, callback)", + "apiSymbol": "dns.resolveMx", + "depth": 1, + "scope": "api", + "anchor": "dnsresolvemxhostname-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dns" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:dns.resolveMx" + }, + "anchorSource": "exact" + }, + { + "id": "dns:09cd57380b12", + "chapter": "dns", + "kind": "method", + "name": "resolveNaptr", + "signature": "`dns.resolveNaptr(hostname, callback)`", + "label": "dns.resolveNaptr(hostname, callback)", + "apiSymbol": "dns.resolveNaptr", + "depth": 1, + "scope": "api", + "anchor": "dnsresolvenaptrhostname-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dns" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:dns" + }, + "anchorSource": "exact" + }, + { + "id": "dns:9b2964e4568d", + "chapter": "dns", + "kind": "method", + "name": "resolveNs", + "signature": "`dns.resolveNs(hostname, callback)`", + "label": "dns.resolveNs(hostname, callback)", + "apiSymbol": "dns.resolveNs", + "depth": 1, + "scope": "api", + "anchor": "dnsresolvenshostname-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dns" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:dns.resolveNs" + }, + "anchorSource": "exact" + }, + { + "id": "dns:5ced5f045833", + "chapter": "dns", + "kind": "method", + "name": "resolvePtr", + "signature": "`dns.resolvePtr(hostname, callback)`", + "label": "dns.resolvePtr(hostname, callback)", + "apiSymbol": "dns.resolvePtr", + "depth": 1, + "scope": "api", + "anchor": "dnsresolveptrhostname-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dns" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:dns" + }, + "anchorSource": "exact" + }, + { + "id": "dns:8e70ef33c069", + "chapter": "dns", + "kind": "method", + "name": "resolveSoa", + "signature": "`dns.resolveSoa(hostname, callback)`", + "label": "dns.resolveSoa(hostname, callback)", + "apiSymbol": "dns.resolveSoa", + "depth": 1, + "scope": "api", + "anchor": "dnsresolvesoahostname-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dns" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:dns" + }, + "anchorSource": "exact" + }, + { + "id": "dns:dd50303ab9ea", + "chapter": "dns", + "kind": "method", + "name": "resolveSrv", + "signature": "`dns.resolveSrv(hostname, callback)`", + "label": "dns.resolveSrv(hostname, callback)", + "apiSymbol": "dns.resolveSrv", + "depth": 1, + "scope": "api", + "anchor": "dnsresolvesrvhostname-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dns" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:dns.resolveSrv" + }, + "anchorSource": "exact" + }, + { + "id": "dns:14d6393c7aa1", + "chapter": "dns", + "kind": "method", + "name": "resolveTlsa", + "signature": "`dns.resolveTlsa(hostname, callback)`", + "label": "dns.resolveTlsa(hostname, callback)", + "apiSymbol": "dns.resolveTlsa", + "depth": 1, + "scope": "api", + "anchor": "dnsresolvetlsahostname-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dns" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:dns" + }, + "anchorSource": "exact" + }, + { + "id": "dns:d8a041e64cd3", + "chapter": "dns", + "kind": "method", + "name": "resolveTxt", + "signature": "`dns.resolveTxt(hostname, callback)`", + "label": "dns.resolveTxt(hostname, callback)", + "apiSymbol": "dns.resolveTxt", + "depth": 1, + "scope": "api", + "anchor": "dnsresolvetxthostname-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dns" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:dns.resolveTxt" + }, + "anchorSource": "exact" + }, + { + "id": "dns:01236237766b", + "chapter": "dns", + "kind": "method", + "name": "reverse", + "signature": "`dns.reverse(ip, callback)`", + "label": "dns.reverse(ip, callback)", + "apiSymbol": "dns.reverse", + "depth": 1, + "scope": "api", + "anchor": "dnsreverseip-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dns" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:dns.reverse" + }, + "anchorSource": "exact" + }, + { + "id": "dns:9e6d927d2de8", + "chapter": "dns", + "kind": "method", + "name": "setDefaultResultOrder", + "signature": "`dns.setDefaultResultOrder(order)`", + "label": "dns.setDefaultResultOrder(order)", + "apiSymbol": "dns.setDefaultResultOrder", + "depth": 1, + "scope": "api", + "anchor": "dnssetdefaultresultorderorder", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dns" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:dns" + }, + "anchorSource": "exact" + }, + { + "id": "dns:4e7fd111f3b1", + "chapter": "dns", + "kind": "method", + "name": "getDefaultResultOrder", + "signature": "`dns.getDefaultResultOrder()`", + "label": "dns.getDefaultResultOrder()", + "apiSymbol": "dns.getDefaultResultOrder", + "depth": 1, + "scope": "api", + "anchor": "dnsgetdefaultresultorder", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dns" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:dns" + }, + "anchorSource": "exact" + }, + { + "id": "dns:ceb6c0df5a08", + "chapter": "dns", + "kind": "method", + "name": "setServers", + "signature": "`dns.setServers(servers)`", + "label": "dns.setServers(servers)", + "apiSymbol": "dns.setServers", + "depth": 1, + "scope": "api", + "anchor": "dnssetserversservers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dns" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:dns.setServers", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "domain:3027b2a9c9c0", + "chapter": "domain", + "kind": "module", + "name": "domain", + "signature": "Domain", + "label": "Domain", + "apiSymbol": "domain", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "derived:descendants" + }, + "dynamic": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "domain:f6683c440a15", + "chapter": "domain", + "kind": "module", + "name": "domains_and_promises", + "signature": "Domains and promises", + "label": "Domains and promises", + "apiSymbol": "domains_and_promises", + "depth": 1, + "scope": "documentation", + "anchor": "domains-and-promises", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "domain:066b93b2457d", + "chapter": "domain", + "kind": "class", + "name": "Domain", + "signature": "Class: `Domain`", + "label": "Domain", + "apiSymbol": "Domain", + "depth": 1, + "scope": "api", + "anchor": "class-domain", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:domain" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:domain.Domain", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "domain:4cc4c464a948", + "chapter": "domain", + "kind": "method", + "name": "add", + "signature": "`domain.add(emitter)`", + "label": "domain.add(emitter)", + "apiSymbol": "domain.add", + "depth": 2, + "scope": "api", + "anchor": "domainaddemitter", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:domain" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:domain.domain.add", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "domain:6e67fe3137e9", + "chapter": "domain", + "kind": "method", + "name": "bind", + "signature": "`domain.bind(callback)`", + "label": "domain.bind(callback)", + "apiSymbol": "domain.bind", + "depth": 2, + "scope": "api", + "anchor": "domainbindcallback", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:domain" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:domain.domain.bind", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "domain:9d805eb33429", + "chapter": "domain", + "kind": "method", + "name": "enter", + "signature": "`domain.enter()`", + "label": "domain.enter()", + "apiSymbol": "domain.enter", + "depth": 2, + "scope": "api", + "anchor": "domainenter", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:domain" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:domain.domain.enter", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "domain:b0a39284a169", + "chapter": "domain", + "kind": "method", + "name": "exit", + "signature": "`domain.exit()`", + "label": "domain.exit()", + "apiSymbol": "domain.exit", + "depth": 2, + "scope": "api", + "anchor": "domainexit", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:domain" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:domain.domain.exit", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "domain:3a81e811d22e", + "chapter": "domain", + "kind": "method", + "name": "intercept", + "signature": "`domain.intercept(callback)`", + "label": "domain.intercept(callback)", + "apiSymbol": "domain.intercept", + "depth": 2, + "scope": "api", + "anchor": "domaininterceptcallback", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:domain" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:domain.domain.intercept", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "domain:9c0327571f4f", + "chapter": "domain", + "kind": "method", + "name": "remove", + "signature": "`domain.remove(emitter)`", + "label": "domain.remove(emitter)", + "apiSymbol": "domain.remove", + "depth": 2, + "scope": "api", + "anchor": "domainremoveemitter", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:domain" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:domain.domain.remove", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "domain:c71014f1575d", + "chapter": "domain", + "kind": "method", + "name": "run", + "signature": "`domain.run(fn[, ...args])`", + "label": "domain.run(fn[, ...args])", + "apiSymbol": "domain.run", + "depth": 2, + "scope": "api", + "anchor": "domainrunfn-args", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:domain" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:domain.domain.run", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "domain:c33d5f5a8aeb", + "chapter": "domain", + "kind": "Array", + "name": "Type", + "signature": "`members` Type: {Array}", + "label": "members", + "apiSymbol": "members", + "depth": 2, + "scope": "api", + "anchor": "class-domain", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:domain" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:domain" + }, + "anchorSource": "ancestor" + }, + { + "id": "domain:c32ec701e446", + "chapter": "domain", + "kind": "method", + "name": "create", + "signature": "`domain.create()`", + "label": "domain.create()", + "apiSymbol": "domain.create", + "depth": 1, + "scope": "api", + "anchor": "domaincreate", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:domain" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:domain.create", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "domain:f6be78fce2a0", + "chapter": "domain", + "kind": "misc", + "name": "Warning: Don't ignore errors!", + "signature": "Warning: Don't ignore errors!", + "label": "Warning: Don't ignore errors!", + "apiSymbol": "Warning: Don't ignore errors!", + "depth": 1, + "scope": "documentation", + "anchor": "warning-dont-ignore-errors", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "domain:213e926e2eb1", + "chapter": "domain", + "kind": "misc", + "name": "Additions to `Error` objects", + "signature": "Additions to `Error` objects", + "label": "Additions to Error objects", + "apiSymbol": "Error", + "depth": 1, + "scope": "api", + "anchor": "additions-to-error-objects", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:domain" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:domain" + }, + "anchorSource": "exact" + }, + { + "id": "domain:f2fbb98575d0", + "chapter": "domain", + "kind": "misc", + "name": "Implicit binding", + "signature": "Implicit binding", + "label": "Implicit binding", + "apiSymbol": "Implicit binding", + "depth": 1, + "scope": "documentation", + "anchor": "implicit-binding", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "domain:62fd26133b6b", + "chapter": "domain", + "kind": "misc", + "name": "Explicit binding", + "signature": "Explicit binding", + "label": "Explicit binding", + "apiSymbol": "Explicit binding", + "depth": 1, + "scope": "documentation", + "anchor": "explicit-binding", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "environment_variables:951d69862c55", + "chapter": "environment_variables", + "kind": "module", + "name": "environment_variables", + "signature": "Environment Variables", + "label": "Environment Variables", + "apiSymbol": "environment_variables", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/corpus/2314-process-introspection.ts", + "tests/corpus/990-process-basics.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "environment_variables:8f87ff503712", + "chapter": "environment_variables", + "kind": "module", + "name": "cli_environment_variables", + "signature": "CLI Environment Variables", + "label": "CLI Environment Variables", + "apiSymbol": "cli_environment_variables", + "depth": 1, + "scope": "documentation", + "anchor": "cli-environment-variables", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "environment_variables:30cc202da96e", + "chapter": "environment_variables", + "kind": "module", + "name": "dotenv", + "signature": "DotEnv", + "label": "DotEnv", + "apiSymbol": "dotenv", + "depth": 1, + "scope": "documentation", + "anchor": "dotenv", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "environment_variables:54794c9cadcb", + "chapter": "environment_variables", + "kind": "module", + "name": ".env_files", + "signature": ".env files", + "label": ".env files", + "apiSymbol": ".env_files", + "depth": 2, + "scope": "documentation", + "anchor": "env-files", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "environment_variables:432245d70933", + "chapter": "environment_variables", + "kind": "module", + "name": "variable_names", + "signature": "Variable Names", + "label": "Variable Names", + "apiSymbol": "variable_names", + "depth": 3, + "scope": "documentation", + "anchor": "variable-names", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "environment_variables:78c8edc245ce", + "chapter": "environment_variables", + "kind": "module", + "name": "variable_values", + "signature": "Variable Values", + "label": "Variable Values", + "apiSymbol": "variable_values", + "depth": 3, + "scope": "documentation", + "anchor": "variable-values", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "environment_variables:d1af664e891a", + "chapter": "environment_variables", + "kind": "module", + "name": "spacing", + "signature": "Spacing", + "label": "Spacing", + "apiSymbol": "spacing", + "depth": 3, + "scope": "documentation", + "anchor": "spacing", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "environment_variables:fe85dc0350a7", + "chapter": "environment_variables", + "kind": "module", + "name": "comments", + "signature": "Comments", + "label": "Comments", + "apiSymbol": "comments", + "depth": 3, + "scope": "documentation", + "anchor": "comments", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "environment_variables:ab6b81da5e44", + "chapter": "environment_variables", + "kind": "module", + "name": "`export`_prefixes", + "signature": "`export` prefixes", + "label": "export", + "apiSymbol": "export", + "depth": 3, + "scope": "configuration", + "anchor": "export-prefixes", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "environment_variables:17b0e9171c75", + "chapter": "environment_variables", + "kind": "module", + "name": "cli_options", + "signature": "CLI Options", + "label": "CLI Options", + "apiSymbol": "cli_options", + "depth": 2, + "scope": "documentation", + "anchor": "cli-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "environment_variables:44890c077512", + "chapter": "environment_variables", + "kind": "module", + "name": "programmatic_apis", + "signature": "Programmatic APIs", + "label": "Programmatic APIs", + "apiSymbol": "programmatic_apis", + "depth": 2, + "scope": "documentation", + "anchor": "programmatic-apis", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "environment_variables:33438b6e6dea", + "chapter": "environment_variables", + "kind": "section", + "name": "env", + "signature": "`process.env`", + "label": "process.env", + "apiSymbol": "process.env", + "depth": 1, + "scope": "api", + "anchor": "processenv", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.process.env", + "tests": [ + "tests/corpus/990-process-basics.ts", + "tests/corpus/2314-process-introspection.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-feature:environment_variables.process.env", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "errors:76e61c6b4a11", + "chapter": "errors", + "kind": "misc", + "name": "Errors", + "signature": "Errors", + "label": "Errors", + "apiSymbol": "Errors", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "derived:descendants" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "derived:descendants" + }, + "anchorSource": "chapter" + }, + { + "id": "errors:7f4794f1c5f2", + "chapter": "errors", + "kind": "class", + "name": "Error", + "signature": "Class: `Error`", + "label": "Error", + "apiSymbol": "Error", + "depth": 1, + "scope": "api", + "anchor": "class-error", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:c556c64e0ff7", + "chapter": "errors", + "kind": "method", + "name": "captureStackTrace", + "signature": "`Error.captureStackTrace(targetObject[, constructorOpt])`", + "label": "Error.captureStackTrace(targetObject[, constructorOpt])", + "apiSymbol": "Error.captureStackTrace", + "depth": 2, + "scope": "api", + "anchor": "errorcapturestacktracetargetobject-constructoropt", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:25c660705430", + "chapter": "errors", + "kind": "number", + "name": "Type", + "signature": "`stackTraceLimit` Type: {number}", + "label": "stackTraceLimit", + "apiSymbol": "stackTraceLimit", + "depth": 2, + "scope": "api", + "anchor": "class-error", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "ancestor" + }, + { + "id": "errors:307cb3b47923", + "chapter": "errors", + "kind": "any", + "name": "Type", + "signature": "`cause` Type: {any}", + "label": "cause", + "apiSymbol": "cause", + "depth": 2, + "scope": "api", + "anchor": "class-error", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "ancestor" + }, + { + "id": "errors:0b8326fd49b9", + "chapter": "errors", + "kind": "string", + "name": "Type", + "signature": "`code` Type: {string}", + "label": "code", + "apiSymbol": "code", + "depth": 2, + "scope": "api", + "anchor": "class-error", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "ancestor" + }, + { + "id": "errors:f1090de1c75e", + "chapter": "errors", + "kind": "string", + "name": "Type", + "signature": "`message` Type: {string}", + "label": "message", + "apiSymbol": "message", + "depth": 2, + "scope": "api", + "anchor": "class-error", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "ancestor" + }, + { + "id": "errors:267871e38f35", + "chapter": "errors", + "kind": "string", + "name": "Type", + "signature": "`stack` Type: {string}", + "label": "stack", + "apiSymbol": "stack", + "depth": 2, + "scope": "api", + "anchor": "class-error", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "ancestor" + }, + { + "id": "errors:eb3641f5dbc8", + "chapter": "errors", + "kind": "class", + "name": "AssertionError", + "signature": "Class: `AssertionError`", + "label": "AssertionError", + "apiSymbol": "AssertionError", + "depth": 1, + "scope": "api", + "anchor": "class-assertionerror", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:2c13de112ff5", + "chapter": "errors", + "kind": "class", + "name": "RangeError", + "signature": "Class: `RangeError`", + "label": "RangeError", + "apiSymbol": "RangeError", + "depth": 1, + "scope": "api", + "anchor": "class-rangeerror", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:fa0b553e768a", + "chapter": "errors", + "kind": "class", + "name": "ReferenceError", + "signature": "Class: `ReferenceError`", + "label": "ReferenceError", + "apiSymbol": "ReferenceError", + "depth": 1, + "scope": "api", + "anchor": "class-referenceerror", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:a5069dc010a6", + "chapter": "errors", + "kind": "class", + "name": "SyntaxError", + "signature": "Class: `SyntaxError`", + "label": "SyntaxError", + "apiSymbol": "SyntaxError", + "depth": 1, + "scope": "api", + "anchor": "class-syntaxerror", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:8a2e6c678f19", + "chapter": "errors", + "kind": "class", + "name": "SystemError", + "signature": "Class: `SystemError`", + "label": "SystemError", + "apiSymbol": "SystemError", + "depth": 1, + "scope": "api", + "anchor": "class-systemerror", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:ef0e4b38d4f8", + "chapter": "errors", + "kind": "module", + "name": "common_system_errors", + "signature": "Common system errors", + "label": "Common system errors", + "apiSymbol": "common_system_errors", + "depth": 2, + "scope": "documentation", + "anchor": "common-system-errors", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "errors:64d8f9706c45", + "chapter": "errors", + "kind": "string", + "name": "Type", + "signature": "`address` Type: {string}", + "label": "address", + "apiSymbol": "address", + "depth": 2, + "scope": "api", + "anchor": "class-systemerror", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "ancestor" + }, + { + "id": "errors:9b9d082b9877", + "chapter": "errors", + "kind": "string", + "name": "Type", + "signature": "`code` Type: {string}", + "label": "code", + "apiSymbol": "code", + "depth": 2, + "scope": "api", + "anchor": "class-systemerror", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "ancestor" + }, + { + "id": "errors:e66be94e4ffa", + "chapter": "errors", + "kind": "string", + "name": "Type", + "signature": "`dest` Type: {string}", + "label": "dest", + "apiSymbol": "dest", + "depth": 2, + "scope": "api", + "anchor": "class-systemerror", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "ancestor" + }, + { + "id": "errors:277ba61feefa", + "chapter": "errors", + "kind": "number", + "name": "Type", + "signature": "`errno` Type: {number}", + "label": "errno", + "apiSymbol": "errno", + "depth": 2, + "scope": "api", + "anchor": "class-systemerror", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "ancestor" + }, + { + "id": "errors:9c8858f1fab2", + "chapter": "errors", + "kind": "Object", + "name": "Type", + "signature": "`info` Type: {Object}", + "label": "info", + "apiSymbol": "info", + "depth": 2, + "scope": "api", + "anchor": "class-systemerror", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "ancestor" + }, + { + "id": "errors:797eb4941811", + "chapter": "errors", + "kind": "string", + "name": "Type", + "signature": "`message` Type: {string}", + "label": "message", + "apiSymbol": "message", + "depth": 2, + "scope": "api", + "anchor": "class-systemerror", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "ancestor" + }, + { + "id": "errors:3ab32c14d7b9", + "chapter": "errors", + "kind": "string", + "name": "Type", + "signature": "`path` Type: {string}", + "label": "path", + "apiSymbol": "path", + "depth": 2, + "scope": "api", + "anchor": "class-systemerror", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "ancestor" + }, + { + "id": "errors:6c0abee577fd", + "chapter": "errors", + "kind": "number", + "name": "Type", + "signature": "`port` Type: {number}", + "label": "port", + "apiSymbol": "port", + "depth": 2, + "scope": "api", + "anchor": "class-systemerror", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "ancestor" + }, + { + "id": "errors:2229a75bb318", + "chapter": "errors", + "kind": "string", + "name": "Type", + "signature": "`syscall` Type: {string}", + "label": "syscall", + "apiSymbol": "syscall", + "depth": 2, + "scope": "api", + "anchor": "class-systemerror", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "ancestor" + }, + { + "id": "errors:f091af63f645", + "chapter": "errors", + "kind": "class", + "name": "TypeError", + "signature": "Class: `TypeError`", + "label": "TypeError", + "apiSymbol": "TypeError", + "depth": 1, + "scope": "api", + "anchor": "class-typeerror", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:117ae3fb25d4", + "chapter": "errors", + "kind": "misc", + "name": "Error propagation and interception", + "signature": "Error propagation and interception", + "label": "Error propagation and interception", + "apiSymbol": "Error propagation and interception", + "depth": 1, + "scope": "documentation", + "anchor": "error-propagation-and-interception", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "errors:52620b609a9a", + "chapter": "errors", + "kind": "misc", + "name": "Exceptions vs. errors", + "signature": "Exceptions vs. errors", + "label": "Exceptions vs. errors", + "apiSymbol": "Exceptions vs. errors", + "depth": 1, + "scope": "documentation", + "anchor": "exceptions-vs-errors", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "errors:eee24838489b", + "chapter": "errors", + "kind": "misc", + "name": "openssl_errors", + "signature": "OpenSSL errors", + "label": "OpenSSL errors", + "apiSymbol": "openssl_errors", + "depth": 1, + "scope": "documentation", + "anchor": "openssl-errors", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "errors:07593cc1d213", + "chapter": "errors", + "kind": "section", + "name": "opensslErrorStack", + "signature": "`error.opensslErrorStack`", + "label": "error.opensslErrorStack", + "apiSymbol": "error.opensslErrorStack", + "depth": 2, + "scope": "api", + "anchor": "erroropensslerrorstack", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:244449227555", + "chapter": "errors", + "kind": "section", + "name": "function", + "signature": "`error.function`", + "label": "error.function", + "apiSymbol": "error.function", + "depth": 2, + "scope": "api", + "anchor": "errorfunction", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:8bb8399c81c1", + "chapter": "errors", + "kind": "section", + "name": "library", + "signature": "`error.library`", + "label": "error.library", + "apiSymbol": "error.library", + "depth": 2, + "scope": "api", + "anchor": "errorlibrary", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:88a004ac847e", + "chapter": "errors", + "kind": "section", + "name": "reason", + "signature": "`error.reason`", + "label": "error.reason", + "apiSymbol": "error.reason", + "depth": 2, + "scope": "api", + "anchor": "errorreason", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:89c5e0153715", + "chapter": "errors", + "kind": "misc", + "name": "node.js_error_codes", + "signature": "Node.js error codes", + "label": "Node.js error codes", + "apiSymbol": "node.js_error_codes", + "depth": 1, + "scope": "documentation", + "anchor": "nodejs-error-codes", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "errors:e0ac020287da", + "chapter": "errors", + "kind": "module", + "name": "`abort_err`", + "signature": "`ABORT_ERR`", + "label": "ABORT_ERR", + "apiSymbol": "ABORT_ERR", + "depth": 2, + "scope": "api", + "anchor": "abort_err", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:2d2c7177fe55", + "chapter": "errors", + "kind": "module", + "name": "`err_access_denied`", + "signature": "`ERR_ACCESS_DENIED`", + "label": "ERR_ACCESS_DENIED", + "apiSymbol": "ERR_ACCESS_DENIED", + "depth": 2, + "scope": "api", + "anchor": "err_access_denied", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:02346cdcedea", + "chapter": "errors", + "kind": "module", + "name": "`err_ambiguous_argument`", + "signature": "`ERR_AMBIGUOUS_ARGUMENT`", + "label": "ERR_AMBIGUOUS_ARGUMENT", + "apiSymbol": "ERR_AMBIGUOUS_ARGUMENT", + "depth": 2, + "scope": "api", + "anchor": "err_ambiguous_argument", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:f67deaf6ecde", + "chapter": "errors", + "kind": "module", + "name": "`err_arg_not_iterable`", + "signature": "`ERR_ARG_NOT_ITERABLE`", + "label": "ERR_ARG_NOT_ITERABLE", + "apiSymbol": "ERR_ARG_NOT_ITERABLE", + "depth": 2, + "scope": "api", + "anchor": "err_arg_not_iterable", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:1dc7c926bebf", + "chapter": "errors", + "kind": "module", + "name": "`err_assertion`", + "signature": "`ERR_ASSERTION`", + "label": "ERR_ASSERTION", + "apiSymbol": "ERR_ASSERTION", + "depth": 2, + "scope": "api", + "anchor": "err_assertion", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:554a1ab69130", + "chapter": "errors", + "kind": "module", + "name": "`err_async_callback`", + "signature": "`ERR_ASYNC_CALLBACK`", + "label": "ERR_ASYNC_CALLBACK", + "apiSymbol": "ERR_ASYNC_CALLBACK", + "depth": 2, + "scope": "api", + "anchor": "err_async_callback", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:70875776e701", + "chapter": "errors", + "kind": "module", + "name": "`err_async_loader_request_never_settled`", + "signature": "`ERR_ASYNC_LOADER_REQUEST_NEVER_SETTLED`", + "label": "ERR_ASYNC_LOADER_REQUEST_NEVER_SETTLED", + "apiSymbol": "ERR_ASYNC_LOADER_REQUEST_NEVER_SETTLED", + "depth": 2, + "scope": "api", + "anchor": "err_async_loader_request_never_settled", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:f9ff810384f0", + "chapter": "errors", + "kind": "module", + "name": "`err_async_type`", + "signature": "`ERR_ASYNC_TYPE`", + "label": "ERR_ASYNC_TYPE", + "apiSymbol": "ERR_ASYNC_TYPE", + "depth": 2, + "scope": "api", + "anchor": "err_async_type", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:17fd1658ce09", + "chapter": "errors", + "kind": "module", + "name": "`err_brotli_compression_failed`", + "signature": "`ERR_BROTLI_COMPRESSION_FAILED`", + "label": "ERR_BROTLI_COMPRESSION_FAILED", + "apiSymbol": "ERR_BROTLI_COMPRESSION_FAILED", + "depth": 2, + "scope": "api", + "anchor": "err_brotli_compression_failed", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:bd30c3b4a68e", + "chapter": "errors", + "kind": "module", + "name": "`err_brotli_invalid_param`", + "signature": "`ERR_BROTLI_INVALID_PARAM`", + "label": "ERR_BROTLI_INVALID_PARAM", + "apiSymbol": "ERR_BROTLI_INVALID_PARAM", + "depth": 2, + "scope": "api", + "anchor": "err_brotli_invalid_param", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:f4d0ec30d024", + "chapter": "errors", + "kind": "module", + "name": "`err_buffer_context_not_available`", + "signature": "`ERR_BUFFER_CONTEXT_NOT_AVAILABLE`", + "label": "ERR_BUFFER_CONTEXT_NOT_AVAILABLE", + "apiSymbol": "ERR_BUFFER_CONTEXT_NOT_AVAILABLE", + "depth": 2, + "scope": "api", + "anchor": "err_buffer_context_not_available", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:57519c230c2b", + "chapter": "errors", + "kind": "module", + "name": "`err_buffer_out_of_bounds`", + "signature": "`ERR_BUFFER_OUT_OF_BOUNDS`", + "label": "ERR_BUFFER_OUT_OF_BOUNDS", + "apiSymbol": "ERR_BUFFER_OUT_OF_BOUNDS", + "depth": 2, + "scope": "api", + "anchor": "err_buffer_out_of_bounds", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:df7d3e8aa746", + "chapter": "errors", + "kind": "module", + "name": "`err_buffer_too_large`", + "signature": "`ERR_BUFFER_TOO_LARGE`", + "label": "ERR_BUFFER_TOO_LARGE", + "apiSymbol": "ERR_BUFFER_TOO_LARGE", + "depth": 2, + "scope": "api", + "anchor": "err_buffer_too_large", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:dc24a9f6d88a", + "chapter": "errors", + "kind": "module", + "name": "`err_cannot_watch_sigint`", + "signature": "`ERR_CANNOT_WATCH_SIGINT`", + "label": "ERR_CANNOT_WATCH_SIGINT", + "apiSymbol": "ERR_CANNOT_WATCH_SIGINT", + "depth": 2, + "scope": "api", + "anchor": "err_cannot_watch_sigint", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:8c8be2b153de", + "chapter": "errors", + "kind": "module", + "name": "`err_child_closed_before_reply`", + "signature": "`ERR_CHILD_CLOSED_BEFORE_REPLY`", + "label": "ERR_CHILD_CLOSED_BEFORE_REPLY", + "apiSymbol": "ERR_CHILD_CLOSED_BEFORE_REPLY", + "depth": 2, + "scope": "api", + "anchor": "err_child_closed_before_reply", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:46e8b80fd8e1", + "chapter": "errors", + "kind": "module", + "name": "`err_child_process_ipc_required`", + "signature": "`ERR_CHILD_PROCESS_IPC_REQUIRED`", + "label": "ERR_CHILD_PROCESS_IPC_REQUIRED", + "apiSymbol": "ERR_CHILD_PROCESS_IPC_REQUIRED", + "depth": 2, + "scope": "api", + "anchor": "err_child_process_ipc_required", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:65ed23cc69f9", + "chapter": "errors", + "kind": "module", + "name": "`err_child_process_stdio_maxbuffer`", + "signature": "`ERR_CHILD_PROCESS_STDIO_MAXBUFFER`", + "label": "ERR_CHILD_PROCESS_STDIO_MAXBUFFER", + "apiSymbol": "ERR_CHILD_PROCESS_STDIO_MAXBUFFER", + "depth": 2, + "scope": "api", + "anchor": "err_child_process_stdio_maxbuffer", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:2be4700c3cbb", + "chapter": "errors", + "kind": "module", + "name": "`err_closed_message_port`", + "signature": "`ERR_CLOSED_MESSAGE_PORT`", + "label": "ERR_CLOSED_MESSAGE_PORT", + "apiSymbol": "ERR_CLOSED_MESSAGE_PORT", + "depth": 2, + "scope": "api", + "anchor": "err_closed_message_port", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:056cb04e0822", + "chapter": "errors", + "kind": "module", + "name": "`err_console_writable_stream`", + "signature": "`ERR_CONSOLE_WRITABLE_STREAM`", + "label": "ERR_CONSOLE_WRITABLE_STREAM", + "apiSymbol": "ERR_CONSOLE_WRITABLE_STREAM", + "depth": 2, + "scope": "api", + "anchor": "err_console_writable_stream", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:a6b622f20c74", + "chapter": "errors", + "kind": "module", + "name": "`err_construct_call_invalid`", + "signature": "`ERR_CONSTRUCT_CALL_INVALID`", + "label": "ERR_CONSTRUCT_CALL_INVALID", + "apiSymbol": "ERR_CONSTRUCT_CALL_INVALID", + "depth": 2, + "scope": "api", + "anchor": "err_construct_call_invalid", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:344f30688139", + "chapter": "errors", + "kind": "module", + "name": "`err_construct_call_required`", + "signature": "`ERR_CONSTRUCT_CALL_REQUIRED`", + "label": "ERR_CONSTRUCT_CALL_REQUIRED", + "apiSymbol": "ERR_CONSTRUCT_CALL_REQUIRED", + "depth": 2, + "scope": "api", + "anchor": "err_construct_call_required", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:7f123c9bf896", + "chapter": "errors", + "kind": "module", + "name": "`err_context_not_initialized`", + "signature": "`ERR_CONTEXT_NOT_INITIALIZED`", + "label": "ERR_CONTEXT_NOT_INITIALIZED", + "apiSymbol": "ERR_CONTEXT_NOT_INITIALIZED", + "depth": 2, + "scope": "api", + "anchor": "err_context_not_initialized", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:74c5c657e904", + "chapter": "errors", + "kind": "module", + "name": "`err_cpu_profile_already_started`", + "signature": "`ERR_CPU_PROFILE_ALREADY_STARTED`", + "label": "ERR_CPU_PROFILE_ALREADY_STARTED", + "apiSymbol": "ERR_CPU_PROFILE_ALREADY_STARTED", + "depth": 2, + "scope": "api", + "anchor": "err_cpu_profile_already_started", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:e894dcb945a5", + "chapter": "errors", + "kind": "module", + "name": "`err_cpu_profile_not_started`", + "signature": "`ERR_CPU_PROFILE_NOT_STARTED`", + "label": "ERR_CPU_PROFILE_NOT_STARTED", + "apiSymbol": "ERR_CPU_PROFILE_NOT_STARTED", + "depth": 2, + "scope": "api", + "anchor": "err_cpu_profile_not_started", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:a2faf2137f40", + "chapter": "errors", + "kind": "module", + "name": "`err_cpu_profile_too_many`", + "signature": "`ERR_CPU_PROFILE_TOO_MANY`", + "label": "ERR_CPU_PROFILE_TOO_MANY", + "apiSymbol": "ERR_CPU_PROFILE_TOO_MANY", + "depth": 2, + "scope": "api", + "anchor": "err_cpu_profile_too_many", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:cc081da5a3cd", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_argon2_not_supported`", + "signature": "`ERR_CRYPTO_ARGON2_NOT_SUPPORTED`", + "label": "ERR_CRYPTO_ARGON2_NOT_SUPPORTED", + "apiSymbol": "ERR_CRYPTO_ARGON2_NOT_SUPPORTED", + "depth": 2, + "scope": "api", + "anchor": "err_crypto_argon2_not_supported", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:6172292c1827", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_custom_engine_not_supported`", + "signature": "`ERR_CRYPTO_CUSTOM_ENGINE_NOT_SUPPORTED`", + "label": "ERR_CRYPTO_CUSTOM_ENGINE_NOT_SUPPORTED", + "apiSymbol": "ERR_CRYPTO_CUSTOM_ENGINE_NOT_SUPPORTED", + "depth": 2, + "scope": "api", + "anchor": "err_crypto_custom_engine_not_supported", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:aab5ae69ed98", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_ecdh_invalid_format`", + "signature": "`ERR_CRYPTO_ECDH_INVALID_FORMAT`", + "label": "ERR_CRYPTO_ECDH_INVALID_FORMAT", + "apiSymbol": "ERR_CRYPTO_ECDH_INVALID_FORMAT", + "depth": 2, + "scope": "api", + "anchor": "err_crypto_ecdh_invalid_format", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:f8f49ab7034b", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_ecdh_invalid_public_key`", + "signature": "`ERR_CRYPTO_ECDH_INVALID_PUBLIC_KEY`", + "label": "ERR_CRYPTO_ECDH_INVALID_PUBLIC_KEY", + "apiSymbol": "ERR_CRYPTO_ECDH_INVALID_PUBLIC_KEY", + "depth": 2, + "scope": "api", + "anchor": "err_crypto_ecdh_invalid_public_key", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:c511898eb860", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_engine_unknown`", + "signature": "`ERR_CRYPTO_ENGINE_UNKNOWN`", + "label": "ERR_CRYPTO_ENGINE_UNKNOWN", + "apiSymbol": "ERR_CRYPTO_ENGINE_UNKNOWN", + "depth": 2, + "scope": "api", + "anchor": "err_crypto_engine_unknown", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:3ad417a98b35", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_fips_forced`", + "signature": "`ERR_CRYPTO_FIPS_FORCED`", + "label": "ERR_CRYPTO_FIPS_FORCED", + "apiSymbol": "ERR_CRYPTO_FIPS_FORCED", + "depth": 2, + "scope": "api", + "anchor": "err_crypto_fips_forced", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:6007a1f7544e", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_fips_unavailable`", + "signature": "`ERR_CRYPTO_FIPS_UNAVAILABLE`", + "label": "ERR_CRYPTO_FIPS_UNAVAILABLE", + "apiSymbol": "ERR_CRYPTO_FIPS_UNAVAILABLE", + "depth": 2, + "scope": "api", + "anchor": "err_crypto_fips_unavailable", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:4804da4f5150", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_hash_finalized`", + "signature": "`ERR_CRYPTO_HASH_FINALIZED`", + "label": "ERR_CRYPTO_HASH_FINALIZED", + "apiSymbol": "ERR_CRYPTO_HASH_FINALIZED", + "depth": 2, + "scope": "api", + "anchor": "err_crypto_hash_finalized", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:cfb49877e743", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_hash_update_failed`", + "signature": "`ERR_CRYPTO_HASH_UPDATE_FAILED`", + "label": "ERR_CRYPTO_HASH_UPDATE_FAILED", + "apiSymbol": "ERR_CRYPTO_HASH_UPDATE_FAILED", + "depth": 2, + "scope": "api", + "anchor": "err_crypto_hash_update_failed", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:bb43deee0627", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_incompatible_key`", + "signature": "`ERR_CRYPTO_INCOMPATIBLE_KEY`", + "label": "ERR_CRYPTO_INCOMPATIBLE_KEY", + "apiSymbol": "ERR_CRYPTO_INCOMPATIBLE_KEY", + "depth": 2, + "scope": "api", + "anchor": "err_crypto_incompatible_key", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:703fd472c0e9", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_incompatible_key_options`", + "signature": "`ERR_CRYPTO_INCOMPATIBLE_KEY_OPTIONS`", + "label": "ERR_CRYPTO_INCOMPATIBLE_KEY_OPTIONS", + "apiSymbol": "ERR_CRYPTO_INCOMPATIBLE_KEY_OPTIONS", + "depth": 2, + "scope": "api", + "anchor": "err_crypto_incompatible_key_options", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:49af00ab3a2f", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_initialization_failed`", + "signature": "`ERR_CRYPTO_INITIALIZATION_FAILED`", + "label": "ERR_CRYPTO_INITIALIZATION_FAILED", + "apiSymbol": "ERR_CRYPTO_INITIALIZATION_FAILED", + "depth": 2, + "scope": "api", + "anchor": "err_crypto_initialization_failed", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:020aaeb70963", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_invalid_auth_tag`", + "signature": "`ERR_CRYPTO_INVALID_AUTH_TAG`", + "label": "ERR_CRYPTO_INVALID_AUTH_TAG", + "apiSymbol": "ERR_CRYPTO_INVALID_AUTH_TAG", + "depth": 2, + "scope": "api", + "anchor": "err_crypto_invalid_auth_tag", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:5b52575c6081", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_invalid_counter`", + "signature": "`ERR_CRYPTO_INVALID_COUNTER`", + "label": "ERR_CRYPTO_INVALID_COUNTER", + "apiSymbol": "ERR_CRYPTO_INVALID_COUNTER", + "depth": 2, + "scope": "api", + "anchor": "err_crypto_invalid_counter", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:9e7e407ab2fc", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_invalid_curve`", + "signature": "`ERR_CRYPTO_INVALID_CURVE`", + "label": "ERR_CRYPTO_INVALID_CURVE", + "apiSymbol": "ERR_CRYPTO_INVALID_CURVE", + "depth": 2, + "scope": "api", + "anchor": "err_crypto_invalid_curve", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:2e3d758d351a", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_invalid_digest`", + "signature": "`ERR_CRYPTO_INVALID_DIGEST`", + "label": "ERR_CRYPTO_INVALID_DIGEST", + "apiSymbol": "ERR_CRYPTO_INVALID_DIGEST", + "depth": 2, + "scope": "api", + "anchor": "err_crypto_invalid_digest", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:f5052ad2fe7d", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_invalid_iv`", + "signature": "`ERR_CRYPTO_INVALID_IV`", + "label": "ERR_CRYPTO_INVALID_IV", + "apiSymbol": "ERR_CRYPTO_INVALID_IV", + "depth": 2, + "scope": "api", + "anchor": "err_crypto_invalid_iv", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:ee4d3491fec1", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_invalid_jwk`", + "signature": "`ERR_CRYPTO_INVALID_JWK`", + "label": "ERR_CRYPTO_INVALID_JWK", + "apiSymbol": "ERR_CRYPTO_INVALID_JWK", + "depth": 2, + "scope": "api", + "anchor": "err_crypto_invalid_jwk", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:fd4b2673b1eb", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_invalid_keylen`", + "signature": "`ERR_CRYPTO_INVALID_KEYLEN`", + "label": "ERR_CRYPTO_INVALID_KEYLEN", + "apiSymbol": "ERR_CRYPTO_INVALID_KEYLEN", + "depth": 2, + "scope": "api", + "anchor": "err_crypto_invalid_keylen", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:619d9f68126a", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_invalid_keypair`", + "signature": "`ERR_CRYPTO_INVALID_KEYPAIR`", + "label": "ERR_CRYPTO_INVALID_KEYPAIR", + "apiSymbol": "ERR_CRYPTO_INVALID_KEYPAIR", + "depth": 2, + "scope": "api", + "anchor": "err_crypto_invalid_keypair", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:5fe168c464f5", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_invalid_keytype`", + "signature": "`ERR_CRYPTO_INVALID_KEYTYPE`", + "label": "ERR_CRYPTO_INVALID_KEYTYPE", + "apiSymbol": "ERR_CRYPTO_INVALID_KEYTYPE", + "depth": 2, + "scope": "api", + "anchor": "err_crypto_invalid_keytype", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:03d6ade21caf", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_invalid_key_object_type`", + "signature": "`ERR_CRYPTO_INVALID_KEY_OBJECT_TYPE`", + "label": "ERR_CRYPTO_INVALID_KEY_OBJECT_TYPE", + "apiSymbol": "ERR_CRYPTO_INVALID_KEY_OBJECT_TYPE", + "depth": 2, + "scope": "api", + "anchor": "err_crypto_invalid_key_object_type", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:f62618221d0d", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_invalid_messagelen`", + "signature": "`ERR_CRYPTO_INVALID_MESSAGELEN`", + "label": "ERR_CRYPTO_INVALID_MESSAGELEN", + "apiSymbol": "ERR_CRYPTO_INVALID_MESSAGELEN", + "depth": 2, + "scope": "api", + "anchor": "err_crypto_invalid_messagelen", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:ffb39232292e", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_invalid_scrypt_params`", + "signature": "`ERR_CRYPTO_INVALID_SCRYPT_PARAMS`", + "label": "ERR_CRYPTO_INVALID_SCRYPT_PARAMS", + "apiSymbol": "ERR_CRYPTO_INVALID_SCRYPT_PARAMS", + "depth": 2, + "scope": "api", + "anchor": "err_crypto_invalid_scrypt_params", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:62d1a569837e", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_invalid_state`", + "signature": "`ERR_CRYPTO_INVALID_STATE`", + "label": "ERR_CRYPTO_INVALID_STATE", + "apiSymbol": "ERR_CRYPTO_INVALID_STATE", + "depth": 2, + "scope": "api", + "anchor": "err_crypto_invalid_state", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:57b70c974d1f", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_invalid_tag_length`", + "signature": "`ERR_CRYPTO_INVALID_TAG_LENGTH`", + "label": "ERR_CRYPTO_INVALID_TAG_LENGTH", + "apiSymbol": "ERR_CRYPTO_INVALID_TAG_LENGTH", + "depth": 2, + "scope": "api", + "anchor": "err_crypto_invalid_tag_length", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:2e4136c48e3b", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_job_init_failed`", + "signature": "`ERR_CRYPTO_JOB_INIT_FAILED`", + "label": "ERR_CRYPTO_JOB_INIT_FAILED", + "apiSymbol": "ERR_CRYPTO_JOB_INIT_FAILED", + "depth": 2, + "scope": "api", + "anchor": "err_crypto_job_init_failed", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:05ff2e655c39", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_jwk_unsupported_curve`", + "signature": "`ERR_CRYPTO_JWK_UNSUPPORTED_CURVE`", + "label": "ERR_CRYPTO_JWK_UNSUPPORTED_CURVE", + "apiSymbol": "ERR_CRYPTO_JWK_UNSUPPORTED_CURVE", + "depth": 2, + "scope": "api", + "anchor": "err_crypto_jwk_unsupported_curve", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:5e5b95644ac5", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_jwk_unsupported_key_type`", + "signature": "`ERR_CRYPTO_JWK_UNSUPPORTED_KEY_TYPE`", + "label": "ERR_CRYPTO_JWK_UNSUPPORTED_KEY_TYPE", + "apiSymbol": "ERR_CRYPTO_JWK_UNSUPPORTED_KEY_TYPE", + "depth": 2, + "scope": "api", + "anchor": "err_crypto_jwk_unsupported_key_type", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:bc83266adddf", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_kem_not_supported`", + "signature": "`ERR_CRYPTO_KEM_NOT_SUPPORTED`", + "label": "ERR_CRYPTO_KEM_NOT_SUPPORTED", + "apiSymbol": "ERR_CRYPTO_KEM_NOT_SUPPORTED", + "depth": 2, + "scope": "api", + "anchor": "err_crypto_kem_not_supported", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:bbb816de6720", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_operation_failed`", + "signature": "`ERR_CRYPTO_OPERATION_FAILED`", + "label": "ERR_CRYPTO_OPERATION_FAILED", + "apiSymbol": "ERR_CRYPTO_OPERATION_FAILED", + "depth": 2, + "scope": "api", + "anchor": "err_crypto_operation_failed", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:dc6a81f93f20", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_pbkdf2_error`", + "signature": "`ERR_CRYPTO_PBKDF2_ERROR`", + "label": "ERR_CRYPTO_PBKDF2_ERROR", + "apiSymbol": "ERR_CRYPTO_PBKDF2_ERROR", + "depth": 2, + "scope": "api", + "anchor": "err_crypto_pbkdf2_error", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:39221d87d63f", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_scrypt_not_supported`", + "signature": "`ERR_CRYPTO_SCRYPT_NOT_SUPPORTED`", + "label": "ERR_CRYPTO_SCRYPT_NOT_SUPPORTED", + "apiSymbol": "ERR_CRYPTO_SCRYPT_NOT_SUPPORTED", + "depth": 2, + "scope": "api", + "anchor": "err_crypto_scrypt_not_supported", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:4310d2860d58", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_sign_key_required`", + "signature": "`ERR_CRYPTO_SIGN_KEY_REQUIRED`", + "label": "ERR_CRYPTO_SIGN_KEY_REQUIRED", + "apiSymbol": "ERR_CRYPTO_SIGN_KEY_REQUIRED", + "depth": 2, + "scope": "api", + "anchor": "err_crypto_sign_key_required", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:1b6193d0a254", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_timing_safe_equal_length`", + "signature": "`ERR_CRYPTO_TIMING_SAFE_EQUAL_LENGTH`", + "label": "ERR_CRYPTO_TIMING_SAFE_EQUAL_LENGTH", + "apiSymbol": "ERR_CRYPTO_TIMING_SAFE_EQUAL_LENGTH", + "depth": 2, + "scope": "api", + "anchor": "err_crypto_timing_safe_equal_length", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:0b4371b55b25", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_unknown_cipher`", + "signature": "`ERR_CRYPTO_UNKNOWN_CIPHER`", + "label": "ERR_CRYPTO_UNKNOWN_CIPHER", + "apiSymbol": "ERR_CRYPTO_UNKNOWN_CIPHER", + "depth": 2, + "scope": "api", + "anchor": "err_crypto_unknown_cipher", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:c863f78b249e", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_unknown_dh_group`", + "signature": "`ERR_CRYPTO_UNKNOWN_DH_GROUP`", + "label": "ERR_CRYPTO_UNKNOWN_DH_GROUP", + "apiSymbol": "ERR_CRYPTO_UNKNOWN_DH_GROUP", + "depth": 2, + "scope": "api", + "anchor": "err_crypto_unknown_dh_group", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:29e73b6ed77c", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_unsupported_operation`", + "signature": "`ERR_CRYPTO_UNSUPPORTED_OPERATION`", + "label": "ERR_CRYPTO_UNSUPPORTED_OPERATION", + "apiSymbol": "ERR_CRYPTO_UNSUPPORTED_OPERATION", + "depth": 2, + "scope": "api", + "anchor": "err_crypto_unsupported_operation", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:fff1522fadd2", + "chapter": "errors", + "kind": "module", + "name": "`err_debugger_error`", + "signature": "`ERR_DEBUGGER_ERROR`", + "label": "ERR_DEBUGGER_ERROR", + "apiSymbol": "ERR_DEBUGGER_ERROR", + "depth": 2, + "scope": "api", + "anchor": "err_debugger_error", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:8ac58d0d91e4", + "chapter": "errors", + "kind": "module", + "name": "`err_debugger_startup_error`", + "signature": "`ERR_DEBUGGER_STARTUP_ERROR`", + "label": "ERR_DEBUGGER_STARTUP_ERROR", + "apiSymbol": "ERR_DEBUGGER_STARTUP_ERROR", + "depth": 2, + "scope": "api", + "anchor": "err_debugger_startup_error", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:93d80817e498", + "chapter": "errors", + "kind": "module", + "name": "`err_dir_closed`", + "signature": "`ERR_DIR_CLOSED`", + "label": "ERR_DIR_CLOSED", + "apiSymbol": "ERR_DIR_CLOSED", + "depth": 2, + "scope": "api", + "anchor": "err_dir_closed", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:a6bb8593a92e", + "chapter": "errors", + "kind": "module", + "name": "`err_dir_concurrent_operation`", + "signature": "`ERR_DIR_CONCURRENT_OPERATION`", + "label": "ERR_DIR_CONCURRENT_OPERATION", + "apiSymbol": "ERR_DIR_CONCURRENT_OPERATION", + "depth": 2, + "scope": "api", + "anchor": "err_dir_concurrent_operation", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:385e93f7b3c0", + "chapter": "errors", + "kind": "module", + "name": "`err_dlopen_disabled`", + "signature": "`ERR_DLOPEN_DISABLED`", + "label": "ERR_DLOPEN_DISABLED", + "apiSymbol": "ERR_DLOPEN_DISABLED", + "depth": 2, + "scope": "api", + "anchor": "err_dlopen_disabled", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:7ebc9e9e144e", + "chapter": "errors", + "kind": "module", + "name": "`err_dlopen_failed`", + "signature": "`ERR_DLOPEN_FAILED`", + "label": "ERR_DLOPEN_FAILED", + "apiSymbol": "ERR_DLOPEN_FAILED", + "depth": 2, + "scope": "api", + "anchor": "err_dlopen_failed", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:aa3062b49ff4", + "chapter": "errors", + "kind": "module", + "name": "`err_dns_set_servers_failed`", + "signature": "`ERR_DNS_SET_SERVERS_FAILED`", + "label": "ERR_DNS_SET_SERVERS_FAILED", + "apiSymbol": "ERR_DNS_SET_SERVERS_FAILED", + "depth": 2, + "scope": "api", + "anchor": "err_dns_set_servers_failed", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:a8bbe59c280f", + "chapter": "errors", + "kind": "module", + "name": "`err_domain_callback_not_available`", + "signature": "`ERR_DOMAIN_CALLBACK_NOT_AVAILABLE`", + "label": "ERR_DOMAIN_CALLBACK_NOT_AVAILABLE", + "apiSymbol": "ERR_DOMAIN_CALLBACK_NOT_AVAILABLE", + "depth": 2, + "scope": "api", + "anchor": "err_domain_callback_not_available", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:a83d8a48b7c1", + "chapter": "errors", + "kind": "module", + "name": "`err_domain_cannot_set_uncaught_exception_capture`", + "signature": "`ERR_DOMAIN_CANNOT_SET_UNCAUGHT_EXCEPTION_CAPTURE`", + "label": "ERR_DOMAIN_CANNOT_SET_UNCAUGHT_EXCEPTION_CAPTURE", + "apiSymbol": "ERR_DOMAIN_CANNOT_SET_UNCAUGHT_EXCEPTION_CAPTURE", + "depth": 2, + "scope": "api", + "anchor": "err_domain_cannot_set_uncaught_exception_capture", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:1a7e7ab4221e", + "chapter": "errors", + "kind": "module", + "name": "`err_duplicate_startup_snapshot_main_function`", + "signature": "`ERR_DUPLICATE_STARTUP_SNAPSHOT_MAIN_FUNCTION`", + "label": "ERR_DUPLICATE_STARTUP_SNAPSHOT_MAIN_FUNCTION", + "apiSymbol": "ERR_DUPLICATE_STARTUP_SNAPSHOT_MAIN_FUNCTION", + "depth": 2, + "scope": "api", + "anchor": "err_duplicate_startup_snapshot_main_function", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:914f6b8ad5ff", + "chapter": "errors", + "kind": "module", + "name": "`err_encoding_invalid_encoded_data`", + "signature": "`ERR_ENCODING_INVALID_ENCODED_DATA`", + "label": "ERR_ENCODING_INVALID_ENCODED_DATA", + "apiSymbol": "ERR_ENCODING_INVALID_ENCODED_DATA", + "depth": 2, + "scope": "api", + "anchor": "err_encoding_invalid_encoded_data", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:6b2432f44e5e", + "chapter": "errors", + "kind": "module", + "name": "`err_encoding_not_supported`", + "signature": "`ERR_ENCODING_NOT_SUPPORTED`", + "label": "ERR_ENCODING_NOT_SUPPORTED", + "apiSymbol": "ERR_ENCODING_NOT_SUPPORTED", + "depth": 2, + "scope": "api", + "anchor": "err_encoding_not_supported", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:1bf53a9d6546", + "chapter": "errors", + "kind": "module", + "name": "`err_eval_esm_cannot_print`", + "signature": "`ERR_EVAL_ESM_CANNOT_PRINT`", + "label": "ERR_EVAL_ESM_CANNOT_PRINT", + "apiSymbol": "ERR_EVAL_ESM_CANNOT_PRINT", + "depth": 2, + "scope": "api", + "anchor": "err_eval_esm_cannot_print", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:8d80b6bf8bd8", + "chapter": "errors", + "kind": "module", + "name": "`err_event_recursion`", + "signature": "`ERR_EVENT_RECURSION`", + "label": "ERR_EVENT_RECURSION", + "apiSymbol": "ERR_EVENT_RECURSION", + "depth": 2, + "scope": "api", + "anchor": "err_event_recursion", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:2e2496d4db45", + "chapter": "errors", + "kind": "module", + "name": "`err_execution_environment_not_available`", + "signature": "`ERR_EXECUTION_ENVIRONMENT_NOT_AVAILABLE`", + "label": "ERR_EXECUTION_ENVIRONMENT_NOT_AVAILABLE", + "apiSymbol": "ERR_EXECUTION_ENVIRONMENT_NOT_AVAILABLE", + "depth": 2, + "scope": "api", + "anchor": "err_execution_environment_not_available", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:a0a96a13ff89", + "chapter": "errors", + "kind": "module", + "name": "`err_falsy_value_rejection`", + "signature": "`ERR_FALSY_VALUE_REJECTION`", + "label": "ERR_FALSY_VALUE_REJECTION", + "apiSymbol": "ERR_FALSY_VALUE_REJECTION", + "depth": 2, + "scope": "api", + "anchor": "err_falsy_value_rejection", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:6f4e0bf7be7b", + "chapter": "errors", + "kind": "module", + "name": "`err_feature_unavailable_on_platform`", + "signature": "`ERR_FEATURE_UNAVAILABLE_ON_PLATFORM`", + "label": "ERR_FEATURE_UNAVAILABLE_ON_PLATFORM", + "apiSymbol": "ERR_FEATURE_UNAVAILABLE_ON_PLATFORM", + "depth": 2, + "scope": "api", + "anchor": "err_feature_unavailable_on_platform", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:109fb306cc44", + "chapter": "errors", + "kind": "module", + "name": "`err_fs_cp_dir_to_non_dir`", + "signature": "`ERR_FS_CP_DIR_TO_NON_DIR`", + "label": "ERR_FS_CP_DIR_TO_NON_DIR", + "apiSymbol": "ERR_FS_CP_DIR_TO_NON_DIR", + "depth": 2, + "scope": "api", + "anchor": "err_fs_cp_dir_to_non_dir", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:d711577aa071", + "chapter": "errors", + "kind": "module", + "name": "`err_fs_cp_eexist`", + "signature": "`ERR_FS_CP_EEXIST`", + "label": "ERR_FS_CP_EEXIST", + "apiSymbol": "ERR_FS_CP_EEXIST", + "depth": 2, + "scope": "api", + "anchor": "err_fs_cp_eexist", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:591e537dea01", + "chapter": "errors", + "kind": "module", + "name": "`err_fs_cp_einval`", + "signature": "`ERR_FS_CP_EINVAL`", + "label": "ERR_FS_CP_EINVAL", + "apiSymbol": "ERR_FS_CP_EINVAL", + "depth": 2, + "scope": "api", + "anchor": "err_fs_cp_einval", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:193e18cbc642", + "chapter": "errors", + "kind": "module", + "name": "`err_fs_cp_fifo_pipe`", + "signature": "`ERR_FS_CP_FIFO_PIPE`", + "label": "ERR_FS_CP_FIFO_PIPE", + "apiSymbol": "ERR_FS_CP_FIFO_PIPE", + "depth": 2, + "scope": "api", + "anchor": "err_fs_cp_fifo_pipe", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:cea2d138c1c3", + "chapter": "errors", + "kind": "module", + "name": "`err_fs_cp_non_dir_to_dir`", + "signature": "`ERR_FS_CP_NON_DIR_TO_DIR`", + "label": "ERR_FS_CP_NON_DIR_TO_DIR", + "apiSymbol": "ERR_FS_CP_NON_DIR_TO_DIR", + "depth": 2, + "scope": "api", + "anchor": "err_fs_cp_non_dir_to_dir", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:b44f00ea9f00", + "chapter": "errors", + "kind": "module", + "name": "`err_fs_cp_socket`", + "signature": "`ERR_FS_CP_SOCKET`", + "label": "ERR_FS_CP_SOCKET", + "apiSymbol": "ERR_FS_CP_SOCKET", + "depth": 2, + "scope": "api", + "anchor": "err_fs_cp_socket", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:578d53ee955f", + "chapter": "errors", + "kind": "module", + "name": "`err_fs_cp_symlink_to_subdirectory`", + "signature": "`ERR_FS_CP_SYMLINK_TO_SUBDIRECTORY`", + "label": "ERR_FS_CP_SYMLINK_TO_SUBDIRECTORY", + "apiSymbol": "ERR_FS_CP_SYMLINK_TO_SUBDIRECTORY", + "depth": 2, + "scope": "api", + "anchor": "err_fs_cp_symlink_to_subdirectory", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:7508273d2cc2", + "chapter": "errors", + "kind": "module", + "name": "`err_fs_cp_unknown`", + "signature": "`ERR_FS_CP_UNKNOWN`", + "label": "ERR_FS_CP_UNKNOWN", + "apiSymbol": "ERR_FS_CP_UNKNOWN", + "depth": 2, + "scope": "api", + "anchor": "err_fs_cp_unknown", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:00ec21ce38bc", + "chapter": "errors", + "kind": "module", + "name": "`err_fs_eisdir`", + "signature": "`ERR_FS_EISDIR`", + "label": "ERR_FS_EISDIR", + "apiSymbol": "ERR_FS_EISDIR", + "depth": 2, + "scope": "api", + "anchor": "err_fs_eisdir", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:8bb2e0b96ff3", + "chapter": "errors", + "kind": "module", + "name": "`err_fs_file_too_large`", + "signature": "`ERR_FS_FILE_TOO_LARGE`", + "label": "ERR_FS_FILE_TOO_LARGE", + "apiSymbol": "ERR_FS_FILE_TOO_LARGE", + "depth": 2, + "scope": "api", + "anchor": "err_fs_file_too_large", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:c62d401ab59d", + "chapter": "errors", + "kind": "module", + "name": "`err_fs_watch_queue_overflow`", + "signature": "`ERR_FS_WATCH_QUEUE_OVERFLOW`", + "label": "ERR_FS_WATCH_QUEUE_OVERFLOW", + "apiSymbol": "ERR_FS_WATCH_QUEUE_OVERFLOW", + "depth": 2, + "scope": "api", + "anchor": "err_fs_watch_queue_overflow", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:8176b3548759", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_altsvc_invalid_origin`", + "signature": "`ERR_HTTP2_ALTSVC_INVALID_ORIGIN`", + "label": "ERR_HTTP2_ALTSVC_INVALID_ORIGIN", + "apiSymbol": "ERR_HTTP2_ALTSVC_INVALID_ORIGIN", + "depth": 2, + "scope": "api", + "anchor": "err_http2_altsvc_invalid_origin", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:1ffa5faa134b", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_altsvc_length`", + "signature": "`ERR_HTTP2_ALTSVC_LENGTH`", + "label": "ERR_HTTP2_ALTSVC_LENGTH", + "apiSymbol": "ERR_HTTP2_ALTSVC_LENGTH", + "depth": 2, + "scope": "api", + "anchor": "err_http2_altsvc_length", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:a0754b7922ca", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_connect_authority`", + "signature": "`ERR_HTTP2_CONNECT_AUTHORITY`", + "label": "ERR_HTTP2_CONNECT_AUTHORITY", + "apiSymbol": "ERR_HTTP2_CONNECT_AUTHORITY", + "depth": 2, + "scope": "api", + "anchor": "err_http2_connect_authority", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:9da29a9746b9", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_connect_path`", + "signature": "`ERR_HTTP2_CONNECT_PATH`", + "label": "ERR_HTTP2_CONNECT_PATH", + "apiSymbol": "ERR_HTTP2_CONNECT_PATH", + "depth": 2, + "scope": "api", + "anchor": "err_http2_connect_path", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:9e5b1b864d6e", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_connect_scheme`", + "signature": "`ERR_HTTP2_CONNECT_SCHEME`", + "label": "ERR_HTTP2_CONNECT_SCHEME", + "apiSymbol": "ERR_HTTP2_CONNECT_SCHEME", + "depth": 2, + "scope": "api", + "anchor": "err_http2_connect_scheme", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:3121028a67f0", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_error`", + "signature": "`ERR_HTTP2_ERROR`", + "label": "ERR_HTTP2_ERROR", + "apiSymbol": "ERR_HTTP2_ERROR", + "depth": 2, + "scope": "api", + "anchor": "err_http2_error", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:87ef2b8b5dd4", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_goaway_session`", + "signature": "`ERR_HTTP2_GOAWAY_SESSION`", + "label": "ERR_HTTP2_GOAWAY_SESSION", + "apiSymbol": "ERR_HTTP2_GOAWAY_SESSION", + "depth": 2, + "scope": "api", + "anchor": "err_http2_goaway_session", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:160c0d1ae617", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_headers_after_respond`", + "signature": "`ERR_HTTP2_HEADERS_AFTER_RESPOND`", + "label": "ERR_HTTP2_HEADERS_AFTER_RESPOND", + "apiSymbol": "ERR_HTTP2_HEADERS_AFTER_RESPOND", + "depth": 2, + "scope": "api", + "anchor": "err_http2_headers_after_respond", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:48bf7e803b41", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_headers_sent`", + "signature": "`ERR_HTTP2_HEADERS_SENT`", + "label": "ERR_HTTP2_HEADERS_SENT", + "apiSymbol": "ERR_HTTP2_HEADERS_SENT", + "depth": 2, + "scope": "api", + "anchor": "err_http2_headers_sent", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:5cccc962a5e1", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_header_single_value`", + "signature": "`ERR_HTTP2_HEADER_SINGLE_VALUE`", + "label": "ERR_HTTP2_HEADER_SINGLE_VALUE", + "apiSymbol": "ERR_HTTP2_HEADER_SINGLE_VALUE", + "depth": 2, + "scope": "api", + "anchor": "err_http2_header_single_value", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:dce0a399957f", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_info_status_not_allowed`", + "signature": "`ERR_HTTP2_INFO_STATUS_NOT_ALLOWED`", + "label": "ERR_HTTP2_INFO_STATUS_NOT_ALLOWED", + "apiSymbol": "ERR_HTTP2_INFO_STATUS_NOT_ALLOWED", + "depth": 2, + "scope": "api", + "anchor": "err_http2_info_status_not_allowed", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:1ebd2ac91e4e", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_invalid_connection_headers`", + "signature": "`ERR_HTTP2_INVALID_CONNECTION_HEADERS`", + "label": "ERR_HTTP2_INVALID_CONNECTION_HEADERS", + "apiSymbol": "ERR_HTTP2_INVALID_CONNECTION_HEADERS", + "depth": 2, + "scope": "api", + "anchor": "err_http2_invalid_connection_headers", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:63eb5a9968fd", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_invalid_header_value`", + "signature": "`ERR_HTTP2_INVALID_HEADER_VALUE`", + "label": "ERR_HTTP2_INVALID_HEADER_VALUE", + "apiSymbol": "ERR_HTTP2_INVALID_HEADER_VALUE", + "depth": 2, + "scope": "api", + "anchor": "err_http2_invalid_header_value", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:4ad8971580e9", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_invalid_info_status`", + "signature": "`ERR_HTTP2_INVALID_INFO_STATUS`", + "label": "ERR_HTTP2_INVALID_INFO_STATUS", + "apiSymbol": "ERR_HTTP2_INVALID_INFO_STATUS", + "depth": 2, + "scope": "api", + "anchor": "err_http2_invalid_info_status", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:75097044eca7", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_invalid_origin`", + "signature": "`ERR_HTTP2_INVALID_ORIGIN`", + "label": "ERR_HTTP2_INVALID_ORIGIN", + "apiSymbol": "ERR_HTTP2_INVALID_ORIGIN", + "depth": 2, + "scope": "api", + "anchor": "err_http2_invalid_origin", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:e119bdab938a", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_invalid_packed_settings_length`", + "signature": "`ERR_HTTP2_INVALID_PACKED_SETTINGS_LENGTH`", + "label": "ERR_HTTP2_INVALID_PACKED_SETTINGS_LENGTH", + "apiSymbol": "ERR_HTTP2_INVALID_PACKED_SETTINGS_LENGTH", + "depth": 2, + "scope": "api", + "anchor": "err_http2_invalid_packed_settings_length", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:aa632699a0ee", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_invalid_pseudoheader`", + "signature": "`ERR_HTTP2_INVALID_PSEUDOHEADER`", + "label": "ERR_HTTP2_INVALID_PSEUDOHEADER", + "apiSymbol": "ERR_HTTP2_INVALID_PSEUDOHEADER", + "depth": 2, + "scope": "api", + "anchor": "err_http2_invalid_pseudoheader", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:ec973ca9d700", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_invalid_session`", + "signature": "`ERR_HTTP2_INVALID_SESSION`", + "label": "ERR_HTTP2_INVALID_SESSION", + "apiSymbol": "ERR_HTTP2_INVALID_SESSION", + "depth": 2, + "scope": "api", + "anchor": "err_http2_invalid_session", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:c6d7d3dab1a8", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_invalid_setting_value`", + "signature": "`ERR_HTTP2_INVALID_SETTING_VALUE`", + "label": "ERR_HTTP2_INVALID_SETTING_VALUE", + "apiSymbol": "ERR_HTTP2_INVALID_SETTING_VALUE", + "depth": 2, + "scope": "api", + "anchor": "err_http2_invalid_setting_value", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:cf3cbd4d75fa", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_invalid_stream`", + "signature": "`ERR_HTTP2_INVALID_STREAM`", + "label": "ERR_HTTP2_INVALID_STREAM", + "apiSymbol": "ERR_HTTP2_INVALID_STREAM", + "depth": 2, + "scope": "api", + "anchor": "err_http2_invalid_stream", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:b5e6ddde0b7c", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_max_pending_settings_ack`", + "signature": "`ERR_HTTP2_MAX_PENDING_SETTINGS_ACK`", + "label": "ERR_HTTP2_MAX_PENDING_SETTINGS_ACK", + "apiSymbol": "ERR_HTTP2_MAX_PENDING_SETTINGS_ACK", + "depth": 2, + "scope": "api", + "anchor": "err_http2_max_pending_settings_ack", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:46406d50a324", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_nested_push`", + "signature": "`ERR_HTTP2_NESTED_PUSH`", + "label": "ERR_HTTP2_NESTED_PUSH", + "apiSymbol": "ERR_HTTP2_NESTED_PUSH", + "depth": 2, + "scope": "api", + "anchor": "err_http2_nested_push", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:18c92c1db453", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_no_mem`", + "signature": "`ERR_HTTP2_NO_MEM`", + "label": "ERR_HTTP2_NO_MEM", + "apiSymbol": "ERR_HTTP2_NO_MEM", + "depth": 2, + "scope": "api", + "anchor": "err_http2_no_mem", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:e79b0b4eadd5", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_no_socket_manipulation`", + "signature": "`ERR_HTTP2_NO_SOCKET_MANIPULATION`", + "label": "ERR_HTTP2_NO_SOCKET_MANIPULATION", + "apiSymbol": "ERR_HTTP2_NO_SOCKET_MANIPULATION", + "depth": 2, + "scope": "api", + "anchor": "err_http2_no_socket_manipulation", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:44424a396311", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_origin_length`", + "signature": "`ERR_HTTP2_ORIGIN_LENGTH`", + "label": "ERR_HTTP2_ORIGIN_LENGTH", + "apiSymbol": "ERR_HTTP2_ORIGIN_LENGTH", + "depth": 2, + "scope": "api", + "anchor": "err_http2_origin_length", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:0d5579703e20", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_out_of_streams`", + "signature": "`ERR_HTTP2_OUT_OF_STREAMS`", + "label": "ERR_HTTP2_OUT_OF_STREAMS", + "apiSymbol": "ERR_HTTP2_OUT_OF_STREAMS", + "depth": 2, + "scope": "api", + "anchor": "err_http2_out_of_streams", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:f1a269aedbe8", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_payload_forbidden`", + "signature": "`ERR_HTTP2_PAYLOAD_FORBIDDEN`", + "label": "ERR_HTTP2_PAYLOAD_FORBIDDEN", + "apiSymbol": "ERR_HTTP2_PAYLOAD_FORBIDDEN", + "depth": 2, + "scope": "api", + "anchor": "err_http2_payload_forbidden", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:19ab65b984d1", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_ping_cancel`", + "signature": "`ERR_HTTP2_PING_CANCEL`", + "label": "ERR_HTTP2_PING_CANCEL", + "apiSymbol": "ERR_HTTP2_PING_CANCEL", + "depth": 2, + "scope": "api", + "anchor": "err_http2_ping_cancel", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:db454cd7e582", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_ping_length`", + "signature": "`ERR_HTTP2_PING_LENGTH`", + "label": "ERR_HTTP2_PING_LENGTH", + "apiSymbol": "ERR_HTTP2_PING_LENGTH", + "depth": 2, + "scope": "api", + "anchor": "err_http2_ping_length", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:c73d379688c5", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_pseudoheader_not_allowed`", + "signature": "`ERR_HTTP2_PSEUDOHEADER_NOT_ALLOWED`", + "label": "ERR_HTTP2_PSEUDOHEADER_NOT_ALLOWED", + "apiSymbol": "ERR_HTTP2_PSEUDOHEADER_NOT_ALLOWED", + "depth": 2, + "scope": "api", + "anchor": "err_http2_pseudoheader_not_allowed", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:2707a922f688", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_push_disabled`", + "signature": "`ERR_HTTP2_PUSH_DISABLED`", + "label": "ERR_HTTP2_PUSH_DISABLED", + "apiSymbol": "ERR_HTTP2_PUSH_DISABLED", + "depth": 2, + "scope": "api", + "anchor": "err_http2_push_disabled", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:76a1cc9ec1e7", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_send_file`", + "signature": "`ERR_HTTP2_SEND_FILE`", + "label": "ERR_HTTP2_SEND_FILE", + "apiSymbol": "ERR_HTTP2_SEND_FILE", + "depth": 2, + "scope": "api", + "anchor": "err_http2_send_file", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:c07235ca435d", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_send_file_noseek`", + "signature": "`ERR_HTTP2_SEND_FILE_NOSEEK`", + "label": "ERR_HTTP2_SEND_FILE_NOSEEK", + "apiSymbol": "ERR_HTTP2_SEND_FILE_NOSEEK", + "depth": 2, + "scope": "api", + "anchor": "err_http2_send_file_noseek", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:8b37b07bb7f6", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_session_error`", + "signature": "`ERR_HTTP2_SESSION_ERROR`", + "label": "ERR_HTTP2_SESSION_ERROR", + "apiSymbol": "ERR_HTTP2_SESSION_ERROR", + "depth": 2, + "scope": "api", + "anchor": "err_http2_session_error", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:4d05c8b5434d", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_settings_cancel`", + "signature": "`ERR_HTTP2_SETTINGS_CANCEL`", + "label": "ERR_HTTP2_SETTINGS_CANCEL", + "apiSymbol": "ERR_HTTP2_SETTINGS_CANCEL", + "depth": 2, + "scope": "api", + "anchor": "err_http2_settings_cancel", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:4e49b5b5560b", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_socket_bound`", + "signature": "`ERR_HTTP2_SOCKET_BOUND`", + "label": "ERR_HTTP2_SOCKET_BOUND", + "apiSymbol": "ERR_HTTP2_SOCKET_BOUND", + "depth": 2, + "scope": "api", + "anchor": "err_http2_socket_bound", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:79fc71028e38", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_socket_unbound`", + "signature": "`ERR_HTTP2_SOCKET_UNBOUND`", + "label": "ERR_HTTP2_SOCKET_UNBOUND", + "apiSymbol": "ERR_HTTP2_SOCKET_UNBOUND", + "depth": 2, + "scope": "api", + "anchor": "err_http2_socket_unbound", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:f6e7b358d9b5", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_status_101`", + "signature": "`ERR_HTTP2_STATUS_101`", + "label": "ERR_HTTP2_STATUS_101", + "apiSymbol": "ERR_HTTP2_STATUS_101", + "depth": 2, + "scope": "api", + "anchor": "err_http2_status_101", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:e3b045f59b05", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_status_invalid`", + "signature": "`ERR_HTTP2_STATUS_INVALID`", + "label": "ERR_HTTP2_STATUS_INVALID", + "apiSymbol": "ERR_HTTP2_STATUS_INVALID", + "depth": 2, + "scope": "api", + "anchor": "err_http2_status_invalid", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:2c9b400683b3", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_stream_cancel`", + "signature": "`ERR_HTTP2_STREAM_CANCEL`", + "label": "ERR_HTTP2_STREAM_CANCEL", + "apiSymbol": "ERR_HTTP2_STREAM_CANCEL", + "depth": 2, + "scope": "api", + "anchor": "err_http2_stream_cancel", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:7553eb05b4e7", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_stream_error`", + "signature": "`ERR_HTTP2_STREAM_ERROR`", + "label": "ERR_HTTP2_STREAM_ERROR", + "apiSymbol": "ERR_HTTP2_STREAM_ERROR", + "depth": 2, + "scope": "api", + "anchor": "err_http2_stream_error", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:98e421d82468", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_stream_self_dependency`", + "signature": "`ERR_HTTP2_STREAM_SELF_DEPENDENCY`", + "label": "ERR_HTTP2_STREAM_SELF_DEPENDENCY", + "apiSymbol": "ERR_HTTP2_STREAM_SELF_DEPENDENCY", + "depth": 2, + "scope": "api", + "anchor": "err_http2_stream_self_dependency", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:d75a49c3fa05", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_too_many_custom_settings`", + "signature": "`ERR_HTTP2_TOO_MANY_CUSTOM_SETTINGS`", + "label": "ERR_HTTP2_TOO_MANY_CUSTOM_SETTINGS", + "apiSymbol": "ERR_HTTP2_TOO_MANY_CUSTOM_SETTINGS", + "depth": 2, + "scope": "api", + "anchor": "err_http2_too_many_custom_settings", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:f94974790b37", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_too_many_invalid_frames`", + "signature": "`ERR_HTTP2_TOO_MANY_INVALID_FRAMES`", + "label": "ERR_HTTP2_TOO_MANY_INVALID_FRAMES", + "apiSymbol": "ERR_HTTP2_TOO_MANY_INVALID_FRAMES", + "depth": 2, + "scope": "api", + "anchor": "err_http2_too_many_invalid_frames", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:799603ae61ed", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_trailers_already_sent`", + "signature": "`ERR_HTTP2_TRAILERS_ALREADY_SENT`", + "label": "ERR_HTTP2_TRAILERS_ALREADY_SENT", + "apiSymbol": "ERR_HTTP2_TRAILERS_ALREADY_SENT", + "depth": 2, + "scope": "api", + "anchor": "err_http2_trailers_already_sent", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:5fa9dec1e569", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_trailers_not_ready`", + "signature": "`ERR_HTTP2_TRAILERS_NOT_READY`", + "label": "ERR_HTTP2_TRAILERS_NOT_READY", + "apiSymbol": "ERR_HTTP2_TRAILERS_NOT_READY", + "depth": 2, + "scope": "api", + "anchor": "err_http2_trailers_not_ready", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:c3aa9f1635c6", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_unsupported_protocol`", + "signature": "`ERR_HTTP2_UNSUPPORTED_PROTOCOL`", + "label": "ERR_HTTP2_UNSUPPORTED_PROTOCOL", + "apiSymbol": "ERR_HTTP2_UNSUPPORTED_PROTOCOL", + "depth": 2, + "scope": "api", + "anchor": "err_http2_unsupported_protocol", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:6c447550feac", + "chapter": "errors", + "kind": "module", + "name": "`err_http_body_not_allowed`", + "signature": "`ERR_HTTP_BODY_NOT_ALLOWED`", + "label": "ERR_HTTP_BODY_NOT_ALLOWED", + "apiSymbol": "ERR_HTTP_BODY_NOT_ALLOWED", + "depth": 2, + "scope": "api", + "anchor": "err_http_body_not_allowed", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:34dda66d20a4", + "chapter": "errors", + "kind": "module", + "name": "`err_http_content_length_mismatch`", + "signature": "`ERR_HTTP_CONTENT_LENGTH_MISMATCH`", + "label": "ERR_HTTP_CONTENT_LENGTH_MISMATCH", + "apiSymbol": "ERR_HTTP_CONTENT_LENGTH_MISMATCH", + "depth": 2, + "scope": "api", + "anchor": "err_http_content_length_mismatch", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:d37359ebff74", + "chapter": "errors", + "kind": "module", + "name": "`err_http_headers_sent`", + "signature": "`ERR_HTTP_HEADERS_SENT`", + "label": "ERR_HTTP_HEADERS_SENT", + "apiSymbol": "ERR_HTTP_HEADERS_SENT", + "depth": 2, + "scope": "api", + "anchor": "err_http_headers_sent", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:44630fe01a40", + "chapter": "errors", + "kind": "module", + "name": "`err_http_invalid_header_value`", + "signature": "`ERR_HTTP_INVALID_HEADER_VALUE`", + "label": "ERR_HTTP_INVALID_HEADER_VALUE", + "apiSymbol": "ERR_HTTP_INVALID_HEADER_VALUE", + "depth": 2, + "scope": "api", + "anchor": "err_http_invalid_header_value", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:c173d3dbb50d", + "chapter": "errors", + "kind": "module", + "name": "`err_http_invalid_status_code`", + "signature": "`ERR_HTTP_INVALID_STATUS_CODE`", + "label": "ERR_HTTP_INVALID_STATUS_CODE", + "apiSymbol": "ERR_HTTP_INVALID_STATUS_CODE", + "depth": 2, + "scope": "api", + "anchor": "err_http_invalid_status_code", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:2e378807efa9", + "chapter": "errors", + "kind": "module", + "name": "`err_http_request_timeout`", + "signature": "`ERR_HTTP_REQUEST_TIMEOUT`", + "label": "ERR_HTTP_REQUEST_TIMEOUT", + "apiSymbol": "ERR_HTTP_REQUEST_TIMEOUT", + "depth": 2, + "scope": "api", + "anchor": "err_http_request_timeout", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:848bbf20e9aa", + "chapter": "errors", + "kind": "module", + "name": "`err_http_socket_assigned`", + "signature": "`ERR_HTTP_SOCKET_ASSIGNED`", + "label": "ERR_HTTP_SOCKET_ASSIGNED", + "apiSymbol": "ERR_HTTP_SOCKET_ASSIGNED", + "depth": 2, + "scope": "api", + "anchor": "err_http_socket_assigned", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:7c5a56c488a5", + "chapter": "errors", + "kind": "module", + "name": "`err_http_socket_encoding`", + "signature": "`ERR_HTTP_SOCKET_ENCODING`", + "label": "ERR_HTTP_SOCKET_ENCODING", + "apiSymbol": "ERR_HTTP_SOCKET_ENCODING", + "depth": 2, + "scope": "api", + "anchor": "err_http_socket_encoding", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:51b4204d1850", + "chapter": "errors", + "kind": "module", + "name": "`err_http_trailer_invalid`", + "signature": "`ERR_HTTP_TRAILER_INVALID`", + "label": "ERR_HTTP_TRAILER_INVALID", + "apiSymbol": "ERR_HTTP_TRAILER_INVALID", + "depth": 2, + "scope": "api", + "anchor": "err_http_trailer_invalid", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:fa5066e80d50", + "chapter": "errors", + "kind": "module", + "name": "`err_illegal_constructor`", + "signature": "`ERR_ILLEGAL_CONSTRUCTOR`", + "label": "ERR_ILLEGAL_CONSTRUCTOR", + "apiSymbol": "ERR_ILLEGAL_CONSTRUCTOR", + "depth": 2, + "scope": "api", + "anchor": "err_illegal_constructor", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:5499b270cf61", + "chapter": "errors", + "kind": "module", + "name": "`err_import_attribute_missing`", + "signature": "`ERR_IMPORT_ATTRIBUTE_MISSING`", + "label": "ERR_IMPORT_ATTRIBUTE_MISSING", + "apiSymbol": "ERR_IMPORT_ATTRIBUTE_MISSING", + "depth": 2, + "scope": "api", + "anchor": "err_import_attribute_missing", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:ca1d4f69bf83", + "chapter": "errors", + "kind": "module", + "name": "`err_import_attribute_type_incompatible`", + "signature": "`ERR_IMPORT_ATTRIBUTE_TYPE_INCOMPATIBLE`", + "label": "ERR_IMPORT_ATTRIBUTE_TYPE_INCOMPATIBLE", + "apiSymbol": "ERR_IMPORT_ATTRIBUTE_TYPE_INCOMPATIBLE", + "depth": 2, + "scope": "api", + "anchor": "err_import_attribute_type_incompatible", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:5bac42b67ae2", + "chapter": "errors", + "kind": "module", + "name": "`err_import_attribute_unsupported`", + "signature": "`ERR_IMPORT_ATTRIBUTE_UNSUPPORTED`", + "label": "ERR_IMPORT_ATTRIBUTE_UNSUPPORTED", + "apiSymbol": "ERR_IMPORT_ATTRIBUTE_UNSUPPORTED", + "depth": 2, + "scope": "api", + "anchor": "err_import_attribute_unsupported", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:bd1b6cb74a7a", + "chapter": "errors", + "kind": "module", + "name": "`err_incompatible_option_pair`", + "signature": "`ERR_INCOMPATIBLE_OPTION_PAIR`", + "label": "ERR_INCOMPATIBLE_OPTION_PAIR", + "apiSymbol": "ERR_INCOMPATIBLE_OPTION_PAIR", + "depth": 2, + "scope": "api", + "anchor": "err_incompatible_option_pair", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:0d9409025cef", + "chapter": "errors", + "kind": "module", + "name": "`err_input_type_not_allowed`", + "signature": "`ERR_INPUT_TYPE_NOT_ALLOWED`", + "label": "ERR_INPUT_TYPE_NOT_ALLOWED", + "apiSymbol": "ERR_INPUT_TYPE_NOT_ALLOWED", + "depth": 2, + "scope": "api", + "anchor": "err_input_type_not_allowed", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:e56b8ffbab4e", + "chapter": "errors", + "kind": "module", + "name": "`err_inspector_already_activated`", + "signature": "`ERR_INSPECTOR_ALREADY_ACTIVATED`", + "label": "ERR_INSPECTOR_ALREADY_ACTIVATED", + "apiSymbol": "ERR_INSPECTOR_ALREADY_ACTIVATED", + "depth": 2, + "scope": "api", + "anchor": "err_inspector_already_activated", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:8d0db429bdb1", + "chapter": "errors", + "kind": "module", + "name": "`err_inspector_already_connected`", + "signature": "`ERR_INSPECTOR_ALREADY_CONNECTED`", + "label": "ERR_INSPECTOR_ALREADY_CONNECTED", + "apiSymbol": "ERR_INSPECTOR_ALREADY_CONNECTED", + "depth": 2, + "scope": "api", + "anchor": "err_inspector_already_connected", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:b1022db7e59e", + "chapter": "errors", + "kind": "module", + "name": "`err_inspector_closed`", + "signature": "`ERR_INSPECTOR_CLOSED`", + "label": "ERR_INSPECTOR_CLOSED", + "apiSymbol": "ERR_INSPECTOR_CLOSED", + "depth": 2, + "scope": "api", + "anchor": "err_inspector_closed", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:39b33b3db42a", + "chapter": "errors", + "kind": "module", + "name": "`err_inspector_command`", + "signature": "`ERR_INSPECTOR_COMMAND`", + "label": "ERR_INSPECTOR_COMMAND", + "apiSymbol": "ERR_INSPECTOR_COMMAND", + "depth": 2, + "scope": "api", + "anchor": "err_inspector_command", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:fc2412257d3a", + "chapter": "errors", + "kind": "module", + "name": "`err_inspector_not_active`", + "signature": "`ERR_INSPECTOR_NOT_ACTIVE`", + "label": "ERR_INSPECTOR_NOT_ACTIVE", + "apiSymbol": "ERR_INSPECTOR_NOT_ACTIVE", + "depth": 2, + "scope": "api", + "anchor": "err_inspector_not_active", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:2bf1f9b87c80", + "chapter": "errors", + "kind": "module", + "name": "`err_inspector_not_available`", + "signature": "`ERR_INSPECTOR_NOT_AVAILABLE`", + "label": "ERR_INSPECTOR_NOT_AVAILABLE", + "apiSymbol": "ERR_INSPECTOR_NOT_AVAILABLE", + "depth": 2, + "scope": "api", + "anchor": "err_inspector_not_available", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:a95db60cb6b8", + "chapter": "errors", + "kind": "module", + "name": "`err_inspector_not_connected`", + "signature": "`ERR_INSPECTOR_NOT_CONNECTED`", + "label": "ERR_INSPECTOR_NOT_CONNECTED", + "apiSymbol": "ERR_INSPECTOR_NOT_CONNECTED", + "depth": 2, + "scope": "api", + "anchor": "err_inspector_not_connected", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:a98b93817cce", + "chapter": "errors", + "kind": "module", + "name": "`err_inspector_not_worker`", + "signature": "`ERR_INSPECTOR_NOT_WORKER`", + "label": "ERR_INSPECTOR_NOT_WORKER", + "apiSymbol": "ERR_INSPECTOR_NOT_WORKER", + "depth": 2, + "scope": "api", + "anchor": "err_inspector_not_worker", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:186493f3714e", + "chapter": "errors", + "kind": "module", + "name": "`err_internal_assertion`", + "signature": "`ERR_INTERNAL_ASSERTION`", + "label": "ERR_INTERNAL_ASSERTION", + "apiSymbol": "ERR_INTERNAL_ASSERTION", + "depth": 2, + "scope": "api", + "anchor": "err_internal_assertion", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:ac53bbc6e276", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_address`", + "signature": "`ERR_INVALID_ADDRESS`", + "label": "ERR_INVALID_ADDRESS", + "apiSymbol": "ERR_INVALID_ADDRESS", + "depth": 2, + "scope": "api", + "anchor": "err_invalid_address", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:3efc19d28f60", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_address_family`", + "signature": "`ERR_INVALID_ADDRESS_FAMILY`", + "label": "ERR_INVALID_ADDRESS_FAMILY", + "apiSymbol": "ERR_INVALID_ADDRESS_FAMILY", + "depth": 2, + "scope": "api", + "anchor": "err_invalid_address_family", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:1a49260b39f5", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_arg_type`", + "signature": "`ERR_INVALID_ARG_TYPE`", + "label": "ERR_INVALID_ARG_TYPE", + "apiSymbol": "ERR_INVALID_ARG_TYPE", + "depth": 2, + "scope": "api", + "anchor": "err_invalid_arg_type", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:ad8192687e9f", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_arg_value`", + "signature": "`ERR_INVALID_ARG_VALUE`", + "label": "ERR_INVALID_ARG_VALUE", + "apiSymbol": "ERR_INVALID_ARG_VALUE", + "depth": 2, + "scope": "api", + "anchor": "err_invalid_arg_value", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:87c6ee235eb9", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_async_id`", + "signature": "`ERR_INVALID_ASYNC_ID`", + "label": "ERR_INVALID_ASYNC_ID", + "apiSymbol": "ERR_INVALID_ASYNC_ID", + "depth": 2, + "scope": "api", + "anchor": "err_invalid_async_id", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:833f9eeaf71a", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_buffer_size`", + "signature": "`ERR_INVALID_BUFFER_SIZE`", + "label": "ERR_INVALID_BUFFER_SIZE", + "apiSymbol": "ERR_INVALID_BUFFER_SIZE", + "depth": 2, + "scope": "api", + "anchor": "err_invalid_buffer_size", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:003bcde06939", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_char`", + "signature": "`ERR_INVALID_CHAR`", + "label": "ERR_INVALID_CHAR", + "apiSymbol": "ERR_INVALID_CHAR", + "depth": 2, + "scope": "api", + "anchor": "err_invalid_char", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:0def7eb7c587", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_cursor_pos`", + "signature": "`ERR_INVALID_CURSOR_POS`", + "label": "ERR_INVALID_CURSOR_POS", + "apiSymbol": "ERR_INVALID_CURSOR_POS", + "depth": 2, + "scope": "api", + "anchor": "err_invalid_cursor_pos", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:bd1a72ecbcb8", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_fd`", + "signature": "`ERR_INVALID_FD`", + "label": "ERR_INVALID_FD", + "apiSymbol": "ERR_INVALID_FD", + "depth": 2, + "scope": "api", + "anchor": "err_invalid_fd", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:0bcd688b1012", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_fd_type`", + "signature": "`ERR_INVALID_FD_TYPE`", + "label": "ERR_INVALID_FD_TYPE", + "apiSymbol": "ERR_INVALID_FD_TYPE", + "depth": 2, + "scope": "api", + "anchor": "err_invalid_fd_type", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:6464f753c97f", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_file_url_host`", + "signature": "`ERR_INVALID_FILE_URL_HOST`", + "label": "ERR_INVALID_FILE_URL_HOST", + "apiSymbol": "ERR_INVALID_FILE_URL_HOST", + "depth": 2, + "scope": "api", + "anchor": "err_invalid_file_url_host", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:20b8c0056829", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_file_url_path`", + "signature": "`ERR_INVALID_FILE_URL_PATH`", + "label": "ERR_INVALID_FILE_URL_PATH", + "apiSymbol": "ERR_INVALID_FILE_URL_PATH", + "depth": 2, + "scope": "api", + "anchor": "err_invalid_file_url_path", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:e6461285520c", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_handle_type`", + "signature": "`ERR_INVALID_HANDLE_TYPE`", + "label": "ERR_INVALID_HANDLE_TYPE", + "apiSymbol": "ERR_INVALID_HANDLE_TYPE", + "depth": 2, + "scope": "api", + "anchor": "err_invalid_handle_type", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:f53daa707cce", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_http_token`", + "signature": "`ERR_INVALID_HTTP_TOKEN`", + "label": "ERR_INVALID_HTTP_TOKEN", + "apiSymbol": "ERR_INVALID_HTTP_TOKEN", + "depth": 2, + "scope": "api", + "anchor": "err_invalid_http_token", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:92490bcdf411", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_ip_address`", + "signature": "`ERR_INVALID_IP_ADDRESS`", + "label": "ERR_INVALID_IP_ADDRESS", + "apiSymbol": "ERR_INVALID_IP_ADDRESS", + "depth": 2, + "scope": "api", + "anchor": "err_invalid_ip_address", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:01cf500177db", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_mime_syntax`", + "signature": "`ERR_INVALID_MIME_SYNTAX`", + "label": "ERR_INVALID_MIME_SYNTAX", + "apiSymbol": "ERR_INVALID_MIME_SYNTAX", + "depth": 2, + "scope": "api", + "anchor": "err_invalid_mime_syntax", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:fafb6632a396", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_module`", + "signature": "`ERR_INVALID_MODULE`", + "label": "ERR_INVALID_MODULE", + "apiSymbol": "ERR_INVALID_MODULE", + "depth": 2, + "scope": "api", + "anchor": "err_invalid_module", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:785b15656eee", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_module_specifier`", + "signature": "`ERR_INVALID_MODULE_SPECIFIER`", + "label": "ERR_INVALID_MODULE_SPECIFIER", + "apiSymbol": "ERR_INVALID_MODULE_SPECIFIER", + "depth": 2, + "scope": "api", + "anchor": "err_invalid_module_specifier", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:cecc76c887c9", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_object_define_property`", + "signature": "`ERR_INVALID_OBJECT_DEFINE_PROPERTY`", + "label": "ERR_INVALID_OBJECT_DEFINE_PROPERTY", + "apiSymbol": "ERR_INVALID_OBJECT_DEFINE_PROPERTY", + "depth": 2, + "scope": "api", + "anchor": "err_invalid_object_define_property", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:b1f52121dbcc", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_package_config`", + "signature": "`ERR_INVALID_PACKAGE_CONFIG`", + "label": "ERR_INVALID_PACKAGE_CONFIG", + "apiSymbol": "ERR_INVALID_PACKAGE_CONFIG", + "depth": 2, + "scope": "api", + "anchor": "err_invalid_package_config", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:fe9602bc0282", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_package_target`", + "signature": "`ERR_INVALID_PACKAGE_TARGET`", + "label": "ERR_INVALID_PACKAGE_TARGET", + "apiSymbol": "ERR_INVALID_PACKAGE_TARGET", + "depth": 2, + "scope": "api", + "anchor": "err_invalid_package_target", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:3a0d3a3ba68f", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_protocol`", + "signature": "`ERR_INVALID_PROTOCOL`", + "label": "ERR_INVALID_PROTOCOL", + "apiSymbol": "ERR_INVALID_PROTOCOL", + "depth": 2, + "scope": "api", + "anchor": "err_invalid_protocol", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:75e3a41fb34b", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_repl_eval_config`", + "signature": "`ERR_INVALID_REPL_EVAL_CONFIG`", + "label": "ERR_INVALID_REPL_EVAL_CONFIG", + "apiSymbol": "ERR_INVALID_REPL_EVAL_CONFIG", + "depth": 2, + "scope": "api", + "anchor": "err_invalid_repl_eval_config", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:b663c591c992", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_repl_input`", + "signature": "`ERR_INVALID_REPL_INPUT`", + "label": "ERR_INVALID_REPL_INPUT", + "apiSymbol": "ERR_INVALID_REPL_INPUT", + "depth": 2, + "scope": "api", + "anchor": "err_invalid_repl_input", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:653dc9b273c7", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_return_property`", + "signature": "`ERR_INVALID_RETURN_PROPERTY`", + "label": "ERR_INVALID_RETURN_PROPERTY", + "apiSymbol": "ERR_INVALID_RETURN_PROPERTY", + "depth": 2, + "scope": "api", + "anchor": "err_invalid_return_property", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:3bfa1fc8e81f", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_return_property_value`", + "signature": "`ERR_INVALID_RETURN_PROPERTY_VALUE`", + "label": "ERR_INVALID_RETURN_PROPERTY_VALUE", + "apiSymbol": "ERR_INVALID_RETURN_PROPERTY_VALUE", + "depth": 2, + "scope": "api", + "anchor": "err_invalid_return_property_value", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:375a4ca77b0e", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_return_value`", + "signature": "`ERR_INVALID_RETURN_VALUE`", + "label": "ERR_INVALID_RETURN_VALUE", + "apiSymbol": "ERR_INVALID_RETURN_VALUE", + "depth": 2, + "scope": "api", + "anchor": "err_invalid_return_value", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:e4be3ac49c4b", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_state`", + "signature": "`ERR_INVALID_STATE`", + "label": "ERR_INVALID_STATE", + "apiSymbol": "ERR_INVALID_STATE", + "depth": 2, + "scope": "api", + "anchor": "err_invalid_state", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:09c35593d92e", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_sync_fork_input`", + "signature": "`ERR_INVALID_SYNC_FORK_INPUT`", + "label": "ERR_INVALID_SYNC_FORK_INPUT", + "apiSymbol": "ERR_INVALID_SYNC_FORK_INPUT", + "depth": 2, + "scope": "api", + "anchor": "err_invalid_sync_fork_input", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:2a3808fea063", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_this`", + "signature": "`ERR_INVALID_THIS`", + "label": "ERR_INVALID_THIS", + "apiSymbol": "ERR_INVALID_THIS", + "depth": 2, + "scope": "api", + "anchor": "err_invalid_this", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:b24b3b5e4c56", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_tuple`", + "signature": "`ERR_INVALID_TUPLE`", + "label": "ERR_INVALID_TUPLE", + "apiSymbol": "ERR_INVALID_TUPLE", + "depth": 2, + "scope": "api", + "anchor": "err_invalid_tuple", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:6dc192ecfb0d", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_typescript_syntax`", + "signature": "`ERR_INVALID_TYPESCRIPT_SYNTAX`", + "label": "ERR_INVALID_TYPESCRIPT_SYNTAX", + "apiSymbol": "ERR_INVALID_TYPESCRIPT_SYNTAX", + "depth": 2, + "scope": "api", + "anchor": "err_invalid_typescript_syntax", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:f9abbf482424", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_uri`", + "signature": "`ERR_INVALID_URI`", + "label": "ERR_INVALID_URI", + "apiSymbol": "ERR_INVALID_URI", + "depth": 2, + "scope": "api", + "anchor": "err_invalid_uri", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:92f25e7991fc", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_url`", + "signature": "`ERR_INVALID_URL`", + "label": "ERR_INVALID_URL", + "apiSymbol": "ERR_INVALID_URL", + "depth": 2, + "scope": "api", + "anchor": "err_invalid_url", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:b69c245cb7c8", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_url_pattern`", + "signature": "`ERR_INVALID_URL_PATTERN`", + "label": "ERR_INVALID_URL_PATTERN", + "apiSymbol": "ERR_INVALID_URL_PATTERN", + "depth": 2, + "scope": "api", + "anchor": "err_invalid_url_pattern", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:76b7cd91c307", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_url_scheme`", + "signature": "`ERR_INVALID_URL_SCHEME`", + "label": "ERR_INVALID_URL_SCHEME", + "apiSymbol": "ERR_INVALID_URL_SCHEME", + "depth": 2, + "scope": "api", + "anchor": "err_invalid_url_scheme", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:d5d87ccd1dfc", + "chapter": "errors", + "kind": "module", + "name": "`err_ipc_channel_closed`", + "signature": "`ERR_IPC_CHANNEL_CLOSED`", + "label": "ERR_IPC_CHANNEL_CLOSED", + "apiSymbol": "ERR_IPC_CHANNEL_CLOSED", + "depth": 2, + "scope": "api", + "anchor": "err_ipc_channel_closed", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:4971255ca18b", + "chapter": "errors", + "kind": "module", + "name": "`err_ipc_disconnected`", + "signature": "`ERR_IPC_DISCONNECTED`", + "label": "ERR_IPC_DISCONNECTED", + "apiSymbol": "ERR_IPC_DISCONNECTED", + "depth": 2, + "scope": "api", + "anchor": "err_ipc_disconnected", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:9fd1f6a22380", + "chapter": "errors", + "kind": "module", + "name": "`err_ipc_one_pipe`", + "signature": "`ERR_IPC_ONE_PIPE`", + "label": "ERR_IPC_ONE_PIPE", + "apiSymbol": "ERR_IPC_ONE_PIPE", + "depth": 2, + "scope": "api", + "anchor": "err_ipc_one_pipe", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:ec9eacaf44bb", + "chapter": "errors", + "kind": "module", + "name": "`err_ipc_sync_fork`", + "signature": "`ERR_IPC_SYNC_FORK`", + "label": "ERR_IPC_SYNC_FORK", + "apiSymbol": "ERR_IPC_SYNC_FORK", + "depth": 2, + "scope": "api", + "anchor": "err_ipc_sync_fork", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:b94438c2e664", + "chapter": "errors", + "kind": "module", + "name": "`err_ip_blocked`", + "signature": "`ERR_IP_BLOCKED`", + "label": "ERR_IP_BLOCKED", + "apiSymbol": "ERR_IP_BLOCKED", + "depth": 2, + "scope": "api", + "anchor": "err_ip_blocked", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:bc06954a62f1", + "chapter": "errors", + "kind": "module", + "name": "`err_loader_chain_incomplete`", + "signature": "`ERR_LOADER_CHAIN_INCOMPLETE`", + "label": "ERR_LOADER_CHAIN_INCOMPLETE", + "apiSymbol": "ERR_LOADER_CHAIN_INCOMPLETE", + "depth": 2, + "scope": "api", + "anchor": "err_loader_chain_incomplete", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:0581aba04342", + "chapter": "errors", + "kind": "module", + "name": "`err_load_sqlite_extension`", + "signature": "`ERR_LOAD_SQLITE_EXTENSION`", + "label": "ERR_LOAD_SQLITE_EXTENSION", + "apiSymbol": "ERR_LOAD_SQLITE_EXTENSION", + "depth": 2, + "scope": "api", + "anchor": "err_load_sqlite_extension", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:af17d53d2b2e", + "chapter": "errors", + "kind": "module", + "name": "`err_memory_allocation_failed`", + "signature": "`ERR_MEMORY_ALLOCATION_FAILED`", + "label": "ERR_MEMORY_ALLOCATION_FAILED", + "apiSymbol": "ERR_MEMORY_ALLOCATION_FAILED", + "depth": 2, + "scope": "api", + "anchor": "err_memory_allocation_failed", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:4b56da64b04a", + "chapter": "errors", + "kind": "module", + "name": "`err_message_target_context_unavailable`", + "signature": "`ERR_MESSAGE_TARGET_CONTEXT_UNAVAILABLE`", + "label": "ERR_MESSAGE_TARGET_CONTEXT_UNAVAILABLE", + "apiSymbol": "ERR_MESSAGE_TARGET_CONTEXT_UNAVAILABLE", + "depth": 2, + "scope": "api", + "anchor": "err_message_target_context_unavailable", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:de7e518366d4", + "chapter": "errors", + "kind": "module", + "name": "`err_method_not_implemented`", + "signature": "`ERR_METHOD_NOT_IMPLEMENTED`", + "label": "ERR_METHOD_NOT_IMPLEMENTED", + "apiSymbol": "ERR_METHOD_NOT_IMPLEMENTED", + "depth": 2, + "scope": "api", + "anchor": "err_method_not_implemented", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:dfcc128d38c7", + "chapter": "errors", + "kind": "module", + "name": "`err_missing_args`", + "signature": "`ERR_MISSING_ARGS`", + "label": "ERR_MISSING_ARGS", + "apiSymbol": "ERR_MISSING_ARGS", + "depth": 2, + "scope": "api", + "anchor": "err_missing_args", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:313e71dcfe5c", + "chapter": "errors", + "kind": "module", + "name": "`err_missing_option`", + "signature": "`ERR_MISSING_OPTION`", + "label": "ERR_MISSING_OPTION", + "apiSymbol": "ERR_MISSING_OPTION", + "depth": 2, + "scope": "api", + "anchor": "err_missing_option", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:d06f21bcd9cc", + "chapter": "errors", + "kind": "module", + "name": "`err_missing_passphrase`", + "signature": "`ERR_MISSING_PASSPHRASE`", + "label": "ERR_MISSING_PASSPHRASE", + "apiSymbol": "ERR_MISSING_PASSPHRASE", + "depth": 2, + "scope": "api", + "anchor": "err_missing_passphrase", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:e78d70175dea", + "chapter": "errors", + "kind": "module", + "name": "`err_missing_platform_for_worker`", + "signature": "`ERR_MISSING_PLATFORM_FOR_WORKER`", + "label": "ERR_MISSING_PLATFORM_FOR_WORKER", + "apiSymbol": "ERR_MISSING_PLATFORM_FOR_WORKER", + "depth": 2, + "scope": "api", + "anchor": "err_missing_platform_for_worker", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:063e585c6b1d", + "chapter": "errors", + "kind": "module", + "name": "`err_module_link_mismatch`", + "signature": "`ERR_MODULE_LINK_MISMATCH`", + "label": "ERR_MODULE_LINK_MISMATCH", + "apiSymbol": "ERR_MODULE_LINK_MISMATCH", + "depth": 2, + "scope": "api", + "anchor": "err_module_link_mismatch", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:485c3b061474", + "chapter": "errors", + "kind": "module", + "name": "`err_module_not_found`", + "signature": "`ERR_MODULE_NOT_FOUND`", + "label": "ERR_MODULE_NOT_FOUND", + "apiSymbol": "ERR_MODULE_NOT_FOUND", + "depth": 2, + "scope": "api", + "anchor": "err_module_not_found", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:6e9bc14ac5af", + "chapter": "errors", + "kind": "module", + "name": "`err_multiple_callback`", + "signature": "`ERR_MULTIPLE_CALLBACK`", + "label": "ERR_MULTIPLE_CALLBACK", + "apiSymbol": "ERR_MULTIPLE_CALLBACK", + "depth": 2, + "scope": "api", + "anchor": "err_multiple_callback", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:c2dc7c56f4c0", + "chapter": "errors", + "kind": "module", + "name": "`err_napi_cons_function`", + "signature": "`ERR_NAPI_CONS_FUNCTION`", + "label": "ERR_NAPI_CONS_FUNCTION", + "apiSymbol": "ERR_NAPI_CONS_FUNCTION", + "depth": 2, + "scope": "api", + "anchor": "err_napi_cons_function", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:53aff93d7d88", + "chapter": "errors", + "kind": "module", + "name": "`err_napi_invalid_dataview_args`", + "signature": "`ERR_NAPI_INVALID_DATAVIEW_ARGS`", + "label": "ERR_NAPI_INVALID_DATAVIEW_ARGS", + "apiSymbol": "ERR_NAPI_INVALID_DATAVIEW_ARGS", + "depth": 2, + "scope": "api", + "anchor": "err_napi_invalid_dataview_args", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:94defbce2694", + "chapter": "errors", + "kind": "module", + "name": "`err_napi_invalid_typedarray_alignment`", + "signature": "`ERR_NAPI_INVALID_TYPEDARRAY_ALIGNMENT`", + "label": "ERR_NAPI_INVALID_TYPEDARRAY_ALIGNMENT", + "apiSymbol": "ERR_NAPI_INVALID_TYPEDARRAY_ALIGNMENT", + "depth": 2, + "scope": "api", + "anchor": "err_napi_invalid_typedarray_alignment", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:f8051e00f147", + "chapter": "errors", + "kind": "module", + "name": "`err_napi_invalid_typedarray_length`", + "signature": "`ERR_NAPI_INVALID_TYPEDARRAY_LENGTH`", + "label": "ERR_NAPI_INVALID_TYPEDARRAY_LENGTH", + "apiSymbol": "ERR_NAPI_INVALID_TYPEDARRAY_LENGTH", + "depth": 2, + "scope": "api", + "anchor": "err_napi_invalid_typedarray_length", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:275169be88f4", + "chapter": "errors", + "kind": "module", + "name": "`err_napi_tsfn_call_js`", + "signature": "`ERR_NAPI_TSFN_CALL_JS`", + "label": "ERR_NAPI_TSFN_CALL_JS", + "apiSymbol": "ERR_NAPI_TSFN_CALL_JS", + "depth": 2, + "scope": "api", + "anchor": "err_napi_tsfn_call_js", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:b14df51bc8d4", + "chapter": "errors", + "kind": "module", + "name": "`err_napi_tsfn_get_undefined`", + "signature": "`ERR_NAPI_TSFN_GET_UNDEFINED`", + "label": "ERR_NAPI_TSFN_GET_UNDEFINED", + "apiSymbol": "ERR_NAPI_TSFN_GET_UNDEFINED", + "depth": 2, + "scope": "api", + "anchor": "err_napi_tsfn_get_undefined", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:7f7a9439872d", + "chapter": "errors", + "kind": "module", + "name": "`err_non_context_aware_disabled`", + "signature": "`ERR_NON_CONTEXT_AWARE_DISABLED`", + "label": "ERR_NON_CONTEXT_AWARE_DISABLED", + "apiSymbol": "ERR_NON_CONTEXT_AWARE_DISABLED", + "depth": 2, + "scope": "api", + "anchor": "err_non_context_aware_disabled", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:fa53c0c34106", + "chapter": "errors", + "kind": "module", + "name": "`err_not_building_snapshot`", + "signature": "`ERR_NOT_BUILDING_SNAPSHOT`", + "label": "ERR_NOT_BUILDING_SNAPSHOT", + "apiSymbol": "ERR_NOT_BUILDING_SNAPSHOT", + "depth": 2, + "scope": "api", + "anchor": "err_not_building_snapshot", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:2e2f1782dc4b", + "chapter": "errors", + "kind": "module", + "name": "`err_not_in_single_executable_application`", + "signature": "`ERR_NOT_IN_SINGLE_EXECUTABLE_APPLICATION`", + "label": "ERR_NOT_IN_SINGLE_EXECUTABLE_APPLICATION", + "apiSymbol": "ERR_NOT_IN_SINGLE_EXECUTABLE_APPLICATION", + "depth": 2, + "scope": "api", + "anchor": "err_not_in_single_executable_application", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:bc59ef481c10", + "chapter": "errors", + "kind": "module", + "name": "`err_not_supported_in_snapshot`", + "signature": "`ERR_NOT_SUPPORTED_IN_SNAPSHOT`", + "label": "ERR_NOT_SUPPORTED_IN_SNAPSHOT", + "apiSymbol": "ERR_NOT_SUPPORTED_IN_SNAPSHOT", + "depth": 2, + "scope": "api", + "anchor": "err_not_supported_in_snapshot", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:b3c2351d41a5", + "chapter": "errors", + "kind": "module", + "name": "`err_no_crypto`", + "signature": "`ERR_NO_CRYPTO`", + "label": "ERR_NO_CRYPTO", + "apiSymbol": "ERR_NO_CRYPTO", + "depth": 2, + "scope": "api", + "anchor": "err_no_crypto", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:cae28646b828", + "chapter": "errors", + "kind": "module", + "name": "`err_no_icu`", + "signature": "`ERR_NO_ICU`", + "label": "ERR_NO_ICU", + "apiSymbol": "ERR_NO_ICU", + "depth": 2, + "scope": "api", + "anchor": "err_no_icu", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:2a21cdce7923", + "chapter": "errors", + "kind": "module", + "name": "`err_no_typescript`", + "signature": "`ERR_NO_TYPESCRIPT`", + "label": "ERR_NO_TYPESCRIPT", + "apiSymbol": "ERR_NO_TYPESCRIPT", + "depth": 2, + "scope": "api", + "anchor": "err_no_typescript", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:f8b8628fb9ee", + "chapter": "errors", + "kind": "module", + "name": "`err_operation_failed`", + "signature": "`ERR_OPERATION_FAILED`", + "label": "ERR_OPERATION_FAILED", + "apiSymbol": "ERR_OPERATION_FAILED", + "depth": 2, + "scope": "api", + "anchor": "err_operation_failed", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:622cef05a25b", + "chapter": "errors", + "kind": "module", + "name": "`err_options_before_bootstrapping`", + "signature": "`ERR_OPTIONS_BEFORE_BOOTSTRAPPING`", + "label": "ERR_OPTIONS_BEFORE_BOOTSTRAPPING", + "apiSymbol": "ERR_OPTIONS_BEFORE_BOOTSTRAPPING", + "depth": 2, + "scope": "api", + "anchor": "err_options_before_bootstrapping", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:c7af89c248a0", + "chapter": "errors", + "kind": "module", + "name": "`err_out_of_range`", + "signature": "`ERR_OUT_OF_RANGE`", + "label": "ERR_OUT_OF_RANGE", + "apiSymbol": "ERR_OUT_OF_RANGE", + "depth": 2, + "scope": "api", + "anchor": "err_out_of_range", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:520ffb827726", + "chapter": "errors", + "kind": "module", + "name": "`err_package_import_not_defined`", + "signature": "`ERR_PACKAGE_IMPORT_NOT_DEFINED`", + "label": "ERR_PACKAGE_IMPORT_NOT_DEFINED", + "apiSymbol": "ERR_PACKAGE_IMPORT_NOT_DEFINED", + "depth": 2, + "scope": "api", + "anchor": "err_package_import_not_defined", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:9a703bb883e6", + "chapter": "errors", + "kind": "module", + "name": "`err_package_path_not_exported`", + "signature": "`ERR_PACKAGE_PATH_NOT_EXPORTED`", + "label": "ERR_PACKAGE_PATH_NOT_EXPORTED", + "apiSymbol": "ERR_PACKAGE_PATH_NOT_EXPORTED", + "depth": 2, + "scope": "api", + "anchor": "err_package_path_not_exported", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:68e78368d1ac", + "chapter": "errors", + "kind": "module", + "name": "`err_parse_args_invalid_option_value`", + "signature": "`ERR_PARSE_ARGS_INVALID_OPTION_VALUE`", + "label": "ERR_PARSE_ARGS_INVALID_OPTION_VALUE", + "apiSymbol": "ERR_PARSE_ARGS_INVALID_OPTION_VALUE", + "depth": 2, + "scope": "api", + "anchor": "err_parse_args_invalid_option_value", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:b6cf473b4bc8", + "chapter": "errors", + "kind": "module", + "name": "`err_parse_args_unexpected_positional`", + "signature": "`ERR_PARSE_ARGS_UNEXPECTED_POSITIONAL`", + "label": "ERR_PARSE_ARGS_UNEXPECTED_POSITIONAL", + "apiSymbol": "ERR_PARSE_ARGS_UNEXPECTED_POSITIONAL", + "depth": 2, + "scope": "api", + "anchor": "err_parse_args_unexpected_positional", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:0a551099584b", + "chapter": "errors", + "kind": "module", + "name": "`err_parse_args_unknown_option`", + "signature": "`ERR_PARSE_ARGS_UNKNOWN_OPTION`", + "label": "ERR_PARSE_ARGS_UNKNOWN_OPTION", + "apiSymbol": "ERR_PARSE_ARGS_UNKNOWN_OPTION", + "depth": 2, + "scope": "api", + "anchor": "err_parse_args_unknown_option", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:05c96c0d54cf", + "chapter": "errors", + "kind": "module", + "name": "`err_performance_invalid_timestamp`", + "signature": "`ERR_PERFORMANCE_INVALID_TIMESTAMP`", + "label": "ERR_PERFORMANCE_INVALID_TIMESTAMP", + "apiSymbol": "ERR_PERFORMANCE_INVALID_TIMESTAMP", + "depth": 2, + "scope": "api", + "anchor": "err_performance_invalid_timestamp", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:8172446365db", + "chapter": "errors", + "kind": "module", + "name": "`err_performance_measure_invalid_options`", + "signature": "`ERR_PERFORMANCE_MEASURE_INVALID_OPTIONS`", + "label": "ERR_PERFORMANCE_MEASURE_INVALID_OPTIONS", + "apiSymbol": "ERR_PERFORMANCE_MEASURE_INVALID_OPTIONS", + "depth": 2, + "scope": "api", + "anchor": "err_performance_measure_invalid_options", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:d321b9e932ef", + "chapter": "errors", + "kind": "module", + "name": "`err_proto_access`", + "signature": "`ERR_PROTO_ACCESS`", + "label": "ERR_PROTO_ACCESS", + "apiSymbol": "ERR_PROTO_ACCESS", + "depth": 2, + "scope": "api", + "anchor": "err_proto_access", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:c0f95633ca00", + "chapter": "errors", + "kind": "module", + "name": "`err_proxy_invalid_config`", + "signature": "`ERR_PROXY_INVALID_CONFIG`", + "label": "ERR_PROXY_INVALID_CONFIG", + "apiSymbol": "ERR_PROXY_INVALID_CONFIG", + "depth": 2, + "scope": "api", + "anchor": "err_proxy_invalid_config", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:914c14a158a4", + "chapter": "errors", + "kind": "module", + "name": "`err_proxy_tunnel`", + "signature": "`ERR_PROXY_TUNNEL`", + "label": "ERR_PROXY_TUNNEL", + "apiSymbol": "ERR_PROXY_TUNNEL", + "depth": 2, + "scope": "api", + "anchor": "err_proxy_tunnel", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:99ded9f60d07", + "chapter": "errors", + "kind": "module", + "name": "`err_quic_application_error`", + "signature": "`ERR_QUIC_APPLICATION_ERROR`", + "label": "ERR_QUIC_APPLICATION_ERROR", + "apiSymbol": "ERR_QUIC_APPLICATION_ERROR", + "depth": 2, + "scope": "api", + "anchor": "err_quic_application_error", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:8dab3930d180", + "chapter": "errors", + "kind": "module", + "name": "`err_quic_connection_failed`", + "signature": "`ERR_QUIC_CONNECTION_FAILED`", + "label": "ERR_QUIC_CONNECTION_FAILED", + "apiSymbol": "ERR_QUIC_CONNECTION_FAILED", + "depth": 2, + "scope": "api", + "anchor": "err_quic_connection_failed", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:a6832d79a601", + "chapter": "errors", + "kind": "module", + "name": "`err_quic_endpoint_closed`", + "signature": "`ERR_QUIC_ENDPOINT_CLOSED`", + "label": "ERR_QUIC_ENDPOINT_CLOSED", + "apiSymbol": "ERR_QUIC_ENDPOINT_CLOSED", + "depth": 2, + "scope": "api", + "anchor": "err_quic_endpoint_closed", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:9b3a144c5163", + "chapter": "errors", + "kind": "module", + "name": "`err_quic_open_stream_failed`", + "signature": "`ERR_QUIC_OPEN_STREAM_FAILED`", + "label": "ERR_QUIC_OPEN_STREAM_FAILED", + "apiSymbol": "ERR_QUIC_OPEN_STREAM_FAILED", + "depth": 2, + "scope": "api", + "anchor": "err_quic_open_stream_failed", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:266e07dc7ced", + "chapter": "errors", + "kind": "module", + "name": "`err_quic_transport_error`", + "signature": "`ERR_QUIC_TRANSPORT_ERROR`", + "label": "ERR_QUIC_TRANSPORT_ERROR", + "apiSymbol": "ERR_QUIC_TRANSPORT_ERROR", + "depth": 2, + "scope": "api", + "anchor": "err_quic_transport_error", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:a7a688eeb772", + "chapter": "errors", + "kind": "module", + "name": "`err_quic_version_negotiation_error`", + "signature": "`ERR_QUIC_VERSION_NEGOTIATION_ERROR`", + "label": "ERR_QUIC_VERSION_NEGOTIATION_ERROR", + "apiSymbol": "ERR_QUIC_VERSION_NEGOTIATION_ERROR", + "depth": 2, + "scope": "api", + "anchor": "err_quic_version_negotiation_error", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:841aa674a5cf", + "chapter": "errors", + "kind": "module", + "name": "`err_require_async_module`", + "signature": "`ERR_REQUIRE_ASYNC_MODULE`", + "label": "ERR_REQUIRE_ASYNC_MODULE", + "apiSymbol": "ERR_REQUIRE_ASYNC_MODULE", + "depth": 2, + "scope": "api", + "anchor": "err_require_async_module", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:4c111078d4e6", + "chapter": "errors", + "kind": "module", + "name": "`err_require_cycle_module`", + "signature": "`ERR_REQUIRE_CYCLE_MODULE`", + "label": "ERR_REQUIRE_CYCLE_MODULE", + "apiSymbol": "ERR_REQUIRE_CYCLE_MODULE", + "depth": 2, + "scope": "api", + "anchor": "err_require_cycle_module", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:40fd8c39f28b", + "chapter": "errors", + "kind": "module", + "name": "`err_require_esm`", + "signature": "`ERR_REQUIRE_ESM`", + "label": "ERR_REQUIRE_ESM", + "apiSymbol": "ERR_REQUIRE_ESM", + "depth": 2, + "scope": "api", + "anchor": "err_require_esm", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:50007aab8780", + "chapter": "errors", + "kind": "module", + "name": "`err_script_execution_interrupted`", + "signature": "`ERR_SCRIPT_EXECUTION_INTERRUPTED`", + "label": "ERR_SCRIPT_EXECUTION_INTERRUPTED", + "apiSymbol": "ERR_SCRIPT_EXECUTION_INTERRUPTED", + "depth": 2, + "scope": "api", + "anchor": "err_script_execution_interrupted", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:d21ae4c4d6b4", + "chapter": "errors", + "kind": "module", + "name": "`err_script_execution_timeout`", + "signature": "`ERR_SCRIPT_EXECUTION_TIMEOUT`", + "label": "ERR_SCRIPT_EXECUTION_TIMEOUT", + "apiSymbol": "ERR_SCRIPT_EXECUTION_TIMEOUT", + "depth": 2, + "scope": "api", + "anchor": "err_script_execution_timeout", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:c25c0680648b", + "chapter": "errors", + "kind": "module", + "name": "`err_server_already_listen`", + "signature": "`ERR_SERVER_ALREADY_LISTEN`", + "label": "ERR_SERVER_ALREADY_LISTEN", + "apiSymbol": "ERR_SERVER_ALREADY_LISTEN", + "depth": 2, + "scope": "api", + "anchor": "err_server_already_listen", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:b8a24ea91421", + "chapter": "errors", + "kind": "module", + "name": "`err_server_not_running`", + "signature": "`ERR_SERVER_NOT_RUNNING`", + "label": "ERR_SERVER_NOT_RUNNING", + "apiSymbol": "ERR_SERVER_NOT_RUNNING", + "depth": 2, + "scope": "api", + "anchor": "err_server_not_running", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:8ceeb2ed91b0", + "chapter": "errors", + "kind": "module", + "name": "`err_single_executable_application_asset_not_found`", + "signature": "`ERR_SINGLE_EXECUTABLE_APPLICATION_ASSET_NOT_FOUND`", + "label": "ERR_SINGLE_EXECUTABLE_APPLICATION_ASSET_NOT_FOUND", + "apiSymbol": "ERR_SINGLE_EXECUTABLE_APPLICATION_ASSET_NOT_FOUND", + "depth": 2, + "scope": "api", + "anchor": "err_single_executable_application_asset_not_found", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:a865f041bb7c", + "chapter": "errors", + "kind": "module", + "name": "`err_socket_already_bound`", + "signature": "`ERR_SOCKET_ALREADY_BOUND`", + "label": "ERR_SOCKET_ALREADY_BOUND", + "apiSymbol": "ERR_SOCKET_ALREADY_BOUND", + "depth": 2, + "scope": "api", + "anchor": "err_socket_already_bound", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:83b2c6cf5b3f", + "chapter": "errors", + "kind": "module", + "name": "`err_socket_bad_buffer_size`", + "signature": "`ERR_SOCKET_BAD_BUFFER_SIZE`", + "label": "ERR_SOCKET_BAD_BUFFER_SIZE", + "apiSymbol": "ERR_SOCKET_BAD_BUFFER_SIZE", + "depth": 2, + "scope": "api", + "anchor": "err_socket_bad_buffer_size", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:8cfa222edffd", + "chapter": "errors", + "kind": "module", + "name": "`err_socket_bad_port`", + "signature": "`ERR_SOCKET_BAD_PORT`", + "label": "ERR_SOCKET_BAD_PORT", + "apiSymbol": "ERR_SOCKET_BAD_PORT", + "depth": 2, + "scope": "api", + "anchor": "err_socket_bad_port", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:d32e72f67ef4", + "chapter": "errors", + "kind": "module", + "name": "`err_socket_bad_type`", + "signature": "`ERR_SOCKET_BAD_TYPE`", + "label": "ERR_SOCKET_BAD_TYPE", + "apiSymbol": "ERR_SOCKET_BAD_TYPE", + "depth": 2, + "scope": "api", + "anchor": "err_socket_bad_type", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:53979642f967", + "chapter": "errors", + "kind": "module", + "name": "`err_socket_buffer_size`", + "signature": "`ERR_SOCKET_BUFFER_SIZE`", + "label": "ERR_SOCKET_BUFFER_SIZE", + "apiSymbol": "ERR_SOCKET_BUFFER_SIZE", + "depth": 2, + "scope": "api", + "anchor": "err_socket_buffer_size", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:c0185664eebe", + "chapter": "errors", + "kind": "module", + "name": "`err_socket_closed`", + "signature": "`ERR_SOCKET_CLOSED`", + "label": "ERR_SOCKET_CLOSED", + "apiSymbol": "ERR_SOCKET_CLOSED", + "depth": 2, + "scope": "api", + "anchor": "err_socket_closed", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:8b292afa66e0", + "chapter": "errors", + "kind": "module", + "name": "`err_socket_closed_before_connection`", + "signature": "`ERR_SOCKET_CLOSED_BEFORE_CONNECTION`", + "label": "ERR_SOCKET_CLOSED_BEFORE_CONNECTION", + "apiSymbol": "ERR_SOCKET_CLOSED_BEFORE_CONNECTION", + "depth": 2, + "scope": "api", + "anchor": "err_socket_closed_before_connection", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:34d53c146e1f", + "chapter": "errors", + "kind": "module", + "name": "`err_socket_connection_timeout`", + "signature": "`ERR_SOCKET_CONNECTION_TIMEOUT`", + "label": "ERR_SOCKET_CONNECTION_TIMEOUT", + "apiSymbol": "ERR_SOCKET_CONNECTION_TIMEOUT", + "depth": 2, + "scope": "api", + "anchor": "err_socket_connection_timeout", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:3406f55a37c2", + "chapter": "errors", + "kind": "module", + "name": "`err_socket_dgram_is_connected`", + "signature": "`ERR_SOCKET_DGRAM_IS_CONNECTED`", + "label": "ERR_SOCKET_DGRAM_IS_CONNECTED", + "apiSymbol": "ERR_SOCKET_DGRAM_IS_CONNECTED", + "depth": 2, + "scope": "api", + "anchor": "err_socket_dgram_is_connected", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:c1e7ba9f66af", + "chapter": "errors", + "kind": "module", + "name": "`err_socket_dgram_not_connected`", + "signature": "`ERR_SOCKET_DGRAM_NOT_CONNECTED`", + "label": "ERR_SOCKET_DGRAM_NOT_CONNECTED", + "apiSymbol": "ERR_SOCKET_DGRAM_NOT_CONNECTED", + "depth": 2, + "scope": "api", + "anchor": "err_socket_dgram_not_connected", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:d117e91a9526", + "chapter": "errors", + "kind": "module", + "name": "`err_socket_dgram_not_running`", + "signature": "`ERR_SOCKET_DGRAM_NOT_RUNNING`", + "label": "ERR_SOCKET_DGRAM_NOT_RUNNING", + "apiSymbol": "ERR_SOCKET_DGRAM_NOT_RUNNING", + "depth": 2, + "scope": "api", + "anchor": "err_socket_dgram_not_running", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:e1def23be437", + "chapter": "errors", + "kind": "module", + "name": "`err_source_map_corrupt`", + "signature": "`ERR_SOURCE_MAP_CORRUPT`", + "label": "ERR_SOURCE_MAP_CORRUPT", + "apiSymbol": "ERR_SOURCE_MAP_CORRUPT", + "depth": 2, + "scope": "api", + "anchor": "err_source_map_corrupt", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:2d37dafaac37", + "chapter": "errors", + "kind": "module", + "name": "`err_source_map_missing_source`", + "signature": "`ERR_SOURCE_MAP_MISSING_SOURCE`", + "label": "ERR_SOURCE_MAP_MISSING_SOURCE", + "apiSymbol": "ERR_SOURCE_MAP_MISSING_SOURCE", + "depth": 2, + "scope": "api", + "anchor": "err_source_map_missing_source", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:cc70603d1f39", + "chapter": "errors", + "kind": "module", + "name": "`err_source_phase_not_defined`", + "signature": "`ERR_SOURCE_PHASE_NOT_DEFINED`", + "label": "ERR_SOURCE_PHASE_NOT_DEFINED", + "apiSymbol": "ERR_SOURCE_PHASE_NOT_DEFINED", + "depth": 2, + "scope": "api", + "anchor": "err_source_phase_not_defined", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:4df0cee6f207", + "chapter": "errors", + "kind": "module", + "name": "`err_sqlite_error`", + "signature": "`ERR_SQLITE_ERROR`", + "label": "ERR_SQLITE_ERROR", + "apiSymbol": "ERR_SQLITE_ERROR", + "depth": 2, + "scope": "api", + "anchor": "err_sqlite_error", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:be361a517f6f", + "chapter": "errors", + "kind": "module", + "name": "`err_sri_parse`", + "signature": "`ERR_SRI_PARSE`", + "label": "ERR_SRI_PARSE", + "apiSymbol": "ERR_SRI_PARSE", + "depth": 2, + "scope": "api", + "anchor": "err_sri_parse", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:333336c0237e", + "chapter": "errors", + "kind": "module", + "name": "`err_stream_already_finished`", + "signature": "`ERR_STREAM_ALREADY_FINISHED`", + "label": "ERR_STREAM_ALREADY_FINISHED", + "apiSymbol": "ERR_STREAM_ALREADY_FINISHED", + "depth": 2, + "scope": "api", + "anchor": "err_stream_already_finished", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:b3cb594cb7f5", + "chapter": "errors", + "kind": "module", + "name": "`err_stream_cannot_pipe`", + "signature": "`ERR_STREAM_CANNOT_PIPE`", + "label": "ERR_STREAM_CANNOT_PIPE", + "apiSymbol": "ERR_STREAM_CANNOT_PIPE", + "depth": 2, + "scope": "api", + "anchor": "err_stream_cannot_pipe", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:7b855ad7e3a0", + "chapter": "errors", + "kind": "module", + "name": "`err_stream_destroyed`", + "signature": "`ERR_STREAM_DESTROYED`", + "label": "ERR_STREAM_DESTROYED", + "apiSymbol": "ERR_STREAM_DESTROYED", + "depth": 2, + "scope": "api", + "anchor": "err_stream_destroyed", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:b69c141eb822", + "chapter": "errors", + "kind": "module", + "name": "`err_stream_null_values`", + "signature": "`ERR_STREAM_NULL_VALUES`", + "label": "ERR_STREAM_NULL_VALUES", + "apiSymbol": "ERR_STREAM_NULL_VALUES", + "depth": 2, + "scope": "api", + "anchor": "err_stream_null_values", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:8e3956acad04", + "chapter": "errors", + "kind": "module", + "name": "`err_stream_premature_close`", + "signature": "`ERR_STREAM_PREMATURE_CLOSE`", + "label": "ERR_STREAM_PREMATURE_CLOSE", + "apiSymbol": "ERR_STREAM_PREMATURE_CLOSE", + "depth": 2, + "scope": "api", + "anchor": "err_stream_premature_close", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:8fb70188d840", + "chapter": "errors", + "kind": "module", + "name": "`err_stream_push_after_eof`", + "signature": "`ERR_STREAM_PUSH_AFTER_EOF`", + "label": "ERR_STREAM_PUSH_AFTER_EOF", + "apiSymbol": "ERR_STREAM_PUSH_AFTER_EOF", + "depth": 2, + "scope": "api", + "anchor": "err_stream_push_after_eof", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:9478c6541e79", + "chapter": "errors", + "kind": "module", + "name": "`err_stream_unable_to_pipe`", + "signature": "`ERR_STREAM_UNABLE_TO_PIPE`", + "label": "ERR_STREAM_UNABLE_TO_PIPE", + "apiSymbol": "ERR_STREAM_UNABLE_TO_PIPE", + "depth": 2, + "scope": "api", + "anchor": "err_stream_unable_to_pipe", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:7ef9ee9da146", + "chapter": "errors", + "kind": "module", + "name": "`err_stream_unshift_after_end_event`", + "signature": "`ERR_STREAM_UNSHIFT_AFTER_END_EVENT`", + "label": "ERR_STREAM_UNSHIFT_AFTER_END_EVENT", + "apiSymbol": "ERR_STREAM_UNSHIFT_AFTER_END_EVENT", + "depth": 2, + "scope": "api", + "anchor": "err_stream_unshift_after_end_event", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:cc497df672f0", + "chapter": "errors", + "kind": "module", + "name": "`err_stream_wrap`", + "signature": "`ERR_STREAM_WRAP`", + "label": "ERR_STREAM_WRAP", + "apiSymbol": "ERR_STREAM_WRAP", + "depth": 2, + "scope": "api", + "anchor": "err_stream_wrap", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:eaf7a9b7ed04", + "chapter": "errors", + "kind": "module", + "name": "`err_stream_write_after_end`", + "signature": "`ERR_STREAM_WRITE_AFTER_END`", + "label": "ERR_STREAM_WRITE_AFTER_END", + "apiSymbol": "ERR_STREAM_WRITE_AFTER_END", + "depth": 2, + "scope": "api", + "anchor": "err_stream_write_after_end", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:3e8e239722af", + "chapter": "errors", + "kind": "module", + "name": "`err_string_too_long`", + "signature": "`ERR_STRING_TOO_LONG`", + "label": "ERR_STRING_TOO_LONG", + "apiSymbol": "ERR_STRING_TOO_LONG", + "depth": 2, + "scope": "api", + "anchor": "err_string_too_long", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:76b4074e4b93", + "chapter": "errors", + "kind": "module", + "name": "`err_synthetic`", + "signature": "`ERR_SYNTHETIC`", + "label": "ERR_SYNTHETIC", + "apiSymbol": "ERR_SYNTHETIC", + "depth": 2, + "scope": "api", + "anchor": "err_synthetic", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:8a0da2712905", + "chapter": "errors", + "kind": "module", + "name": "`err_system_error`", + "signature": "`ERR_SYSTEM_ERROR`", + "label": "ERR_SYSTEM_ERROR", + "apiSymbol": "ERR_SYSTEM_ERROR", + "depth": 2, + "scope": "api", + "anchor": "err_system_error", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:792502de328b", + "chapter": "errors", + "kind": "module", + "name": "`err_test_failure`", + "signature": "`ERR_TEST_FAILURE`", + "label": "ERR_TEST_FAILURE", + "apiSymbol": "ERR_TEST_FAILURE", + "depth": 2, + "scope": "api", + "anchor": "err_test_failure", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:9b1bacff6b37", + "chapter": "errors", + "kind": "module", + "name": "`err_tls_alpn_callback_invalid_result`", + "signature": "`ERR_TLS_ALPN_CALLBACK_INVALID_RESULT`", + "label": "ERR_TLS_ALPN_CALLBACK_INVALID_RESULT", + "apiSymbol": "ERR_TLS_ALPN_CALLBACK_INVALID_RESULT", + "depth": 2, + "scope": "api", + "anchor": "err_tls_alpn_callback_invalid_result", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:25e1c176c943", + "chapter": "errors", + "kind": "module", + "name": "`err_tls_alpn_callback_with_protocols`", + "signature": "`ERR_TLS_ALPN_CALLBACK_WITH_PROTOCOLS`", + "label": "ERR_TLS_ALPN_CALLBACK_WITH_PROTOCOLS", + "apiSymbol": "ERR_TLS_ALPN_CALLBACK_WITH_PROTOCOLS", + "depth": 2, + "scope": "api", + "anchor": "err_tls_alpn_callback_with_protocols", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:d52b3150fe25", + "chapter": "errors", + "kind": "module", + "name": "`err_tls_cert_altname_format`", + "signature": "`ERR_TLS_CERT_ALTNAME_FORMAT`", + "label": "ERR_TLS_CERT_ALTNAME_FORMAT", + "apiSymbol": "ERR_TLS_CERT_ALTNAME_FORMAT", + "depth": 2, + "scope": "api", + "anchor": "err_tls_cert_altname_format", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:1ff2f1a68547", + "chapter": "errors", + "kind": "module", + "name": "`err_tls_cert_altname_invalid`", + "signature": "`ERR_TLS_CERT_ALTNAME_INVALID`", + "label": "ERR_TLS_CERT_ALTNAME_INVALID", + "apiSymbol": "ERR_TLS_CERT_ALTNAME_INVALID", + "depth": 2, + "scope": "api", + "anchor": "err_tls_cert_altname_invalid", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:9533c0ce8014", + "chapter": "errors", + "kind": "module", + "name": "`err_tls_dh_param_size`", + "signature": "`ERR_TLS_DH_PARAM_SIZE`", + "label": "ERR_TLS_DH_PARAM_SIZE", + "apiSymbol": "ERR_TLS_DH_PARAM_SIZE", + "depth": 2, + "scope": "api", + "anchor": "err_tls_dh_param_size", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:9165fa555354", + "chapter": "errors", + "kind": "module", + "name": "`err_tls_handshake_timeout`", + "signature": "`ERR_TLS_HANDSHAKE_TIMEOUT`", + "label": "ERR_TLS_HANDSHAKE_TIMEOUT", + "apiSymbol": "ERR_TLS_HANDSHAKE_TIMEOUT", + "depth": 2, + "scope": "api", + "anchor": "err_tls_handshake_timeout", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:6c1afc2f4664", + "chapter": "errors", + "kind": "module", + "name": "`err_tls_invalid_context`", + "signature": "`ERR_TLS_INVALID_CONTEXT`", + "label": "ERR_TLS_INVALID_CONTEXT", + "apiSymbol": "ERR_TLS_INVALID_CONTEXT", + "depth": 2, + "scope": "api", + "anchor": "err_tls_invalid_context", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:7b8835838db3", + "chapter": "errors", + "kind": "module", + "name": "`err_tls_invalid_protocol_method`", + "signature": "`ERR_TLS_INVALID_PROTOCOL_METHOD`", + "label": "ERR_TLS_INVALID_PROTOCOL_METHOD", + "apiSymbol": "ERR_TLS_INVALID_PROTOCOL_METHOD", + "depth": 2, + "scope": "api", + "anchor": "err_tls_invalid_protocol_method", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:881be3f296ef", + "chapter": "errors", + "kind": "module", + "name": "`err_tls_invalid_protocol_version`", + "signature": "`ERR_TLS_INVALID_PROTOCOL_VERSION`", + "label": "ERR_TLS_INVALID_PROTOCOL_VERSION", + "apiSymbol": "ERR_TLS_INVALID_PROTOCOL_VERSION", + "depth": 2, + "scope": "api", + "anchor": "err_tls_invalid_protocol_version", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:de0012d185d6", + "chapter": "errors", + "kind": "module", + "name": "`err_tls_invalid_state`", + "signature": "`ERR_TLS_INVALID_STATE`", + "label": "ERR_TLS_INVALID_STATE", + "apiSymbol": "ERR_TLS_INVALID_STATE", + "depth": 2, + "scope": "api", + "anchor": "err_tls_invalid_state", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:f8422050d68c", + "chapter": "errors", + "kind": "module", + "name": "`err_tls_protocol_version_conflict`", + "signature": "`ERR_TLS_PROTOCOL_VERSION_CONFLICT`", + "label": "ERR_TLS_PROTOCOL_VERSION_CONFLICT", + "apiSymbol": "ERR_TLS_PROTOCOL_VERSION_CONFLICT", + "depth": 2, + "scope": "api", + "anchor": "err_tls_protocol_version_conflict", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:07a8f37ce38e", + "chapter": "errors", + "kind": "module", + "name": "`err_tls_psk_set_identity_hint_failed`", + "signature": "`ERR_TLS_PSK_SET_IDENTITY_HINT_FAILED`", + "label": "ERR_TLS_PSK_SET_IDENTITY_HINT_FAILED", + "apiSymbol": "ERR_TLS_PSK_SET_IDENTITY_HINT_FAILED", + "depth": 2, + "scope": "api", + "anchor": "err_tls_psk_set_identity_hint_failed", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:408088d73814", + "chapter": "errors", + "kind": "module", + "name": "`err_tls_renegotiation_disabled`", + "signature": "`ERR_TLS_RENEGOTIATION_DISABLED`", + "label": "ERR_TLS_RENEGOTIATION_DISABLED", + "apiSymbol": "ERR_TLS_RENEGOTIATION_DISABLED", + "depth": 2, + "scope": "api", + "anchor": "err_tls_renegotiation_disabled", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:ebb5c98b76d6", + "chapter": "errors", + "kind": "module", + "name": "`err_tls_required_server_name`", + "signature": "`ERR_TLS_REQUIRED_SERVER_NAME`", + "label": "ERR_TLS_REQUIRED_SERVER_NAME", + "apiSymbol": "ERR_TLS_REQUIRED_SERVER_NAME", + "depth": 2, + "scope": "api", + "anchor": "err_tls_required_server_name", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:c17db8ddab2b", + "chapter": "errors", + "kind": "module", + "name": "`err_tls_session_attack`", + "signature": "`ERR_TLS_SESSION_ATTACK`", + "label": "ERR_TLS_SESSION_ATTACK", + "apiSymbol": "ERR_TLS_SESSION_ATTACK", + "depth": 2, + "scope": "api", + "anchor": "err_tls_session_attack", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:7f7a48296d51", + "chapter": "errors", + "kind": "module", + "name": "`err_tls_sni_from_server`", + "signature": "`ERR_TLS_SNI_FROM_SERVER`", + "label": "ERR_TLS_SNI_FROM_SERVER", + "apiSymbol": "ERR_TLS_SNI_FROM_SERVER", + "depth": 2, + "scope": "api", + "anchor": "err_tls_sni_from_server", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:f577301878e6", + "chapter": "errors", + "kind": "module", + "name": "`err_trace_events_category_required`", + "signature": "`ERR_TRACE_EVENTS_CATEGORY_REQUIRED`", + "label": "ERR_TRACE_EVENTS_CATEGORY_REQUIRED", + "apiSymbol": "ERR_TRACE_EVENTS_CATEGORY_REQUIRED", + "depth": 2, + "scope": "api", + "anchor": "err_trace_events_category_required", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:ceb683fe1aca", + "chapter": "errors", + "kind": "module", + "name": "`err_trace_events_unavailable`", + "signature": "`ERR_TRACE_EVENTS_UNAVAILABLE`", + "label": "ERR_TRACE_EVENTS_UNAVAILABLE", + "apiSymbol": "ERR_TRACE_EVENTS_UNAVAILABLE", + "depth": 2, + "scope": "api", + "anchor": "err_trace_events_unavailable", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:a17fda337ebf", + "chapter": "errors", + "kind": "module", + "name": "`err_trailing_junk_after_stream_end`", + "signature": "`ERR_TRAILING_JUNK_AFTER_STREAM_END`", + "label": "ERR_TRAILING_JUNK_AFTER_STREAM_END", + "apiSymbol": "ERR_TRAILING_JUNK_AFTER_STREAM_END", + "depth": 2, + "scope": "api", + "anchor": "err_trailing_junk_after_stream_end", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:325ad59f0fc1", + "chapter": "errors", + "kind": "module", + "name": "`err_transform_already_transforming`", + "signature": "`ERR_TRANSFORM_ALREADY_TRANSFORMING`", + "label": "ERR_TRANSFORM_ALREADY_TRANSFORMING", + "apiSymbol": "ERR_TRANSFORM_ALREADY_TRANSFORMING", + "depth": 2, + "scope": "api", + "anchor": "err_transform_already_transforming", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:4af3cc70a2ff", + "chapter": "errors", + "kind": "module", + "name": "`err_transform_with_length_0`", + "signature": "`ERR_TRANSFORM_WITH_LENGTH_0`", + "label": "ERR_TRANSFORM_WITH_LENGTH_0", + "apiSymbol": "ERR_TRANSFORM_WITH_LENGTH_0", + "depth": 2, + "scope": "api", + "anchor": "err_transform_with_length_0", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:168d82885391", + "chapter": "errors", + "kind": "module", + "name": "`err_tty_init_failed`", + "signature": "`ERR_TTY_INIT_FAILED`", + "label": "ERR_TTY_INIT_FAILED", + "apiSymbol": "ERR_TTY_INIT_FAILED", + "depth": 2, + "scope": "api", + "anchor": "err_tty_init_failed", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:a7299c1d8dc9", + "chapter": "errors", + "kind": "module", + "name": "`err_unavailable_during_exit`", + "signature": "`ERR_UNAVAILABLE_DURING_EXIT`", + "label": "ERR_UNAVAILABLE_DURING_EXIT", + "apiSymbol": "ERR_UNAVAILABLE_DURING_EXIT", + "depth": 2, + "scope": "api", + "anchor": "err_unavailable_during_exit", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:baf0b69b1860", + "chapter": "errors", + "kind": "module", + "name": "`err_uncaught_exception_capture_already_set`", + "signature": "`ERR_UNCAUGHT_EXCEPTION_CAPTURE_ALREADY_SET`", + "label": "ERR_UNCAUGHT_EXCEPTION_CAPTURE_ALREADY_SET", + "apiSymbol": "ERR_UNCAUGHT_EXCEPTION_CAPTURE_ALREADY_SET", + "depth": 2, + "scope": "api", + "anchor": "err_uncaught_exception_capture_already_set", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:0da0d678a3b4", + "chapter": "errors", + "kind": "module", + "name": "`err_unescaped_characters`", + "signature": "`ERR_UNESCAPED_CHARACTERS`", + "label": "ERR_UNESCAPED_CHARACTERS", + "apiSymbol": "ERR_UNESCAPED_CHARACTERS", + "depth": 2, + "scope": "api", + "anchor": "err_unescaped_characters", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:b60477b88b97", + "chapter": "errors", + "kind": "module", + "name": "`err_unhandled_error`", + "signature": "`ERR_UNHANDLED_ERROR`", + "label": "ERR_UNHANDLED_ERROR", + "apiSymbol": "ERR_UNHANDLED_ERROR", + "depth": 2, + "scope": "api", + "anchor": "err_unhandled_error", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:82ff14d4a596", + "chapter": "errors", + "kind": "module", + "name": "`err_unknown_builtin_module`", + "signature": "`ERR_UNKNOWN_BUILTIN_MODULE`", + "label": "ERR_UNKNOWN_BUILTIN_MODULE", + "apiSymbol": "ERR_UNKNOWN_BUILTIN_MODULE", + "depth": 2, + "scope": "api", + "anchor": "err_unknown_builtin_module", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:94f4cb656785", + "chapter": "errors", + "kind": "module", + "name": "`err_unknown_credential`", + "signature": "`ERR_UNKNOWN_CREDENTIAL`", + "label": "ERR_UNKNOWN_CREDENTIAL", + "apiSymbol": "ERR_UNKNOWN_CREDENTIAL", + "depth": 2, + "scope": "api", + "anchor": "err_unknown_credential", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:7551352d64f6", + "chapter": "errors", + "kind": "module", + "name": "`err_unknown_encoding`", + "signature": "`ERR_UNKNOWN_ENCODING`", + "label": "ERR_UNKNOWN_ENCODING", + "apiSymbol": "ERR_UNKNOWN_ENCODING", + "depth": 2, + "scope": "api", + "anchor": "err_unknown_encoding", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:c5681463fa48", + "chapter": "errors", + "kind": "module", + "name": "`err_unknown_file_extension`", + "signature": "`ERR_UNKNOWN_FILE_EXTENSION`", + "label": "ERR_UNKNOWN_FILE_EXTENSION", + "apiSymbol": "ERR_UNKNOWN_FILE_EXTENSION", + "depth": 2, + "scope": "api", + "anchor": "err_unknown_file_extension", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:87f7527b64e4", + "chapter": "errors", + "kind": "module", + "name": "`err_unknown_module_format`", + "signature": "`ERR_UNKNOWN_MODULE_FORMAT`", + "label": "ERR_UNKNOWN_MODULE_FORMAT", + "apiSymbol": "ERR_UNKNOWN_MODULE_FORMAT", + "depth": 2, + "scope": "api", + "anchor": "err_unknown_module_format", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:d87cae35000d", + "chapter": "errors", + "kind": "module", + "name": "`err_unknown_signal`", + "signature": "`ERR_UNKNOWN_SIGNAL`", + "label": "ERR_UNKNOWN_SIGNAL", + "apiSymbol": "ERR_UNKNOWN_SIGNAL", + "depth": 2, + "scope": "api", + "anchor": "err_unknown_signal", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:954eabb9bc32", + "chapter": "errors", + "kind": "module", + "name": "`err_unsupported_dir_import`", + "signature": "`ERR_UNSUPPORTED_DIR_IMPORT`", + "label": "ERR_UNSUPPORTED_DIR_IMPORT", + "apiSymbol": "ERR_UNSUPPORTED_DIR_IMPORT", + "depth": 2, + "scope": "api", + "anchor": "err_unsupported_dir_import", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:e214d4aa9618", + "chapter": "errors", + "kind": "module", + "name": "`err_unsupported_esm_url_scheme`", + "signature": "`ERR_UNSUPPORTED_ESM_URL_SCHEME`", + "label": "ERR_UNSUPPORTED_ESM_URL_SCHEME", + "apiSymbol": "ERR_UNSUPPORTED_ESM_URL_SCHEME", + "depth": 2, + "scope": "api", + "anchor": "err_unsupported_esm_url_scheme", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:dcd1b99428b4", + "chapter": "errors", + "kind": "module", + "name": "`err_unsupported_node_modules_type_stripping`", + "signature": "`ERR_UNSUPPORTED_NODE_MODULES_TYPE_STRIPPING`", + "label": "ERR_UNSUPPORTED_NODE_MODULES_TYPE_STRIPPING", + "apiSymbol": "ERR_UNSUPPORTED_NODE_MODULES_TYPE_STRIPPING", + "depth": 2, + "scope": "api", + "anchor": "err_unsupported_node_modules_type_stripping", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:ad982710ceef", + "chapter": "errors", + "kind": "module", + "name": "`err_unsupported_resolve_request`", + "signature": "`ERR_UNSUPPORTED_RESOLVE_REQUEST`", + "label": "ERR_UNSUPPORTED_RESOLVE_REQUEST", + "apiSymbol": "ERR_UNSUPPORTED_RESOLVE_REQUEST", + "depth": 2, + "scope": "api", + "anchor": "err_unsupported_resolve_request", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:29dfe11fa3a0", + "chapter": "errors", + "kind": "module", + "name": "`err_unsupported_typescript_syntax`", + "signature": "`ERR_UNSUPPORTED_TYPESCRIPT_SYNTAX`", + "label": "ERR_UNSUPPORTED_TYPESCRIPT_SYNTAX", + "apiSymbol": "ERR_UNSUPPORTED_TYPESCRIPT_SYNTAX", + "depth": 2, + "scope": "api", + "anchor": "err_unsupported_typescript_syntax", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:7d418af1c733", + "chapter": "errors", + "kind": "module", + "name": "`err_use_after_close`", + "signature": "`ERR_USE_AFTER_CLOSE`", + "label": "ERR_USE_AFTER_CLOSE", + "apiSymbol": "ERR_USE_AFTER_CLOSE", + "depth": 2, + "scope": "api", + "anchor": "err_use_after_close", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:6740f8efde1a", + "chapter": "errors", + "kind": "module", + "name": "`err_valid_performance_entry_type`", + "signature": "`ERR_VALID_PERFORMANCE_ENTRY_TYPE`", + "label": "ERR_VALID_PERFORMANCE_ENTRY_TYPE", + "apiSymbol": "ERR_VALID_PERFORMANCE_ENTRY_TYPE", + "depth": 2, + "scope": "api", + "anchor": "err_valid_performance_entry_type", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:c3428053070e", + "chapter": "errors", + "kind": "module", + "name": "`err_vm_dynamic_import_callback_missing`", + "signature": "`ERR_VM_DYNAMIC_IMPORT_CALLBACK_MISSING`", + "label": "ERR_VM_DYNAMIC_IMPORT_CALLBACK_MISSING", + "apiSymbol": "ERR_VM_DYNAMIC_IMPORT_CALLBACK_MISSING", + "depth": 2, + "scope": "api", + "anchor": "err_vm_dynamic_import_callback_missing", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:671ea036e292", + "chapter": "errors", + "kind": "module", + "name": "`err_vm_dynamic_import_callback_missing_flag`", + "signature": "`ERR_VM_DYNAMIC_IMPORT_CALLBACK_MISSING_FLAG`", + "label": "ERR_VM_DYNAMIC_IMPORT_CALLBACK_MISSING_FLAG", + "apiSymbol": "ERR_VM_DYNAMIC_IMPORT_CALLBACK_MISSING_FLAG", + "depth": 2, + "scope": "api", + "anchor": "err_vm_dynamic_import_callback_missing_flag", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:5f845b9e8b2a", + "chapter": "errors", + "kind": "module", + "name": "`err_vm_module_already_linked`", + "signature": "`ERR_VM_MODULE_ALREADY_LINKED`", + "label": "ERR_VM_MODULE_ALREADY_LINKED", + "apiSymbol": "ERR_VM_MODULE_ALREADY_LINKED", + "depth": 2, + "scope": "api", + "anchor": "err_vm_module_already_linked", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:c2846989ff9e", + "chapter": "errors", + "kind": "module", + "name": "`err_vm_module_cached_data_rejected`", + "signature": "`ERR_VM_MODULE_CACHED_DATA_REJECTED`", + "label": "ERR_VM_MODULE_CACHED_DATA_REJECTED", + "apiSymbol": "ERR_VM_MODULE_CACHED_DATA_REJECTED", + "depth": 2, + "scope": "api", + "anchor": "err_vm_module_cached_data_rejected", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:079222dcd2ba", + "chapter": "errors", + "kind": "module", + "name": "`err_vm_module_cannot_create_cached_data`", + "signature": "`ERR_VM_MODULE_CANNOT_CREATE_CACHED_DATA`", + "label": "ERR_VM_MODULE_CANNOT_CREATE_CACHED_DATA", + "apiSymbol": "ERR_VM_MODULE_CANNOT_CREATE_CACHED_DATA", + "depth": 2, + "scope": "api", + "anchor": "err_vm_module_cannot_create_cached_data", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:6ea968ca12e8", + "chapter": "errors", + "kind": "module", + "name": "`err_vm_module_different_context`", + "signature": "`ERR_VM_MODULE_DIFFERENT_CONTEXT`", + "label": "ERR_VM_MODULE_DIFFERENT_CONTEXT", + "apiSymbol": "ERR_VM_MODULE_DIFFERENT_CONTEXT", + "depth": 2, + "scope": "api", + "anchor": "err_vm_module_different_context", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:e0e6b5f418e8", + "chapter": "errors", + "kind": "module", + "name": "`err_vm_module_link_failure`", + "signature": "`ERR_VM_MODULE_LINK_FAILURE`", + "label": "ERR_VM_MODULE_LINK_FAILURE", + "apiSymbol": "ERR_VM_MODULE_LINK_FAILURE", + "depth": 2, + "scope": "api", + "anchor": "err_vm_module_link_failure", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:8ee8e4ca79d2", + "chapter": "errors", + "kind": "module", + "name": "`err_vm_module_not_module`", + "signature": "`ERR_VM_MODULE_NOT_MODULE`", + "label": "ERR_VM_MODULE_NOT_MODULE", + "apiSymbol": "ERR_VM_MODULE_NOT_MODULE", + "depth": 2, + "scope": "api", + "anchor": "err_vm_module_not_module", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:ca92d1497275", + "chapter": "errors", + "kind": "module", + "name": "`err_vm_module_status`", + "signature": "`ERR_VM_MODULE_STATUS`", + "label": "ERR_VM_MODULE_STATUS", + "apiSymbol": "ERR_VM_MODULE_STATUS", + "depth": 2, + "scope": "api", + "anchor": "err_vm_module_status", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:781c4df93738", + "chapter": "errors", + "kind": "module", + "name": "`err_wasi_already_started`", + "signature": "`ERR_WASI_ALREADY_STARTED`", + "label": "ERR_WASI_ALREADY_STARTED", + "apiSymbol": "ERR_WASI_ALREADY_STARTED", + "depth": 2, + "scope": "api", + "anchor": "err_wasi_already_started", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:97f460bbd0b6", + "chapter": "errors", + "kind": "module", + "name": "`err_wasi_not_started`", + "signature": "`ERR_WASI_NOT_STARTED`", + "label": "ERR_WASI_NOT_STARTED", + "apiSymbol": "ERR_WASI_NOT_STARTED", + "depth": 2, + "scope": "api", + "anchor": "err_wasi_not_started", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:a8cbde85cdb9", + "chapter": "errors", + "kind": "module", + "name": "`err_webassembly_not_supported`", + "signature": "`ERR_WEBASSEMBLY_NOT_SUPPORTED`", + "label": "ERR_WEBASSEMBLY_NOT_SUPPORTED", + "apiSymbol": "ERR_WEBASSEMBLY_NOT_SUPPORTED", + "depth": 2, + "scope": "api", + "anchor": "err_webassembly_not_supported", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:87ff1721ed05", + "chapter": "errors", + "kind": "module", + "name": "`err_webassembly_response`", + "signature": "`ERR_WEBASSEMBLY_RESPONSE`", + "label": "ERR_WEBASSEMBLY_RESPONSE", + "apiSymbol": "ERR_WEBASSEMBLY_RESPONSE", + "depth": 2, + "scope": "api", + "anchor": "err_webassembly_response", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:75ec70605835", + "chapter": "errors", + "kind": "module", + "name": "`err_worker_init_failed`", + "signature": "`ERR_WORKER_INIT_FAILED`", + "label": "ERR_WORKER_INIT_FAILED", + "apiSymbol": "ERR_WORKER_INIT_FAILED", + "depth": 2, + "scope": "api", + "anchor": "err_worker_init_failed", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:b015bae7ee07", + "chapter": "errors", + "kind": "module", + "name": "`err_worker_invalid_exec_argv`", + "signature": "`ERR_WORKER_INVALID_EXEC_ARGV`", + "label": "ERR_WORKER_INVALID_EXEC_ARGV", + "apiSymbol": "ERR_WORKER_INVALID_EXEC_ARGV", + "depth": 2, + "scope": "api", + "anchor": "err_worker_invalid_exec_argv", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:2c78aa6542c4", + "chapter": "errors", + "kind": "module", + "name": "`err_worker_messaging_errored`", + "signature": "`ERR_WORKER_MESSAGING_ERRORED`", + "label": "ERR_WORKER_MESSAGING_ERRORED", + "apiSymbol": "ERR_WORKER_MESSAGING_ERRORED", + "depth": 2, + "scope": "api", + "anchor": "err_worker_messaging_errored", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:da02d87c4ac3", + "chapter": "errors", + "kind": "module", + "name": "`err_worker_messaging_failed`", + "signature": "`ERR_WORKER_MESSAGING_FAILED`", + "label": "ERR_WORKER_MESSAGING_FAILED", + "apiSymbol": "ERR_WORKER_MESSAGING_FAILED", + "depth": 2, + "scope": "api", + "anchor": "err_worker_messaging_failed", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:13fec05ffc9e", + "chapter": "errors", + "kind": "module", + "name": "`err_worker_messaging_same_thread`", + "signature": "`ERR_WORKER_MESSAGING_SAME_THREAD`", + "label": "ERR_WORKER_MESSAGING_SAME_THREAD", + "apiSymbol": "ERR_WORKER_MESSAGING_SAME_THREAD", + "depth": 2, + "scope": "api", + "anchor": "err_worker_messaging_same_thread", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:64f5f21e175e", + "chapter": "errors", + "kind": "module", + "name": "`err_worker_messaging_timeout`", + "signature": "`ERR_WORKER_MESSAGING_TIMEOUT`", + "label": "ERR_WORKER_MESSAGING_TIMEOUT", + "apiSymbol": "ERR_WORKER_MESSAGING_TIMEOUT", + "depth": 2, + "scope": "api", + "anchor": "err_worker_messaging_timeout", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:2a75f29ed325", + "chapter": "errors", + "kind": "module", + "name": "`err_worker_not_running`", + "signature": "`ERR_WORKER_NOT_RUNNING`", + "label": "ERR_WORKER_NOT_RUNNING", + "apiSymbol": "ERR_WORKER_NOT_RUNNING", + "depth": 2, + "scope": "api", + "anchor": "err_worker_not_running", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:b274b70ec8d4", + "chapter": "errors", + "kind": "module", + "name": "`err_worker_out_of_memory`", + "signature": "`ERR_WORKER_OUT_OF_MEMORY`", + "label": "ERR_WORKER_OUT_OF_MEMORY", + "apiSymbol": "ERR_WORKER_OUT_OF_MEMORY", + "depth": 2, + "scope": "api", + "anchor": "err_worker_out_of_memory", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:b2bc0c8cb1f7", + "chapter": "errors", + "kind": "module", + "name": "`err_worker_path`", + "signature": "`ERR_WORKER_PATH`", + "label": "ERR_WORKER_PATH", + "apiSymbol": "ERR_WORKER_PATH", + "depth": 2, + "scope": "api", + "anchor": "err_worker_path", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:aa370a80f4b1", + "chapter": "errors", + "kind": "module", + "name": "`err_worker_unserializable_error`", + "signature": "`ERR_WORKER_UNSERIALIZABLE_ERROR`", + "label": "ERR_WORKER_UNSERIALIZABLE_ERROR", + "apiSymbol": "ERR_WORKER_UNSERIALIZABLE_ERROR", + "depth": 2, + "scope": "api", + "anchor": "err_worker_unserializable_error", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:e61ae498b366", + "chapter": "errors", + "kind": "module", + "name": "`err_worker_unsupported_operation`", + "signature": "`ERR_WORKER_UNSUPPORTED_OPERATION`", + "label": "ERR_WORKER_UNSUPPORTED_OPERATION", + "apiSymbol": "ERR_WORKER_UNSUPPORTED_OPERATION", + "depth": 2, + "scope": "api", + "anchor": "err_worker_unsupported_operation", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:9deb6e3047fd", + "chapter": "errors", + "kind": "module", + "name": "`err_zlib_initialization_failed`", + "signature": "`ERR_ZLIB_INITIALIZATION_FAILED`", + "label": "ERR_ZLIB_INITIALIZATION_FAILED", + "apiSymbol": "ERR_ZLIB_INITIALIZATION_FAILED", + "depth": 2, + "scope": "api", + "anchor": "err_zlib_initialization_failed", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:fc5da7d1951e", + "chapter": "errors", + "kind": "module", + "name": "`err_zstd_invalid_param`", + "signature": "`ERR_ZSTD_INVALID_PARAM`", + "label": "ERR_ZSTD_INVALID_PARAM", + "apiSymbol": "ERR_ZSTD_INVALID_PARAM", + "depth": 2, + "scope": "api", + "anchor": "err_zstd_invalid_param", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:f090a6b81591", + "chapter": "errors", + "kind": "module", + "name": "`hpe_chunk_extensions_overflow`", + "signature": "`HPE_CHUNK_EXTENSIONS_OVERFLOW`", + "label": "HPE_CHUNK_EXTENSIONS_OVERFLOW", + "apiSymbol": "HPE_CHUNK_EXTENSIONS_OVERFLOW", + "depth": 2, + "scope": "api", + "anchor": "hpe_chunk_extensions_overflow", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:87c31df381d7", + "chapter": "errors", + "kind": "module", + "name": "`hpe_header_overflow`", + "signature": "`HPE_HEADER_OVERFLOW`", + "label": "HPE_HEADER_OVERFLOW", + "apiSymbol": "HPE_HEADER_OVERFLOW", + "depth": 2, + "scope": "api", + "anchor": "hpe_header_overflow", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:8da5f12840bc", + "chapter": "errors", + "kind": "module", + "name": "`hpe_unexpected_content_length`", + "signature": "`HPE_UNEXPECTED_CONTENT_LENGTH`", + "label": "HPE_UNEXPECTED_CONTENT_LENGTH", + "apiSymbol": "HPE_UNEXPECTED_CONTENT_LENGTH", + "depth": 2, + "scope": "api", + "anchor": "hpe_unexpected_content_length", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:d160d0cdba1d", + "chapter": "errors", + "kind": "module", + "name": "`module_not_found`", + "signature": "`MODULE_NOT_FOUND`", + "label": "MODULE_NOT_FOUND", + "apiSymbol": "MODULE_NOT_FOUND", + "depth": 2, + "scope": "api", + "anchor": "module_not_found", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:9e68b5b2a413", + "chapter": "errors", + "kind": "misc", + "name": "legacy_node.js_error_codes", + "signature": "Legacy Node.js error codes", + "label": "Legacy Node.js error codes", + "apiSymbol": "legacy_node.js_error_codes", + "depth": 1, + "scope": "documentation", + "anchor": "legacy-nodejs-error-codes", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "errors:439ad52bd8d8", + "chapter": "errors", + "kind": "module", + "name": "`err_cannot_transfer_object`", + "signature": "`ERR_CANNOT_TRANSFER_OBJECT`", + "label": "ERR_CANNOT_TRANSFER_OBJECT", + "apiSymbol": "ERR_CANNOT_TRANSFER_OBJECT", + "depth": 2, + "scope": "api", + "anchor": "err_cannot_transfer_object", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:c0a7823c7c67", + "chapter": "errors", + "kind": "module", + "name": "`err_cpu_usage`", + "signature": "`ERR_CPU_USAGE`", + "label": "ERR_CPU_USAGE", + "apiSymbol": "ERR_CPU_USAGE", + "depth": 2, + "scope": "api", + "anchor": "err_cpu_usage", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:4f1d4c79332c", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_hash_digest_no_utf16`", + "signature": "`ERR_CRYPTO_HASH_DIGEST_NO_UTF16`", + "label": "ERR_CRYPTO_HASH_DIGEST_NO_UTF16", + "apiSymbol": "ERR_CRYPTO_HASH_DIGEST_NO_UTF16", + "depth": 2, + "scope": "api", + "anchor": "err_crypto_hash_digest_no_utf16", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:0e98b56c97e8", + "chapter": "errors", + "kind": "module", + "name": "`err_crypto_scrypt_invalid_parameter`", + "signature": "`ERR_CRYPTO_SCRYPT_INVALID_PARAMETER`", + "label": "ERR_CRYPTO_SCRYPT_INVALID_PARAMETER", + "apiSymbol": "ERR_CRYPTO_SCRYPT_INVALID_PARAMETER", + "depth": 2, + "scope": "api", + "anchor": "err_crypto_scrypt_invalid_parameter", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:0bb0b3213086", + "chapter": "errors", + "kind": "module", + "name": "`err_fs_invalid_symlink_type`", + "signature": "`ERR_FS_INVALID_SYMLINK_TYPE`", + "label": "ERR_FS_INVALID_SYMLINK_TYPE", + "apiSymbol": "ERR_FS_INVALID_SYMLINK_TYPE", + "depth": 2, + "scope": "api", + "anchor": "err_fs_invalid_symlink_type", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:f22975942220", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_frame_error`", + "signature": "`ERR_HTTP2_FRAME_ERROR`", + "label": "ERR_HTTP2_FRAME_ERROR", + "apiSymbol": "ERR_HTTP2_FRAME_ERROR", + "depth": 2, + "scope": "api", + "anchor": "err_http2_frame_error", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:d37ab7415eb1", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_headers_object`", + "signature": "`ERR_HTTP2_HEADERS_OBJECT`", + "label": "ERR_HTTP2_HEADERS_OBJECT", + "apiSymbol": "ERR_HTTP2_HEADERS_OBJECT", + "depth": 2, + "scope": "api", + "anchor": "err_http2_headers_object", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:82447626cae9", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_header_required`", + "signature": "`ERR_HTTP2_HEADER_REQUIRED`", + "label": "ERR_HTTP2_HEADER_REQUIRED", + "apiSymbol": "ERR_HTTP2_HEADER_REQUIRED", + "depth": 2, + "scope": "api", + "anchor": "err_http2_header_required", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:da8cf45429e4", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_info_headers_after_respond`", + "signature": "`ERR_HTTP2_INFO_HEADERS_AFTER_RESPOND`", + "label": "ERR_HTTP2_INFO_HEADERS_AFTER_RESPOND", + "apiSymbol": "ERR_HTTP2_INFO_HEADERS_AFTER_RESPOND", + "depth": 2, + "scope": "api", + "anchor": "err_http2_info_headers_after_respond", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:f846d1688f40", + "chapter": "errors", + "kind": "module", + "name": "`err_http2_stream_closed`", + "signature": "`ERR_HTTP2_STREAM_CLOSED`", + "label": "ERR_HTTP2_STREAM_CLOSED", + "apiSymbol": "ERR_HTTP2_STREAM_CLOSED", + "depth": 2, + "scope": "api", + "anchor": "err_http2_stream_closed", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:dbdb23ef8707", + "chapter": "errors", + "kind": "module", + "name": "`err_http_invalid_char`", + "signature": "`ERR_HTTP_INVALID_CHAR`", + "label": "ERR_HTTP_INVALID_CHAR", + "apiSymbol": "ERR_HTTP_INVALID_CHAR", + "depth": 2, + "scope": "api", + "anchor": "err_http_invalid_char", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:af06e0979e6f", + "chapter": "errors", + "kind": "module", + "name": "`err_import_assertion_type_failed`", + "signature": "`ERR_IMPORT_ASSERTION_TYPE_FAILED`", + "label": "ERR_IMPORT_ASSERTION_TYPE_FAILED", + "apiSymbol": "ERR_IMPORT_ASSERTION_TYPE_FAILED", + "depth": 2, + "scope": "api", + "anchor": "err_import_assertion_type_failed", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:43950d683294", + "chapter": "errors", + "kind": "module", + "name": "`err_import_assertion_type_missing`", + "signature": "`ERR_IMPORT_ASSERTION_TYPE_MISSING`", + "label": "ERR_IMPORT_ASSERTION_TYPE_MISSING", + "apiSymbol": "ERR_IMPORT_ASSERTION_TYPE_MISSING", + "depth": 2, + "scope": "api", + "anchor": "err_import_assertion_type_missing", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:8d0d238ca2be", + "chapter": "errors", + "kind": "module", + "name": "`err_import_assertion_type_unsupported`", + "signature": "`ERR_IMPORT_ASSERTION_TYPE_UNSUPPORTED`", + "label": "ERR_IMPORT_ASSERTION_TYPE_UNSUPPORTED", + "apiSymbol": "ERR_IMPORT_ASSERTION_TYPE_UNSUPPORTED", + "depth": 2, + "scope": "api", + "anchor": "err_import_assertion_type_unsupported", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:d40a10834bde", + "chapter": "errors", + "kind": "module", + "name": "`err_index_out_of_range`", + "signature": "`ERR_INDEX_OUT_OF_RANGE`", + "label": "ERR_INDEX_OUT_OF_RANGE", + "apiSymbol": "ERR_INDEX_OUT_OF_RANGE", + "depth": 2, + "scope": "api", + "anchor": "err_index_out_of_range", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:74df823db69b", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_opt_value`", + "signature": "`ERR_INVALID_OPT_VALUE`", + "label": "ERR_INVALID_OPT_VALUE", + "apiSymbol": "ERR_INVALID_OPT_VALUE", + "depth": 2, + "scope": "api", + "anchor": "err_invalid_opt_value", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:d5e7a70605a9", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_opt_value_encoding`", + "signature": "`ERR_INVALID_OPT_VALUE_ENCODING`", + "label": "ERR_INVALID_OPT_VALUE_ENCODING", + "apiSymbol": "ERR_INVALID_OPT_VALUE_ENCODING", + "depth": 2, + "scope": "api", + "anchor": "err_invalid_opt_value_encoding", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:380651a487d3", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_performance_mark`", + "signature": "`ERR_INVALID_PERFORMANCE_MARK`", + "label": "ERR_INVALID_PERFORMANCE_MARK", + "apiSymbol": "ERR_INVALID_PERFORMANCE_MARK", + "depth": 2, + "scope": "api", + "anchor": "err_invalid_performance_mark", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:b2cf2dee707f", + "chapter": "errors", + "kind": "module", + "name": "`err_invalid_transfer_object`", + "signature": "`ERR_INVALID_TRANSFER_OBJECT`", + "label": "ERR_INVALID_TRANSFER_OBJECT", + "apiSymbol": "ERR_INVALID_TRANSFER_OBJECT", + "depth": 2, + "scope": "api", + "anchor": "err_invalid_transfer_object", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:390eb0517f49", + "chapter": "errors", + "kind": "module", + "name": "`err_manifest_assert_integrity`", + "signature": "`ERR_MANIFEST_ASSERT_INTEGRITY`", + "label": "ERR_MANIFEST_ASSERT_INTEGRITY", + "apiSymbol": "ERR_MANIFEST_ASSERT_INTEGRITY", + "depth": 2, + "scope": "api", + "anchor": "err_manifest_assert_integrity", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:f9f70133d0d3", + "chapter": "errors", + "kind": "module", + "name": "`err_manifest_dependency_missing`", + "signature": "`ERR_MANIFEST_DEPENDENCY_MISSING`", + "label": "ERR_MANIFEST_DEPENDENCY_MISSING", + "apiSymbol": "ERR_MANIFEST_DEPENDENCY_MISSING", + "depth": 2, + "scope": "api", + "anchor": "err_manifest_dependency_missing", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:4096c4d31809", + "chapter": "errors", + "kind": "module", + "name": "`err_manifest_integrity_mismatch`", + "signature": "`ERR_MANIFEST_INTEGRITY_MISMATCH`", + "label": "ERR_MANIFEST_INTEGRITY_MISMATCH", + "apiSymbol": "ERR_MANIFEST_INTEGRITY_MISMATCH", + "depth": 2, + "scope": "api", + "anchor": "err_manifest_integrity_mismatch", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:d85a9bba8d33", + "chapter": "errors", + "kind": "module", + "name": "`err_manifest_invalid_resource_field`", + "signature": "`ERR_MANIFEST_INVALID_RESOURCE_FIELD`", + "label": "ERR_MANIFEST_INVALID_RESOURCE_FIELD", + "apiSymbol": "ERR_MANIFEST_INVALID_RESOURCE_FIELD", + "depth": 2, + "scope": "api", + "anchor": "err_manifest_invalid_resource_field", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:4d6e41331130", + "chapter": "errors", + "kind": "module", + "name": "`err_manifest_invalid_specifier`", + "signature": "`ERR_MANIFEST_INVALID_SPECIFIER`", + "label": "ERR_MANIFEST_INVALID_SPECIFIER", + "apiSymbol": "ERR_MANIFEST_INVALID_SPECIFIER", + "depth": 2, + "scope": "api", + "anchor": "err_manifest_invalid_specifier", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:0549a7ac0837", + "chapter": "errors", + "kind": "module", + "name": "`err_manifest_parse_policy`", + "signature": "`ERR_MANIFEST_PARSE_POLICY`", + "label": "ERR_MANIFEST_PARSE_POLICY", + "apiSymbol": "ERR_MANIFEST_PARSE_POLICY", + "depth": 2, + "scope": "api", + "anchor": "err_manifest_parse_policy", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:2cf2e8e964aa", + "chapter": "errors", + "kind": "module", + "name": "`err_manifest_tdz`", + "signature": "`ERR_MANIFEST_TDZ`", + "label": "ERR_MANIFEST_TDZ", + "apiSymbol": "ERR_MANIFEST_TDZ", + "depth": 2, + "scope": "api", + "anchor": "err_manifest_tdz", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:2fdc4ffb3667", + "chapter": "errors", + "kind": "module", + "name": "`err_manifest_unknown_onerror`", + "signature": "`ERR_MANIFEST_UNKNOWN_ONERROR`", + "label": "ERR_MANIFEST_UNKNOWN_ONERROR", + "apiSymbol": "ERR_MANIFEST_UNKNOWN_ONERROR", + "depth": 2, + "scope": "api", + "anchor": "err_manifest_unknown_onerror", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:27bcb9745c97", + "chapter": "errors", + "kind": "module", + "name": "`err_missing_message_port_in_transfer_list`", + "signature": "`ERR_MISSING_MESSAGE_PORT_IN_TRANSFER_LIST`", + "label": "ERR_MISSING_MESSAGE_PORT_IN_TRANSFER_LIST", + "apiSymbol": "ERR_MISSING_MESSAGE_PORT_IN_TRANSFER_LIST", + "depth": 2, + "scope": "api", + "anchor": "err_missing_message_port_in_transfer_list", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:09f8cac35b41", + "chapter": "errors", + "kind": "module", + "name": "`err_missing_transferable_in_transfer_list`", + "signature": "`ERR_MISSING_TRANSFERABLE_IN_TRANSFER_LIST`", + "label": "ERR_MISSING_TRANSFERABLE_IN_TRANSFER_LIST", + "apiSymbol": "ERR_MISSING_TRANSFERABLE_IN_TRANSFER_LIST", + "depth": 2, + "scope": "api", + "anchor": "err_missing_transferable_in_transfer_list", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:c8a4f1e72052", + "chapter": "errors", + "kind": "module", + "name": "`err_napi_cons_prototype_object`", + "signature": "`ERR_NAPI_CONS_PROTOTYPE_OBJECT`", + "label": "ERR_NAPI_CONS_PROTOTYPE_OBJECT", + "apiSymbol": "ERR_NAPI_CONS_PROTOTYPE_OBJECT", + "depth": 2, + "scope": "api", + "anchor": "err_napi_cons_prototype_object", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:c5fe6f0c53b0", + "chapter": "errors", + "kind": "module", + "name": "`err_napi_tsfn_start_idle_loop`", + "signature": "`ERR_NAPI_TSFN_START_IDLE_LOOP`", + "label": "ERR_NAPI_TSFN_START_IDLE_LOOP", + "apiSymbol": "ERR_NAPI_TSFN_START_IDLE_LOOP", + "depth": 2, + "scope": "api", + "anchor": "err_napi_tsfn_start_idle_loop", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:8ad60b8eafcc", + "chapter": "errors", + "kind": "module", + "name": "`err_napi_tsfn_stop_idle_loop`", + "signature": "`ERR_NAPI_TSFN_STOP_IDLE_LOOP`", + "label": "ERR_NAPI_TSFN_STOP_IDLE_LOOP", + "apiSymbol": "ERR_NAPI_TSFN_STOP_IDLE_LOOP", + "depth": 2, + "scope": "api", + "anchor": "err_napi_tsfn_stop_idle_loop", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:245e851177d7", + "chapter": "errors", + "kind": "module", + "name": "`err_no_longer_supported`", + "signature": "`ERR_NO_LONGER_SUPPORTED`", + "label": "ERR_NO_LONGER_SUPPORTED", + "apiSymbol": "ERR_NO_LONGER_SUPPORTED", + "depth": 2, + "scope": "api", + "anchor": "err_no_longer_supported", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:84dd75ef7a58", + "chapter": "errors", + "kind": "module", + "name": "`err_outofmemory`", + "signature": "`ERR_OUTOFMEMORY`", + "label": "ERR_OUTOFMEMORY", + "apiSymbol": "ERR_OUTOFMEMORY", + "depth": 2, + "scope": "api", + "anchor": "err_outofmemory", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:6af35b4b138c", + "chapter": "errors", + "kind": "module", + "name": "`err_parse_history_data`", + "signature": "`ERR_PARSE_HISTORY_DATA`", + "label": "ERR_PARSE_HISTORY_DATA", + "apiSymbol": "ERR_PARSE_HISTORY_DATA", + "depth": 2, + "scope": "api", + "anchor": "err_parse_history_data", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:945f9d5653be", + "chapter": "errors", + "kind": "module", + "name": "`err_socket_cannot_send`", + "signature": "`ERR_SOCKET_CANNOT_SEND`", + "label": "ERR_SOCKET_CANNOT_SEND", + "apiSymbol": "ERR_SOCKET_CANNOT_SEND", + "depth": 2, + "scope": "api", + "anchor": "err_socket_cannot_send", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:56a2687d7785", + "chapter": "errors", + "kind": "module", + "name": "`err_stderr_close`", + "signature": "`ERR_STDERR_CLOSE`", + "label": "ERR_STDERR_CLOSE", + "apiSymbol": "ERR_STDERR_CLOSE", + "depth": 2, + "scope": "api", + "anchor": "err_stderr_close", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:d366ab4d6a93", + "chapter": "errors", + "kind": "module", + "name": "`err_stdout_close`", + "signature": "`ERR_STDOUT_CLOSE`", + "label": "ERR_STDOUT_CLOSE", + "apiSymbol": "ERR_STDOUT_CLOSE", + "depth": 2, + "scope": "api", + "anchor": "err_stdout_close", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:eb156aa35a3f", + "chapter": "errors", + "kind": "module", + "name": "`err_stream_read_not_implemented`", + "signature": "`ERR_STREAM_READ_NOT_IMPLEMENTED`", + "label": "ERR_STREAM_READ_NOT_IMPLEMENTED", + "apiSymbol": "ERR_STREAM_READ_NOT_IMPLEMENTED", + "depth": 2, + "scope": "api", + "anchor": "err_stream_read_not_implemented", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:a8caf4be8238", + "chapter": "errors", + "kind": "module", + "name": "`err_tap_lexer_error`", + "signature": "`ERR_TAP_LEXER_ERROR`", + "label": "ERR_TAP_LEXER_ERROR", + "apiSymbol": "ERR_TAP_LEXER_ERROR", + "depth": 2, + "scope": "api", + "anchor": "err_tap_lexer_error", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:41036708462f", + "chapter": "errors", + "kind": "module", + "name": "`err_tap_parser_error`", + "signature": "`ERR_TAP_PARSER_ERROR`", + "label": "ERR_TAP_PARSER_ERROR", + "apiSymbol": "ERR_TAP_PARSER_ERROR", + "depth": 2, + "scope": "api", + "anchor": "err_tap_parser_error", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:617359cbc761", + "chapter": "errors", + "kind": "module", + "name": "`err_tap_validation_error`", + "signature": "`ERR_TAP_VALIDATION_ERROR`", + "label": "ERR_TAP_VALIDATION_ERROR", + "apiSymbol": "ERR_TAP_VALIDATION_ERROR", + "depth": 2, + "scope": "api", + "anchor": "err_tap_validation_error", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:e2b537b9cf81", + "chapter": "errors", + "kind": "module", + "name": "`err_tls_renegotiation_failed`", + "signature": "`ERR_TLS_RENEGOTIATION_FAILED`", + "label": "ERR_TLS_RENEGOTIATION_FAILED", + "apiSymbol": "ERR_TLS_RENEGOTIATION_FAILED", + "depth": 2, + "scope": "api", + "anchor": "err_tls_renegotiation_failed", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:aa08fb64ea29", + "chapter": "errors", + "kind": "module", + "name": "`err_transferring_externalized_sharedarraybuffer`", + "signature": "`ERR_TRANSFERRING_EXTERNALIZED_SHAREDARRAYBUFFER`", + "label": "ERR_TRANSFERRING_EXTERNALIZED_SHAREDARRAYBUFFER", + "apiSymbol": "ERR_TRANSFERRING_EXTERNALIZED_SHAREDARRAYBUFFER", + "depth": 2, + "scope": "api", + "anchor": "err_transferring_externalized_sharedarraybuffer", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:2885aac07c34", + "chapter": "errors", + "kind": "module", + "name": "`err_unknown_stdin_type`", + "signature": "`ERR_UNKNOWN_STDIN_TYPE`", + "label": "ERR_UNKNOWN_STDIN_TYPE", + "apiSymbol": "ERR_UNKNOWN_STDIN_TYPE", + "depth": 2, + "scope": "api", + "anchor": "err_unknown_stdin_type", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:3002db6010f3", + "chapter": "errors", + "kind": "module", + "name": "`err_unknown_stream_type`", + "signature": "`ERR_UNKNOWN_STREAM_TYPE`", + "label": "ERR_UNKNOWN_STREAM_TYPE", + "apiSymbol": "ERR_UNKNOWN_STREAM_TYPE", + "depth": 2, + "scope": "api", + "anchor": "err_unknown_stream_type", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:c42be6185200", + "chapter": "errors", + "kind": "module", + "name": "`err_v8breakiterator`", + "signature": "`ERR_V8BREAKITERATOR`", + "label": "ERR_V8BREAKITERATOR", + "apiSymbol": "ERR_V8BREAKITERATOR", + "depth": 2, + "scope": "api", + "anchor": "err_v8breakiterator", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:576989a96e5f", + "chapter": "errors", + "kind": "module", + "name": "`err_value_out_of_range`", + "signature": "`ERR_VALUE_OUT_OF_RANGE`", + "label": "ERR_VALUE_OUT_OF_RANGE", + "apiSymbol": "ERR_VALUE_OUT_OF_RANGE", + "depth": 2, + "scope": "api", + "anchor": "err_value_out_of_range", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:2a75e3b52031", + "chapter": "errors", + "kind": "module", + "name": "`err_vm_module_linking_errored`", + "signature": "`ERR_VM_MODULE_LINKING_ERRORED`", + "label": "ERR_VM_MODULE_LINKING_ERRORED", + "apiSymbol": "ERR_VM_MODULE_LINKING_ERRORED", + "depth": 2, + "scope": "api", + "anchor": "err_vm_module_linking_errored", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:d35cd312d972", + "chapter": "errors", + "kind": "module", + "name": "`err_vm_module_not_linked`", + "signature": "`ERR_VM_MODULE_NOT_LINKED`", + "label": "ERR_VM_MODULE_NOT_LINKED", + "apiSymbol": "ERR_VM_MODULE_NOT_LINKED", + "depth": 2, + "scope": "api", + "anchor": "err_vm_module_not_linked", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:7eba9487bb7b", + "chapter": "errors", + "kind": "module", + "name": "`err_worker_unsupported_extension`", + "signature": "`ERR_WORKER_UNSUPPORTED_EXTENSION`", + "label": "ERR_WORKER_UNSUPPORTED_EXTENSION", + "apiSymbol": "ERR_WORKER_UNSUPPORTED_EXTENSION", + "depth": 2, + "scope": "api", + "anchor": "err_worker_unsupported_extension", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:b626bda0cacd", + "chapter": "errors", + "kind": "module", + "name": "`err_zlib_binding_closed`", + "signature": "`ERR_ZLIB_BINDING_CLOSED`", + "label": "ERR_ZLIB_BINDING_CLOSED", + "apiSymbol": "ERR_ZLIB_BINDING_CLOSED", + "depth": 2, + "scope": "api", + "anchor": "err_zlib_binding_closed", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. These error codes are either inconsistent, or have been removed.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:6f5638613f39", + "chapter": "errors", + "kind": "misc", + "name": "openssl_error_codes", + "signature": "OpenSSL Error Codes", + "label": "OpenSSL Error Codes", + "apiSymbol": "openssl_error_codes", + "depth": 1, + "scope": "documentation", + "anchor": "openssl-error-codes", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "errors:07864fa17f57", + "chapter": "errors", + "kind": "module", + "name": "time_validity_errors", + "signature": "Time Validity Errors", + "label": "Time Validity Errors", + "apiSymbol": "time_validity_errors", + "depth": 2, + "scope": "documentation", + "anchor": "time-validity-errors", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "errors:bb4a4ed9b300", + "chapter": "errors", + "kind": "module", + "name": "`cert_not_yet_valid`", + "signature": "`CERT_NOT_YET_VALID`", + "label": "CERT_NOT_YET_VALID", + "apiSymbol": "CERT_NOT_YET_VALID", + "depth": 3, + "scope": "api", + "anchor": "cert_not_yet_valid", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:c1b582bc3c62", + "chapter": "errors", + "kind": "module", + "name": "`cert_has_expired`", + "signature": "`CERT_HAS_EXPIRED`", + "label": "CERT_HAS_EXPIRED", + "apiSymbol": "CERT_HAS_EXPIRED", + "depth": 3, + "scope": "api", + "anchor": "cert_has_expired", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:d14dbc9c6b0e", + "chapter": "errors", + "kind": "module", + "name": "`crl_not_yet_valid`", + "signature": "`CRL_NOT_YET_VALID`", + "label": "CRL_NOT_YET_VALID", + "apiSymbol": "CRL_NOT_YET_VALID", + "depth": 3, + "scope": "api", + "anchor": "crl_not_yet_valid", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:ad88307c3bdd", + "chapter": "errors", + "kind": "module", + "name": "`crl_has_expired`", + "signature": "`CRL_HAS_EXPIRED`", + "label": "CRL_HAS_EXPIRED", + "apiSymbol": "CRL_HAS_EXPIRED", + "depth": 3, + "scope": "api", + "anchor": "crl_has_expired", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:423605b68df8", + "chapter": "errors", + "kind": "module", + "name": "`cert_revoked`", + "signature": "`CERT_REVOKED`", + "label": "CERT_REVOKED", + "apiSymbol": "CERT_REVOKED", + "depth": 3, + "scope": "api", + "anchor": "cert_revoked", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:2f63ae6d0ebf", + "chapter": "errors", + "kind": "module", + "name": "trust_or_chain_related_errors", + "signature": "Trust or Chain Related Errors", + "label": "Trust or Chain Related Errors", + "apiSymbol": "trust_or_chain_related_errors", + "depth": 2, + "scope": "documentation", + "anchor": "trust-or-chain-related-errors", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "errors:4ee21bb0a84c", + "chapter": "errors", + "kind": "module", + "name": "`unable_to_get_issuer_cert`", + "signature": "`UNABLE_TO_GET_ISSUER_CERT`", + "label": "UNABLE_TO_GET_ISSUER_CERT", + "apiSymbol": "UNABLE_TO_GET_ISSUER_CERT", + "depth": 3, + "scope": "api", + "anchor": "unable_to_get_issuer_cert", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:49b99782ac4c", + "chapter": "errors", + "kind": "module", + "name": "`unable_to_get_issuer_cert_locally`", + "signature": "`UNABLE_TO_GET_ISSUER_CERT_LOCALLY`", + "label": "UNABLE_TO_GET_ISSUER_CERT_LOCALLY", + "apiSymbol": "UNABLE_TO_GET_ISSUER_CERT_LOCALLY", + "depth": 3, + "scope": "api", + "anchor": "unable_to_get_issuer_cert_locally", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:5b8761425770", + "chapter": "errors", + "kind": "module", + "name": "`depth_zero_self_signed_cert`", + "signature": "`DEPTH_ZERO_SELF_SIGNED_CERT`", + "label": "DEPTH_ZERO_SELF_SIGNED_CERT", + "apiSymbol": "DEPTH_ZERO_SELF_SIGNED_CERT", + "depth": 3, + "scope": "api", + "anchor": "depth_zero_self_signed_cert", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:6e2c3b93610c", + "chapter": "errors", + "kind": "module", + "name": "`self_signed_cert_in_chain`", + "signature": "`SELF_SIGNED_CERT_IN_CHAIN`", + "label": "SELF_SIGNED_CERT_IN_CHAIN", + "apiSymbol": "SELF_SIGNED_CERT_IN_CHAIN", + "depth": 3, + "scope": "api", + "anchor": "self_signed_cert_in_chain", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:2a650eb60ec1", + "chapter": "errors", + "kind": "module", + "name": "`cert_chain_too_long`", + "signature": "`CERT_CHAIN_TOO_LONG`", + "label": "CERT_CHAIN_TOO_LONG", + "apiSymbol": "CERT_CHAIN_TOO_LONG", + "depth": 3, + "scope": "api", + "anchor": "cert_chain_too_long", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:ba46bbc95aff", + "chapter": "errors", + "kind": "module", + "name": "`unable_to_get_crl`", + "signature": "`UNABLE_TO_GET_CRL`", + "label": "UNABLE_TO_GET_CRL", + "apiSymbol": "UNABLE_TO_GET_CRL", + "depth": 3, + "scope": "api", + "anchor": "unable_to_get_crl", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:d1075014869e", + "chapter": "errors", + "kind": "module", + "name": "`unable_to_verify_leaf_signature`", + "signature": "`UNABLE_TO_VERIFY_LEAF_SIGNATURE`", + "label": "UNABLE_TO_VERIFY_LEAF_SIGNATURE", + "apiSymbol": "UNABLE_TO_VERIFY_LEAF_SIGNATURE", + "depth": 3, + "scope": "api", + "anchor": "unable_to_verify_leaf_signature", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:375e514bbc69", + "chapter": "errors", + "kind": "module", + "name": "`cert_untrusted`", + "signature": "`CERT_UNTRUSTED`", + "label": "CERT_UNTRUSTED", + "apiSymbol": "CERT_UNTRUSTED", + "depth": 3, + "scope": "api", + "anchor": "cert_untrusted", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:6e3ecc7e59e9", + "chapter": "errors", + "kind": "module", + "name": "basic_extension_errors", + "signature": "Basic Extension Errors", + "label": "Basic Extension Errors", + "apiSymbol": "basic_extension_errors", + "depth": 2, + "scope": "documentation", + "anchor": "basic-extension-errors", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "errors:467693e29391", + "chapter": "errors", + "kind": "module", + "name": "`invalid_ca`", + "signature": "`INVALID_CA`", + "label": "INVALID_CA", + "apiSymbol": "INVALID_CA", + "depth": 3, + "scope": "api", + "anchor": "invalid_ca", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:95a9de1e5fcf", + "chapter": "errors", + "kind": "module", + "name": "`path_length_exceeded`", + "signature": "`PATH_LENGTH_EXCEEDED`", + "label": "PATH_LENGTH_EXCEEDED", + "apiSymbol": "PATH_LENGTH_EXCEEDED", + "depth": 3, + "scope": "api", + "anchor": "path_length_exceeded", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:ddc2432332f3", + "chapter": "errors", + "kind": "module", + "name": "name_related_errors", + "signature": "Name Related Errors", + "label": "Name Related Errors", + "apiSymbol": "name_related_errors", + "depth": 2, + "scope": "documentation", + "anchor": "name-related-errors", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "errors:d72801142ee6", + "chapter": "errors", + "kind": "module", + "name": "`hostname_mismatch`", + "signature": "`HOSTNAME_MISMATCH`", + "label": "HOSTNAME_MISMATCH", + "apiSymbol": "HOSTNAME_MISMATCH", + "depth": 3, + "scope": "api", + "anchor": "hostname_mismatch", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:05736c5e987e", + "chapter": "errors", + "kind": "module", + "name": "usage_and_policy_errors", + "signature": "Usage and Policy Errors", + "label": "Usage and Policy Errors", + "apiSymbol": "usage_and_policy_errors", + "depth": 2, + "scope": "documentation", + "anchor": "usage-and-policy-errors", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "errors:75d9c5d34364", + "chapter": "errors", + "kind": "module", + "name": "`invalid_purpose`", + "signature": "`INVALID_PURPOSE`", + "label": "INVALID_PURPOSE", + "apiSymbol": "INVALID_PURPOSE", + "depth": 3, + "scope": "api", + "anchor": "invalid_purpose", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:7e32fb96f849", + "chapter": "errors", + "kind": "module", + "name": "`cert_rejected`", + "signature": "`CERT_REJECTED`", + "label": "CERT_REJECTED", + "apiSymbol": "CERT_REJECTED", + "depth": 3, + "scope": "api", + "anchor": "cert_rejected", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:cc7a6158d08d", + "chapter": "errors", + "kind": "module", + "name": "formatting_errors", + "signature": "Formatting Errors", + "label": "Formatting Errors", + "apiSymbol": "formatting_errors", + "depth": 2, + "scope": "documentation", + "anchor": "formatting-errors", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "errors:113869e011dd", + "chapter": "errors", + "kind": "module", + "name": "`cert_signature_failure`", + "signature": "`CERT_SIGNATURE_FAILURE`", + "label": "CERT_SIGNATURE_FAILURE", + "apiSymbol": "CERT_SIGNATURE_FAILURE", + "depth": 3, + "scope": "api", + "anchor": "cert_signature_failure", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:202d15146717", + "chapter": "errors", + "kind": "module", + "name": "`crl_signature_failure`", + "signature": "`CRL_SIGNATURE_FAILURE`", + "label": "CRL_SIGNATURE_FAILURE", + "apiSymbol": "CRL_SIGNATURE_FAILURE", + "depth": 3, + "scope": "api", + "anchor": "crl_signature_failure", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:346d669692ba", + "chapter": "errors", + "kind": "module", + "name": "`error_in_cert_not_before_field`", + "signature": "`ERROR_IN_CERT_NOT_BEFORE_FIELD`", + "label": "ERROR_IN_CERT_NOT_BEFORE_FIELD", + "apiSymbol": "ERROR_IN_CERT_NOT_BEFORE_FIELD", + "depth": 3, + "scope": "api", + "anchor": "error_in_cert_not_before_field", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:f2bba73f3c9d", + "chapter": "errors", + "kind": "module", + "name": "`error_in_cert_not_after_field`", + "signature": "`ERROR_IN_CERT_NOT_AFTER_FIELD`", + "label": "ERROR_IN_CERT_NOT_AFTER_FIELD", + "apiSymbol": "ERROR_IN_CERT_NOT_AFTER_FIELD", + "depth": 3, + "scope": "api", + "anchor": "error_in_cert_not_after_field", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:b47afd067f88", + "chapter": "errors", + "kind": "module", + "name": "`error_in_crl_last_update_field`", + "signature": "`ERROR_IN_CRL_LAST_UPDATE_FIELD`", + "label": "ERROR_IN_CRL_LAST_UPDATE_FIELD", + "apiSymbol": "ERROR_IN_CRL_LAST_UPDATE_FIELD", + "depth": 3, + "scope": "api", + "anchor": "error_in_crl_last_update_field", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:db9b24b9c765", + "chapter": "errors", + "kind": "module", + "name": "`error_in_crl_next_update_field`", + "signature": "`ERROR_IN_CRL_NEXT_UPDATE_FIELD`", + "label": "ERROR_IN_CRL_NEXT_UPDATE_FIELD", + "apiSymbol": "ERROR_IN_CRL_NEXT_UPDATE_FIELD", + "depth": 3, + "scope": "api", + "anchor": "error_in_crl_next_update_field", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:5cc3d7507fd1", + "chapter": "errors", + "kind": "module", + "name": "`unable_to_decrypt_cert_signature`", + "signature": "`UNABLE_TO_DECRYPT_CERT_SIGNATURE`", + "label": "UNABLE_TO_DECRYPT_CERT_SIGNATURE", + "apiSymbol": "UNABLE_TO_DECRYPT_CERT_SIGNATURE", + "depth": 3, + "scope": "api", + "anchor": "unable_to_decrypt_cert_signature", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:9327a0a0138f", + "chapter": "errors", + "kind": "module", + "name": "`unable_to_decrypt_crl_signature`", + "signature": "`UNABLE_TO_DECRYPT_CRL_SIGNATURE`", + "label": "UNABLE_TO_DECRYPT_CRL_SIGNATURE", + "apiSymbol": "UNABLE_TO_DECRYPT_CRL_SIGNATURE", + "depth": 3, + "scope": "api", + "anchor": "unable_to_decrypt_crl_signature", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:9003e1f604af", + "chapter": "errors", + "kind": "module", + "name": "`unable_to_decode_issuer_public_key`", + "signature": "`UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY`", + "label": "UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY", + "apiSymbol": "UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY", + "depth": 3, + "scope": "api", + "anchor": "unable_to_decode_issuer_public_key", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "errors:0cee3a21de6b", + "chapter": "errors", + "kind": "module", + "name": "other_openssl_errors", + "signature": "Other OpenSSL Errors", + "label": "Other OpenSSL Errors", + "apiSymbol": "other_openssl_errors", + "depth": 2, + "scope": "documentation", + "anchor": "other-openssl-errors", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "errors:c19451db58d6", + "chapter": "errors", + "kind": "module", + "name": "`out_of_mem`", + "signature": "`OUT_OF_MEM`", + "label": "OUT_OF_MEM", + "apiSymbol": "OUT_OF_MEM", + "depth": 3, + "scope": "api", + "anchor": "out_of_mem", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:errors" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:errors" + }, + "anchorSource": "exact" + }, + { + "id": "events:35d84c48c9c2", + "chapter": "events", + "kind": "module", + "name": "Events", + "signature": "Events", + "label": "Events", + "apiSymbol": "Events", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/corpus/1677-emitter-listeners.ts", + "tests/corpus/2620-ee-override-once-order.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "events:95ba58ddaa1b", + "chapter": "events", + "kind": "module", + "name": "passing_arguments_and_`this`_to_listeners", + "signature": "Passing arguments and `this` to listeners", + "label": "Passing arguments and this to listeners", + "apiSymbol": "this", + "depth": 1, + "scope": "api", + "anchor": "passing-arguments-and-this-to-listeners", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:events" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:events" + }, + "anchorSource": "exact" + }, + { + "id": "events:f70b98aa4292", + "chapter": "events", + "kind": "module", + "name": "asynchronous_vs._synchronous", + "signature": "Asynchronous vs. synchronous", + "label": "Asynchronous vs. synchronous", + "apiSymbol": "asynchronous_vs._synchronous", + "depth": 1, + "scope": "documentation", + "anchor": "asynchronous-vs-synchronous", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "events:1d5b4a5811c1", + "chapter": "events", + "kind": "module", + "name": "handling_events_only_once", + "signature": "Handling events only once", + "label": "Handling events only once", + "apiSymbol": "handling_events_only_once", + "depth": 1, + "scope": "documentation", + "anchor": "handling-events-only-once", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "events:be9d4cda7397", + "chapter": "events", + "kind": "module", + "name": "error_events", + "signature": "Error events", + "label": "Error events", + "apiSymbol": "error_events", + "depth": 1, + "scope": "documentation", + "anchor": "error-events", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "events:182126adea92", + "chapter": "events", + "kind": "module", + "name": "capture_rejections_of_promises", + "signature": "Capture rejections of promises", + "label": "Capture rejections of promises", + "apiSymbol": "capture_rejections_of_promises", + "depth": 1, + "scope": "documentation", + "anchor": "capture-rejections-of-promises", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "events:a24d4325b57d", + "chapter": "events", + "kind": "module", + "name": "`eventtarget`_and_`event`_api", + "signature": "`EventTarget` and `Event` API", + "label": "EventTarget", + "apiSymbol": "EventTarget", + "depth": 1, + "scope": "api", + "anchor": "eventtarget-and-event-api", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:events" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:events" + }, + "anchorSource": "exact" + }, + { + "id": "events:5ec1a270a500", + "chapter": "events", + "kind": "module", + "name": "node.js_`eventtarget`_vs._dom_`eventtarget`", + "signature": "Node.js `EventTarget` vs. DOM `EventTarget`", + "label": "Node.js EventTarget vs. DOM EventTarget", + "apiSymbol": "EventTarget", + "depth": 2, + "scope": "api", + "anchor": "nodejs-eventtarget-vs-dom-eventtarget", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:events" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:events" + }, + "anchorSource": "exact" + }, + { + "id": "events:7f27ccc79a12", + "chapter": "events", + "kind": "module", + "name": "`nodeeventtarget`_vs._`eventemitter`", + "signature": "`NodeEventTarget` vs. `EventEmitter`", + "label": "NodeEventTarget", + "apiSymbol": "NodeEventTarget", + "depth": 2, + "scope": "api", + "anchor": "nodeeventtarget-vs-eventemitter", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:events" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:events" + }, + "anchorSource": "exact" + }, + { + "id": "events:991246eb65a4", + "chapter": "events", + "kind": "module", + "name": "event_listener", + "signature": "Event listener", + "label": "Event listener", + "apiSymbol": "event_listener", + "depth": 2, + "scope": "documentation", + "anchor": "event-listener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "events:4b769414ea5e", + "chapter": "events", + "kind": "module", + "name": "`eventtarget`_error_handling", + "signature": "`EventTarget` error handling", + "label": "EventTarget", + "apiSymbol": "EventTarget", + "depth": 2, + "scope": "api", + "anchor": "eventtarget-error-handling", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:events" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:events" + }, + "anchorSource": "exact" + }, + { + "id": "events:e4c8500e4b93", + "chapter": "events", + "kind": "class", + "name": "Event", + "signature": "Class: `Event`", + "label": "Event", + "apiSymbol": "Event", + "depth": 2, + "scope": "api", + "anchor": "class-event", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:events" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:events" + }, + "anchorSource": "exact" + }, + { + "id": "events:e5c069095e5c", + "chapter": "events", + "kind": "method", + "name": "composedPath", + "signature": "`event.composedPath()`", + "label": "event.composedPath()", + "apiSymbol": "event.composedPath", + "depth": 3, + "scope": "api", + "anchor": "eventcomposedpath", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:events" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:events" + }, + "anchorSource": "exact" + }, + { + "id": "events:85436cb5ea2b", + "chapter": "events", + "kind": "method", + "name": "initEvent", + "signature": "`event.initEvent(type[, bubbles[, cancelable]])`", + "label": "event.initEvent(type[, bubbles[, cancelable]])", + "apiSymbol": "event.initEvent", + "depth": 3, + "scope": "api", + "anchor": "eventiniteventtype-bubbles-cancelable", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: The WHATWG spec considers it deprecated and users shouldn't use it at all.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:events" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:events" + }, + "anchorSource": "exact" + }, + { + "id": "events:5848ab30b2e5", + "chapter": "events", + "kind": "method", + "name": "preventDefault", + "signature": "`event.preventDefault()`", + "label": "event.preventDefault()", + "apiSymbol": "event.preventDefault", + "depth": 3, + "scope": "api", + "anchor": "eventpreventdefault", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:events" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:events" + }, + "anchorSource": "exact" + }, + { + "id": "events:c16743d778c4", + "chapter": "events", + "kind": "method", + "name": "stopImmediatePropagation", + "signature": "`event.stopImmediatePropagation()`", + "label": "event.stopImmediatePropagation()", + "apiSymbol": "event.stopImmediatePropagation", + "depth": 3, + "scope": "api", + "anchor": "eventstopimmediatepropagation", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:events" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:events" + }, + "anchorSource": "exact" + }, + { + "id": "events:9bab844aa1c2", + "chapter": "events", + "kind": "method", + "name": "stopPropagation", + "signature": "`event.stopPropagation()`", + "label": "event.stopPropagation()", + "apiSymbol": "event.stopPropagation", + "depth": 3, + "scope": "api", + "anchor": "eventstoppropagation", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:events" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:events" + }, + "anchorSource": "exact" + }, + { + "id": "events:abe0ea02a52c", + "chapter": "events", + "kind": "boolean", + "name": "Type", + "signature": "`bubbles` Type: {boolean} Always returns `false`.", + "label": "bubbles", + "apiSymbol": "bubbles", + "depth": 3, + "scope": "api", + "anchor": "class-event", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:events" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:events" + }, + "anchorSource": "ancestor" + }, + { + "id": "events:44e2dc361428", + "chapter": "events", + "kind": "boolean", + "name": "Type", + "signature": "`cancelBubble` Type: {boolean}", + "label": "cancelBubble", + "apiSymbol": "cancelBubble", + "depth": 3, + "scope": "api", + "anchor": "class-event", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use [`event.stopPropagation()`][] instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:events" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:events" + }, + "anchorSource": "ancestor" + }, + { + "id": "events:51ee094d86d3", + "chapter": "events", + "kind": "boolean", + "name": "Type", + "signature": "`cancelable` Type: {boolean} True if the event was created with the `cancelable` option.", + "label": "cancelable", + "apiSymbol": "cancelable", + "depth": 3, + "scope": "api", + "anchor": "class-event", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:events" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:events" + }, + "anchorSource": "ancestor" + }, + { + "id": "events:369be877d737", + "chapter": "events", + "kind": "boolean", + "name": "Type", + "signature": "`composed` Type: {boolean} Always returns `false`.", + "label": "composed", + "apiSymbol": "composed", + "depth": 3, + "scope": "api", + "anchor": "class-event", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:events" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:events" + }, + "anchorSource": "ancestor" + }, + { + "id": "events:4e0c88e53f49", + "chapter": "events", + "kind": "EventTarget", + "name": "Type", + "signature": "`currentTarget` Type: {EventTarget} The `EventTarget` dispatching the event.", + "label": "currentTarget", + "apiSymbol": "currentTarget", + "depth": 3, + "scope": "api", + "anchor": "class-event", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:events" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:events" + }, + "anchorSource": "ancestor" + }, + { + "id": "events:1e8421d3cc04", + "chapter": "events", + "kind": "boolean", + "name": "Type", + "signature": "`defaultPrevented` Type: {boolean}", + "label": "defaultPrevented", + "apiSymbol": "defaultPrevented", + "depth": 3, + "scope": "api", + "anchor": "class-event", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:events" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:events" + }, + "anchorSource": "ancestor" + }, + { + "id": "events:602700d21dcf", + "chapter": "events", + "kind": "number", + "name": "Type", + "signature": "`eventPhase` Type: {number} Returns `0` while an event is not being dispatched, `2` while it is being dispatched.", + "label": "eventPhase", + "apiSymbol": "eventPhase", + "depth": 3, + "scope": "api", + "anchor": "class-event", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:events" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:events" + }, + "anchorSource": "ancestor" + }, + { + "id": "events:4e83ca3c5e4c", + "chapter": "events", + "kind": "boolean", + "name": "Type", + "signature": "`isTrusted` Type: {boolean}", + "label": "isTrusted", + "apiSymbol": "isTrusted", + "depth": 3, + "scope": "api", + "anchor": "class-event", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:events" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:events" + }, + "anchorSource": "ancestor" + }, + { + "id": "events:100e8d286de2", + "chapter": "events", + "kind": "boolean", + "name": "Type", + "signature": "`returnValue` Type: {boolean} True if the event has not been canceled.", + "label": "returnValue", + "apiSymbol": "returnValue", + "depth": 3, + "scope": "api", + "anchor": "class-event", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use [`event.defaultPrevented`][] instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:events" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:events" + }, + "anchorSource": "ancestor" + }, + { + "id": "events:3d3da3858847", + "chapter": "events", + "kind": "EventTarget", + "name": "Type", + "signature": "`srcElement` Type: {EventTarget} The `EventTarget` dispatching the event.", + "label": "srcElement", + "apiSymbol": "srcElement", + "depth": 3, + "scope": "api", + "anchor": "class-event", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use [`event.target`][] instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:events" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:events" + }, + "anchorSource": "ancestor" + }, + { + "id": "events:fdfee26f8c22", + "chapter": "events", + "kind": "EventTarget", + "name": "Type", + "signature": "`target` Type: {EventTarget} The `EventTarget` dispatching the event.", + "label": "target", + "apiSymbol": "target", + "depth": 3, + "scope": "api", + "anchor": "class-event", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:events" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:events" + }, + "anchorSource": "ancestor" + }, + { + "id": "events:051e03ef86de", + "chapter": "events", + "kind": "number", + "name": "Type", + "signature": "`timeStamp` Type: {number}", + "label": "timeStamp", + "apiSymbol": "timeStamp", + "depth": 3, + "scope": "api", + "anchor": "class-event", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:events" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:events" + }, + "anchorSource": "ancestor" + }, + { + "id": "events:88b512802b39", + "chapter": "events", + "kind": "string", + "name": "Type", + "signature": "`type` Type: {string}", + "label": "type", + "apiSymbol": "type", + "depth": 3, + "scope": "api", + "anchor": "class-event", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:events" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:events" + }, + "anchorSource": "ancestor" + }, + { + "id": "events:0e6d48a3f20d", + "chapter": "events", + "kind": "class", + "name": "EventTarget", + "signature": "Class: `EventTarget`", + "label": "EventTarget", + "apiSymbol": "EventTarget", + "depth": 2, + "scope": "api", + "anchor": "class-eventtarget", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:events" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:events" + }, + "anchorSource": "exact" + }, + { + "id": "events:42fba62569dd", + "chapter": "events", + "kind": "method", + "name": "addEventListener", + "signature": "`eventTarget.addEventListener(type, listener[, options])`", + "label": "eventTarget.addEventListener(type, listener[, options])", + "apiSymbol": "eventTarget.addEventListener", + "depth": 3, + "scope": "api", + "anchor": "eventtargetaddeventlistenertype-listener-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:events" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:events" + }, + "anchorSource": "exact" + }, + { + "id": "events:74e10bac2937", + "chapter": "events", + "kind": "method", + "name": "dispatchEvent", + "signature": "`eventTarget.dispatchEvent(event)`", + "label": "eventTarget.dispatchEvent(event)", + "apiSymbol": "eventTarget.dispatchEvent", + "depth": 3, + "scope": "api", + "anchor": "eventtargetdispatcheventevent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:events" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:events" + }, + "anchorSource": "exact" + }, + { + "id": "events:105a39bcbc8b", + "chapter": "events", + "kind": "method", + "name": "removeEventListener", + "signature": "`eventTarget.removeEventListener(type, listener[, options])`", + "label": "eventTarget.removeEventListener(type, listener[, options])", + "apiSymbol": "eventTarget.removeEventListener", + "depth": 3, + "scope": "api", + "anchor": "eventtargetremoveeventlistenertype-listener-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:events" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:events" + }, + "anchorSource": "exact" + }, + { + "id": "events:ca3c02a8aed0", + "chapter": "events", + "kind": "class", + "name": "CustomEvent", + "signature": "Class: `CustomEvent`", + "label": "CustomEvent", + "apiSymbol": "CustomEvent", + "depth": 2, + "scope": "api", + "anchor": "class-customevent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:events" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:events" + }, + "anchorSource": "exact" + }, + { + "id": "events:5720c4b3c9cf", + "chapter": "events", + "kind": "any", + "name": "Type", + "signature": "`detail` Type: {any} Returns custom data passed when initializing.", + "label": "detail", + "apiSymbol": "detail", + "depth": 3, + "scope": "api", + "anchor": "class-customevent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:events" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:events" + }, + "anchorSource": "ancestor" + }, + { + "id": "events:2d04eeb1c58c", + "chapter": "events", + "kind": "class", + "name": "NodeEventTarget", + "signature": "Class: `NodeEventTarget`", + "label": "NodeEventTarget", + "apiSymbol": "NodeEventTarget", + "depth": 2, + "scope": "api", + "anchor": "class-nodeeventtarget", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:events" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:events" + }, + "anchorSource": "exact" + }, + { + "id": "events:202a497f7819", + "chapter": "events", + "kind": "method", + "name": "addListener", + "signature": "`nodeEventTarget.addListener(type, listener)`", + "label": "nodeEventTarget.addListener(type, listener)", + "apiSymbol": "nodeEventTarget.addListener", + "depth": 3, + "scope": "api", + "anchor": "nodeeventtargetaddlistenertype-listener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:events" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:events" + }, + "anchorSource": "exact" + }, + { + "id": "events:87cb9007c53c", + "chapter": "events", + "kind": "method", + "name": "emit", + "signature": "`nodeEventTarget.emit(type, arg)`", + "label": "nodeEventTarget.emit(type, arg)", + "apiSymbol": "nodeEventTarget.emit", + "depth": 3, + "scope": "api", + "anchor": "nodeeventtargetemittype-arg", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:events" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:events" + }, + "anchorSource": "exact" + }, + { + "id": "events:e669c515fb3f", + "chapter": "events", + "kind": "method", + "name": "eventNames", + "signature": "`nodeEventTarget.eventNames()`", + "label": "nodeEventTarget.eventNames()", + "apiSymbol": "nodeEventTarget.eventNames", + "depth": 3, + "scope": "api", + "anchor": "nodeeventtargeteventnames", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:events" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:events" + }, + "anchorSource": "exact" + }, + { + "id": "events:8b06a2b39407", + "chapter": "events", + "kind": "method", + "name": "listenerCount", + "signature": "`nodeEventTarget.listenerCount(type)`", + "label": "nodeEventTarget.listenerCount(type)", + "apiSymbol": "nodeEventTarget.listenerCount", + "depth": 3, + "scope": "api", + "anchor": "nodeeventtargetlistenercounttype", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:events" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:events" + }, + "anchorSource": "exact" + }, + { + "id": "events:607c57aa8216", + "chapter": "events", + "kind": "method", + "name": "setMaxListeners", + "signature": "`nodeEventTarget.setMaxListeners(n)`", + "label": "nodeEventTarget.setMaxListeners(n)", + "apiSymbol": "nodeEventTarget.setMaxListeners", + "depth": 3, + "scope": "api", + "anchor": "nodeeventtargetsetmaxlistenersn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:events" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:events" + }, + "anchorSource": "exact" + }, + { + "id": "events:edb66e151544", + "chapter": "events", + "kind": "method", + "name": "getMaxListeners", + "signature": "`nodeEventTarget.getMaxListeners()`", + "label": "nodeEventTarget.getMaxListeners()", + "apiSymbol": "nodeEventTarget.getMaxListeners", + "depth": 3, + "scope": "api", + "anchor": "nodeeventtargetgetmaxlisteners", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:events" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:events" + }, + "anchorSource": "exact" + }, + { + "id": "events:8e9dac2c393a", + "chapter": "events", + "kind": "method", + "name": "off", + "signature": "`nodeEventTarget.off(type, listener[, options])`", + "label": "nodeEventTarget.off(type, listener[, options])", + "apiSymbol": "nodeEventTarget.off", + "depth": 3, + "scope": "api", + "anchor": "nodeeventtargetofftype-listener-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:events" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:events" + }, + "anchorSource": "exact" + }, + { + "id": "events:760f784ab4d9", + "chapter": "events", + "kind": "method", + "name": "on", + "signature": "`nodeEventTarget.on(type, listener)`", + "label": "nodeEventTarget.on(type, listener)", + "apiSymbol": "nodeEventTarget.on", + "depth": 3, + "scope": "api", + "anchor": "nodeeventtargetontype-listener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:events" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:events" + }, + "anchorSource": "exact" + }, + { + "id": "events:f12a1d36b009", + "chapter": "events", + "kind": "method", + "name": "once", + "signature": "`nodeEventTarget.once(type, listener)`", + "label": "nodeEventTarget.once(type, listener)", + "apiSymbol": "nodeEventTarget.once", + "depth": 3, + "scope": "api", + "anchor": "nodeeventtargetoncetype-listener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:events" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:events" + }, + "anchorSource": "exact" + }, + { + "id": "events:5966abd22448", + "chapter": "events", + "kind": "method", + "name": "removeAllListeners", + "signature": "`nodeEventTarget.removeAllListeners([type])`", + "label": "nodeEventTarget.removeAllListeners([type])", + "apiSymbol": "nodeEventTarget.removeAllListeners", + "depth": 3, + "scope": "api", + "anchor": "nodeeventtargetremovealllistenerstype", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:events" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:events" + }, + "anchorSource": "exact" + }, + { + "id": "events:3d4545e78514", + "chapter": "events", + "kind": "method", + "name": "removeListener", + "signature": "`nodeEventTarget.removeListener(type, listener[, options])`", + "label": "nodeEventTarget.removeListener(type, listener[, options])", + "apiSymbol": "nodeEventTarget.removeListener", + "depth": 3, + "scope": "api", + "anchor": "nodeeventtargetremovelistenertype-listener-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:events" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:events" + }, + "anchorSource": "exact" + }, + { + "id": "events:910527a05b92", + "chapter": "events", + "kind": "class", + "name": "EventEmitter", + "signature": "Class: `EventEmitter`", + "label": "EventEmitter", + "apiSymbol": "EventEmitter", + "depth": 1, + "scope": "api", + "anchor": "class-eventemitter", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:EventEmitter", + "tests": [ + "tests/corpus/1677-emitter-listeners.ts", + "tests/corpus/2620-ee-override-once-order.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:events.EventEmitter", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "events:edad59305c20", + "chapter": "events", + "kind": "module", + "name": "`emitter[symbol.for('nodejs.rejection')](err,_eventname[,_...args])`", + "signature": "`emitter[Symbol.for('nodejs.rejection')](err, eventName[, ...args])`", + "label": "emitter[Symbol.for('nodejs.rejection')](err, eventName[, ...args])", + "apiSymbol": "emitter", + "depth": 2, + "scope": "api", + "anchor": "emittersymbolfornodejsrejectionerr-eventname-args", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:events" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:events" + }, + "anchorSource": "exact" + }, + { + "id": "events:ade9c05cb8a6", + "chapter": "events", + "kind": "method", + "name": "addListener", + "signature": "`emitter.addListener(eventName, listener)`", + "label": "emitter.addListener(eventName, listener)", + "apiSymbol": "emitter.addListener", + "depth": 2, + "scope": "api", + "anchor": "emitteraddlistenereventname-listener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:emitter.addListener", + "tests": [ + "tests/corpus/1677-emitter-listeners.ts", + "tests/corpus/2620-ee-override-once-order.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:events.emitter.addListener", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "events:4480339d71a7", + "chapter": "events", + "kind": "method", + "name": "emit", + "signature": "`emitter.emit(eventName[, ...args])`", + "label": "emitter.emit(eventName[, ...args])", + "apiSymbol": "emitter.emit", + "depth": 2, + "scope": "api", + "anchor": "emitteremiteventname-args", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:emitter.emit", + "tests": [ + "tests/corpus/1677-emitter-listeners.ts", + "tests/corpus/2620-ee-override-once-order.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:events.emitter.emit", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "events:1141f56c5e25", + "chapter": "events", + "kind": "method", + "name": "eventNames", + "signature": "`emitter.eventNames()`", + "label": "emitter.eventNames()", + "apiSymbol": "emitter.eventNames", + "depth": 2, + "scope": "api", + "anchor": "emittereventnames", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:emitter.eventNames", + "tests": [ + "tests/corpus/1677-emitter-listeners.ts", + "tests/corpus/2620-ee-override-once-order.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:events.emitter.eventNames", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "events:a11da766dad1", + "chapter": "events", + "kind": "method", + "name": "getMaxListeners", + "signature": "`emitter.getMaxListeners()`", + "label": "emitter.getMaxListeners()", + "apiSymbol": "emitter.getMaxListeners", + "depth": 2, + "scope": "api", + "anchor": "emittergetmaxlisteners", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:emitter.getMaxListeners", + "tests": [ + "tests/corpus/1677-emitter-listeners.ts", + "tests/corpus/2620-ee-override-once-order.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:events.emitter.getMaxListeners", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "events:8c21cb9ee7a9", + "chapter": "events", + "kind": "method", + "name": "listenerCount", + "signature": "`emitter.listenerCount(eventName[, listener])`", + "label": "emitter.listenerCount(eventName[, listener])", + "apiSymbol": "emitter.listenerCount", + "depth": 2, + "scope": "api", + "anchor": "emitterlistenercounteventname-listener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:emitter.listenerCount", + "tests": [ + "tests/corpus/1677-emitter-listeners.ts", + "tests/corpus/2620-ee-override-once-order.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:events.emitter.listenerCount", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "events:a016b013db5e", + "chapter": "events", + "kind": "method", + "name": "listeners", + "signature": "`emitter.listeners(eventName)`", + "label": "emitter.listeners(eventName)", + "apiSymbol": "emitter.listeners", + "depth": 2, + "scope": "api", + "anchor": "emitterlistenerseventname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:emitter.listeners", + "tests": [ + "tests/corpus/1677-emitter-listeners.ts", + "tests/corpus/2620-ee-override-once-order.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:events.emitter.listeners", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "events:57657668f95c", + "chapter": "events", + "kind": "method", + "name": "off", + "signature": "`emitter.off(eventName, listener)`", + "label": "emitter.off(eventName, listener)", + "apiSymbol": "emitter.off", + "depth": 2, + "scope": "api", + "anchor": "emitteroffeventname-listener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:emitter.off", + "tests": [ + "tests/corpus/1677-emitter-listeners.ts", + "tests/corpus/2620-ee-override-once-order.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:events.emitter.off", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "events:ca3ee0bd3471", + "chapter": "events", + "kind": "method", + "name": "on", + "signature": "`emitter.on(eventName, listener)`", + "label": "emitter.on(eventName, listener)", + "apiSymbol": "emitter.on", + "depth": 2, + "scope": "api", + "anchor": "emitteroneventname-listener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:emitter.on", + "tests": [ + "tests/corpus/1677-emitter-listeners.ts", + "tests/corpus/2620-ee-override-once-order.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:events.emitter.on", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "events:fc1100224d9e", + "chapter": "events", + "kind": "method", + "name": "once", + "signature": "`emitter.once(eventName, listener)`", + "label": "emitter.once(eventName, listener)", + "apiSymbol": "emitter.once", + "depth": 2, + "scope": "api", + "anchor": "emitteronceeventname-listener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:emitter.once", + "tests": [ + "tests/corpus/1677-emitter-listeners.ts", + "tests/corpus/2620-ee-override-once-order.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:events.emitter.once", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "events:c48f9e75b5cb", + "chapter": "events", + "kind": "method", + "name": "prependListener", + "signature": "`emitter.prependListener(eventName, listener)`", + "label": "emitter.prependListener(eventName, listener)", + "apiSymbol": "emitter.prependListener", + "depth": 2, + "scope": "api", + "anchor": "emitterprependlistenereventname-listener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:emitter.prependListener", + "tests": [ + "tests/corpus/1677-emitter-listeners.ts", + "tests/corpus/2620-ee-override-once-order.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:events.emitter.prependListener", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "events:159633e9f978", + "chapter": "events", + "kind": "method", + "name": "prependOnceListener", + "signature": "`emitter.prependOnceListener(eventName, listener)`", + "label": "emitter.prependOnceListener(eventName, listener)", + "apiSymbol": "emitter.prependOnceListener", + "depth": 2, + "scope": "api", + "anchor": "emitterprependoncelistenereventname-listener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:emitter.prependOnceListener", + "tests": [ + "tests/corpus/1677-emitter-listeners.ts", + "tests/corpus/2620-ee-override-once-order.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:events.emitter.prependOnceListener", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "events:4d2830e25fd6", + "chapter": "events", + "kind": "method", + "name": "removeAllListeners", + "signature": "`emitter.removeAllListeners([eventName])`", + "label": "emitter.removeAllListeners([eventName])", + "apiSymbol": "emitter.removeAllListeners", + "depth": 2, + "scope": "api", + "anchor": "emitterremovealllistenerseventname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:emitter.removeAllListeners", + "tests": [ + "tests/corpus/1677-emitter-listeners.ts", + "tests/corpus/2620-ee-override-once-order.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:events.emitter.removeAllListeners", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "events:8d46803d9907", + "chapter": "events", + "kind": "method", + "name": "removeListener", + "signature": "`emitter.removeListener(eventName, listener)`", + "label": "emitter.removeListener(eventName, listener)", + "apiSymbol": "emitter.removeListener", + "depth": 2, + "scope": "api", + "anchor": "emitterremovelistenereventname-listener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:emitter.removeListener", + "tests": [ + "tests/corpus/1677-emitter-listeners.ts", + "tests/corpus/2620-ee-override-once-order.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:events.emitter.removeListener", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "events:0794dd94e66f", + "chapter": "events", + "kind": "method", + "name": "setMaxListeners", + "signature": "`emitter.setMaxListeners(n)`", + "label": "emitter.setMaxListeners(n)", + "apiSymbol": "emitter.setMaxListeners", + "depth": 2, + "scope": "api", + "anchor": "emittersetmaxlistenersn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:emitter.setMaxListeners", + "tests": [ + "tests/corpus/1677-emitter-listeners.ts", + "tests/corpus/2620-ee-override-once-order.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:events.emitter.setMaxListeners", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "events:c637289e49fa", + "chapter": "events", + "kind": "method", + "name": "rawListeners", + "signature": "`emitter.rawListeners(eventName)`", + "label": "emitter.rawListeners(eventName)", + "apiSymbol": "emitter.rawListeners", + "depth": 2, + "scope": "api", + "anchor": "emitterrawlistenerseventname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:emitter.rawListeners", + "tests": [ + "tests/corpus/1677-emitter-listeners.ts", + "tests/corpus/2620-ee-override-once-order.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:events.emitter.rawListeners", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "events:84d12b6b46e2", + "chapter": "events", + "kind": "event", + "name": "newListener", + "signature": "Event: `'newListener'`", + "label": "'newListener'", + "apiSymbol": "'newListener'", + "depth": 2, + "scope": "api", + "anchor": "event-newlistener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:events" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:events" + }, + "anchorSource": "exact" + }, + { + "id": "events:049cbb50dc90", + "chapter": "events", + "kind": "event", + "name": "removeListener", + "signature": "Event: `'removeListener'`", + "label": "'removeListener'", + "apiSymbol": "'removeListener'", + "depth": 2, + "scope": "api", + "anchor": "event-removelistener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:events" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:events" + }, + "anchorSource": "exact" + }, + { + "id": "events:4e0415c297c2", + "chapter": "events", + "kind": "class", + "name": "events.EventEmitterAsyncResource", + "signature": "Class: `events.EventEmitterAsyncResource extends EventEmitter`", + "label": "events.EventEmitterAsyncResource extends EventEmitter", + "apiSymbol": "events.EventEmitterAsyncResource extends EventEmitter", + "depth": 1, + "scope": "api", + "anchor": "class-eventseventemitterasyncresource-extends-eventemitter", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:events" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:events" + }, + "anchorSource": "exact" + }, + { + "id": "events:58455d496767", + "chapter": "events", + "kind": "method", + "name": "emitDestroy", + "signature": "`eventemitterasyncresource.emitDestroy()`", + "label": "eventemitterasyncresource.emitDestroy()", + "apiSymbol": "eventemitterasyncresource.emitDestroy", + "depth": 2, + "scope": "api", + "anchor": "eventemitterasyncresourceemitdestroy", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:events" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:events" + }, + "anchorSource": "exact" + }, + { + "id": "events:d6c6ff6963c2", + "chapter": "events", + "kind": "number", + "name": "Type", + "signature": "`asyncId` Type: {number} The unique `asyncId` assigned to the resource.", + "label": "asyncId", + "apiSymbol": "asyncId", + "depth": 2, + "scope": "api", + "anchor": "class-eventseventemitterasyncresource-extends-eventemitter", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:events" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:events" + }, + "anchorSource": "ancestor" + }, + { + "id": "events:74987fd6d95e", + "chapter": "events", + "kind": "AsyncResource", + "name": "Type", + "signature": "`asyncResource` Type: {AsyncResource} The underlying {AsyncResource}.", + "label": "asyncResource", + "apiSymbol": "asyncResource", + "depth": 2, + "scope": "api", + "anchor": "class-eventseventemitterasyncresource-extends-eventemitter", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:events" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:events" + }, + "anchorSource": "ancestor" + }, + { + "id": "events:75764554b08f", + "chapter": "events", + "kind": "number", + "name": "Type", + "signature": "`triggerAsyncId` Type: {number} The same `triggerAsyncId` that is passed to the `AsyncResource` constructor.", + "label": "triggerAsyncId", + "apiSymbol": "triggerAsyncId", + "depth": 2, + "scope": "api", + "anchor": "class-eventseventemitterasyncresource-extends-eventemitter", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:events" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:events" + }, + "anchorSource": "ancestor" + }, + { + "id": "events:27495381c85e", + "chapter": "events", + "kind": "method", + "name": "getEventListeners", + "signature": "`events.getEventListeners(emitterOrTarget, eventName)`", + "label": "events.getEventListeners(emitterOrTarget, eventName)", + "apiSymbol": "events.getEventListeners", + "depth": 1, + "scope": "api", + "anchor": "eventsgeteventlistenersemitterortarget-eventname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:events.getEventListeners", + "tests": [ + "tests/corpus/1677-emitter-listeners.ts", + "tests/corpus/2620-ee-override-once-order.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:events.events.getEventListeners", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "events:3153e3fd08ef", + "chapter": "events", + "kind": "method", + "name": "getMaxListeners", + "signature": "`events.getMaxListeners(emitterOrTarget)`", + "label": "events.getMaxListeners(emitterOrTarget)", + "apiSymbol": "events.getMaxListeners", + "depth": 1, + "scope": "api", + "anchor": "eventsgetmaxlistenersemitterortarget", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:events" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:events" + }, + "anchorSource": "exact" + }, + { + "id": "events:4bdb581b643c", + "chapter": "events", + "kind": "method", + "name": "once", + "signature": "`events.once(emitter, name[, options])`", + "label": "events.once(emitter, name[, options])", + "apiSymbol": "events.once", + "depth": 1, + "scope": "api", + "anchor": "eventsonceemitter-name-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:events.once", + "tests": [ + "tests/corpus/1677-emitter-listeners.ts", + "tests/corpus/2620-ee-override-once-order.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:events.events.once", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "events:ac8173afc694", + "chapter": "events", + "kind": "module", + "name": "caveats_when_awaiting_multiple_events", + "signature": "Caveats when awaiting multiple events", + "label": "Caveats when awaiting multiple events", + "apiSymbol": "caveats_when_awaiting_multiple_events", + "depth": 2, + "scope": "documentation", + "anchor": "caveats-when-awaiting-multiple-events", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "events:08926d83c96e", + "chapter": "events", + "kind": "method", + "name": "listenerCount", + "signature": "`events.listenerCount(emitterOrTarget, eventName)`", + "label": "events.listenerCount(emitterOrTarget, eventName)", + "apiSymbol": "events.listenerCount", + "depth": 1, + "scope": "api", + "anchor": "eventslistenercountemitterortarget-eventname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:events.listenerCount", + "tests": [ + "tests/corpus/1677-emitter-listeners.ts", + "tests/corpus/2620-ee-override-once-order.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:events.events.listenerCount", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "events:782b53b53732", + "chapter": "events", + "kind": "method", + "name": "on", + "signature": "`events.on(emitter, eventName[, options])`", + "label": "events.on(emitter, eventName[, options])", + "apiSymbol": "events.on", + "depth": 1, + "scope": "api", + "anchor": "eventsonemitter-eventname-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:events.on", + "tests": [ + "tests/corpus/1677-emitter-listeners.ts", + "tests/corpus/2620-ee-override-once-order.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:events.events.on", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "events:df4c2bafb91c", + "chapter": "events", + "kind": "method", + "name": "setMaxListeners", + "signature": "`events.setMaxListeners(n[, ...eventTargets])`", + "label": "events.setMaxListeners(n[, ...eventTargets])", + "apiSymbol": "events.setMaxListeners", + "depth": 1, + "scope": "api", + "anchor": "eventssetmaxlistenersn-eventtargets", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:events.setMaxListeners", + "tests": [ + "tests/corpus/1677-emitter-listeners.ts", + "tests/corpus/2620-ee-override-once-order.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:events.events.setMaxListeners", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "events:e933c2fc3385", + "chapter": "events", + "kind": "method", + "name": "addAbortListener", + "signature": "`events.addAbortListener(signal, listener)`", + "label": "events.addAbortListener(signal, listener)", + "apiSymbol": "events.addAbortListener", + "depth": 1, + "scope": "api", + "anchor": "eventsaddabortlistenersignal-listener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:events" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:events" + }, + "anchorSource": "exact" + }, + { + "id": "events:e65e73570ff0", + "chapter": "events", + "kind": "section", + "name": "defaultMaxListeners", + "signature": "`events.defaultMaxListeners`", + "label": "events.defaultMaxListeners", + "apiSymbol": "events.defaultMaxListeners", + "depth": 1, + "scope": "api", + "anchor": "eventsdefaultmaxlisteners", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:events" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:events.defaultMaxListeners", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "events:bb35aa562dcf", + "chapter": "events", + "kind": "section", + "name": "errorMonitor", + "signature": "`events.errorMonitor`", + "label": "events.errorMonitor", + "apiSymbol": "events.errorMonitor", + "depth": 1, + "scope": "api", + "anchor": "eventserrormonitor", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:events" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:events.errorMonitor", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "events:6e0a1c15f17b", + "chapter": "events", + "kind": "boolean", + "name": "Type", + "signature": "`captureRejections` Type: {boolean}", + "label": "captureRejections", + "apiSymbol": "captureRejections", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:events" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:events" + }, + "anchorSource": "chapter" + }, + { + "id": "events:29b4e47b3232", + "chapter": "events", + "kind": "symbol", + "name": "Type", + "signature": "`captureRejectionSymbol` Type: {symbol} `Symbol.for('nodejs.rejection')`", + "label": "captureRejectionSymbol", + "apiSymbol": "captureRejectionSymbol", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:events" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:events.captureRejectionSymbol", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "fs:0bd3dfa2c0e4", + "chapter": "fs", + "kind": "module", + "name": "fs", + "signature": "File system", + "label": "File system", + "apiSymbol": "fs", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "fs:582dc9166821", + "chapter": "fs", + "kind": "module", + "name": "promise_example", + "signature": "Promise example", + "label": "Promise example", + "apiSymbol": "promise_example", + "depth": 1, + "scope": "documentation", + "anchor": "promise-example", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "fs:a91e006c2ac8", + "chapter": "fs", + "kind": "module", + "name": "callback_example", + "signature": "Callback example", + "label": "Callback example", + "apiSymbol": "callback_example", + "depth": 1, + "scope": "documentation", + "anchor": "callback-example", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "fs:ba9d9849ab19", + "chapter": "fs", + "kind": "module", + "name": "synchronous_example", + "signature": "Synchronous example", + "label": "Synchronous example", + "apiSymbol": "synchronous_example", + "depth": 1, + "scope": "documentation", + "anchor": "synchronous-example", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "fs:6e5c5a61c82e", + "chapter": "fs", + "kind": "module", + "name": "promises_api", + "signature": "Promises API", + "label": "Promises API", + "apiSymbol": "promises_api", + "depth": 1, + "scope": "documentation", + "anchor": "promises-api", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "fs:886837078c6b", + "chapter": "fs", + "kind": "class", + "name": "FileHandle", + "signature": "Class: `FileHandle`", + "label": "FileHandle", + "apiSymbol": "FileHandle", + "depth": 2, + "scope": "api", + "anchor": "class-filehandle", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:7509ca034d96", + "chapter": "fs", + "kind": "method", + "name": "appendFile", + "signature": "`filehandle.appendFile(data[, options])`", + "label": "filehandle.appendFile(data[, options])", + "apiSymbol": "filehandle.appendFile", + "depth": 3, + "scope": "api", + "anchor": "filehandleappendfiledata-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:77606e74b3ec", + "chapter": "fs", + "kind": "method", + "name": "chmod", + "signature": "`filehandle.chmod(mode)`", + "label": "filehandle.chmod(mode)", + "apiSymbol": "filehandle.chmod", + "depth": 3, + "scope": "api", + "anchor": "filehandlechmodmode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:2ffdbc463a9c", + "chapter": "fs", + "kind": "method", + "name": "chown", + "signature": "`filehandle.chown(uid, gid)`", + "label": "filehandle.chown(uid, gid)", + "apiSymbol": "filehandle.chown", + "depth": 3, + "scope": "api", + "anchor": "filehandlechownuid-gid", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:93dbe7301528", + "chapter": "fs", + "kind": "method", + "name": "close", + "signature": "`filehandle.close()`", + "label": "filehandle.close()", + "apiSymbol": "filehandle.close", + "depth": 3, + "scope": "api", + "anchor": "filehandleclose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:ee271c8ef141", + "chapter": "fs", + "kind": "method", + "name": "createReadStream", + "signature": "`filehandle.createReadStream([options])`", + "label": "filehandle.createReadStream([options])", + "apiSymbol": "filehandle.createReadStream", + "depth": 3, + "scope": "api", + "anchor": "filehandlecreatereadstreamoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:a1fc413410dc", + "chapter": "fs", + "kind": "method", + "name": "createWriteStream", + "signature": "`filehandle.createWriteStream([options])`", + "label": "filehandle.createWriteStream([options])", + "apiSymbol": "filehandle.createWriteStream", + "depth": 3, + "scope": "api", + "anchor": "filehandlecreatewritestreamoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:d33d57b92a1d", + "chapter": "fs", + "kind": "method", + "name": "datasync", + "signature": "`filehandle.datasync()`", + "label": "filehandle.datasync()", + "apiSymbol": "filehandle.datasync", + "depth": 3, + "scope": "api", + "anchor": "filehandledatasync", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:8bff339d602d", + "chapter": "fs", + "kind": "method", + "name": "read", + "signature": "`filehandle.read(buffer, offset, length, position)`", + "label": "filehandle.read(buffer, offset, length, position)", + "apiSymbol": "filehandle.read", + "depth": 3, + "scope": "api", + "anchor": "filehandlereadbuffer-offset-length-position", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:c40bb4ebc6e0", + "chapter": "fs", + "kind": "method", + "name": "read", + "signature": "`filehandle.read([options])`", + "label": "filehandle.read([options])", + "apiSymbol": "filehandle.read", + "depth": 3, + "scope": "api", + "anchor": "filehandlereadoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:37b9ee6911bc", + "chapter": "fs", + "kind": "method", + "name": "read", + "signature": "`filehandle.read(buffer[, options])`", + "label": "filehandle.read(buffer[, options])", + "apiSymbol": "filehandle.read", + "depth": 3, + "scope": "api", + "anchor": "filehandlereadbuffer-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:5e79e4419ef8", + "chapter": "fs", + "kind": "method", + "name": "readableWebStream", + "signature": "`filehandle.readableWebStream([options])`", + "label": "filehandle.readableWebStream([options])", + "apiSymbol": "filehandle.readableWebStream", + "depth": 3, + "scope": "api", + "anchor": "filehandlereadablewebstreamoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:bd80d74b4184", + "chapter": "fs", + "kind": "method", + "name": "readFile", + "signature": "`filehandle.readFile(options)`", + "label": "filehandle.readFile(options)", + "apiSymbol": "filehandle.readFile", + "depth": 3, + "scope": "api", + "anchor": "filehandlereadfileoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:0c4448395482", + "chapter": "fs", + "kind": "method", + "name": "readLines", + "signature": "`filehandle.readLines([options])`", + "label": "filehandle.readLines([options])", + "apiSymbol": "filehandle.readLines", + "depth": 3, + "scope": "api", + "anchor": "filehandlereadlinesoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:9a3fa1465bad", + "chapter": "fs", + "kind": "method", + "name": "readv", + "signature": "`filehandle.readv(buffers[, position])`", + "label": "filehandle.readv(buffers[, position])", + "apiSymbol": "filehandle.readv", + "depth": 3, + "scope": "api", + "anchor": "filehandlereadvbuffers-position", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:1cf4b859f9c4", + "chapter": "fs", + "kind": "method", + "name": "stat", + "signature": "`filehandle.stat([options])`", + "label": "filehandle.stat([options])", + "apiSymbol": "filehandle.stat", + "depth": 3, + "scope": "api", + "anchor": "filehandlestatoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:59ec45ce6f17", + "chapter": "fs", + "kind": "method", + "name": "sync", + "signature": "`filehandle.sync()`", + "label": "filehandle.sync()", + "apiSymbol": "filehandle.sync", + "depth": 3, + "scope": "api", + "anchor": "filehandlesync", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:690d17d26e1b", + "chapter": "fs", + "kind": "method", + "name": "truncate", + "signature": "`filehandle.truncate(len)`", + "label": "filehandle.truncate(len)", + "apiSymbol": "filehandle.truncate", + "depth": 3, + "scope": "api", + "anchor": "filehandletruncatelen", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:bf3f2dc9d161", + "chapter": "fs", + "kind": "method", + "name": "utimes", + "signature": "`filehandle.utimes(atime, mtime)`", + "label": "filehandle.utimes(atime, mtime)", + "apiSymbol": "filehandle.utimes", + "depth": 3, + "scope": "api", + "anchor": "filehandleutimesatime-mtime", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:d365e35631b7", + "chapter": "fs", + "kind": "method", + "name": "write", + "signature": "`filehandle.write(buffer, offset[, length[, position]])`", + "label": "filehandle.write(buffer, offset[, length[, position]])", + "apiSymbol": "filehandle.write", + "depth": 3, + "scope": "api", + "anchor": "filehandlewritebuffer-offset-length-position", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:e0274f1c227a", + "chapter": "fs", + "kind": "method", + "name": "write", + "signature": "`filehandle.write(buffer[, options])`", + "label": "filehandle.write(buffer[, options])", + "apiSymbol": "filehandle.write", + "depth": 3, + "scope": "api", + "anchor": "filehandlewritebuffer-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:c9a5ba4ae462", + "chapter": "fs", + "kind": "method", + "name": "write", + "signature": "`filehandle.write(string[, position[, encoding]])`", + "label": "filehandle.write(string[, position[, encoding]])", + "apiSymbol": "filehandle.write", + "depth": 3, + "scope": "api", + "anchor": "filehandlewritestring-position-encoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:f6da97a332b4", + "chapter": "fs", + "kind": "method", + "name": "writeFile", + "signature": "`filehandle.writeFile(data, options)`", + "label": "filehandle.writeFile(data, options)", + "apiSymbol": "filehandle.writeFile", + "depth": 3, + "scope": "api", + "anchor": "filehandlewritefiledata-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:f899b0e9d2d5", + "chapter": "fs", + "kind": "method", + "name": "writev", + "signature": "`filehandle.writev(buffers[, position])`", + "label": "filehandle.writev(buffers[, position])", + "apiSymbol": "filehandle.writev", + "depth": 3, + "scope": "api", + "anchor": "filehandlewritevbuffers-position", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:0eb79d089322", + "chapter": "fs", + "kind": "method", + "name": "[Symbol.asyncDispose]", + "signature": "`filehandle[Symbol.asyncDispose]()`", + "label": "filehandle[Symbol.asyncDispose]()", + "apiSymbol": "filehandle", + "depth": 3, + "scope": "api", + "anchor": "filehandlesymbolasyncdispose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:b74d8861c127", + "chapter": "fs", + "kind": "number", + "name": "Type", + "signature": "`fd` Type: {number} The numeric file descriptor managed by the {FileHandle} object.", + "label": "fd", + "apiSymbol": "fd", + "depth": 3, + "scope": "api", + "anchor": "class-filehandle", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "ancestor" + }, + { + "id": "fs:af2edb1e0be6", + "chapter": "fs", + "kind": "event", + "name": "close", + "signature": "Event: `'close'`", + "label": "'close'", + "apiSymbol": "'close'", + "depth": 3, + "scope": "api", + "anchor": "event-close", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:3d973ff903be", + "chapter": "fs", + "kind": "method", + "name": "access", + "signature": "`fsPromises.access(path[, mode])`", + "label": "fsPromises.access(path[, mode])", + "apiSymbol": "fsPromises.access", + "depth": 2, + "scope": "api", + "anchor": "fspromisesaccesspath-mode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs/promises.access", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:17685599d9fc", + "chapter": "fs", + "kind": "method", + "name": "appendFile", + "signature": "`fsPromises.appendFile(path, data[, options])`", + "label": "fsPromises.appendFile(path, data[, options])", + "apiSymbol": "fsPromises.appendFile", + "depth": 2, + "scope": "api", + "anchor": "fspromisesappendfilepath-data-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs/promises.appendFile", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:852bcffe0f7e", + "chapter": "fs", + "kind": "method", + "name": "chmod", + "signature": "`fsPromises.chmod(path, mode)`", + "label": "fsPromises.chmod(path, mode)", + "apiSymbol": "fsPromises.chmod", + "depth": 2, + "scope": "api", + "anchor": "fspromiseschmodpath-mode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.fs.promises.chmod", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs/promises.chmod", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:79eab8c996ec", + "chapter": "fs", + "kind": "method", + "name": "chown", + "signature": "`fsPromises.chown(path, uid, gid)`", + "label": "fsPromises.chown(path, uid, gid)", + "apiSymbol": "fsPromises.chown", + "depth": 2, + "scope": "api", + "anchor": "fspromiseschownpath-uid-gid", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:e09abb45a683", + "chapter": "fs", + "kind": "method", + "name": "copyFile", + "signature": "`fsPromises.copyFile(src, dest[, mode])`", + "label": "fsPromises.copyFile(src, dest[, mode])", + "apiSymbol": "fsPromises.copyFile", + "depth": 2, + "scope": "api", + "anchor": "fspromisescopyfilesrc-dest-mode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs/promises.copyFile", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:019fe8b5ce02", + "chapter": "fs", + "kind": "method", + "name": "cp", + "signature": "`fsPromises.cp(src, dest[, options])`", + "label": "fsPromises.cp(src, dest[, options])", + "apiSymbol": "fsPromises.cp", + "depth": 2, + "scope": "api", + "anchor": "fspromisescpsrc-dest-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:084655a174d5", + "chapter": "fs", + "kind": "method", + "name": "glob", + "signature": "`fsPromises.glob(pattern[, options])`", + "label": "fsPromises.glob(pattern[, options])", + "apiSymbol": "fsPromises.glob", + "depth": 2, + "scope": "api", + "anchor": "fspromisesglobpattern-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:e765ff651d7e", + "chapter": "fs", + "kind": "method", + "name": "lchmod", + "signature": "`fsPromises.lchmod(path, mode)`", + "label": "fsPromises.lchmod(path, mode)", + "apiSymbol": "fsPromises.lchmod", + "depth": 2, + "scope": "api", + "anchor": "fspromiseslchmodpath-mode", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:3d5d09fa720a", + "chapter": "fs", + "kind": "method", + "name": "lchown", + "signature": "`fsPromises.lchown(path, uid, gid)`", + "label": "fsPromises.lchown(path, uid, gid)", + "apiSymbol": "fsPromises.lchown", + "depth": 2, + "scope": "api", + "anchor": "fspromiseslchownpath-uid-gid", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:b7964602601d", + "chapter": "fs", + "kind": "method", + "name": "lutimes", + "signature": "`fsPromises.lutimes(path, atime, mtime)`", + "label": "fsPromises.lutimes(path, atime, mtime)", + "apiSymbol": "fsPromises.lutimes", + "depth": 2, + "scope": "api", + "anchor": "fspromiseslutimespath-atime-mtime", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:5f8f56d83683", + "chapter": "fs", + "kind": "method", + "name": "link", + "signature": "`fsPromises.link(existingPath, newPath)`", + "label": "fsPromises.link(existingPath, newPath)", + "apiSymbol": "fsPromises.link", + "depth": 2, + "scope": "api", + "anchor": "fspromiseslinkexistingpath-newpath", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:63d5aa86a256", + "chapter": "fs", + "kind": "method", + "name": "lstat", + "signature": "`fsPromises.lstat(path[, options])`", + "label": "fsPromises.lstat(path[, options])", + "apiSymbol": "fsPromises.lstat", + "depth": 2, + "scope": "api", + "anchor": "fspromiseslstatpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs/promises.lstat", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:3e37853853bb", + "chapter": "fs", + "kind": "method", + "name": "mkdir", + "signature": "`fsPromises.mkdir(path[, options])`", + "label": "fsPromises.mkdir(path[, options])", + "apiSymbol": "fsPromises.mkdir", + "depth": 2, + "scope": "api", + "anchor": "fspromisesmkdirpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.fs.promises.mkdir", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs/promises.mkdir", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:8242dab7a908", + "chapter": "fs", + "kind": "method", + "name": "mkdtemp", + "signature": "`fsPromises.mkdtemp(prefix[, options])`", + "label": "fsPromises.mkdtemp(prefix[, options])", + "apiSymbol": "fsPromises.mkdtemp", + "depth": 2, + "scope": "api", + "anchor": "fspromisesmkdtempprefix-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs/promises.mkdtemp", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:0e654a55b6d2", + "chapter": "fs", + "kind": "method", + "name": "mkdtempDisposable", + "signature": "`fsPromises.mkdtempDisposable(prefix[, options])`", + "label": "fsPromises.mkdtempDisposable(prefix[, options])", + "apiSymbol": "fsPromises.mkdtempDisposable", + "depth": 2, + "scope": "api", + "anchor": "fspromisesmkdtempdisposableprefix-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:68bb2c683fe8", + "chapter": "fs", + "kind": "method", + "name": "open", + "signature": "`fsPromises.open(path, flags[, mode])`", + "label": "fsPromises.open(path, flags[, mode])", + "apiSymbol": "fsPromises.open", + "depth": 2, + "scope": "api", + "anchor": "fspromisesopenpath-flags-mode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.fs.promises.open", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:fs/promises.open" + }, + "anchorSource": "exact" + }, + { + "id": "fs:8563d45bd004", + "chapter": "fs", + "kind": "method", + "name": "opendir", + "signature": "`fsPromises.opendir(path[, options])`", + "label": "fsPromises.opendir(path[, options])", + "apiSymbol": "fsPromises.opendir", + "depth": 2, + "scope": "api", + "anchor": "fspromisesopendirpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:8a231443d661", + "chapter": "fs", + "kind": "method", + "name": "readdir", + "signature": "`fsPromises.readdir(path[, options])`", + "label": "fsPromises.readdir(path[, options])", + "apiSymbol": "fsPromises.readdir", + "depth": 2, + "scope": "api", + "anchor": "fspromisesreaddirpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.fs.promises.readdir", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs/promises.readdir", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:ef0a02a312c6", + "chapter": "fs", + "kind": "method", + "name": "readFile", + "signature": "`fsPromises.readFile(path[, options])`", + "label": "fsPromises.readFile(path[, options])", + "apiSymbol": "fsPromises.readFile", + "depth": 2, + "scope": "api", + "anchor": "fspromisesreadfilepath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.fs.promises.readFile", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs/promises.readFile", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:93a29ff17149", + "chapter": "fs", + "kind": "method", + "name": "readlink", + "signature": "`fsPromises.readlink(path[, options])`", + "label": "fsPromises.readlink(path[, options])", + "apiSymbol": "fsPromises.readlink", + "depth": 2, + "scope": "api", + "anchor": "fspromisesreadlinkpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs/promises.readlink", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:12f426a57f3b", + "chapter": "fs", + "kind": "method", + "name": "realpath", + "signature": "`fsPromises.realpath(path[, options])`", + "label": "fsPromises.realpath(path[, options])", + "apiSymbol": "fsPromises.realpath", + "depth": 2, + "scope": "api", + "anchor": "fspromisesrealpathpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs/promises.realpath", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:c5038ffe7911", + "chapter": "fs", + "kind": "method", + "name": "rename", + "signature": "`fsPromises.rename(oldPath, newPath)`", + "label": "fsPromises.rename(oldPath, newPath)", + "apiSymbol": "fsPromises.rename", + "depth": 2, + "scope": "api", + "anchor": "fspromisesrenameoldpath-newpath", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.fs.promises.rename", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs/promises.rename", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:83ef26dac93c", + "chapter": "fs", + "kind": "method", + "name": "rmdir", + "signature": "`fsPromises.rmdir(path[, options])`", + "label": "fsPromises.rmdir(path[, options])", + "apiSymbol": "fsPromises.rmdir", + "depth": 2, + "scope": "api", + "anchor": "fspromisesrmdirpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs/promises.rmdir", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:5c4b25e4d096", + "chapter": "fs", + "kind": "method", + "name": "rm", + "signature": "`fsPromises.rm(path[, options])`", + "label": "fsPromises.rm(path[, options])", + "apiSymbol": "fsPromises.rm", + "depth": 2, + "scope": "api", + "anchor": "fspromisesrmpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.fs.promises.rm", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs/promises.rm", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:d3c8cf7953c1", + "chapter": "fs", + "kind": "method", + "name": "stat", + "signature": "`fsPromises.stat(path[, options])`", + "label": "fsPromises.stat(path[, options])", + "apiSymbol": "fsPromises.stat", + "depth": 2, + "scope": "api", + "anchor": "fspromisesstatpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.fs.promises.stat", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs/promises.stat", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:960828f4ffd4", + "chapter": "fs", + "kind": "method", + "name": "statfs", + "signature": "`fsPromises.statfs(path[, options])`", + "label": "fsPromises.statfs(path[, options])", + "apiSymbol": "fsPromises.statfs", + "depth": 2, + "scope": "api", + "anchor": "fspromisesstatfspath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:05d3e62c35e0", + "chapter": "fs", + "kind": "method", + "name": "symlink", + "signature": "`fsPromises.symlink(target, path[, type])`", + "label": "fsPromises.symlink(target, path[, type])", + "apiSymbol": "fsPromises.symlink", + "depth": 2, + "scope": "api", + "anchor": "fspromisessymlinktarget-path-type", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:d4caa86ff798", + "chapter": "fs", + "kind": "method", + "name": "truncate", + "signature": "`fsPromises.truncate(path[, len])`", + "label": "fsPromises.truncate(path[, len])", + "apiSymbol": "fsPromises.truncate", + "depth": 2, + "scope": "api", + "anchor": "fspromisestruncatepath-len", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:e8db56a75ff7", + "chapter": "fs", + "kind": "method", + "name": "unlink", + "signature": "`fsPromises.unlink(path)`", + "label": "fsPromises.unlink(path)", + "apiSymbol": "fsPromises.unlink", + "depth": 2, + "scope": "api", + "anchor": "fspromisesunlinkpath", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.fs.promises.unlink", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs/promises.unlink", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:9b3b9e66a980", + "chapter": "fs", + "kind": "method", + "name": "utimes", + "signature": "`fsPromises.utimes(path, atime, mtime)`", + "label": "fsPromises.utimes(path, atime, mtime)", + "apiSymbol": "fsPromises.utimes", + "depth": 2, + "scope": "api", + "anchor": "fspromisesutimespath-atime-mtime", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:bceba6835a61", + "chapter": "fs", + "kind": "method", + "name": "watch", + "signature": "`fsPromises.watch(filename[, options])`", + "label": "fsPromises.watch(filename[, options])", + "apiSymbol": "fsPromises.watch", + "depth": 2, + "scope": "api", + "anchor": "fspromiseswatchfilename-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:f5f4b8c936d2", + "chapter": "fs", + "kind": "method", + "name": "writeFile", + "signature": "`fsPromises.writeFile(file, data[, options])`", + "label": "fsPromises.writeFile(file, data[, options])", + "apiSymbol": "fsPromises.writeFile", + "depth": 2, + "scope": "api", + "anchor": "fspromiseswritefilefile-data-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.fs.promises.writeFile", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs/promises.writeFile", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:4d881cd0aae2", + "chapter": "fs", + "kind": "Object", + "name": "Type", + "signature": "`constants` Type: {Object}", + "label": "constants", + "apiSymbol": "constants", + "depth": 2, + "scope": "api", + "anchor": "promises-api", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs.constants", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "ancestor" + }, + { + "id": "fs:3611b6cebcd5", + "chapter": "fs", + "kind": "module", + "name": "callback_api", + "signature": "Callback API", + "label": "Callback API", + "apiSymbol": "callback_api", + "depth": 1, + "scope": "documentation", + "anchor": "callback-api", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "fs:fd95b2c5a3ed", + "chapter": "fs", + "kind": "method", + "name": "access", + "signature": "`fs.access(path[, mode], callback)`", + "label": "fs.access(path[, mode], callback)", + "apiSymbol": "fs.access", + "depth": 2, + "scope": "api", + "anchor": "fsaccesspath-mode-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs.access", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:28a70e885ff1", + "chapter": "fs", + "kind": "method", + "name": "appendFile", + "signature": "`fs.appendFile(path, data[, options], callback)`", + "label": "fs.appendFile(path, data[, options], callback)", + "apiSymbol": "fs.appendFile", + "depth": 2, + "scope": "api", + "anchor": "fsappendfilepath-data-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs.appendFile", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:c6a516fe59c7", + "chapter": "fs", + "kind": "method", + "name": "chmod", + "signature": "`fs.chmod(path, mode, callback)`", + "label": "fs.chmod(path, mode, callback)", + "apiSymbol": "fs.chmod", + "depth": 2, + "scope": "api", + "anchor": "fschmodpath-mode-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs.chmod", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:3f62ccc30683", + "chapter": "fs", + "kind": "module", + "name": "file_modes", + "signature": "File modes", + "label": "File modes", + "apiSymbol": "file_modes", + "depth": 3, + "scope": "documentation", + "anchor": "file-modes", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "fs:a6d6fed05cfc", + "chapter": "fs", + "kind": "method", + "name": "chown", + "signature": "`fs.chown(path, uid, gid, callback)`", + "label": "fs.chown(path, uid, gid, callback)", + "apiSymbol": "fs.chown", + "depth": 2, + "scope": "api", + "anchor": "fschownpath-uid-gid-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:0fe4a0d570f8", + "chapter": "fs", + "kind": "method", + "name": "close", + "signature": "`fs.close(fd[, callback])`", + "label": "fs.close(fd[, callback])", + "apiSymbol": "fs.close", + "depth": 2, + "scope": "api", + "anchor": "fsclosefd-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:3b06da9a0b11", + "chapter": "fs", + "kind": "method", + "name": "copyFile", + "signature": "`fs.copyFile(src, dest[, mode], callback)`", + "label": "fs.copyFile(src, dest[, mode], callback)", + "apiSymbol": "fs.copyFile", + "depth": 2, + "scope": "api", + "anchor": "fscopyfilesrc-dest-mode-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs.copyFile", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:f37f56fb0b74", + "chapter": "fs", + "kind": "method", + "name": "cp", + "signature": "`fs.cp(src, dest[, options], callback)`", + "label": "fs.cp(src, dest[, options], callback)", + "apiSymbol": "fs.cp", + "depth": 2, + "scope": "api", + "anchor": "fscpsrc-dest-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:548d1b5dd782", + "chapter": "fs", + "kind": "method", + "name": "createReadStream", + "signature": "`fs.createReadStream(path[, options])`", + "label": "fs.createReadStream(path[, options])", + "apiSymbol": "fs.createReadStream", + "depth": 2, + "scope": "api", + "anchor": "fscreatereadstreampath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs.createReadStream", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:19d2dc1dc519", + "chapter": "fs", + "kind": "method", + "name": "createWriteStream", + "signature": "`fs.createWriteStream(path[, options])`", + "label": "fs.createWriteStream(path[, options])", + "apiSymbol": "fs.createWriteStream", + "depth": 2, + "scope": "api", + "anchor": "fscreatewritestreampath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs.createWriteStream", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:0e4c1681decb", + "chapter": "fs", + "kind": "method", + "name": "exists", + "signature": "`fs.exists(path, callback)`", + "label": "fs.exists(path, callback)", + "apiSymbol": "fs.exists", + "depth": 2, + "scope": "api", + "anchor": "fsexistspath-callback", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Use [`fs.stat()`][] or [`fs.access()`][] instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs.exists", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:baf47a394061", + "chapter": "fs", + "kind": "method", + "name": "fchmod", + "signature": "`fs.fchmod(fd, mode, callback)`", + "label": "fs.fchmod(fd, mode, callback)", + "apiSymbol": "fs.fchmod", + "depth": 2, + "scope": "api", + "anchor": "fsfchmodfd-mode-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:48a029856149", + "chapter": "fs", + "kind": "method", + "name": "fchown", + "signature": "`fs.fchown(fd, uid, gid, callback)`", + "label": "fs.fchown(fd, uid, gid, callback)", + "apiSymbol": "fs.fchown", + "depth": 2, + "scope": "api", + "anchor": "fsfchownfd-uid-gid-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:206d5374b53a", + "chapter": "fs", + "kind": "method", + "name": "fdatasync", + "signature": "`fs.fdatasync(fd, callback)`", + "label": "fs.fdatasync(fd, callback)", + "apiSymbol": "fs.fdatasync", + "depth": 2, + "scope": "api", + "anchor": "fsfdatasyncfd-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:8e9ad0f9a747", + "chapter": "fs", + "kind": "method", + "name": "fstat", + "signature": "`fs.fstat(fd[, options], callback)`", + "label": "fs.fstat(fd[, options], callback)", + "apiSymbol": "fs.fstat", + "depth": 2, + "scope": "api", + "anchor": "fsfstatfd-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:7cb76319539f", + "chapter": "fs", + "kind": "method", + "name": "fsync", + "signature": "`fs.fsync(fd, callback)`", + "label": "fs.fsync(fd, callback)", + "apiSymbol": "fs.fsync", + "depth": 2, + "scope": "api", + "anchor": "fsfsyncfd-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:3c941bdf13aa", + "chapter": "fs", + "kind": "method", + "name": "ftruncate", + "signature": "`fs.ftruncate(fd[, len], callback)`", + "label": "fs.ftruncate(fd[, len], callback)", + "apiSymbol": "fs.ftruncate", + "depth": 2, + "scope": "api", + "anchor": "fsftruncatefd-len-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:a2fa1a24c69f", + "chapter": "fs", + "kind": "method", + "name": "futimes", + "signature": "`fs.futimes(fd, atime, mtime, callback)`", + "label": "fs.futimes(fd, atime, mtime, callback)", + "apiSymbol": "fs.futimes", + "depth": 2, + "scope": "api", + "anchor": "fsfutimesfd-atime-mtime-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:8ff5599d8054", + "chapter": "fs", + "kind": "method", + "name": "glob", + "signature": "`fs.glob(pattern[, options], callback)`", + "label": "fs.glob(pattern[, options], callback)", + "apiSymbol": "fs.glob", + "depth": 2, + "scope": "api", + "anchor": "fsglobpattern-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:8174d132eb09", + "chapter": "fs", + "kind": "method", + "name": "lchmod", + "signature": "`fs.lchmod(path, mode, callback)`", + "label": "fs.lchmod(path, mode, callback)", + "apiSymbol": "fs.lchmod", + "depth": 2, + "scope": "api", + "anchor": "fslchmodpath-mode-callback", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:2208c40ffa47", + "chapter": "fs", + "kind": "method", + "name": "lchown", + "signature": "`fs.lchown(path, uid, gid, callback)`", + "label": "fs.lchown(path, uid, gid, callback)", + "apiSymbol": "fs.lchown", + "depth": 2, + "scope": "api", + "anchor": "fslchownpath-uid-gid-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:519f0d0d19f1", + "chapter": "fs", + "kind": "method", + "name": "lutimes", + "signature": "`fs.lutimes(path, atime, mtime, callback)`", + "label": "fs.lutimes(path, atime, mtime, callback)", + "apiSymbol": "fs.lutimes", + "depth": 2, + "scope": "api", + "anchor": "fslutimespath-atime-mtime-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:e2db9794ebe6", + "chapter": "fs", + "kind": "method", + "name": "link", + "signature": "`fs.link(existingPath, newPath, callback)`", + "label": "fs.link(existingPath, newPath, callback)", + "apiSymbol": "fs.link", + "depth": 2, + "scope": "api", + "anchor": "fslinkexistingpath-newpath-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:4ec2291f9f00", + "chapter": "fs", + "kind": "method", + "name": "lstat", + "signature": "`fs.lstat(path[, options], callback)`", + "label": "fs.lstat(path[, options], callback)", + "apiSymbol": "fs.lstat", + "depth": 2, + "scope": "api", + "anchor": "fslstatpath-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs.lstat", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:f45f74c7f851", + "chapter": "fs", + "kind": "method", + "name": "mkdir", + "signature": "`fs.mkdir(path[, options], callback)`", + "label": "fs.mkdir(path[, options], callback)", + "apiSymbol": "fs.mkdir", + "depth": 2, + "scope": "api", + "anchor": "fsmkdirpath-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs.mkdir", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:594c52282a1f", + "chapter": "fs", + "kind": "method", + "name": "mkdtemp", + "signature": "`fs.mkdtemp(prefix[, options], callback)`", + "label": "fs.mkdtemp(prefix[, options], callback)", + "apiSymbol": "fs.mkdtemp", + "depth": 2, + "scope": "api", + "anchor": "fsmkdtempprefix-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs.mkdtemp", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:ca642ebd75ed", + "chapter": "fs", + "kind": "method", + "name": "open", + "signature": "`fs.open(path[, flags[, mode]], callback)`", + "label": "fs.open(path[, flags[, mode]], callback)", + "apiSymbol": "fs.open", + "depth": 2, + "scope": "api", + "anchor": "fsopenpath-flags-mode-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:fs.open" + }, + "anchorSource": "exact" + }, + { + "id": "fs:74a01715d6fb", + "chapter": "fs", + "kind": "method", + "name": "openAsBlob", + "signature": "`fs.openAsBlob(path[, options])`", + "label": "fs.openAsBlob(path[, options])", + "apiSymbol": "fs.openAsBlob", + "depth": 2, + "scope": "api", + "anchor": "fsopenasblobpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:f76a977aa3de", + "chapter": "fs", + "kind": "method", + "name": "opendir", + "signature": "`fs.opendir(path[, options], callback)`", + "label": "fs.opendir(path[, options], callback)", + "apiSymbol": "fs.opendir", + "depth": 2, + "scope": "api", + "anchor": "fsopendirpath-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:31eaa3759828", + "chapter": "fs", + "kind": "method", + "name": "read", + "signature": "`fs.read(fd, buffer, offset, length, position, callback)`", + "label": "fs.read(fd, buffer, offset, length, position, callback)", + "apiSymbol": "fs.read", + "depth": 2, + "scope": "api", + "anchor": "fsreadfd-buffer-offset-length-position-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:fs.read" + }, + "anchorSource": "exact" + }, + { + "id": "fs:1bc9450beba6", + "chapter": "fs", + "kind": "method", + "name": "read", + "signature": "`fs.read(fd[, options], callback)`", + "label": "fs.read(fd[, options], callback)", + "apiSymbol": "fs.read", + "depth": 2, + "scope": "api", + "anchor": "fsreadfd-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:fs.read" + }, + "anchorSource": "exact" + }, + { + "id": "fs:8cc1038c772b", + "chapter": "fs", + "kind": "method", + "name": "read", + "signature": "`fs.read(fd, buffer[, options], callback)`", + "label": "fs.read(fd, buffer[, options], callback)", + "apiSymbol": "fs.read", + "depth": 2, + "scope": "api", + "anchor": "fsreadfd-buffer-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:fs.read" + }, + "anchorSource": "exact" + }, + { + "id": "fs:796f1de63ebe", + "chapter": "fs", + "kind": "method", + "name": "readdir", + "signature": "`fs.readdir(path[, options], callback)`", + "label": "fs.readdir(path[, options], callback)", + "apiSymbol": "fs.readdir", + "depth": 2, + "scope": "api", + "anchor": "fsreaddirpath-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs.readdir", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:1cfdfacd0fb8", + "chapter": "fs", + "kind": "method", + "name": "readFile", + "signature": "`fs.readFile(path[, options], callback)`", + "label": "fs.readFile(path[, options], callback)", + "apiSymbol": "fs.readFile", + "depth": 2, + "scope": "api", + "anchor": "fsreadfilepath-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs.readFile", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:166ec05a1053", + "chapter": "fs", + "kind": "module", + "name": "file_descriptors", + "signature": "File descriptors", + "label": "File descriptors", + "apiSymbol": "file_descriptors", + "depth": 3, + "scope": "documentation", + "anchor": "file-descriptors", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "fs:c3c3c7c2e7c0", + "chapter": "fs", + "kind": "module", + "name": "performance_considerations", + "signature": "Performance Considerations", + "label": "Performance Considerations", + "apiSymbol": "performance_considerations", + "depth": 3, + "scope": "documentation", + "anchor": "performance-considerations", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "fs:b7685deab3a4", + "chapter": "fs", + "kind": "method", + "name": "readlink", + "signature": "`fs.readlink(path[, options], callback)`", + "label": "fs.readlink(path[, options], callback)", + "apiSymbol": "fs.readlink", + "depth": 2, + "scope": "api", + "anchor": "fsreadlinkpath-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs.readlink", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:ce49c205ed1a", + "chapter": "fs", + "kind": "method", + "name": "readv", + "signature": "`fs.readv(fd, buffers[, position], callback)`", + "label": "fs.readv(fd, buffers[, position], callback)", + "apiSymbol": "fs.readv", + "depth": 2, + "scope": "api", + "anchor": "fsreadvfd-buffers-position-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:174236a7164e", + "chapter": "fs", + "kind": "method", + "name": "realpath", + "signature": "`fs.realpath(path[, options], callback)`", + "label": "fs.realpath(path[, options], callback)", + "apiSymbol": "fs.realpath", + "depth": 2, + "scope": "api", + "anchor": "fsrealpathpath-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs.realpath", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:224d2fd78095", + "chapter": "fs", + "kind": "method", + "name": "native", + "signature": "`fs.realpath.native(path[, options], callback)`", + "label": "fs.realpath.native(path[, options], callback)", + "apiSymbol": "fs.realpath.native", + "depth": 2, + "scope": "api", + "anchor": "fsrealpathnativepath-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:feb6e3f8c110", + "chapter": "fs", + "kind": "method", + "name": "rename", + "signature": "`fs.rename(oldPath, newPath, callback)`", + "label": "fs.rename(oldPath, newPath, callback)", + "apiSymbol": "fs.rename", + "depth": 2, + "scope": "api", + "anchor": "fsrenameoldpath-newpath-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.fs.rename", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs.rename", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:a78c8968eb96", + "chapter": "fs", + "kind": "method", + "name": "rmdir", + "signature": "`fs.rmdir(path[, options], callback)`", + "label": "fs.rmdir(path[, options], callback)", + "apiSymbol": "fs.rmdir", + "depth": 2, + "scope": "api", + "anchor": "fsrmdirpath-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs.rmdir", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:c56caf8603fa", + "chapter": "fs", + "kind": "method", + "name": "rm", + "signature": "`fs.rm(path[, options], callback)`", + "label": "fs.rm(path[, options], callback)", + "apiSymbol": "fs.rm", + "depth": 2, + "scope": "api", + "anchor": "fsrmpath-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs.rm", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:cef2a7909fea", + "chapter": "fs", + "kind": "method", + "name": "stat", + "signature": "`fs.stat(path[, options], callback)`", + "label": "fs.stat(path[, options], callback)", + "apiSymbol": "fs.stat", + "depth": 2, + "scope": "api", + "anchor": "fsstatpath-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs.stat", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:4cbe28958d33", + "chapter": "fs", + "kind": "method", + "name": "statfs", + "signature": "`fs.statfs(path[, options], callback)`", + "label": "fs.statfs(path[, options], callback)", + "apiSymbol": "fs.statfs", + "depth": 2, + "scope": "api", + "anchor": "fsstatfspath-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:54947f60eb11", + "chapter": "fs", + "kind": "method", + "name": "symlink", + "signature": "`fs.symlink(target, path[, type], callback)`", + "label": "fs.symlink(target, path[, type], callback)", + "apiSymbol": "fs.symlink", + "depth": 2, + "scope": "api", + "anchor": "fssymlinktarget-path-type-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:a79415f54c1b", + "chapter": "fs", + "kind": "method", + "name": "truncate", + "signature": "`fs.truncate(path[, len], callback)`", + "label": "fs.truncate(path[, len], callback)", + "apiSymbol": "fs.truncate", + "depth": 2, + "scope": "api", + "anchor": "fstruncatepath-len-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:0a5baf6dc3b7", + "chapter": "fs", + "kind": "method", + "name": "unlink", + "signature": "`fs.unlink(path, callback)`", + "label": "fs.unlink(path, callback)", + "apiSymbol": "fs.unlink", + "depth": 2, + "scope": "api", + "anchor": "fsunlinkpath-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs.unlink", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:3f00663153e5", + "chapter": "fs", + "kind": "method", + "name": "unwatchFile", + "signature": "`fs.unwatchFile(filename[, listener])`", + "label": "fs.unwatchFile(filename[, listener])", + "apiSymbol": "fs.unwatchFile", + "depth": 2, + "scope": "api", + "anchor": "fsunwatchfilefilename-listener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs.unwatchFile", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:ac0ad1c75019", + "chapter": "fs", + "kind": "method", + "name": "utimes", + "signature": "`fs.utimes(path, atime, mtime, callback)`", + "label": "fs.utimes(path, atime, mtime, callback)", + "apiSymbol": "fs.utimes", + "depth": 2, + "scope": "api", + "anchor": "fsutimespath-atime-mtime-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:6bc85cd68c24", + "chapter": "fs", + "kind": "method", + "name": "watch", + "signature": "`fs.watch(filename[, options][, listener])`", + "label": "fs.watch(filename[, options][, listener])", + "apiSymbol": "fs.watch", + "depth": 2, + "scope": "api", + "anchor": "fswatchfilename-options-listener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.fs.watch", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:fs.watch" + }, + "anchorSource": "exact" + }, + { + "id": "fs:da4041fb354c", + "chapter": "fs", + "kind": "misc", + "name": "Caveats", + "signature": "Caveats", + "label": "Caveats", + "apiSymbol": "Caveats", + "depth": 3, + "scope": "documentation", + "anchor": "caveats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "fs:634fbb445612", + "chapter": "fs", + "kind": "misc", + "name": "Availability", + "signature": "Availability", + "label": "Availability", + "apiSymbol": "Availability", + "depth": 4, + "scope": "documentation", + "anchor": "availability", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "fs:d966ab1cb6ae", + "chapter": "fs", + "kind": "misc", + "name": "Inodes", + "signature": "Inodes", + "label": "Inodes", + "apiSymbol": "Inodes", + "depth": 4, + "scope": "documentation", + "anchor": "inodes", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "fs:0738f3d75415", + "chapter": "fs", + "kind": "misc", + "name": "Filename argument", + "signature": "Filename argument", + "label": "Filename argument", + "apiSymbol": "Filename argument", + "depth": 4, + "scope": "documentation", + "anchor": "filename-argument", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "fs:895ff71e97dc", + "chapter": "fs", + "kind": "method", + "name": "watchFile", + "signature": "`fs.watchFile(filename[, options], listener)`", + "label": "fs.watchFile(filename[, options], listener)", + "apiSymbol": "fs.watchFile", + "depth": 2, + "scope": "api", + "anchor": "fswatchfilefilename-options-listener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:fs.watchFile" + }, + "anchorSource": "exact" + }, + { + "id": "fs:0a51ef35e48e", + "chapter": "fs", + "kind": "method", + "name": "write", + "signature": "`fs.write(fd, buffer, offset[, length[, position]], callback)`", + "label": "fs.write(fd, buffer, offset[, length[, position]], callback)", + "apiSymbol": "fs.write", + "depth": 2, + "scope": "api", + "anchor": "fswritefd-buffer-offset-length-position-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:8f388a1342de", + "chapter": "fs", + "kind": "method", + "name": "write", + "signature": "`fs.write(fd, buffer[, options], callback)`", + "label": "fs.write(fd, buffer[, options], callback)", + "apiSymbol": "fs.write", + "depth": 2, + "scope": "api", + "anchor": "fswritefd-buffer-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:cf574f056f38", + "chapter": "fs", + "kind": "method", + "name": "write", + "signature": "`fs.write(fd, string[, position[, encoding]], callback)`", + "label": "fs.write(fd, string[, position[, encoding]], callback)", + "apiSymbol": "fs.write", + "depth": 2, + "scope": "api", + "anchor": "fswritefd-string-position-encoding-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:d836c3d9ad11", + "chapter": "fs", + "kind": "method", + "name": "writeFile", + "signature": "`fs.writeFile(file, data[, options], callback)`", + "label": "fs.writeFile(file, data[, options], callback)", + "apiSymbol": "fs.writeFile", + "depth": 2, + "scope": "api", + "anchor": "fswritefilefile-data-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs.writeFile", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:1b4fcde3d80f", + "chapter": "fs", + "kind": "module", + "name": "using_`fs.writefile()`_with_file_descriptors", + "signature": "Using `fs.writeFile()` with file descriptors", + "label": "Using fs.writeFile() with file descriptors", + "apiSymbol": "fs.writeFile", + "depth": 3, + "scope": "api", + "anchor": "using-fswritefile-with-file-descriptors", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs.writeFile", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:b0472d4ad2d1", + "chapter": "fs", + "kind": "method", + "name": "writev", + "signature": "`fs.writev(fd, buffers[, position], callback)`", + "label": "fs.writev(fd, buffers[, position], callback)", + "apiSymbol": "fs.writev", + "depth": 2, + "scope": "api", + "anchor": "fswritevfd-buffers-position-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:de4ad60f14ff", + "chapter": "fs", + "kind": "module", + "name": "synchronous_api", + "signature": "Synchronous API", + "label": "Synchronous API", + "apiSymbol": "synchronous_api", + "depth": 1, + "scope": "documentation", + "anchor": "synchronous-api", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "fs:bb014e8c9326", + "chapter": "fs", + "kind": "method", + "name": "accessSync", + "signature": "`fs.accessSync(path[, mode])`", + "label": "fs.accessSync(path[, mode])", + "apiSymbol": "fs.accessSync", + "depth": 2, + "scope": "api", + "anchor": "fsaccesssyncpath-mode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.fs.accessSync", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs.accessSync", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:e2ea9dde15f4", + "chapter": "fs", + "kind": "method", + "name": "appendFileSync", + "signature": "`fs.appendFileSync(path, data[, options])`", + "label": "fs.appendFileSync(path, data[, options])", + "apiSymbol": "fs.appendFileSync", + "depth": 2, + "scope": "api", + "anchor": "fsappendfilesyncpath-data-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.fs.appendFileSync", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs.appendFileSync", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:dac71a8b3dc1", + "chapter": "fs", + "kind": "method", + "name": "chmodSync", + "signature": "`fs.chmodSync(path, mode)`", + "label": "fs.chmodSync(path, mode)", + "apiSymbol": "fs.chmodSync", + "depth": 2, + "scope": "api", + "anchor": "fschmodsyncpath-mode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.fs.chmodSync", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs.chmodSync", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:3c5a54b5045a", + "chapter": "fs", + "kind": "method", + "name": "chownSync", + "signature": "`fs.chownSync(path, uid, gid)`", + "label": "fs.chownSync(path, uid, gid)", + "apiSymbol": "fs.chownSync", + "depth": 2, + "scope": "api", + "anchor": "fschownsyncpath-uid-gid", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.fs.chownSync", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:fbdeeb96f11f", + "chapter": "fs", + "kind": "method", + "name": "closeSync", + "signature": "`fs.closeSync(fd)`", + "label": "fs.closeSync(fd)", + "apiSymbol": "fs.closeSync", + "depth": 2, + "scope": "api", + "anchor": "fsclosesyncfd", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.fs.closeSync", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs.closeSync", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:f6e89df9976d", + "chapter": "fs", + "kind": "method", + "name": "copyFileSync", + "signature": "`fs.copyFileSync(src, dest[, mode])`", + "label": "fs.copyFileSync(src, dest[, mode])", + "apiSymbol": "fs.copyFileSync", + "depth": 2, + "scope": "api", + "anchor": "fscopyfilesyncsrc-dest-mode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.fs.copyFileSync", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs.copyFileSync", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:bb1248bb82ed", + "chapter": "fs", + "kind": "method", + "name": "cpSync", + "signature": "`fs.cpSync(src, dest[, options])`", + "label": "fs.cpSync(src, dest[, options])", + "apiSymbol": "fs.cpSync", + "depth": 2, + "scope": "api", + "anchor": "fscpsyncsrc-dest-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:fca100ee30a2", + "chapter": "fs", + "kind": "method", + "name": "existsSync", + "signature": "`fs.existsSync(path)`", + "label": "fs.existsSync(path)", + "apiSymbol": "fs.existsSync", + "depth": 2, + "scope": "api", + "anchor": "fsexistssyncpath", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.fs.existsSync", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs.existsSync", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:b9851094b62a", + "chapter": "fs", + "kind": "method", + "name": "fchmodSync", + "signature": "`fs.fchmodSync(fd, mode)`", + "label": "fs.fchmodSync(fd, mode)", + "apiSymbol": "fs.fchmodSync", + "depth": 2, + "scope": "api", + "anchor": "fsfchmodsyncfd-mode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:2d46f6d5ae28", + "chapter": "fs", + "kind": "method", + "name": "fchownSync", + "signature": "`fs.fchownSync(fd, uid, gid)`", + "label": "fs.fchownSync(fd, uid, gid)", + "apiSymbol": "fs.fchownSync", + "depth": 2, + "scope": "api", + "anchor": "fsfchownsyncfd-uid-gid", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:281e942abda9", + "chapter": "fs", + "kind": "method", + "name": "fdatasyncSync", + "signature": "`fs.fdatasyncSync(fd)`", + "label": "fs.fdatasyncSync(fd)", + "apiSymbol": "fs.fdatasyncSync", + "depth": 2, + "scope": "api", + "anchor": "fsfdatasyncsyncfd", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:b5516b093511", + "chapter": "fs", + "kind": "method", + "name": "fstatSync", + "signature": "`fs.fstatSync(fd[, options])`", + "label": "fs.fstatSync(fd[, options])", + "apiSymbol": "fs.fstatSync", + "depth": 2, + "scope": "api", + "anchor": "fsfstatsyncfd-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:25a81254454a", + "chapter": "fs", + "kind": "method", + "name": "fsyncSync", + "signature": "`fs.fsyncSync(fd)`", + "label": "fs.fsyncSync(fd)", + "apiSymbol": "fs.fsyncSync", + "depth": 2, + "scope": "api", + "anchor": "fsfsyncsyncfd", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:8bca86083737", + "chapter": "fs", + "kind": "method", + "name": "ftruncateSync", + "signature": "`fs.ftruncateSync(fd[, len])`", + "label": "fs.ftruncateSync(fd[, len])", + "apiSymbol": "fs.ftruncateSync", + "depth": 2, + "scope": "api", + "anchor": "fsftruncatesyncfd-len", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:9c37915c5845", + "chapter": "fs", + "kind": "method", + "name": "futimesSync", + "signature": "`fs.futimesSync(fd, atime, mtime)`", + "label": "fs.futimesSync(fd, atime, mtime)", + "apiSymbol": "fs.futimesSync", + "depth": 2, + "scope": "api", + "anchor": "fsfutimessyncfd-atime-mtime", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:e0baabf8ecf5", + "chapter": "fs", + "kind": "method", + "name": "globSync", + "signature": "`fs.globSync(pattern[, options])`", + "label": "fs.globSync(pattern[, options])", + "apiSymbol": "fs.globSync", + "depth": 2, + "scope": "api", + "anchor": "fsglobsyncpattern-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:66fc8542076e", + "chapter": "fs", + "kind": "method", + "name": "lchmodSync", + "signature": "`fs.lchmodSync(path, mode)`", + "label": "fs.lchmodSync(path, mode)", + "apiSymbol": "fs.lchmodSync", + "depth": 2, + "scope": "api", + "anchor": "fslchmodsyncpath-mode", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:745b97380b35", + "chapter": "fs", + "kind": "method", + "name": "lchownSync", + "signature": "`fs.lchownSync(path, uid, gid)`", + "label": "fs.lchownSync(path, uid, gid)", + "apiSymbol": "fs.lchownSync", + "depth": 2, + "scope": "api", + "anchor": "fslchownsyncpath-uid-gid", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:bda1971bbc1e", + "chapter": "fs", + "kind": "method", + "name": "lutimesSync", + "signature": "`fs.lutimesSync(path, atime, mtime)`", + "label": "fs.lutimesSync(path, atime, mtime)", + "apiSymbol": "fs.lutimesSync", + "depth": 2, + "scope": "api", + "anchor": "fslutimessyncpath-atime-mtime", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:0365aee0e526", + "chapter": "fs", + "kind": "method", + "name": "linkSync", + "signature": "`fs.linkSync(existingPath, newPath)`", + "label": "fs.linkSync(existingPath, newPath)", + "apiSymbol": "fs.linkSync", + "depth": 2, + "scope": "api", + "anchor": "fslinksyncexistingpath-newpath", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:83917862164f", + "chapter": "fs", + "kind": "method", + "name": "lstatSync", + "signature": "`fs.lstatSync(path[, options])`", + "label": "fs.lstatSync(path[, options])", + "apiSymbol": "fs.lstatSync", + "depth": 2, + "scope": "api", + "anchor": "fslstatsyncpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.fs.lstatSync", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs.lstatSync", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:ba4f446256a8", + "chapter": "fs", + "kind": "method", + "name": "mkdirSync", + "signature": "`fs.mkdirSync(path[, options])`", + "label": "fs.mkdirSync(path[, options])", + "apiSymbol": "fs.mkdirSync", + "depth": 2, + "scope": "api", + "anchor": "fsmkdirsyncpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.fs.mkdirSync", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs.mkdirSync", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:676cb0d7a016", + "chapter": "fs", + "kind": "method", + "name": "mkdtempSync", + "signature": "`fs.mkdtempSync(prefix[, options])`", + "label": "fs.mkdtempSync(prefix[, options])", + "apiSymbol": "fs.mkdtempSync", + "depth": 2, + "scope": "api", + "anchor": "fsmkdtempsyncprefix-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.fs.mkdtempSync", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs.mkdtempSync", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:df150721a7eb", + "chapter": "fs", + "kind": "method", + "name": "mkdtempDisposableSync", + "signature": "`fs.mkdtempDisposableSync(prefix[, options])`", + "label": "fs.mkdtempDisposableSync(prefix[, options])", + "apiSymbol": "fs.mkdtempDisposableSync", + "depth": 2, + "scope": "api", + "anchor": "fsmkdtempdisposablesyncprefix-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:6c7d156d5e06", + "chapter": "fs", + "kind": "method", + "name": "opendirSync", + "signature": "`fs.opendirSync(path[, options])`", + "label": "fs.opendirSync(path[, options])", + "apiSymbol": "fs.opendirSync", + "depth": 2, + "scope": "api", + "anchor": "fsopendirsyncpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:3eff976b63c2", + "chapter": "fs", + "kind": "method", + "name": "openSync", + "signature": "`fs.openSync(path[, flags[, mode]])`", + "label": "fs.openSync(path[, flags[, mode]])", + "apiSymbol": "fs.openSync", + "depth": 2, + "scope": "api", + "anchor": "fsopensyncpath-flags-mode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.fs.openSync", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:fs.openSync" + }, + "anchorSource": "exact" + }, + { + "id": "fs:4ab10f30ecd4", + "chapter": "fs", + "kind": "method", + "name": "readdirSync", + "signature": "`fs.readdirSync(path[, options])`", + "label": "fs.readdirSync(path[, options])", + "apiSymbol": "fs.readdirSync", + "depth": 2, + "scope": "api", + "anchor": "fsreaddirsyncpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.fs.readdirSync", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs.readdirSync", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:59635a07942b", + "chapter": "fs", + "kind": "method", + "name": "readFileSync", + "signature": "`fs.readFileSync(path[, options])`", + "label": "fs.readFileSync(path[, options])", + "apiSymbol": "fs.readFileSync", + "depth": 2, + "scope": "api", + "anchor": "fsreadfilesyncpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.fs.readFileSync", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs.readFileSync", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:05cb88c2c56a", + "chapter": "fs", + "kind": "method", + "name": "readlinkSync", + "signature": "`fs.readlinkSync(path[, options])`", + "label": "fs.readlinkSync(path[, options])", + "apiSymbol": "fs.readlinkSync", + "depth": 2, + "scope": "api", + "anchor": "fsreadlinksyncpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs.readlinkSync", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:d3c7d391185a", + "chapter": "fs", + "kind": "method", + "name": "readSync", + "signature": "`fs.readSync(fd, buffer, offset, length[, position])`", + "label": "fs.readSync(fd, buffer, offset, length[, position])", + "apiSymbol": "fs.readSync", + "depth": 2, + "scope": "api", + "anchor": "fsreadsyncfd-buffer-offset-length-position", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.fs.readSync", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:fs.readSync" + }, + "anchorSource": "exact" + }, + { + "id": "fs:2b9d0635ca32", + "chapter": "fs", + "kind": "method", + "name": "readSync", + "signature": "`fs.readSync(fd, buffer[, options])`", + "label": "fs.readSync(fd, buffer[, options])", + "apiSymbol": "fs.readSync", + "depth": 2, + "scope": "api", + "anchor": "fsreadsyncfd-buffer-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.fs.readSync", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:fs.readSync" + }, + "anchorSource": "exact" + }, + { + "id": "fs:9b90630d0b0b", + "chapter": "fs", + "kind": "method", + "name": "readvSync", + "signature": "`fs.readvSync(fd, buffers[, position])`", + "label": "fs.readvSync(fd, buffers[, position])", + "apiSymbol": "fs.readvSync", + "depth": 2, + "scope": "api", + "anchor": "fsreadvsyncfd-buffers-position", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:46f75099c37b", + "chapter": "fs", + "kind": "method", + "name": "realpathSync", + "signature": "`fs.realpathSync(path[, options])`", + "label": "fs.realpathSync(path[, options])", + "apiSymbol": "fs.realpathSync", + "depth": 2, + "scope": "api", + "anchor": "fsrealpathsyncpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.fs.realpathSync", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs.realpathSync", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:efbc61051a14", + "chapter": "fs", + "kind": "method", + "name": "native", + "signature": "`fs.realpathSync.native(path[, options])`", + "label": "fs.realpathSync.native(path[, options])", + "apiSymbol": "fs.realpathSync.native", + "depth": 2, + "scope": "api", + "anchor": "fsrealpathsyncnativepath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:ba7d747a4147", + "chapter": "fs", + "kind": "method", + "name": "renameSync", + "signature": "`fs.renameSync(oldPath, newPath)`", + "label": "fs.renameSync(oldPath, newPath)", + "apiSymbol": "fs.renameSync", + "depth": 2, + "scope": "api", + "anchor": "fsrenamesyncoldpath-newpath", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.fs.renameSync", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs.renameSync", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:29cf0a7eb183", + "chapter": "fs", + "kind": "method", + "name": "rmdirSync", + "signature": "`fs.rmdirSync(path[, options])`", + "label": "fs.rmdirSync(path[, options])", + "apiSymbol": "fs.rmdirSync", + "depth": 2, + "scope": "api", + "anchor": "fsrmdirsyncpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.fs.rmdirSync", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs.rmdirSync", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:9de63e7e0c60", + "chapter": "fs", + "kind": "method", + "name": "rmSync", + "signature": "`fs.rmSync(path[, options])`", + "label": "fs.rmSync(path[, options])", + "apiSymbol": "fs.rmSync", + "depth": 2, + "scope": "api", + "anchor": "fsrmsyncpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.fs.rmSync", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs.rmSync", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:fa16474796d3", + "chapter": "fs", + "kind": "method", + "name": "statSync", + "signature": "`fs.statSync(path[, options])`", + "label": "fs.statSync(path[, options])", + "apiSymbol": "fs.statSync", + "depth": 2, + "scope": "api", + "anchor": "fsstatsyncpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.fs.statSync", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs.statSync", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:8d2b6228554c", + "chapter": "fs", + "kind": "method", + "name": "statfsSync", + "signature": "`fs.statfsSync(path[, options])`", + "label": "fs.statfsSync(path[, options])", + "apiSymbol": "fs.statfsSync", + "depth": 2, + "scope": "api", + "anchor": "fsstatfssyncpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:d0d7735d797c", + "chapter": "fs", + "kind": "method", + "name": "symlinkSync", + "signature": "`fs.symlinkSync(target, path[, type])`", + "label": "fs.symlinkSync(target, path[, type])", + "apiSymbol": "fs.symlinkSync", + "depth": 2, + "scope": "api", + "anchor": "fssymlinksynctarget-path-type", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:49bc5269b6ff", + "chapter": "fs", + "kind": "method", + "name": "truncateSync", + "signature": "`fs.truncateSync(path[, len])`", + "label": "fs.truncateSync(path[, len])", + "apiSymbol": "fs.truncateSync", + "depth": 2, + "scope": "api", + "anchor": "fstruncatesyncpath-len", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:00f9a3c9a960", + "chapter": "fs", + "kind": "method", + "name": "unlinkSync", + "signature": "`fs.unlinkSync(path)`", + "label": "fs.unlinkSync(path)", + "apiSymbol": "fs.unlinkSync", + "depth": 2, + "scope": "api", + "anchor": "fsunlinksyncpath", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.fs.unlinkSync", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs.unlinkSync", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:ad5262f4704b", + "chapter": "fs", + "kind": "method", + "name": "utimesSync", + "signature": "`fs.utimesSync(path, atime, mtime)`", + "label": "fs.utimesSync(path, atime, mtime)", + "apiSymbol": "fs.utimesSync", + "depth": 2, + "scope": "api", + "anchor": "fsutimessyncpath-atime-mtime", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:668889893efc", + "chapter": "fs", + "kind": "method", + "name": "writeFileSync", + "signature": "`fs.writeFileSync(file, data[, options])`", + "label": "fs.writeFileSync(file, data[, options])", + "apiSymbol": "fs.writeFileSync", + "depth": 2, + "scope": "api", + "anchor": "fswritefilesyncfile-data-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.fs.writeFileSync", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs.writeFileSync", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:ecd038299cfd", + "chapter": "fs", + "kind": "method", + "name": "writeSync", + "signature": "`fs.writeSync(fd, buffer, offset[, length[, position]])`", + "label": "fs.writeSync(fd, buffer, offset[, length[, position]])", + "apiSymbol": "fs.writeSync", + "depth": 2, + "scope": "api", + "anchor": "fswritesyncfd-buffer-offset-length-position", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.fs.writeSync", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:5069083736b9", + "chapter": "fs", + "kind": "method", + "name": "writeSync", + "signature": "`fs.writeSync(fd, buffer[, options])`", + "label": "fs.writeSync(fd, buffer[, options])", + "apiSymbol": "fs.writeSync", + "depth": 2, + "scope": "api", + "anchor": "fswritesyncfd-buffer-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.fs.writeSync", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:09de5457a74e", + "chapter": "fs", + "kind": "method", + "name": "writeSync", + "signature": "`fs.writeSync(fd, string[, position[, encoding]])`", + "label": "fs.writeSync(fd, string[, position[, encoding]])", + "apiSymbol": "fs.writeSync", + "depth": 2, + "scope": "api", + "anchor": "fswritesyncfd-string-position-encoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.fs.writeSync", + "tests": [ + "tests/corpus/1403-buffer-fs.ts", + "tests/corpus/2595-fs-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:4b70362ca185", + "chapter": "fs", + "kind": "method", + "name": "writevSync", + "signature": "`fs.writevSync(fd, buffers[, position])`", + "label": "fs.writevSync(fd, buffers[, position])", + "apiSymbol": "fs.writevSync", + "depth": 2, + "scope": "api", + "anchor": "fswritevsyncfd-buffers-position", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:9058717d67cc", + "chapter": "fs", + "kind": "module", + "name": "common_objects", + "signature": "Common Objects", + "label": "Common Objects", + "apiSymbol": "common_objects", + "depth": 1, + "scope": "documentation", + "anchor": "common-objects", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "fs:0700728ff82b", + "chapter": "fs", + "kind": "class", + "name": "fs.Dir", + "signature": "Class: `fs.Dir`", + "label": "fs.Dir", + "apiSymbol": "fs.Dir", + "depth": 2, + "scope": "api", + "anchor": "class-fsdir", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:8f0992fd2676", + "chapter": "fs", + "kind": "method", + "name": "close", + "signature": "`dir.close()`", + "label": "dir.close()", + "apiSymbol": "dir.close", + "depth": 3, + "scope": "api", + "anchor": "dirclose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:dafe70445346", + "chapter": "fs", + "kind": "method", + "name": "close", + "signature": "`dir.close(callback)`", + "label": "dir.close(callback)", + "apiSymbol": "dir.close", + "depth": 3, + "scope": "api", + "anchor": "dirclosecallback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:ab1eb3512a46", + "chapter": "fs", + "kind": "method", + "name": "closeSync", + "signature": "`dir.closeSync()`", + "label": "dir.closeSync()", + "apiSymbol": "dir.closeSync", + "depth": 3, + "scope": "api", + "anchor": "dirclosesync", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:1237c8f2cdaf", + "chapter": "fs", + "kind": "method", + "name": "read", + "signature": "`dir.read()`", + "label": "dir.read()", + "apiSymbol": "dir.read", + "depth": 3, + "scope": "api", + "anchor": "dirread", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:9a4bb9761d36", + "chapter": "fs", + "kind": "method", + "name": "read", + "signature": "`dir.read(callback)`", + "label": "dir.read(callback)", + "apiSymbol": "dir.read", + "depth": 3, + "scope": "api", + "anchor": "dirreadcallback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:1fdce227cd9a", + "chapter": "fs", + "kind": "method", + "name": "readSync", + "signature": "`dir.readSync()`", + "label": "dir.readSync()", + "apiSymbol": "dir.readSync", + "depth": 3, + "scope": "api", + "anchor": "dirreadsync", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:1d0eaa01f1be", + "chapter": "fs", + "kind": "method", + "name": "[Symbol.asyncIterator]", + "signature": "`dir[Symbol.asyncIterator]()`", + "label": "dir[Symbol.asyncIterator]()", + "apiSymbol": "dir", + "depth": 3, + "scope": "api", + "anchor": "dirsymbolasynciterator", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:4966ee8cacca", + "chapter": "fs", + "kind": "method", + "name": "[Symbol.asyncDispose]", + "signature": "`dir[Symbol.asyncDispose]()`", + "label": "dir[Symbol.asyncDispose]()", + "apiSymbol": "dir", + "depth": 3, + "scope": "api", + "anchor": "dirsymbolasyncdispose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:c1769a18ab33", + "chapter": "fs", + "kind": "method", + "name": "[Symbol.dispose]", + "signature": "`dir[Symbol.dispose]()`", + "label": "dir[Symbol.dispose]()", + "apiSymbol": "dir", + "depth": 3, + "scope": "api", + "anchor": "dirsymboldispose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:87ae9b6e5321", + "chapter": "fs", + "kind": "string", + "name": "Type", + "signature": "`path` Type: {string}", + "label": "path", + "apiSymbol": "path", + "depth": 3, + "scope": "api", + "anchor": "class-fsdir", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "ancestor" + }, + { + "id": "fs:6ba1f059c061", + "chapter": "fs", + "kind": "class", + "name": "fs.Dirent", + "signature": "Class: `fs.Dirent`", + "label": "fs.Dirent", + "apiSymbol": "fs.Dirent", + "depth": 2, + "scope": "api", + "anchor": "class-fsdirent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs.Dirent", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:1f335191caec", + "chapter": "fs", + "kind": "method", + "name": "isBlockDevice", + "signature": "`dirent.isBlockDevice()`", + "label": "dirent.isBlockDevice()", + "apiSymbol": "dirent.isBlockDevice", + "depth": 3, + "scope": "api", + "anchor": "direntisblockdevice", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:fs.dirent.isBlockDevice", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:6f67bd847cb5", + "chapter": "fs", + "kind": "method", + "name": "isCharacterDevice", + "signature": "`dirent.isCharacterDevice()`", + "label": "dirent.isCharacterDevice()", + "apiSymbol": "dirent.isCharacterDevice", + "depth": 3, + "scope": "api", + "anchor": "direntischaracterdevice", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:fs.dirent.isCharacterDevice", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:9a775bd97bf2", + "chapter": "fs", + "kind": "method", + "name": "isDirectory", + "signature": "`dirent.isDirectory()`", + "label": "dirent.isDirectory()", + "apiSymbol": "dirent.isDirectory", + "depth": 3, + "scope": "api", + "anchor": "direntisdirectory", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:fs.dirent.isDirectory", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:118f97cef6a1", + "chapter": "fs", + "kind": "method", + "name": "isFIFO", + "signature": "`dirent.isFIFO()`", + "label": "dirent.isFIFO()", + "apiSymbol": "dirent.isFIFO", + "depth": 3, + "scope": "api", + "anchor": "direntisfifo", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:fs.dirent.isFIFO", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:2dfaea02ec63", + "chapter": "fs", + "kind": "method", + "name": "isFile", + "signature": "`dirent.isFile()`", + "label": "dirent.isFile()", + "apiSymbol": "dirent.isFile", + "depth": 3, + "scope": "api", + "anchor": "direntisfile", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:fs.dirent.isFile", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:62ecccf02d3b", + "chapter": "fs", + "kind": "method", + "name": "isSocket", + "signature": "`dirent.isSocket()`", + "label": "dirent.isSocket()", + "apiSymbol": "dirent.isSocket", + "depth": 3, + "scope": "api", + "anchor": "direntissocket", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:fs.dirent.isSocket", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:925fe5a4413e", + "chapter": "fs", + "kind": "method", + "name": "isSymbolicLink", + "signature": "`dirent.isSymbolicLink()`", + "label": "dirent.isSymbolicLink()", + "apiSymbol": "dirent.isSymbolicLink", + "depth": 3, + "scope": "api", + "anchor": "direntissymboliclink", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:fs.dirent.isSymbolicLink", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:0996e04aa348", + "chapter": "fs", + "kind": "string|Buffer", + "name": "Type", + "signature": "`name` Type: {string|Buffer}", + "label": "name", + "apiSymbol": "name", + "depth": 3, + "scope": "api", + "anchor": "class-fsdirent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "ancestor" + }, + { + "id": "fs:7c31ccd9e935", + "chapter": "fs", + "kind": "string", + "name": "Type", + "signature": "`parentPath` Type: {string}", + "label": "parentPath", + "apiSymbol": "parentPath", + "depth": 3, + "scope": "api", + "anchor": "class-fsdirent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "ancestor" + }, + { + "id": "fs:b32d5f6a7bd6", + "chapter": "fs", + "kind": "class", + "name": "fs.FSWatcher", + "signature": "Class: `fs.FSWatcher`", + "label": "fs.FSWatcher", + "apiSymbol": "fs.FSWatcher", + "depth": 2, + "scope": "api", + "anchor": "class-fsfswatcher", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:5ac07bccf3dd", + "chapter": "fs", + "kind": "method", + "name": "close", + "signature": "`watcher.close()`", + "label": "watcher.close()", + "apiSymbol": "watcher.close", + "depth": 3, + "scope": "api", + "anchor": "watcherclose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:cf1e24d2cfc9", + "chapter": "fs", + "kind": "method", + "name": "ref", + "signature": "`watcher.ref()`", + "label": "watcher.ref()", + "apiSymbol": "watcher.ref", + "depth": 3, + "scope": "api", + "anchor": "watcherref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:f1d34ce9ba28", + "chapter": "fs", + "kind": "method", + "name": "unref", + "signature": "`watcher.unref()`", + "label": "watcher.unref()", + "apiSymbol": "watcher.unref", + "depth": 3, + "scope": "api", + "anchor": "watcherunref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:b79e3f76cb72", + "chapter": "fs", + "kind": "event", + "name": "change", + "signature": "Event: `'change'`", + "label": "'change'", + "apiSymbol": "'change'", + "depth": 3, + "scope": "api", + "anchor": "event-change", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:7364d8aee5ea", + "chapter": "fs", + "kind": "event", + "name": "close", + "signature": "Event: `'close'`", + "label": "'close'", + "apiSymbol": "'close'", + "depth": 3, + "scope": "api", + "anchor": "event-close_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:031d6b41d802", + "chapter": "fs", + "kind": "event", + "name": "error", + "signature": "Event: `'error'`", + "label": "'error'", + "apiSymbol": "'error'", + "depth": 3, + "scope": "api", + "anchor": "event-error", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:d51e95ac7f61", + "chapter": "fs", + "kind": "class", + "name": "fs.StatWatcher", + "signature": "Class: `fs.StatWatcher`", + "label": "fs.StatWatcher", + "apiSymbol": "fs.StatWatcher", + "depth": 2, + "scope": "api", + "anchor": "class-fsstatwatcher", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:988f90491829", + "chapter": "fs", + "kind": "method", + "name": "ref", + "signature": "`watcher.ref()`", + "label": "watcher.ref()", + "apiSymbol": "watcher.ref", + "depth": 3, + "scope": "api", + "anchor": "watcherref_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:034365c650a1", + "chapter": "fs", + "kind": "method", + "name": "unref", + "signature": "`watcher.unref()`", + "label": "watcher.unref()", + "apiSymbol": "watcher.unref", + "depth": 3, + "scope": "api", + "anchor": "watcherunref_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:70a17bd2bec1", + "chapter": "fs", + "kind": "class", + "name": "fs.ReadStream", + "signature": "Class: `fs.ReadStream`", + "label": "fs.ReadStream", + "apiSymbol": "fs.ReadStream", + "depth": 2, + "scope": "api", + "anchor": "class-fsreadstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:89e032fbc073", + "chapter": "fs", + "kind": "number", + "name": "Type", + "signature": "`bytesRead` Type: {number}", + "label": "bytesRead", + "apiSymbol": "bytesRead", + "depth": 3, + "scope": "api", + "anchor": "class-fsreadstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "ancestor" + }, + { + "id": "fs:1097ed6f3550", + "chapter": "fs", + "kind": "string|Buffer", + "name": "Type", + "signature": "`path` Type: {string|Buffer}", + "label": "path", + "apiSymbol": "path", + "depth": 3, + "scope": "api", + "anchor": "class-fsreadstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "ancestor" + }, + { + "id": "fs:e94276a4f603", + "chapter": "fs", + "kind": "boolean", + "name": "Type", + "signature": "`pending` Type: {boolean}", + "label": "pending", + "apiSymbol": "pending", + "depth": 3, + "scope": "api", + "anchor": "class-fsreadstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "ancestor" + }, + { + "id": "fs:fc9d5f0bd4ef", + "chapter": "fs", + "kind": "event", + "name": "close", + "signature": "Event: `'close'`", + "label": "'close'", + "apiSymbol": "'close'", + "depth": 3, + "scope": "api", + "anchor": "event-close_2", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:8048afed7bb3", + "chapter": "fs", + "kind": "event", + "name": "open", + "signature": "Event: `'open'`", + "label": "'open'", + "apiSymbol": "'open'", + "depth": 3, + "scope": "api", + "anchor": "event-open", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:b01db8ac01c6", + "chapter": "fs", + "kind": "event", + "name": "ready", + "signature": "Event: `'ready'`", + "label": "'ready'", + "apiSymbol": "'ready'", + "depth": 3, + "scope": "api", + "anchor": "event-ready", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:9e2d6b3a74c4", + "chapter": "fs", + "kind": "class", + "name": "fs.Stats", + "signature": "Class: `fs.Stats`", + "label": "fs.Stats", + "apiSymbol": "fs.Stats", + "depth": 2, + "scope": "api", + "anchor": "class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs.Stats", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:6ac090eb4d46", + "chapter": "fs", + "kind": "module", + "name": "stat_time_values", + "signature": "Stat time values", + "label": "Stat time values", + "apiSymbol": "stat_time_values", + "depth": 3, + "scope": "documentation", + "anchor": "stat-time-values", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "fs:18959c24e4e7", + "chapter": "fs", + "kind": "method", + "name": "isBlockDevice", + "signature": "`stats.isBlockDevice()`", + "label": "stats.isBlockDevice()", + "apiSymbol": "stats.isBlockDevice", + "depth": 3, + "scope": "api", + "anchor": "statsisblockdevice", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:fs.stats.isBlockDevice", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:8b5f86ca00da", + "chapter": "fs", + "kind": "method", + "name": "isCharacterDevice", + "signature": "`stats.isCharacterDevice()`", + "label": "stats.isCharacterDevice()", + "apiSymbol": "stats.isCharacterDevice", + "depth": 3, + "scope": "api", + "anchor": "statsischaracterdevice", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:fs.stats.isCharacterDevice", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:be43482bd90b", + "chapter": "fs", + "kind": "method", + "name": "isDirectory", + "signature": "`stats.isDirectory()`", + "label": "stats.isDirectory()", + "apiSymbol": "stats.isDirectory", + "depth": 3, + "scope": "api", + "anchor": "statsisdirectory", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:fs.stats.isDirectory", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:2729abbbdfe6", + "chapter": "fs", + "kind": "method", + "name": "isFIFO", + "signature": "`stats.isFIFO()`", + "label": "stats.isFIFO()", + "apiSymbol": "stats.isFIFO", + "depth": 3, + "scope": "api", + "anchor": "statsisfifo", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:fs.stats.isFIFO", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:e065a4e22ea2", + "chapter": "fs", + "kind": "method", + "name": "isFile", + "signature": "`stats.isFile()`", + "label": "stats.isFile()", + "apiSymbol": "stats.isFile", + "depth": 3, + "scope": "api", + "anchor": "statsisfile", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:fs.stats.isFile", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:8860f69477be", + "chapter": "fs", + "kind": "method", + "name": "isSocket", + "signature": "`stats.isSocket()`", + "label": "stats.isSocket()", + "apiSymbol": "stats.isSocket", + "depth": 3, + "scope": "api", + "anchor": "statsissocket", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:fs.stats.isSocket", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:e83ef70b61dc", + "chapter": "fs", + "kind": "method", + "name": "isSymbolicLink", + "signature": "`stats.isSymbolicLink()`", + "label": "stats.isSymbolicLink()", + "apiSymbol": "stats.isSymbolicLink", + "depth": 3, + "scope": "api", + "anchor": "statsissymboliclink", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:fs.stats.isSymbolicLink", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "fs:20786cc9ebdf", + "chapter": "fs", + "kind": "number|bigint", + "name": "Type", + "signature": "`dev` Type: {number|bigint}", + "label": "dev", + "apiSymbol": "dev", + "depth": 3, + "scope": "api", + "anchor": "class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "ancestor" + }, + { + "id": "fs:1f3f0c9b2b31", + "chapter": "fs", + "kind": "number|bigint", + "name": "Type", + "signature": "`ino` Type: {number|bigint}", + "label": "ino", + "apiSymbol": "ino", + "depth": 3, + "scope": "api", + "anchor": "class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "ancestor" + }, + { + "id": "fs:e6f5dffde66b", + "chapter": "fs", + "kind": "number|bigint", + "name": "Type", + "signature": "`mode` Type: {number|bigint}", + "label": "mode", + "apiSymbol": "mode", + "depth": 3, + "scope": "api", + "anchor": "class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "ancestor" + }, + { + "id": "fs:5809098972ff", + "chapter": "fs", + "kind": "number|bigint", + "name": "Type", + "signature": "`nlink` Type: {number|bigint}", + "label": "nlink", + "apiSymbol": "nlink", + "depth": 3, + "scope": "api", + "anchor": "class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "ancestor" + }, + { + "id": "fs:d7ac2147678c", + "chapter": "fs", + "kind": "number|bigint", + "name": "Type", + "signature": "`uid` Type: {number|bigint}", + "label": "uid", + "apiSymbol": "uid", + "depth": 3, + "scope": "api", + "anchor": "class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "ancestor" + }, + { + "id": "fs:3b127ccf2d6e", + "chapter": "fs", + "kind": "number|bigint", + "name": "Type", + "signature": "`gid` Type: {number|bigint}", + "label": "gid", + "apiSymbol": "gid", + "depth": 3, + "scope": "api", + "anchor": "class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "ancestor" + }, + { + "id": "fs:2965d137edaf", + "chapter": "fs", + "kind": "number|bigint", + "name": "Type", + "signature": "`rdev` Type: {number|bigint}", + "label": "rdev", + "apiSymbol": "rdev", + "depth": 3, + "scope": "api", + "anchor": "class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "ancestor" + }, + { + "id": "fs:8afaf1066b78", + "chapter": "fs", + "kind": "number|bigint", + "name": "Type", + "signature": "`size` Type: {number|bigint}", + "label": "size", + "apiSymbol": "size", + "depth": 3, + "scope": "api", + "anchor": "class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "ancestor" + }, + { + "id": "fs:c639785e166d", + "chapter": "fs", + "kind": "number|bigint", + "name": "Type", + "signature": "`blksize` Type: {number|bigint}", + "label": "blksize", + "apiSymbol": "blksize", + "depth": 3, + "scope": "api", + "anchor": "class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "ancestor" + }, + { + "id": "fs:a679ec1055f9", + "chapter": "fs", + "kind": "number|bigint", + "name": "Type", + "signature": "`blocks` Type: {number|bigint}", + "label": "blocks", + "apiSymbol": "blocks", + "depth": 3, + "scope": "api", + "anchor": "class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "ancestor" + }, + { + "id": "fs:a5eb34c0428f", + "chapter": "fs", + "kind": "number|bigint", + "name": "Type", + "signature": "`atimeMs` Type: {number|bigint}", + "label": "atimeMs", + "apiSymbol": "atimeMs", + "depth": 3, + "scope": "api", + "anchor": "class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "ancestor" + }, + { + "id": "fs:51681a49aa5b", + "chapter": "fs", + "kind": "number|bigint", + "name": "Type", + "signature": "`mtimeMs` Type: {number|bigint}", + "label": "mtimeMs", + "apiSymbol": "mtimeMs", + "depth": 3, + "scope": "api", + "anchor": "class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "ancestor" + }, + { + "id": "fs:c28b6f8896c7", + "chapter": "fs", + "kind": "number|bigint", + "name": "Type", + "signature": "`ctimeMs` Type: {number|bigint}", + "label": "ctimeMs", + "apiSymbol": "ctimeMs", + "depth": 3, + "scope": "api", + "anchor": "class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "ancestor" + }, + { + "id": "fs:02f8cefc6a0f", + "chapter": "fs", + "kind": "number|bigint", + "name": "Type", + "signature": "`birthtimeMs` Type: {number|bigint}", + "label": "birthtimeMs", + "apiSymbol": "birthtimeMs", + "depth": 3, + "scope": "api", + "anchor": "class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "ancestor" + }, + { + "id": "fs:8643d6850d73", + "chapter": "fs", + "kind": "bigint", + "name": "Type", + "signature": "`atimeNs` Type: {bigint}", + "label": "atimeNs", + "apiSymbol": "atimeNs", + "depth": 3, + "scope": "api", + "anchor": "class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "ancestor" + }, + { + "id": "fs:16813488e5d1", + "chapter": "fs", + "kind": "bigint", + "name": "Type", + "signature": "`mtimeNs` Type: {bigint}", + "label": "mtimeNs", + "apiSymbol": "mtimeNs", + "depth": 3, + "scope": "api", + "anchor": "class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "ancestor" + }, + { + "id": "fs:42515e76deed", + "chapter": "fs", + "kind": "bigint", + "name": "Type", + "signature": "`ctimeNs` Type: {bigint}", + "label": "ctimeNs", + "apiSymbol": "ctimeNs", + "depth": 3, + "scope": "api", + "anchor": "class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "ancestor" + }, + { + "id": "fs:3270d8cad8fc", + "chapter": "fs", + "kind": "bigint", + "name": "Type", + "signature": "`birthtimeNs` Type: {bigint}", + "label": "birthtimeNs", + "apiSymbol": "birthtimeNs", + "depth": 3, + "scope": "api", + "anchor": "class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "ancestor" + }, + { + "id": "fs:a967f5c6b78e", + "chapter": "fs", + "kind": "Date", + "name": "Type", + "signature": "`atime` Type: {Date}", + "label": "atime", + "apiSymbol": "atime", + "depth": 3, + "scope": "api", + "anchor": "class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "ancestor" + }, + { + "id": "fs:f7513d4484b9", + "chapter": "fs", + "kind": "Date", + "name": "Type", + "signature": "`mtime` Type: {Date}", + "label": "mtime", + "apiSymbol": "mtime", + "depth": 3, + "scope": "api", + "anchor": "class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "ancestor" + }, + { + "id": "fs:cfeab88f962f", + "chapter": "fs", + "kind": "Date", + "name": "Type", + "signature": "`ctime` Type: {Date}", + "label": "ctime", + "apiSymbol": "ctime", + "depth": 3, + "scope": "api", + "anchor": "class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "ancestor" + }, + { + "id": "fs:1e32671123c6", + "chapter": "fs", + "kind": "Date", + "name": "Type", + "signature": "`birthtime` Type: {Date}", + "label": "birthtime", + "apiSymbol": "birthtime", + "depth": 3, + "scope": "api", + "anchor": "class-fsstats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "ancestor" + }, + { + "id": "fs:2da67f34e84e", + "chapter": "fs", + "kind": "class", + "name": "fs.StatFs", + "signature": "Class: `fs.StatFs`", + "label": "fs.StatFs", + "apiSymbol": "fs.StatFs", + "depth": 2, + "scope": "api", + "anchor": "class-fsstatfs", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:eb5d75d27df4", + "chapter": "fs", + "kind": "number|bigint", + "name": "Type", + "signature": "`bavail` Type: {number|bigint}", + "label": "bavail", + "apiSymbol": "bavail", + "depth": 3, + "scope": "api", + "anchor": "class-fsstatfs", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "ancestor" + }, + { + "id": "fs:bce506d811f8", + "chapter": "fs", + "kind": "number|bigint", + "name": "Type", + "signature": "`bfree` Type: {number|bigint}", + "label": "bfree", + "apiSymbol": "bfree", + "depth": 3, + "scope": "api", + "anchor": "class-fsstatfs", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "ancestor" + }, + { + "id": "fs:fcd0f2b57d05", + "chapter": "fs", + "kind": "number|bigint", + "name": "Type", + "signature": "`blocks` Type: {number|bigint}", + "label": "blocks", + "apiSymbol": "blocks", + "depth": 3, + "scope": "api", + "anchor": "class-fsstatfs", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "ancestor" + }, + { + "id": "fs:8f9cdecf8983", + "chapter": "fs", + "kind": "number|bigint", + "name": "Type", + "signature": "`bsize` Type: {number|bigint}", + "label": "bsize", + "apiSymbol": "bsize", + "depth": 3, + "scope": "api", + "anchor": "class-fsstatfs", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "ancestor" + }, + { + "id": "fs:4d046e9b2b75", + "chapter": "fs", + "kind": "number|bigint", + "name": "Type", + "signature": "`ffree` Type: {number|bigint}", + "label": "ffree", + "apiSymbol": "ffree", + "depth": 3, + "scope": "api", + "anchor": "class-fsstatfs", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "ancestor" + }, + { + "id": "fs:d056678eaa8f", + "chapter": "fs", + "kind": "number|bigint", + "name": "Type", + "signature": "`files` Type: {number|bigint}", + "label": "files", + "apiSymbol": "files", + "depth": 3, + "scope": "api", + "anchor": "class-fsstatfs", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "ancestor" + }, + { + "id": "fs:50b1621ed254", + "chapter": "fs", + "kind": "number|bigint", + "name": "Type", + "signature": "`type` Type: {number|bigint}", + "label": "type", + "apiSymbol": "type", + "depth": 3, + "scope": "api", + "anchor": "class-fsstatfs", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "ancestor" + }, + { + "id": "fs:3616aeebdd25", + "chapter": "fs", + "kind": "class", + "name": "fs.Utf8Stream", + "signature": "Class: `fs.Utf8Stream`", + "label": "fs.Utf8Stream", + "apiSymbol": "fs.Utf8Stream", + "depth": 2, + "scope": "api", + "anchor": "class-fsutf8stream", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:4fa376d6e25e", + "chapter": "fs", + "kind": "method", + "name": "destroy", + "signature": "`utf8Stream.destroy()`", + "label": "utf8Stream.destroy()", + "apiSymbol": "utf8Stream.destroy", + "depth": 3, + "scope": "api", + "anchor": "utf8streamdestroy", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:8365aa7a5edc", + "chapter": "fs", + "kind": "method", + "name": "end", + "signature": "`utf8Stream.end()`", + "label": "utf8Stream.end()", + "apiSymbol": "utf8Stream.end", + "depth": 3, + "scope": "api", + "anchor": "utf8streamend", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:51c873b34d16", + "chapter": "fs", + "kind": "method", + "name": "flush", + "signature": "`utf8Stream.flush(callback)`", + "label": "utf8Stream.flush(callback)", + "apiSymbol": "utf8Stream.flush", + "depth": 3, + "scope": "api", + "anchor": "utf8streamflushcallback", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:0b12b89d6c24", + "chapter": "fs", + "kind": "method", + "name": "flushSync", + "signature": "`utf8Stream.flushSync()`", + "label": "utf8Stream.flushSync()", + "apiSymbol": "utf8Stream.flushSync", + "depth": 3, + "scope": "api", + "anchor": "utf8streamflushsync", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:8703035de37d", + "chapter": "fs", + "kind": "method", + "name": "reopen", + "signature": "`utf8Stream.reopen(file)`", + "label": "utf8Stream.reopen(file)", + "apiSymbol": "utf8Stream.reopen", + "depth": 3, + "scope": "api", + "anchor": "utf8streamreopenfile", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:9d047ff0985c", + "chapter": "fs", + "kind": "method", + "name": "write", + "signature": "`utf8Stream.write(data)`", + "label": "utf8Stream.write(data)", + "apiSymbol": "utf8Stream.write", + "depth": 3, + "scope": "api", + "anchor": "utf8streamwritedata", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:42a6ccd98a72", + "chapter": "fs", + "kind": "method", + "name": "[Symbol.dispose]", + "signature": "`utf8Stream[Symbol.dispose]()`", + "label": "utf8Stream[Symbol.dispose]()", + "apiSymbol": "utf8Stream", + "depth": 3, + "scope": "api", + "anchor": "utf8streamsymboldispose", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:1a0626006251", + "chapter": "fs", + "kind": "boolean", + "name": "append", + "signature": "`append` {boolean} Whether the stream is appending to the file or truncating it.", + "label": "append", + "apiSymbol": "append", + "depth": 3, + "scope": "api", + "anchor": "class-fsutf8stream", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "ancestor" + }, + { + "id": "fs:a0001f699ad9", + "chapter": "fs", + "kind": "string", + "name": "contentMode", + "signature": "`contentMode` {string} The type of data that can be written to the stream. Supported values are `'utf8'` or `'buffer'`. **Default**: `'utf8'`.", + "label": "contentMode", + "apiSymbol": "contentMode", + "depth": 3, + "scope": "api", + "anchor": "class-fsutf8stream", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "ancestor" + }, + { + "id": "fs:d988344f328a", + "chapter": "fs", + "kind": "number", + "name": "fd", + "signature": "`fd` {number} The file descriptor that is being written to.", + "label": "fd", + "apiSymbol": "fd", + "depth": 3, + "scope": "api", + "anchor": "class-fsutf8stream", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "ancestor" + }, + { + "id": "fs:536f95ee41e6", + "chapter": "fs", + "kind": "string", + "name": "file", + "signature": "`file` {string} The file that is being written to.", + "label": "file", + "apiSymbol": "file", + "depth": 3, + "scope": "api", + "anchor": "class-fsutf8stream", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "ancestor" + }, + { + "id": "fs:e09fb5743c13", + "chapter": "fs", + "kind": "boolean", + "name": "fsync", + "signature": "`fsync` {boolean} Whether the stream is performing a `fs.fsyncSync()` after every write operation.", + "label": "fsync", + "apiSymbol": "fsync", + "depth": 3, + "scope": "api", + "anchor": "class-fsutf8stream", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "ancestor" + }, + { + "id": "fs:344c32326cd9", + "chapter": "fs", + "kind": "number", + "name": "maxLength", + "signature": "`maxLength` {number} The maximum length of the internal buffer. If a write operation would cause the buffer to exceed `maxLength`, the data written is dropped and a drop event is emitted with the dropped data.", + "label": "maxLength", + "apiSymbol": "maxLength", + "depth": 3, + "scope": "api", + "anchor": "class-fsutf8stream", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "ancestor" + }, + { + "id": "fs:c19423abd2a5", + "chapter": "fs", + "kind": "number", + "name": "minLength", + "signature": "`minLength` {number} The minimum length of the internal buffer that is required to be full before flushing.", + "label": "minLength", + "apiSymbol": "minLength", + "depth": 3, + "scope": "api", + "anchor": "class-fsutf8stream", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "ancestor" + }, + { + "id": "fs:e26282630600", + "chapter": "fs", + "kind": "boolean", + "name": "mkdir", + "signature": "`mkdir` {boolean} Whether the stream should ensure that the directory for the `dest` file exists. If `true`, it will create the directory if it does not exist. **Default**: `false`.", + "label": "mkdir", + "apiSymbol": "mkdir", + "depth": 3, + "scope": "api", + "anchor": "class-fsutf8stream", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs.mkdir", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "ancestor" + }, + { + "id": "fs:624d89bc3819", + "chapter": "fs", + "kind": "number|string", + "name": "mode", + "signature": "`mode` {number|string} The mode of the file that is being written to.", + "label": "mode", + "apiSymbol": "mode", + "depth": 3, + "scope": "api", + "anchor": "class-fsutf8stream", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "ancestor" + }, + { + "id": "fs:e1fb24c528b9", + "chapter": "fs", + "kind": "number", + "name": "periodicFlush", + "signature": "`periodicFlush` {number} The number of milliseconds between flushes. If set to `0`, no periodic flushes will be performed.", + "label": "periodicFlush", + "apiSymbol": "periodicFlush", + "depth": 3, + "scope": "api", + "anchor": "class-fsutf8stream", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "ancestor" + }, + { + "id": "fs:eacd2bd696a7", + "chapter": "fs", + "kind": "boolean", + "name": "sync", + "signature": "`sync` {boolean} Whether the stream is writing synchronously or asynchronously.", + "label": "sync", + "apiSymbol": "sync", + "depth": 3, + "scope": "api", + "anchor": "class-fsutf8stream", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "ancestor" + }, + { + "id": "fs:e4987ee88b62", + "chapter": "fs", + "kind": "boolean", + "name": "writing", + "signature": "`writing` {boolean} Whether the stream is currently writing data to the file.", + "label": "writing", + "apiSymbol": "writing", + "depth": 3, + "scope": "api", + "anchor": "class-fsutf8stream", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "ancestor" + }, + { + "id": "fs:0d8a4cfae207", + "chapter": "fs", + "kind": "event", + "name": "close", + "signature": "Event: `'close'`", + "label": "'close'", + "apiSymbol": "'close'", + "depth": 3, + "scope": "api", + "anchor": "event-close_3", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:34975f29786a", + "chapter": "fs", + "kind": "event", + "name": "drain", + "signature": "Event: `'drain'`", + "label": "'drain'", + "apiSymbol": "'drain'", + "depth": 3, + "scope": "api", + "anchor": "event-drain", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:01ad890e8ab9", + "chapter": "fs", + "kind": "event", + "name": "drop", + "signature": "Event: `'drop'`", + "label": "'drop'", + "apiSymbol": "'drop'", + "depth": 3, + "scope": "api", + "anchor": "event-drop", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:c65cbc52a2c8", + "chapter": "fs", + "kind": "event", + "name": "error", + "signature": "Event: `'error'`", + "label": "'error'", + "apiSymbol": "'error'", + "depth": 3, + "scope": "api", + "anchor": "event-error_1", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:82ec7e5fdd12", + "chapter": "fs", + "kind": "event", + "name": "finish", + "signature": "Event: `'finish'`", + "label": "'finish'", + "apiSymbol": "'finish'", + "depth": 3, + "scope": "api", + "anchor": "event-finish", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:76e97a63153b", + "chapter": "fs", + "kind": "event", + "name": "ready", + "signature": "Event: `'ready'`", + "label": "'ready'", + "apiSymbol": "'ready'", + "depth": 3, + "scope": "api", + "anchor": "event-ready_1", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:721e22645a92", + "chapter": "fs", + "kind": "event", + "name": "write", + "signature": "Event: `'write'`", + "label": "'write'", + "apiSymbol": "'write'", + "depth": 3, + "scope": "api", + "anchor": "event-write", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:a3a6d2b82c48", + "chapter": "fs", + "kind": "class", + "name": "fs.WriteStream", + "signature": "Class: `fs.WriteStream`", + "label": "fs.WriteStream", + "apiSymbol": "fs.WriteStream", + "depth": 2, + "scope": "api", + "anchor": "class-fswritestream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:f3d18d9a1560", + "chapter": "fs", + "kind": "method", + "name": "close", + "signature": "`writeStream.close([callback])`", + "label": "writeStream.close([callback])", + "apiSymbol": "writeStream.close", + "depth": 3, + "scope": "api", + "anchor": "writestreamclosecallback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:ff47fa09330e", + "chapter": "fs", + "kind": "section", + "name": "bytesWritten", + "signature": "`writeStream.bytesWritten`", + "label": "writeStream.bytesWritten", + "apiSymbol": "writeStream.bytesWritten", + "depth": 3, + "scope": "api", + "anchor": "writestreambyteswritten", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:83ac087e7704", + "chapter": "fs", + "kind": "section", + "name": "path", + "signature": "`writeStream.path`", + "label": "writeStream.path", + "apiSymbol": "writeStream.path", + "depth": 3, + "scope": "api", + "anchor": "writestreampath", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:8b8084446f59", + "chapter": "fs", + "kind": "boolean", + "name": "Type", + "signature": "`pending` Type: {boolean}", + "label": "pending", + "apiSymbol": "pending", + "depth": 3, + "scope": "api", + "anchor": "class-fswritestream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "ancestor" + }, + { + "id": "fs:2890c22679f2", + "chapter": "fs", + "kind": "event", + "name": "close", + "signature": "Event: `'close'`", + "label": "'close'", + "apiSymbol": "'close'", + "depth": 3, + "scope": "api", + "anchor": "event-close_4", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:399c12e08dc7", + "chapter": "fs", + "kind": "event", + "name": "open", + "signature": "Event: `'open'`", + "label": "'open'", + "apiSymbol": "'open'", + "depth": 3, + "scope": "api", + "anchor": "event-open_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:bd767ab89494", + "chapter": "fs", + "kind": "event", + "name": "ready", + "signature": "Event: `'ready'`", + "label": "'ready'", + "apiSymbol": "'ready'", + "depth": 3, + "scope": "api", + "anchor": "event-ready_2", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:fs" + }, + "anchorSource": "exact" + }, + { + "id": "fs:c6d54b148bca", + "chapter": "fs", + "kind": "Object", + "name": "Type", + "signature": "`constants` Type: {Object}", + "label": "constants", + "apiSymbol": "constants", + "depth": 2, + "scope": "api", + "anchor": "common-objects", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:fs" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:fs.constants", + "tests": [ + "tests/fixtures/npm/cases/fs-shims/main.ts" + ] + }, + "anchorSource": "ancestor" + }, + { + "id": "fs:f0f980cf3581", + "chapter": "fs", + "kind": "module", + "name": "fs_constants", + "signature": "FS constants", + "label": "FS constants", + "apiSymbol": "fs_constants", + "depth": 3, + "scope": "documentation", + "anchor": "fs-constants", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "fs:00217987c8d8", + "chapter": "fs", + "kind": "module", + "name": "file_access_constants", + "signature": "File access constants", + "label": "File access constants", + "apiSymbol": "file_access_constants", + "depth": 4, + "scope": "documentation", + "anchor": "file-access-constants", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "fs:477dc9cff53e", + "chapter": "fs", + "kind": "module", + "name": "file_copy_constants", + "signature": "File copy constants", + "label": "File copy constants", + "apiSymbol": "file_copy_constants", + "depth": 4, + "scope": "documentation", + "anchor": "file-copy-constants", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "fs:376b80924315", + "chapter": "fs", + "kind": "module", + "name": "file_open_constants", + "signature": "File open constants", + "label": "File open constants", + "apiSymbol": "file_open_constants", + "depth": 4, + "scope": "documentation", + "anchor": "file-open-constants", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "fs:77d467160805", + "chapter": "fs", + "kind": "module", + "name": "file_type_constants", + "signature": "File type constants", + "label": "File type constants", + "apiSymbol": "file_type_constants", + "depth": 4, + "scope": "documentation", + "anchor": "file-type-constants", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "fs:e35d0a347f7c", + "chapter": "fs", + "kind": "module", + "name": "file_mode_constants", + "signature": "File mode constants", + "label": "File mode constants", + "apiSymbol": "file_mode_constants", + "depth": 4, + "scope": "documentation", + "anchor": "file-mode-constants", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "fs:971aee347002", + "chapter": "fs", + "kind": "module", + "name": "notes", + "signature": "Notes", + "label": "Notes", + "apiSymbol": "notes", + "depth": 1, + "scope": "documentation", + "anchor": "notes", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "fs:2cf45ed50710", + "chapter": "fs", + "kind": "module", + "name": "ordering_of_callback_and_promise-based_operations", + "signature": "Ordering of callback and promise-based operations", + "label": "Ordering of callback and promise-based operations", + "apiSymbol": "ordering_of_callback_and_promise-based_operations", + "depth": 2, + "scope": "documentation", + "anchor": "ordering-of-callback-and-promise-based-operations", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "fs:e7300d57da7c", + "chapter": "fs", + "kind": "module", + "name": "file_paths", + "signature": "File paths", + "label": "File paths", + "apiSymbol": "file_paths", + "depth": 2, + "scope": "documentation", + "anchor": "file-paths", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "fs:5f919c29167c", + "chapter": "fs", + "kind": "module", + "name": "string_paths", + "signature": "String paths", + "label": "String paths", + "apiSymbol": "string_paths", + "depth": 3, + "scope": "documentation", + "anchor": "string-paths", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "fs:d90679faa2a6", + "chapter": "fs", + "kind": "module", + "name": "file_url_paths", + "signature": "File URL paths", + "label": "File URL paths", + "apiSymbol": "file_url_paths", + "depth": 3, + "scope": "documentation", + "anchor": "file-url-paths", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "fs:7ebe37ccd21a", + "chapter": "fs", + "kind": "module", + "name": "platform-specific_considerations", + "signature": "Platform-specific considerations", + "label": "Platform-specific considerations", + "apiSymbol": "platform-specific_considerations", + "depth": 4, + "scope": "documentation", + "anchor": "platform-specific-considerations", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "fs:02a13686b727", + "chapter": "fs", + "kind": "module", + "name": "buffer_paths", + "signature": "Buffer paths", + "label": "Buffer paths", + "apiSymbol": "buffer_paths", + "depth": 3, + "scope": "documentation", + "anchor": "buffer-paths", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "fs:9e3587429a87", + "chapter": "fs", + "kind": "module", + "name": "per-drive_working_directories_on_windows", + "signature": "Per-drive working directories on Windows", + "label": "Per-drive working directories on Windows", + "apiSymbol": "per-drive_working_directories_on_windows", + "depth": 3, + "scope": "documentation", + "anchor": "per-drive-working-directories-on-windows", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "fs:2e385baae515", + "chapter": "fs", + "kind": "module", + "name": "file_descriptors", + "signature": "File descriptors", + "label": "File descriptors", + "apiSymbol": "file_descriptors", + "depth": 2, + "scope": "documentation", + "anchor": "file-descriptors_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "fs:1f3bc3e222f5", + "chapter": "fs", + "kind": "module", + "name": "threadpool_usage", + "signature": "Threadpool usage", + "label": "Threadpool usage", + "apiSymbol": "threadpool_usage", + "depth": 2, + "scope": "documentation", + "anchor": "threadpool-usage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "fs:1cb4f7ec14d2", + "chapter": "fs", + "kind": "module", + "name": "file_system_flags", + "signature": "File system flags", + "label": "File system flags", + "apiSymbol": "file_system_flags", + "depth": 2, + "scope": "documentation", + "anchor": "file-system-flags", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "globals:fc125a63d4c2", + "chapter": "globals", + "kind": "misc", + "name": "Global objects", + "signature": "Global objects", + "label": "Global objects", + "apiSymbol": "Global objects", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/corpus/1804-timers-module.ts", + "tests/corpus/1805-timer-callback-args.ts", + "tests/corpus/2093-timers-promises.ts", + "tests/harness/fetch-conformance.test.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "globals:86d4ea5a74c7", + "chapter": "globals", + "kind": "class", + "name": "AbortController", + "signature": "Class: `AbortController`", + "label": "AbortController", + "apiSymbol": "AbortController", + "depth": 1, + "scope": "api", + "anchor": "class-abortcontroller", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "partial", + "evidence": "island-global:AbortController", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "globals:a7652dabd314", + "chapter": "globals", + "kind": "method", + "name": "abort", + "signature": "`abortController.abort([reason])`", + "label": "abortController.abort([reason])", + "apiSymbol": "abortController.abort", + "depth": 2, + "scope": "api", + "anchor": "abortcontrollerabortreason", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:globals" + }, + "anchorSource": "exact" + }, + { + "id": "globals:5cda665ef9c7", + "chapter": "globals", + "kind": "AbortSignal", + "name": "Type", + "signature": "`signal` Type: {AbortSignal}", + "label": "signal", + "apiSymbol": "signal", + "depth": 2, + "scope": "api", + "anchor": "class-abortcontroller", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:globals" + }, + "anchorSource": "ancestor" + }, + { + "id": "globals:cab94a87201e", + "chapter": "globals", + "kind": "class", + "name": "AbortSignal", + "signature": "Class: `AbortSignal`", + "label": "AbortSignal", + "apiSymbol": "AbortSignal", + "depth": 1, + "scope": "api", + "anchor": "class-abortsignal", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "partial", + "evidence": "island-global:AbortSignal", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "globals:127f66819ead", + "chapter": "globals", + "kind": "method", + "name": "throwIfAborted", + "signature": "`abortSignal.throwIfAborted()`", + "label": "abortSignal.throwIfAborted()", + "apiSymbol": "abortSignal.throwIfAborted", + "depth": 2, + "scope": "api", + "anchor": "abortsignalthrowifaborted", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:globals" + }, + "anchorSource": "exact" + }, + { + "id": "globals:672ac9138dd9", + "chapter": "globals", + "kind": "boolean", + "name": "Type", + "signature": "`aborted` Type: {boolean}", + "label": "aborted", + "apiSymbol": "aborted", + "depth": 2, + "scope": "api", + "anchor": "class-abortsignal", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:globals" + }, + "anchorSource": "ancestor" + }, + { + "id": "globals:a09eb9b8d16e", + "chapter": "globals", + "kind": "Function", + "name": "Type", + "signature": "`onabort` Type: {Function}", + "label": "onabort", + "apiSymbol": "onabort", + "depth": 2, + "scope": "api", + "anchor": "class-abortsignal", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:globals" + }, + "anchorSource": "ancestor" + }, + { + "id": "globals:b7312ad84180", + "chapter": "globals", + "kind": "any", + "name": "Type", + "signature": "`reason` Type: {any}", + "label": "reason", + "apiSymbol": "reason", + "depth": 2, + "scope": "api", + "anchor": "class-abortsignal", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:globals" + }, + "anchorSource": "ancestor" + }, + { + "id": "globals:5a696632369d", + "chapter": "globals", + "kind": "event", + "name": "abort", + "signature": "Event: `'abort'`", + "label": "'abort'", + "apiSymbol": "'abort'", + "depth": 2, + "scope": "api", + "anchor": "event-abort", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:globals" + }, + "anchorSource": "exact" + }, + { + "id": "globals:fedbef36d3c4", + "chapter": "globals", + "kind": "class", + "name": "Blob", + "signature": "Class: `Blob`", + "label": "Blob", + "apiSymbol": "Blob", + "depth": 1, + "scope": "api", + "anchor": "class-blob", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "partial", + "evidence": "island-global:Blob", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "globals:037ae687e118", + "chapter": "globals", + "kind": "class", + "name": "BroadcastChannel", + "signature": "Class: `BroadcastChannel`", + "label": "BroadcastChannel", + "apiSymbol": "BroadcastChannel", + "depth": 1, + "scope": "api", + "anchor": "class-broadcastchannel", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-global-absent:BroadcastChannel", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "globals:eb29ec8d1737", + "chapter": "globals", + "kind": "class", + "name": "Buffer", + "signature": "Class: `Buffer`", + "label": "Buffer", + "apiSymbol": "Buffer", + "depth": 1, + "scope": "api", + "anchor": "class-buffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "partial", + "evidence": "island-npm-global:Buffer", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "globals:c9caa83b54e7", + "chapter": "globals", + "kind": "class", + "name": "ByteLengthQueuingStrategy", + "signature": "Class: `ByteLengthQueuingStrategy`", + "label": "ByteLengthQueuingStrategy", + "apiSymbol": "ByteLengthQueuingStrategy", + "depth": 1, + "scope": "api", + "anchor": "class-bytelengthqueuingstrategy", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-global-absent:ByteLengthQueuingStrategy", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "globals:32f1cce26e66", + "chapter": "globals", + "kind": "class", + "name": "CloseEvent", + "signature": "Class: `CloseEvent`", + "label": "CloseEvent", + "apiSymbol": "CloseEvent", + "depth": 1, + "scope": "api", + "anchor": "class-closeevent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-global-absent:CloseEvent", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "globals:f0bf30fb92df", + "chapter": "globals", + "kind": "class", + "name": "CompressionStream", + "signature": "Class: `CompressionStream`", + "label": "CompressionStream", + "apiSymbol": "CompressionStream", + "depth": 1, + "scope": "api", + "anchor": "class-compressionstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-global-absent:CompressionStream", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "globals:0c56fc210ea2", + "chapter": "globals", + "kind": "class", + "name": "CountQueuingStrategy", + "signature": "Class: `CountQueuingStrategy`", + "label": "CountQueuingStrategy", + "apiSymbol": "CountQueuingStrategy", + "depth": 1, + "scope": "api", + "anchor": "class-countqueuingstrategy", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-global-absent:CountQueuingStrategy", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "globals:51985f41d8af", + "chapter": "globals", + "kind": "class", + "name": "Crypto", + "signature": "Class: `Crypto`", + "label": "Crypto", + "apiSymbol": "Crypto", + "depth": 1, + "scope": "api", + "anchor": "class-crypto", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:globals" + }, + "anchorSource": "exact" + }, + { + "id": "globals:60c93cf58364", + "chapter": "globals", + "kind": "class", + "name": "CryptoKey", + "signature": "Class: `CryptoKey`", + "label": "CryptoKey", + "apiSymbol": "CryptoKey", + "depth": 1, + "scope": "api", + "anchor": "class-cryptokey", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-global-absent:CryptoKey", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "globals:d03b17009dd3", + "chapter": "globals", + "kind": "class", + "name": "CustomEvent", + "signature": "Class: `CustomEvent`", + "label": "CustomEvent", + "apiSymbol": "CustomEvent", + "depth": 1, + "scope": "api", + "anchor": "class-customevent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "partial", + "evidence": "island-global:CustomEvent", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "globals:402cbed48ca0", + "chapter": "globals", + "kind": "class", + "name": "DecompressionStream", + "signature": "Class: `DecompressionStream`", + "label": "DecompressionStream", + "apiSymbol": "DecompressionStream", + "depth": 1, + "scope": "api", + "anchor": "class-decompressionstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-global-absent:DecompressionStream", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "globals:6dd9e909552a", + "chapter": "globals", + "kind": "class", + "name": "DOMException", + "signature": "Class: `DOMException`", + "label": "DOMException", + "apiSymbol": "DOMException", + "depth": 1, + "scope": "api", + "anchor": "class-domexception", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "partial", + "evidence": "island-global:DOMException", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "globals:9e3f482c4c2d", + "chapter": "globals", + "kind": "class", + "name": "Event", + "signature": "Class: `Event`", + "label": "Event", + "apiSymbol": "Event", + "depth": 1, + "scope": "api", + "anchor": "class-event", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "partial", + "evidence": "island-global:Event", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "globals:3c623a789a40", + "chapter": "globals", + "kind": "class", + "name": "EventSource", + "signature": "Class: `EventSource`", + "label": "EventSource", + "apiSymbol": "EventSource", + "depth": 1, + "scope": "api", + "anchor": "class-eventsource", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental. Enable this API with the [`--experimental-eventsource`][] CLI flag.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-global-absent:EventSource", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "globals:3e97945356cd", + "chapter": "globals", + "kind": "class", + "name": "EventTarget", + "signature": "Class: `EventTarget`", + "label": "EventTarget", + "apiSymbol": "EventTarget", + "depth": 1, + "scope": "api", + "anchor": "class-eventtarget", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "partial", + "evidence": "island-global:EventTarget", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "globals:482351dc6f5f", + "chapter": "globals", + "kind": "class", + "name": "File", + "signature": "Class: `File`", + "label": "File", + "apiSymbol": "File", + "depth": 1, + "scope": "api", + "anchor": "class-file", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "partial", + "evidence": "island-global:File", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "globals:12270865dff0", + "chapter": "globals", + "kind": "class", + "name": "FormData", + "signature": "Class: `FormData`", + "label": "FormData", + "apiSymbol": "FormData", + "depth": 1, + "scope": "api", + "anchor": "class-formdata", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-global-absent:FormData", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "globals:5cc144620be0", + "chapter": "globals", + "kind": "class", + "name": "Headers", + "signature": "Class: `Headers`", + "label": "Headers", + "apiSymbol": "Headers", + "depth": 1, + "scope": "api", + "anchor": "class-headers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "partial", + "evidence": "island-global:Headers", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "globals:c6a0ed20cb87", + "chapter": "globals", + "kind": "class", + "name": "MessageChannel", + "signature": "Class: `MessageChannel`", + "label": "MessageChannel", + "apiSymbol": "MessageChannel", + "depth": 1, + "scope": "api", + "anchor": "class-messagechannel", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "partial", + "evidence": "island-global:MessageChannel", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "globals:5ba72f5bdda8", + "chapter": "globals", + "kind": "class", + "name": "MessageEvent", + "signature": "Class: `MessageEvent`", + "label": "MessageEvent", + "apiSymbol": "MessageEvent", + "depth": 1, + "scope": "api", + "anchor": "class-messageevent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "partial", + "evidence": "island-global:MessageEvent", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "globals:ddbf8800228f", + "chapter": "globals", + "kind": "class", + "name": "MessagePort", + "signature": "Class: `MessagePort`", + "label": "MessagePort", + "apiSymbol": "MessagePort", + "depth": 1, + "scope": "api", + "anchor": "class-messageport", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "partial", + "evidence": "island-global:MessagePort", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "globals:36fbe5411f99", + "chapter": "globals", + "kind": "class", + "name": "Navigator", + "signature": "Class: `Navigator`", + "label": "Navigator", + "apiSymbol": "Navigator", + "depth": 1, + "scope": "api", + "anchor": "class-navigator", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development. Disable this API with the [`--no-experimental-global-navigator`][] CLI flag.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-global-absent:Navigator", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "globals:8be763f02225", + "chapter": "globals", + "kind": "class", + "name": "PerformanceEntry", + "signature": "Class: `PerformanceEntry`", + "label": "PerformanceEntry", + "apiSymbol": "PerformanceEntry", + "depth": 1, + "scope": "api", + "anchor": "class-performanceentry", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:globals" + }, + "anchorSource": "exact" + }, + { + "id": "globals:2f72eee9b9c6", + "chapter": "globals", + "kind": "class", + "name": "PerformanceMark", + "signature": "Class: `PerformanceMark`", + "label": "PerformanceMark", + "apiSymbol": "PerformanceMark", + "depth": 1, + "scope": "api", + "anchor": "class-performancemark", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:globals" + }, + "anchorSource": "exact" + }, + { + "id": "globals:d5615d0cc57b", + "chapter": "globals", + "kind": "class", + "name": "PerformanceMeasure", + "signature": "Class: `PerformanceMeasure`", + "label": "PerformanceMeasure", + "apiSymbol": "PerformanceMeasure", + "depth": 1, + "scope": "api", + "anchor": "class-performancemeasure", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:globals" + }, + "anchorSource": "exact" + }, + { + "id": "globals:3e729822f63e", + "chapter": "globals", + "kind": "class", + "name": "PerformanceObserver", + "signature": "Class: `PerformanceObserver`", + "label": "PerformanceObserver", + "apiSymbol": "PerformanceObserver", + "depth": 1, + "scope": "api", + "anchor": "class-performanceobserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:globals" + }, + "anchorSource": "exact" + }, + { + "id": "globals:5d3eb95faf5e", + "chapter": "globals", + "kind": "class", + "name": "PerformanceObserverEntryList", + "signature": "Class: `PerformanceObserverEntryList`", + "label": "PerformanceObserverEntryList", + "apiSymbol": "PerformanceObserverEntryList", + "depth": 1, + "scope": "api", + "anchor": "class-performanceobserverentrylist", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:globals" + }, + "anchorSource": "exact" + }, + { + "id": "globals:ec94d1ae83f4", + "chapter": "globals", + "kind": "class", + "name": "PerformanceResourceTiming", + "signature": "Class: `PerformanceResourceTiming`", + "label": "PerformanceResourceTiming", + "apiSymbol": "PerformanceResourceTiming", + "depth": 1, + "scope": "api", + "anchor": "class-performanceresourcetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:globals" + }, + "anchorSource": "exact" + }, + { + "id": "globals:9912d590e3ea", + "chapter": "globals", + "kind": "class", + "name": "ReadableByteStreamController", + "signature": "Class: `ReadableByteStreamController`", + "label": "ReadableByteStreamController", + "apiSymbol": "ReadableByteStreamController", + "depth": 1, + "scope": "api", + "anchor": "class-readablebytestreamcontroller", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-global-absent:ReadableByteStreamController", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "globals:a0093dee34e6", + "chapter": "globals", + "kind": "class", + "name": "ReadableStream", + "signature": "Class: `ReadableStream`", + "label": "ReadableStream", + "apiSymbol": "ReadableStream", + "depth": 1, + "scope": "api", + "anchor": "class-readablestream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "partial", + "evidence": "island-global:ReadableStream", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "globals:ef8b2bcf314d", + "chapter": "globals", + "kind": "class", + "name": "ReadableStreamBYOBReader", + "signature": "Class: `ReadableStreamBYOBReader`", + "label": "ReadableStreamBYOBReader", + "apiSymbol": "ReadableStreamBYOBReader", + "depth": 1, + "scope": "api", + "anchor": "class-readablestreambyobreader", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-global-absent:ReadableStreamBYOBReader", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "globals:6b66289d8518", + "chapter": "globals", + "kind": "class", + "name": "ReadableStreamBYOBRequest", + "signature": "Class: `ReadableStreamBYOBRequest`", + "label": "ReadableStreamBYOBRequest", + "apiSymbol": "ReadableStreamBYOBRequest", + "depth": 1, + "scope": "api", + "anchor": "class-readablestreambyobrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-global-absent:ReadableStreamBYOBRequest", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "globals:32c92edb2758", + "chapter": "globals", + "kind": "class", + "name": "ReadableStreamDefaultController", + "signature": "Class: `ReadableStreamDefaultController`", + "label": "ReadableStreamDefaultController", + "apiSymbol": "ReadableStreamDefaultController", + "depth": 1, + "scope": "api", + "anchor": "class-readablestreamdefaultcontroller", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:globals" + }, + "anchorSource": "exact" + }, + { + "id": "globals:ce47d7157e8d", + "chapter": "globals", + "kind": "class", + "name": "ReadableStreamDefaultReader", + "signature": "Class: `ReadableStreamDefaultReader`", + "label": "ReadableStreamDefaultReader", + "apiSymbol": "ReadableStreamDefaultReader", + "depth": 1, + "scope": "api", + "anchor": "class-readablestreamdefaultreader", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:globals" + }, + "anchorSource": "exact" + }, + { + "id": "globals:800eead6fee7", + "chapter": "globals", + "kind": "class", + "name": "Request", + "signature": "Class: `Request`", + "label": "Request", + "apiSymbol": "Request", + "depth": 1, + "scope": "api", + "anchor": "class-request", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "partial", + "evidence": "island-global:Request", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "globals:f47460ff0212", + "chapter": "globals", + "kind": "class", + "name": "Response", + "signature": "Class: `Response`", + "label": "Response", + "apiSymbol": "Response", + "depth": 1, + "scope": "api", + "anchor": "class-response", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "partial", + "evidence": "island-global:Response", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "globals:4d2dccff54ef", + "chapter": "globals", + "kind": "class", + "name": "Storage", + "signature": "Class: `Storage`", + "label": "Storage", + "apiSymbol": "Storage", + "depth": 1, + "scope": "api", + "anchor": "class-storage", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate. Enable this API with [`--experimental-webstorage`][].", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-global-absent:Storage", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "globals:075a2eb7d99b", + "chapter": "globals", + "kind": "class", + "name": "SubtleCrypto", + "signature": "Class: `SubtleCrypto`", + "label": "SubtleCrypto", + "apiSymbol": "SubtleCrypto", + "depth": 1, + "scope": "api", + "anchor": "class-subtlecrypto", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-global-absent:SubtleCrypto", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "globals:941a42dcbf77", + "chapter": "globals", + "kind": "class", + "name": "TextDecoder", + "signature": "Class: `TextDecoder`", + "label": "TextDecoder", + "apiSymbol": "TextDecoder", + "depth": 1, + "scope": "api", + "anchor": "class-textdecoder", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "partial", + "evidence": "island-global:TextDecoder", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "globals:e82968d70acf", + "chapter": "globals", + "kind": "class", + "name": "TextDecoderStream", + "signature": "Class: `TextDecoderStream`", + "label": "TextDecoderStream", + "apiSymbol": "TextDecoderStream", + "depth": 1, + "scope": "api", + "anchor": "class-textdecoderstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "partial", + "evidence": "island-global:TextDecoderStream", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "globals:7969459a50b1", + "chapter": "globals", + "kind": "class", + "name": "TextEncoder", + "signature": "Class: `TextEncoder`", + "label": "TextEncoder", + "apiSymbol": "TextEncoder", + "depth": 1, + "scope": "api", + "anchor": "class-textencoder", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "partial", + "evidence": "island-global:TextEncoder", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "globals:7666ae12389a", + "chapter": "globals", + "kind": "class", + "name": "TextEncoderStream", + "signature": "Class: `TextEncoderStream`", + "label": "TextEncoderStream", + "apiSymbol": "TextEncoderStream", + "depth": 1, + "scope": "api", + "anchor": "class-textencoderstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-global-absent:TextEncoderStream", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "globals:0aeef1233e72", + "chapter": "globals", + "kind": "class", + "name": "TransformStream", + "signature": "Class: `TransformStream`", + "label": "TransformStream", + "apiSymbol": "TransformStream", + "depth": 1, + "scope": "api", + "anchor": "class-transformstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "partial", + "evidence": "island-global:TransformStream", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "globals:d452bfc1fa16", + "chapter": "globals", + "kind": "class", + "name": "TransformStreamDefaultController", + "signature": "Class: `TransformStreamDefaultController`", + "label": "TransformStreamDefaultController", + "apiSymbol": "TransformStreamDefaultController", + "depth": 1, + "scope": "api", + "anchor": "class-transformstreamdefaultcontroller", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-global-absent:TransformStreamDefaultController", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "globals:b2bc5f93ed3e", + "chapter": "globals", + "kind": "class", + "name": "URL", + "signature": "Class: `URL`", + "label": "URL", + "apiSymbol": "URL", + "depth": 1, + "scope": "api", + "anchor": "class-url", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "partial", + "evidence": "island-npm-global:URL", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "globals:f3b0d8532129", + "chapter": "globals", + "kind": "class", + "name": "URLPattern", + "signature": "Class: `URLPattern`", + "label": "URLPattern", + "apiSymbol": "URLPattern", + "depth": 1, + "scope": "api", + "anchor": "class-urlpattern", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-global-absent:URLPattern", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "globals:e4754b03b0a0", + "chapter": "globals", + "kind": "class", + "name": "URLSearchParams", + "signature": "Class: `URLSearchParams`", + "label": "URLSearchParams", + "apiSymbol": "URLSearchParams", + "depth": 1, + "scope": "api", + "anchor": "class-urlsearchparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "partial", + "evidence": "island-global:URLSearchParams", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "globals:bb6a0ce7ccb5", + "chapter": "globals", + "kind": "class", + "name": "WebAssembly", + "signature": "Class: `WebAssembly`", + "label": "WebAssembly", + "apiSymbol": "WebAssembly", + "depth": 1, + "scope": "api", + "anchor": "class-webassembly", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-global-absent:WebAssembly", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "globals:0a9307472b31", + "chapter": "globals", + "kind": "class", + "name": "WebSocket", + "signature": "Class: `WebSocket`", + "label": "WebSocket", + "apiSymbol": "WebSocket", + "depth": 1, + "scope": "api", + "anchor": "class-websocket", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-global-absent:WebSocket", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "globals:7243286a15c6", + "chapter": "globals", + "kind": "class", + "name": "WritableStream", + "signature": "Class: `WritableStream`", + "label": "WritableStream", + "apiSymbol": "WritableStream", + "depth": 1, + "scope": "api", + "anchor": "class-writablestream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-global-absent:WritableStream", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "globals:f3b66cce64be", + "chapter": "globals", + "kind": "class", + "name": "WritableStreamDefaultController", + "signature": "Class: `WritableStreamDefaultController`", + "label": "WritableStreamDefaultController", + "apiSymbol": "WritableStreamDefaultController", + "depth": 1, + "scope": "api", + "anchor": "class-writablestreamdefaultcontroller", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-global-absent:WritableStreamDefaultController", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "globals:168841134aee", + "chapter": "globals", + "kind": "class", + "name": "WritableStreamDefaultWriter", + "signature": "Class: `WritableStreamDefaultWriter`", + "label": "WritableStreamDefaultWriter", + "apiSymbol": "WritableStreamDefaultWriter", + "depth": 1, + "scope": "api", + "anchor": "class-writablestreamdefaultwriter", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-global-absent:WritableStreamDefaultWriter", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "globals:12db26fa50a4", + "chapter": "globals", + "kind": "method", + "name": "atob", + "signature": "`atob(data)`", + "label": "atob(data)", + "apiSymbol": "atob", + "depth": 1, + "scope": "api", + "anchor": "atobdata", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy. Use `Buffer.from(data, 'base64')` instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "partial", + "evidence": "island-global:atob", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "globals:492f9d1e6cda", + "chapter": "globals", + "kind": "method", + "name": "btoa", + "signature": "`btoa(data)`", + "label": "btoa(data)", + "apiSymbol": "btoa", + "depth": 1, + "scope": "api", + "anchor": "btoadata", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy. Use `buf.toString('base64')` instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "partial", + "evidence": "island-global:btoa", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "globals:b50c4cf7a87e", + "chapter": "globals", + "kind": "method", + "name": "clearImmediate", + "signature": "`clearImmediate(immediateObject)`", + "label": "clearImmediate(immediateObject)", + "apiSymbol": "clearImmediate", + "depth": 1, + "scope": "api", + "anchor": "clearimmediateimmediateobject", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:clearImmediate", + "tests": [ + "tests/corpus/1804-timers-module.ts", + "tests/corpus/1805-timer-callback-args.ts", + "tests/corpus/2093-timers-promises.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-npm-global:clearImmediate", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "globals:55a3655f45c6", + "chapter": "globals", + "kind": "method", + "name": "clearInterval", + "signature": "`clearInterval(intervalObject)`", + "label": "clearInterval(intervalObject)", + "apiSymbol": "clearInterval", + "depth": 1, + "scope": "api", + "anchor": "clearintervalintervalobject", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:clearInterval", + "tests": [ + "tests/corpus/1804-timers-module.ts", + "tests/corpus/1805-timer-callback-args.ts", + "tests/corpus/2093-timers-promises.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-global:clearInterval", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "globals:2104fad64cb5", + "chapter": "globals", + "kind": "method", + "name": "clearTimeout", + "signature": "`clearTimeout(timeoutObject)`", + "label": "clearTimeout(timeoutObject)", + "apiSymbol": "clearTimeout", + "depth": 1, + "scope": "api", + "anchor": "cleartimeouttimeoutobject", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:clearTimeout", + "tests": [ + "tests/corpus/1804-timers-module.ts", + "tests/corpus/1805-timer-callback-args.ts", + "tests/corpus/2093-timers-promises.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-global:clearTimeout", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "globals:0899a0efb5bd", + "chapter": "globals", + "kind": "method", + "name": "queueMicrotask", + "signature": "`queueMicrotask(callback)`", + "label": "queueMicrotask(callback)", + "apiSymbol": "queueMicrotask", + "depth": 1, + "scope": "api", + "anchor": "queuemicrotaskcallback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "partial", + "evidence": "island-global:queueMicrotask", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "globals:1b96b651b46c", + "chapter": "globals", + "kind": "method", + "name": "require", + "signature": "`require()`", + "label": "require()", + "apiSymbol": "require", + "depth": 1, + "scope": "api", + "anchor": "require", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:globals" + }, + "anchorSource": "exact" + }, + { + "id": "globals:482c12cf48d3", + "chapter": "globals", + "kind": "method", + "name": "setImmediate", + "signature": "`setImmediate(callback[, ...args])`", + "label": "setImmediate(callback[, ...args])", + "apiSymbol": "setImmediate", + "depth": 1, + "scope": "api", + "anchor": "setimmediatecallback-args", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:setImmediate", + "tests": [ + "tests/corpus/1804-timers-module.ts", + "tests/corpus/1805-timer-callback-args.ts", + "tests/corpus/2093-timers-promises.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-npm-global:setImmediate", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "globals:e65f234079c9", + "chapter": "globals", + "kind": "method", + "name": "setInterval", + "signature": "`setInterval(callback, delay[, ...args])`", + "label": "setInterval(callback, delay[, ...args])", + "apiSymbol": "setInterval", + "depth": 1, + "scope": "api", + "anchor": "setintervalcallback-delay-args", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:setInterval", + "tests": [ + "tests/corpus/1804-timers-module.ts", + "tests/corpus/1805-timer-callback-args.ts", + "tests/corpus/2093-timers-promises.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-global:setInterval", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "globals:bed5b9832d30", + "chapter": "globals", + "kind": "method", + "name": "setTimeout", + "signature": "`setTimeout(callback, delay[, ...args])`", + "label": "setTimeout(callback, delay[, ...args])", + "apiSymbol": "setTimeout", + "depth": 1, + "scope": "api", + "anchor": "settimeoutcallback-delay-args", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:setTimeout", + "tests": [ + "tests/corpus/1804-timers-module.ts", + "tests/corpus/1805-timer-callback-args.ts", + "tests/corpus/2093-timers-promises.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-global:setTimeout", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "globals:609a4c1f4306", + "chapter": "globals", + "kind": "method", + "name": "structuredClone", + "signature": "`structuredClone(value[, options])`", + "label": "structuredClone(value[, options])", + "apiSymbol": "structuredClone", + "depth": 1, + "scope": "api", + "anchor": "structuredclonevalue-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "partial", + "evidence": "island-global:structuredClone", + "tests": [ + "tests/harness/web-globals.test.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "globals:64abdef12c10", + "chapter": "globals", + "kind": "misc", + "name": "`__dirname`", + "signature": "`__dirname`", + "label": "__dirname", + "apiSymbol": "__dirname", + "depth": 1, + "scope": "api", + "anchor": "__dirname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:globals" + }, + "anchorSource": "exact" + }, + { + "id": "globals:ae2fd91a032e", + "chapter": "globals", + "kind": "misc", + "name": "`__filename`", + "signature": "`__filename`", + "label": "__filename", + "apiSymbol": "__filename", + "depth": 1, + "scope": "api", + "anchor": "__filename", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:globals" + }, + "anchorSource": "exact" + }, + { + "id": "globals:3e877d17013f", + "chapter": "globals", + "kind": "misc", + "name": "`console`", + "signature": "`console`", + "label": "console", + "apiSymbol": "console", + "depth": 1, + "scope": "api", + "anchor": "console", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:globals" + }, + "anchorSource": "exact" + }, + { + "id": "globals:e589e2084522", + "chapter": "globals", + "kind": "misc", + "name": "`crypto`", + "signature": "`crypto`", + "label": "crypto", + "apiSymbol": "crypto", + "depth": 1, + "scope": "api", + "anchor": "crypto", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:globals" + }, + "anchorSource": "exact" + }, + { + "id": "globals:21beec880090", + "chapter": "globals", + "kind": "misc", + "name": "`exports`", + "signature": "`exports`", + "label": "exports", + "apiSymbol": "exports", + "depth": 1, + "scope": "api", + "anchor": "exports", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:globals" + }, + "anchorSource": "exact" + }, + { + "id": "globals:f0011d8c00c8", + "chapter": "globals", + "kind": "misc", + "name": "`fetch`", + "signature": "`fetch`", + "label": "fetch", + "apiSymbol": "fetch", + "depth": 1, + "scope": "api", + "anchor": "fetch", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-feature:globals.fetch", + "tests": [ + "tests/harness/fetch-conformance.test.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:globals" + }, + "anchorSource": "exact" + }, + { + "id": "globals:b8e6116792f4", + "chapter": "globals", + "kind": "module", + "name": "custom_dispatcher", + "signature": "Custom dispatcher", + "label": "Custom dispatcher", + "apiSymbol": "custom_dispatcher", + "depth": 2, + "scope": "documentation", + "anchor": "custom-dispatcher", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "globals:56fc238b7e15", + "chapter": "globals", + "kind": "module", + "name": "related_classes", + "signature": "Related classes", + "label": "Related classes", + "apiSymbol": "related_classes", + "depth": 2, + "scope": "documentation", + "anchor": "related-classes", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "globals:7631b7edee96", + "chapter": "globals", + "kind": "misc", + "name": "`global`", + "signature": "`global`", + "label": "global", + "apiSymbol": "global", + "depth": 1, + "scope": "api", + "anchor": "global", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy. Use [`globalThis`][] instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:globals" + }, + "anchorSource": "exact" + }, + { + "id": "globals:0a45bbc44df3", + "chapter": "globals", + "kind": "misc", + "name": "`localstorage`", + "signature": "`localStorage`", + "label": "localStorage", + "apiSymbol": "localStorage", + "depth": 1, + "scope": "api", + "anchor": "localstorage", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate. Enable this API with [`--experimental-webstorage`][].", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:globals" + }, + "anchorSource": "exact" + }, + { + "id": "globals:d7f1044c33e6", + "chapter": "globals", + "kind": "misc", + "name": "`module`", + "signature": "`module`", + "label": "module", + "apiSymbol": "module", + "depth": 1, + "scope": "api", + "anchor": "module", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:globals" + }, + "anchorSource": "exact" + }, + { + "id": "globals:3386121a2393", + "chapter": "globals", + "kind": "misc", + "name": "`navigator`", + "signature": "`navigator`", + "label": "navigator", + "apiSymbol": "navigator", + "depth": 1, + "scope": "api", + "anchor": "navigator", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development. Disable this API with the [`--no-experimental-global-navigator`][] CLI flag.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:globals" + }, + "anchorSource": "exact" + }, + { + "id": "globals:7fb795acad1e", + "chapter": "globals", + "kind": "number", + "name": "Type", + "signature": "`hardwareConcurrency` Type: {number}", + "label": "hardwareConcurrency", + "apiSymbol": "hardwareConcurrency", + "depth": 2, + "scope": "api", + "anchor": "navigator", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development. Disable this API with the [`--no-experimental-global-navigator`][] CLI flag.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:globals" + }, + "anchorSource": "ancestor" + }, + { + "id": "globals:a8d356fae78b", + "chapter": "globals", + "kind": "string", + "name": "Type", + "signature": "`language` Type: {string}", + "label": "language", + "apiSymbol": "language", + "depth": 2, + "scope": "api", + "anchor": "navigator", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development. Disable this API with the [`--no-experimental-global-navigator`][] CLI flag.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:globals" + }, + "anchorSource": "ancestor" + }, + { + "id": "globals:0f132fcbba37", + "chapter": "globals", + "kind": "string\\[]", + "name": "Type", + "signature": "`languages` Type: {string\\[]}", + "label": "languages", + "apiSymbol": "languages", + "depth": 2, + "scope": "api", + "anchor": "navigator", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development. Disable this API with the [`--no-experimental-global-navigator`][] CLI flag.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:globals" + }, + "anchorSource": "ancestor" + }, + { + "id": "globals:d2393015164b", + "chapter": "globals", + "kind": "section", + "name": "locks", + "signature": "`navigator.locks`", + "label": "navigator.locks", + "apiSymbol": "navigator.locks", + "depth": 2, + "scope": "api", + "anchor": "navigatorlocks", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:globals" + }, + "anchorSource": "exact" + }, + { + "id": "globals:d386eaf756b4", + "chapter": "globals", + "kind": "string", + "name": "Type", + "signature": "`platform` Type: {string}", + "label": "platform", + "apiSymbol": "platform", + "depth": 2, + "scope": "api", + "anchor": "navigator", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development. Disable this API with the [`--no-experimental-global-navigator`][] CLI flag.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:globals" + }, + "anchorSource": "ancestor" + }, + { + "id": "globals:fc0a32e8c26f", + "chapter": "globals", + "kind": "string", + "name": "Type", + "signature": "`userAgent` Type: {string}", + "label": "userAgent", + "apiSymbol": "userAgent", + "depth": 2, + "scope": "api", + "anchor": "navigator", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development. Disable this API with the [`--no-experimental-global-navigator`][] CLI flag.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:globals" + }, + "anchorSource": "ancestor" + }, + { + "id": "globals:b412bf9a456d", + "chapter": "globals", + "kind": "misc", + "name": "`performance`", + "signature": "`performance`", + "label": "performance", + "apiSymbol": "performance", + "depth": 1, + "scope": "api", + "anchor": "performance", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:globals" + }, + "anchorSource": "exact" + }, + { + "id": "globals:2e74aa321feb", + "chapter": "globals", + "kind": "misc", + "name": "`process`", + "signature": "`process`", + "label": "process", + "apiSymbol": "process", + "depth": 1, + "scope": "api", + "anchor": "process", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:globals" + }, + "anchorSource": "exact" + }, + { + "id": "globals:468e2e550926", + "chapter": "globals", + "kind": "misc", + "name": "`sessionstorage`", + "signature": "`sessionStorage`", + "label": "sessionStorage", + "apiSymbol": "sessionStorage", + "depth": 1, + "scope": "api", + "anchor": "sessionstorage", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate. Enable this API with [`--experimental-webstorage`][].", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:globals" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:globals" + }, + "anchorSource": "exact" + }, + { + "id": "http:cd22e4322d72", + "chapter": "http", + "kind": "module", + "name": "http", + "signature": "HTTP", + "label": "HTTP", + "apiSymbol": "http", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "http:ad33a8f556d7", + "chapter": "http", + "kind": "module", + "name": "built-in_proxy_support", + "signature": "Built-in Proxy Support", + "label": "Built-in Proxy Support", + "apiSymbol": "built-in_proxy_support", + "depth": 1, + "scope": "documentation", + "anchor": "built-in-proxy-support", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "http:70f736582bdc", + "chapter": "http", + "kind": "module", + "name": "proxy_url_format", + "signature": "Proxy URL Format", + "label": "Proxy URL Format", + "apiSymbol": "proxy_url_format", + "depth": 2, + "scope": "documentation", + "anchor": "proxy-url-format", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "http:d88367cab5af", + "chapter": "http", + "kind": "module", + "name": "`no_proxy`_format", + "signature": "`NO_PROXY` Format", + "label": "NO_PROXY", + "apiSymbol": "NO_PROXY", + "depth": 2, + "scope": "api", + "anchor": "no_proxy-format", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:50e7b858b0c8", + "chapter": "http", + "kind": "class", + "name": "http.Agent", + "signature": "Class: `http.Agent`", + "label": "http.Agent", + "apiSymbol": "http.Agent", + "depth": 1, + "scope": "api", + "anchor": "class-httpagent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:http.Agent", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "http:b54cc6bd538f", + "chapter": "http", + "kind": "method", + "name": "createConnection", + "signature": "`agent.createConnection(options[, callback])`", + "label": "agent.createConnection(options[, callback])", + "apiSymbol": "agent.createConnection", + "depth": 2, + "scope": "api", + "anchor": "agentcreateconnectionoptions-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:4b8e229664ee", + "chapter": "http", + "kind": "method", + "name": "keepSocketAlive", + "signature": "`agent.keepSocketAlive(socket)`", + "label": "agent.keepSocketAlive(socket)", + "apiSymbol": "agent.keepSocketAlive", + "depth": 2, + "scope": "api", + "anchor": "agentkeepsocketalivesocket", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:03f55f9e9545", + "chapter": "http", + "kind": "method", + "name": "reuseSocket", + "signature": "`agent.reuseSocket(socket, request)`", + "label": "agent.reuseSocket(socket, request)", + "apiSymbol": "agent.reuseSocket", + "depth": 2, + "scope": "api", + "anchor": "agentreusesocketsocket-request", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:4412054a1c94", + "chapter": "http", + "kind": "method", + "name": "destroy", + "signature": "`agent.destroy()`", + "label": "agent.destroy()", + "apiSymbol": "agent.destroy", + "depth": 2, + "scope": "api", + "anchor": "agentdestroy", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:http.agent.destroy", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "http:9dcbe1834859", + "chapter": "http", + "kind": "method", + "name": "getName", + "signature": "`agent.getName([options])`", + "label": "agent.getName([options])", + "apiSymbol": "agent.getName", + "depth": 2, + "scope": "api", + "anchor": "agentgetnameoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:f893782f02ad", + "chapter": "http", + "kind": "Object", + "name": "Type", + "signature": "`freeSockets` Type: {Object}", + "label": "freeSockets", + "apiSymbol": "freeSockets", + "depth": 2, + "scope": "api", + "anchor": "class-httpagent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:633e1b32c473", + "chapter": "http", + "kind": "number", + "name": "Type", + "signature": "`maxFreeSockets` Type: {number}", + "label": "maxFreeSockets", + "apiSymbol": "maxFreeSockets", + "depth": 2, + "scope": "api", + "anchor": "class-httpagent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:d7fccee3bcd1", + "chapter": "http", + "kind": "number", + "name": "Type", + "signature": "`maxSockets` Type: {number}", + "label": "maxSockets", + "apiSymbol": "maxSockets", + "depth": 2, + "scope": "api", + "anchor": "class-httpagent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:4465848a997b", + "chapter": "http", + "kind": "number", + "name": "Type", + "signature": "`maxTotalSockets` Type: {number}", + "label": "maxTotalSockets", + "apiSymbol": "maxTotalSockets", + "depth": 2, + "scope": "api", + "anchor": "class-httpagent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:08e346d54bbd", + "chapter": "http", + "kind": "Object", + "name": "Type", + "signature": "`requests` Type: {Object}", + "label": "requests", + "apiSymbol": "requests", + "depth": 2, + "scope": "api", + "anchor": "class-httpagent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:83aa2fca28da", + "chapter": "http", + "kind": "Object", + "name": "Type", + "signature": "`sockets` Type: {Object}", + "label": "sockets", + "apiSymbol": "sockets", + "depth": 2, + "scope": "api", + "anchor": "class-httpagent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:508791d1190a", + "chapter": "http", + "kind": "class", + "name": "http.ClientRequest", + "signature": "Class: `http.ClientRequest`", + "label": "http.ClientRequest", + "apiSymbol": "http.ClientRequest", + "depth": 1, + "scope": "api", + "anchor": "class-httpclientrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:http.ClientRequest", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "http:699bd7ca4c9d", + "chapter": "http", + "kind": "method", + "name": "abort", + "signature": "`request.abort()`", + "label": "request.abort()", + "apiSymbol": "request.abort", + "depth": 2, + "scope": "api", + "anchor": "requestabort", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Use [`request.destroy()`][] instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:http.request.abort", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "http:d887741bdc1c", + "chapter": "http", + "kind": "method", + "name": "cork", + "signature": "`request.cork()`", + "label": "request.cork()", + "apiSymbol": "request.cork", + "depth": 2, + "scope": "api", + "anchor": "requestcork", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:341fa63e40e0", + "chapter": "http", + "kind": "method", + "name": "end", + "signature": "`request.end([data[, encoding]][, callback])`", + "label": "request.end([data[, encoding]][, callback])", + "apiSymbol": "request.end", + "depth": 2, + "scope": "api", + "anchor": "requestenddata-encoding-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:request.end", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:http.request.end", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "http:e1e900929f5e", + "chapter": "http", + "kind": "method", + "name": "destroy", + "signature": "`request.destroy([error])`", + "label": "request.destroy([error])", + "apiSymbol": "request.destroy", + "depth": 2, + "scope": "api", + "anchor": "requestdestroyerror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:request.destroy", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:http.request.destroy", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "http:c97b29ba514a", + "chapter": "http", + "kind": "boolean", + "name": "Type", + "signature": "`destroyed` Type: {boolean}", + "label": "destroyed", + "apiSymbol": "destroyed", + "depth": 3, + "scope": "api", + "anchor": "requestdestroyerror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:74853b35d31e", + "chapter": "http", + "kind": "method", + "name": "flushHeaders", + "signature": "`request.flushHeaders()`", + "label": "request.flushHeaders()", + "apiSymbol": "request.flushHeaders", + "depth": 2, + "scope": "api", + "anchor": "requestflushheaders", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:http.request.flushHeaders", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "http:86b569e78a9d", + "chapter": "http", + "kind": "method", + "name": "getHeader", + "signature": "`request.getHeader(name)`", + "label": "request.getHeader(name)", + "apiSymbol": "request.getHeader", + "depth": 2, + "scope": "api", + "anchor": "requestgetheadername", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:http.request.getHeader", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "http:25809046eb60", + "chapter": "http", + "kind": "method", + "name": "getHeaderNames", + "signature": "`request.getHeaderNames()`", + "label": "request.getHeaderNames()", + "apiSymbol": "request.getHeaderNames", + "depth": 2, + "scope": "api", + "anchor": "requestgetheadernames", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:f9b09cd05350", + "chapter": "http", + "kind": "method", + "name": "getHeaders", + "signature": "`request.getHeaders()`", + "label": "request.getHeaders()", + "apiSymbol": "request.getHeaders", + "depth": 2, + "scope": "api", + "anchor": "requestgetheaders", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:cc38a70a8c04", + "chapter": "http", + "kind": "method", + "name": "getRawHeaderNames", + "signature": "`request.getRawHeaderNames()`", + "label": "request.getRawHeaderNames()", + "apiSymbol": "request.getRawHeaderNames", + "depth": 2, + "scope": "api", + "anchor": "requestgetrawheadernames", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:bc74800d10ed", + "chapter": "http", + "kind": "method", + "name": "hasHeader", + "signature": "`request.hasHeader(name)`", + "label": "request.hasHeader(name)", + "apiSymbol": "request.hasHeader", + "depth": 2, + "scope": "api", + "anchor": "requesthasheadername", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:b8ffaf5d1736", + "chapter": "http", + "kind": "method", + "name": "removeHeader", + "signature": "`request.removeHeader(name)`", + "label": "request.removeHeader(name)", + "apiSymbol": "request.removeHeader", + "depth": 2, + "scope": "api", + "anchor": "requestremoveheadername", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:http.request.removeHeader", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "http:81ce1c376f47", + "chapter": "http", + "kind": "method", + "name": "setHeader", + "signature": "`request.setHeader(name, value)`", + "label": "request.setHeader(name, value)", + "apiSymbol": "request.setHeader", + "depth": 2, + "scope": "api", + "anchor": "requestsetheadername-value", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:http.request.setHeader", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "http:c0e36f818882", + "chapter": "http", + "kind": "method", + "name": "setNoDelay", + "signature": "`request.setNoDelay([noDelay])`", + "label": "request.setNoDelay([noDelay])", + "apiSymbol": "request.setNoDelay", + "depth": 2, + "scope": "api", + "anchor": "requestsetnodelaynodelay", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:68a58047a546", + "chapter": "http", + "kind": "method", + "name": "setSocketKeepAlive", + "signature": "`request.setSocketKeepAlive([enable][, initialDelay])`", + "label": "request.setSocketKeepAlive([enable][, initialDelay])", + "apiSymbol": "request.setSocketKeepAlive", + "depth": 2, + "scope": "api", + "anchor": "requestsetsocketkeepaliveenable-initialdelay", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:25eed7e38e70", + "chapter": "http", + "kind": "method", + "name": "setTimeout", + "signature": "`request.setTimeout(timeout[, callback])`", + "label": "request.setTimeout(timeout[, callback])", + "apiSymbol": "request.setTimeout", + "depth": 2, + "scope": "api", + "anchor": "requestsettimeouttimeout-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:request.setTimeout", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:http.request.setTimeout", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "http:5dda2e8e4c17", + "chapter": "http", + "kind": "method", + "name": "uncork", + "signature": "`request.uncork()`", + "label": "request.uncork()", + "apiSymbol": "request.uncork", + "depth": 2, + "scope": "api", + "anchor": "requestuncork", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:e37d891a9deb", + "chapter": "http", + "kind": "method", + "name": "write", + "signature": "`request.write(chunk[, encoding][, callback])`", + "label": "request.write(chunk[, encoding][, callback])", + "apiSymbol": "request.write", + "depth": 2, + "scope": "api", + "anchor": "requestwritechunk-encoding-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:request.write", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:http.request.write", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "http:e59b03f6f36f", + "chapter": "http", + "kind": "boolean", + "name": "Type", + "signature": "`aborted` Type: {boolean}", + "label": "aborted", + "apiSymbol": "aborted", + "depth": 2, + "scope": "api", + "anchor": "class-httpclientrequest", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. Check [`request.destroyed`][] instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:3faa2253d444", + "chapter": "http", + "kind": "stream.Duplex", + "name": "Type", + "signature": "`connection` Type: {stream.Duplex}", + "label": "connection", + "apiSymbol": "connection", + "depth": 2, + "scope": "api", + "anchor": "class-httpclientrequest", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. Use [`request.socket`][].", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:5615544092c0", + "chapter": "http", + "kind": "boolean", + "name": "Type", + "signature": "`finished` Type: {boolean}", + "label": "finished", + "apiSymbol": "finished", + "depth": 2, + "scope": "api", + "anchor": "class-httpclientrequest", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. Use [`request.writableEnded`][].", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:faf8578bc834", + "chapter": "http", + "kind": "number", + "name": "Type", + "signature": "`maxHeadersCount` Type: {number} **Default:** `2000`", + "label": "maxHeadersCount", + "apiSymbol": "maxHeadersCount", + "depth": 2, + "scope": "api", + "anchor": "class-httpclientrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:a0535d8905bf", + "chapter": "http", + "kind": "string", + "name": "Type", + "signature": "`path` Type: {string} The request path.", + "label": "path", + "apiSymbol": "path", + "depth": 2, + "scope": "api", + "anchor": "class-httpclientrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:7b4e9ea6e7a0", + "chapter": "http", + "kind": "string", + "name": "Type", + "signature": "`method` Type: {string} The request method.", + "label": "method", + "apiSymbol": "method", + "depth": 2, + "scope": "api", + "anchor": "class-httpclientrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:2f11ef94eff8", + "chapter": "http", + "kind": "string", + "name": "Type", + "signature": "`host` Type: {string} The request host.", + "label": "host", + "apiSymbol": "host", + "depth": 2, + "scope": "api", + "anchor": "class-httpclientrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:35955276d318", + "chapter": "http", + "kind": "string", + "name": "Type", + "signature": "`protocol` Type: {string} The request protocol.", + "label": "protocol", + "apiSymbol": "protocol", + "depth": 2, + "scope": "api", + "anchor": "class-httpclientrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:9ca269feac75", + "chapter": "http", + "kind": "boolean", + "name": "Type", + "signature": "`reusedSocket` Type: {boolean} Whether the request is send through a reused socket.", + "label": "reusedSocket", + "apiSymbol": "reusedSocket", + "depth": 2, + "scope": "api", + "anchor": "class-httpclientrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:96df713b3e0c", + "chapter": "http", + "kind": "stream.Duplex", + "name": "Type", + "signature": "`socket` Type: {stream.Duplex}", + "label": "socket", + "apiSymbol": "socket", + "depth": 2, + "scope": "api", + "anchor": "class-httpclientrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:74c2bb983dc2", + "chapter": "http", + "kind": "boolean", + "name": "Type", + "signature": "`writableEnded` Type: {boolean}", + "label": "writableEnded", + "apiSymbol": "writableEnded", + "depth": 2, + "scope": "api", + "anchor": "class-httpclientrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:fa5bc7118fe2", + "chapter": "http", + "kind": "boolean", + "name": "Type", + "signature": "`writableFinished` Type: {boolean}", + "label": "writableFinished", + "apiSymbol": "writableFinished", + "depth": 2, + "scope": "api", + "anchor": "class-httpclientrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:ea5e122663f9", + "chapter": "http", + "kind": "event", + "name": "abort", + "signature": "Event: `'abort'`", + "label": "'abort'", + "apiSymbol": "'abort'", + "depth": 2, + "scope": "api", + "anchor": "event-abort", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. Listen for the `'close'` event instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:35c1dba0105b", + "chapter": "http", + "kind": "event", + "name": "close", + "signature": "Event: `'close'`", + "label": "'close'", + "apiSymbol": "'close'", + "depth": 2, + "scope": "api", + "anchor": "event-close", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:73b6cf571d34", + "chapter": "http", + "kind": "event", + "name": "connect", + "signature": "Event: `'connect'`", + "label": "'connect'", + "apiSymbol": "'connect'", + "depth": 2, + "scope": "api", + "anchor": "event-connect", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:38a9f64d7ac7", + "chapter": "http", + "kind": "event", + "name": "continue", + "signature": "Event: `'continue'`", + "label": "'continue'", + "apiSymbol": "'continue'", + "depth": 2, + "scope": "api", + "anchor": "event-continue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:9d0cbf420019", + "chapter": "http", + "kind": "event", + "name": "finish", + "signature": "Event: `'finish'`", + "label": "'finish'", + "apiSymbol": "'finish'", + "depth": 2, + "scope": "api", + "anchor": "event-finish", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:6fe7a6f0d989", + "chapter": "http", + "kind": "event", + "name": "information", + "signature": "Event: `'information'`", + "label": "'information'", + "apiSymbol": "'information'", + "depth": 2, + "scope": "api", + "anchor": "event-information", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:320a817d6c5f", + "chapter": "http", + "kind": "event", + "name": "response", + "signature": "Event: `'response'`", + "label": "'response'", + "apiSymbol": "'response'", + "depth": 2, + "scope": "api", + "anchor": "event-response", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:668a203db85a", + "chapter": "http", + "kind": "event", + "name": "socket", + "signature": "Event: `'socket'`", + "label": "'socket'", + "apiSymbol": "'socket'", + "depth": 2, + "scope": "api", + "anchor": "event-socket", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:9d754f9b95de", + "chapter": "http", + "kind": "event", + "name": "timeout", + "signature": "Event: `'timeout'`", + "label": "'timeout'", + "apiSymbol": "'timeout'", + "depth": 2, + "scope": "api", + "anchor": "event-timeout", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:5427e767fb53", + "chapter": "http", + "kind": "event", + "name": "upgrade", + "signature": "Event: `'upgrade'`", + "label": "'upgrade'", + "apiSymbol": "'upgrade'", + "depth": 2, + "scope": "api", + "anchor": "event-upgrade", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:fba3d102ff13", + "chapter": "http", + "kind": "class", + "name": "http.Server", + "signature": "Class: `http.Server`", + "label": "http.Server", + "apiSymbol": "http.Server", + "depth": 1, + "scope": "api", + "anchor": "class-httpserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:http.Server" + }, + "anchorSource": "exact" + }, + { + "id": "http:82652eac4646", + "chapter": "http", + "kind": "method", + "name": "close", + "signature": "`server.close([callback])`", + "label": "server.close([callback])", + "apiSymbol": "server.close", + "depth": 2, + "scope": "api", + "anchor": "serverclosecallback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:server.close", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:8c58d9380210", + "chapter": "http", + "kind": "method", + "name": "closeAllConnections", + "signature": "`server.closeAllConnections()`", + "label": "server.closeAllConnections()", + "apiSymbol": "server.closeAllConnections", + "depth": 2, + "scope": "api", + "anchor": "servercloseallconnections", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:c09ff35929a5", + "chapter": "http", + "kind": "method", + "name": "closeIdleConnections", + "signature": "`server.closeIdleConnections()`", + "label": "server.closeIdleConnections()", + "apiSymbol": "server.closeIdleConnections", + "depth": 2, + "scope": "api", + "anchor": "servercloseidleconnections", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:8fd12000bf0d", + "chapter": "http", + "kind": "method", + "name": "listen", + "signature": "`server.listen()`", + "label": "server.listen()", + "apiSymbol": "server.listen", + "depth": 2, + "scope": "api", + "anchor": "serverlisten", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:server.listen", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:0b835344503f", + "chapter": "http", + "kind": "method", + "name": "setTimeout", + "signature": "`server.setTimeout([msecs][, callback])`", + "label": "server.setTimeout([msecs][, callback])", + "apiSymbol": "server.setTimeout", + "depth": 2, + "scope": "api", + "anchor": "serversettimeoutmsecs-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:bf7aa520d261", + "chapter": "http", + "kind": "method", + "name": "[Symbol.asyncDispose]", + "signature": "`server[Symbol.asyncDispose]()`", + "label": "server[Symbol.asyncDispose]()", + "apiSymbol": "server", + "depth": 2, + "scope": "api", + "anchor": "serversymbolasyncdispose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:fdb7ed8f0e78", + "chapter": "http", + "kind": "number", + "name": "Type", + "signature": "`headersTimeout` Type: {number} **Default:** The minimum between [`server.requestTimeout`][] or `60000`.", + "label": "headersTimeout", + "apiSymbol": "headersTimeout", + "depth": 2, + "scope": "api", + "anchor": "class-httpserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:headersTimeout", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:010bd8804efe", + "chapter": "http", + "kind": "boolean", + "name": "Type", + "signature": "`listening` Type: {boolean} Indicates whether or not the server is listening for connections.", + "label": "listening", + "apiSymbol": "listening", + "depth": 2, + "scope": "api", + "anchor": "class-httpserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:2b341e7f7ddb", + "chapter": "http", + "kind": "number", + "name": "Type", + "signature": "`maxHeadersCount` Type: {number} **Default:** `2000`", + "label": "maxHeadersCount", + "apiSymbol": "maxHeadersCount", + "depth": 2, + "scope": "api", + "anchor": "class-httpserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:ab29ce0fdbf0", + "chapter": "http", + "kind": "number", + "name": "Type", + "signature": "`requestTimeout` Type: {number} **Default:** `300000`", + "label": "requestTimeout", + "apiSymbol": "requestTimeout", + "depth": 2, + "scope": "api", + "anchor": "class-httpserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:requestTimeout", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:42c7fab8ca10", + "chapter": "http", + "kind": "number", + "name": "Type", + "signature": "`maxRequestsPerSocket` Type: {number} Requests per socket. **Default:** 0 (no limit)", + "label": "maxRequestsPerSocket", + "apiSymbol": "maxRequestsPerSocket", + "depth": 2, + "scope": "api", + "anchor": "class-httpserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:5346f7cf76ef", + "chapter": "http", + "kind": "number", + "name": "Type", + "signature": "`timeout` Type: {number} Timeout in milliseconds. **Default:** 0 (no timeout)", + "label": "timeout", + "apiSymbol": "timeout", + "depth": 2, + "scope": "api", + "anchor": "class-httpserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:timeout", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:9454e5061309", + "chapter": "http", + "kind": "number", + "name": "Type", + "signature": "`keepAliveTimeout` Type: {number} Timeout in milliseconds. **Default:** `5000` (5 seconds).", + "label": "keepAliveTimeout", + "apiSymbol": "keepAliveTimeout", + "depth": 2, + "scope": "api", + "anchor": "class-httpserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:keepAliveTimeout", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:dd7fc0b08678", + "chapter": "http", + "kind": "number", + "name": "Type", + "signature": "`keepAliveTimeoutBuffer` Type: {number} Timeout in milliseconds. **Default:** `1000` (1 second).", + "label": "keepAliveTimeoutBuffer", + "apiSymbol": "keepAliveTimeoutBuffer", + "depth": 2, + "scope": "api", + "anchor": "class-httpserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:keepAliveTimeoutBuffer", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:04e4c748e66c", + "chapter": "http", + "kind": "event", + "name": "checkContinue", + "signature": "Event: `'checkContinue'`", + "label": "'checkContinue'", + "apiSymbol": "'checkContinue'", + "depth": 2, + "scope": "api", + "anchor": "event-checkcontinue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:94779f37e2b9", + "chapter": "http", + "kind": "event", + "name": "checkExpectation", + "signature": "Event: `'checkExpectation'`", + "label": "'checkExpectation'", + "apiSymbol": "'checkExpectation'", + "depth": 2, + "scope": "api", + "anchor": "event-checkexpectation", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:578453140bad", + "chapter": "http", + "kind": "event", + "name": "clientError", + "signature": "Event: `'clientError'`", + "label": "'clientError'", + "apiSymbol": "'clientError'", + "depth": 2, + "scope": "api", + "anchor": "event-clienterror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:4f972cc3ace1", + "chapter": "http", + "kind": "event", + "name": "close", + "signature": "Event: `'close'`", + "label": "'close'", + "apiSymbol": "'close'", + "depth": 2, + "scope": "api", + "anchor": "event-close_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:b8c1116474f8", + "chapter": "http", + "kind": "event", + "name": "connect", + "signature": "Event: `'connect'`", + "label": "'connect'", + "apiSymbol": "'connect'", + "depth": 2, + "scope": "api", + "anchor": "event-connect_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:b7cecdb6b204", + "chapter": "http", + "kind": "event", + "name": "connection", + "signature": "Event: `'connection'`", + "label": "'connection'", + "apiSymbol": "'connection'", + "depth": 2, + "scope": "api", + "anchor": "event-connection", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:c80ae5a2d83b", + "chapter": "http", + "kind": "event", + "name": "dropRequest", + "signature": "Event: `'dropRequest'`", + "label": "'dropRequest'", + "apiSymbol": "'dropRequest'", + "depth": 2, + "scope": "api", + "anchor": "event-droprequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:339af3bba7c2", + "chapter": "http", + "kind": "event", + "name": "request", + "signature": "Event: `'request'`", + "label": "'request'", + "apiSymbol": "'request'", + "depth": 2, + "scope": "api", + "anchor": "event-request", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:a2483d6ba775", + "chapter": "http", + "kind": "event", + "name": "upgrade", + "signature": "Event: `'upgrade'`", + "label": "'upgrade'", + "apiSymbol": "'upgrade'", + "depth": 2, + "scope": "api", + "anchor": "event-upgrade_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:6e7394163abe", + "chapter": "http", + "kind": "class", + "name": "http.ServerResponse", + "signature": "Class: `http.ServerResponse`", + "label": "http.ServerResponse", + "apiSymbol": "http.ServerResponse", + "depth": 1, + "scope": "api", + "anchor": "class-httpserverresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:5d49a750aaa2", + "chapter": "http", + "kind": "method", + "name": "addTrailers", + "signature": "`response.addTrailers(headers)`", + "label": "response.addTrailers(headers)", + "apiSymbol": "response.addTrailers", + "depth": 2, + "scope": "api", + "anchor": "responseaddtrailersheaders", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:24f6cee09a10", + "chapter": "http", + "kind": "method", + "name": "cork", + "signature": "`response.cork()`", + "label": "response.cork()", + "apiSymbol": "response.cork", + "depth": 2, + "scope": "api", + "anchor": "responsecork", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:dff9a3ca561c", + "chapter": "http", + "kind": "method", + "name": "end", + "signature": "`response.end([data[, encoding]][, callback])`", + "label": "response.end([data[, encoding]][, callback])", + "apiSymbol": "response.end", + "depth": 2, + "scope": "api", + "anchor": "responseenddata-encoding-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:response.end", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:a0ccf487a6bd", + "chapter": "http", + "kind": "method", + "name": "flushHeaders", + "signature": "`response.flushHeaders()`", + "label": "response.flushHeaders()", + "apiSymbol": "response.flushHeaders", + "depth": 2, + "scope": "api", + "anchor": "responseflushheaders", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:aad2e291d9d6", + "chapter": "http", + "kind": "method", + "name": "getHeader", + "signature": "`response.getHeader(name)`", + "label": "response.getHeader(name)", + "apiSymbol": "response.getHeader", + "depth": 2, + "scope": "api", + "anchor": "responsegetheadername", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:response.getHeader", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:b56d71384037", + "chapter": "http", + "kind": "method", + "name": "getHeaderNames", + "signature": "`response.getHeaderNames()`", + "label": "response.getHeaderNames()", + "apiSymbol": "response.getHeaderNames", + "depth": 2, + "scope": "api", + "anchor": "responsegetheadernames", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:96fd543306ea", + "chapter": "http", + "kind": "method", + "name": "getHeaders", + "signature": "`response.getHeaders()`", + "label": "response.getHeaders()", + "apiSymbol": "response.getHeaders", + "depth": 2, + "scope": "api", + "anchor": "responsegetheaders", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:c8a4bfdfc4d0", + "chapter": "http", + "kind": "method", + "name": "hasHeader", + "signature": "`response.hasHeader(name)`", + "label": "response.hasHeader(name)", + "apiSymbol": "response.hasHeader", + "depth": 2, + "scope": "api", + "anchor": "responsehasheadername", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:response.hasHeader", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:647c835d4451", + "chapter": "http", + "kind": "method", + "name": "removeHeader", + "signature": "`response.removeHeader(name)`", + "label": "response.removeHeader(name)", + "apiSymbol": "response.removeHeader", + "depth": 2, + "scope": "api", + "anchor": "responseremoveheadername", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:response.removeHeader", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:fdf576d37b29", + "chapter": "http", + "kind": "method", + "name": "setHeader", + "signature": "`response.setHeader(name, value)`", + "label": "response.setHeader(name, value)", + "apiSymbol": "response.setHeader", + "depth": 2, + "scope": "api", + "anchor": "responsesetheadername-value", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:response.setHeader", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:9386b96109c1", + "chapter": "http", + "kind": "method", + "name": "setTimeout", + "signature": "`response.setTimeout(msecs[, callback])`", + "label": "response.setTimeout(msecs[, callback])", + "apiSymbol": "response.setTimeout", + "depth": 2, + "scope": "api", + "anchor": "responsesettimeoutmsecs-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:d3f843e2124c", + "chapter": "http", + "kind": "method", + "name": "uncork", + "signature": "`response.uncork()`", + "label": "response.uncork()", + "apiSymbol": "response.uncork", + "depth": 2, + "scope": "api", + "anchor": "responseuncork", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:c5cb551c2ee7", + "chapter": "http", + "kind": "method", + "name": "write", + "signature": "`response.write(chunk[, encoding][, callback])`", + "label": "response.write(chunk[, encoding][, callback])", + "apiSymbol": "response.write", + "depth": 2, + "scope": "api", + "anchor": "responsewritechunk-encoding-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:response.write", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:143590280ee6", + "chapter": "http", + "kind": "method", + "name": "writeContinue", + "signature": "`response.writeContinue()`", + "label": "response.writeContinue()", + "apiSymbol": "response.writeContinue", + "depth": 2, + "scope": "api", + "anchor": "responsewritecontinue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:57b2dd383796", + "chapter": "http", + "kind": "method", + "name": "writeEarlyHints", + "signature": "`response.writeEarlyHints(hints[, callback])`", + "label": "response.writeEarlyHints(hints[, callback])", + "apiSymbol": "response.writeEarlyHints", + "depth": 2, + "scope": "api", + "anchor": "responsewriteearlyhintshints-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:4979906727da", + "chapter": "http", + "kind": "method", + "name": "writeHead", + "signature": "`response.writeHead(statusCode[, statusMessage][, headers])`", + "label": "response.writeHead(statusCode[, statusMessage][, headers])", + "apiSymbol": "response.writeHead", + "depth": 2, + "scope": "api", + "anchor": "responsewriteheadstatuscode-statusmessage-headers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:response.writeHead", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:66f1ca12e0bb", + "chapter": "http", + "kind": "method", + "name": "writeProcessing", + "signature": "`response.writeProcessing()`", + "label": "response.writeProcessing()", + "apiSymbol": "response.writeProcessing", + "depth": 2, + "scope": "api", + "anchor": "responsewriteprocessing", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:12beff0a3bb6", + "chapter": "http", + "kind": "stream.Duplex", + "name": "Type", + "signature": "`connection` Type: {stream.Duplex}", + "label": "connection", + "apiSymbol": "connection", + "depth": 2, + "scope": "api", + "anchor": "class-httpserverresponse", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. Use [`response.socket`][].", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:38e3aac34721", + "chapter": "http", + "kind": "boolean", + "name": "Type", + "signature": "`finished` Type: {boolean}", + "label": "finished", + "apiSymbol": "finished", + "depth": 2, + "scope": "api", + "anchor": "class-httpserverresponse", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. Use [`response.writableEnded`][].", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:7a94e9340df2", + "chapter": "http", + "kind": "boolean", + "name": "Type", + "signature": "`headersSent` Type: {boolean}", + "label": "headersSent", + "apiSymbol": "headersSent", + "depth": 2, + "scope": "api", + "anchor": "class-httpserverresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:4a53204d9649", + "chapter": "http", + "kind": "http.IncomingMessage", + "name": "Type", + "signature": "`req` Type: {http.IncomingMessage}", + "label": "req", + "apiSymbol": "req", + "depth": 2, + "scope": "api", + "anchor": "class-httpserverresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:fa11ab31f0e6", + "chapter": "http", + "kind": "boolean", + "name": "Type", + "signature": "`sendDate` Type: {boolean}", + "label": "sendDate", + "apiSymbol": "sendDate", + "depth": 2, + "scope": "api", + "anchor": "class-httpserverresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:57050d6e0076", + "chapter": "http", + "kind": "stream.Duplex", + "name": "Type", + "signature": "`socket` Type: {stream.Duplex}", + "label": "socket", + "apiSymbol": "socket", + "depth": 2, + "scope": "api", + "anchor": "class-httpserverresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:bc826f3bcd62", + "chapter": "http", + "kind": "number", + "name": "Type", + "signature": "`statusCode` Type: {number} **Default:** `200`", + "label": "statusCode", + "apiSymbol": "statusCode", + "depth": 2, + "scope": "api", + "anchor": "class-httpserverresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:e00df4284589", + "chapter": "http", + "kind": "string", + "name": "Type", + "signature": "`statusMessage` Type: {string}", + "label": "statusMessage", + "apiSymbol": "statusMessage", + "depth": 2, + "scope": "api", + "anchor": "class-httpserverresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:5cbc98eb7f57", + "chapter": "http", + "kind": "boolean", + "name": "Type", + "signature": "`strictContentLength` Type: {boolean} **Default:** `false`", + "label": "strictContentLength", + "apiSymbol": "strictContentLength", + "depth": 2, + "scope": "api", + "anchor": "class-httpserverresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:be6478ef1ac5", + "chapter": "http", + "kind": "boolean", + "name": "Type", + "signature": "`writableEnded` Type: {boolean}", + "label": "writableEnded", + "apiSymbol": "writableEnded", + "depth": 2, + "scope": "api", + "anchor": "class-httpserverresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:ed88fea9d382", + "chapter": "http", + "kind": "boolean", + "name": "Type", + "signature": "`writableFinished` Type: {boolean}", + "label": "writableFinished", + "apiSymbol": "writableFinished", + "depth": 2, + "scope": "api", + "anchor": "class-httpserverresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:22adc7f45501", + "chapter": "http", + "kind": "event", + "name": "close", + "signature": "Event: `'close'`", + "label": "'close'", + "apiSymbol": "'close'", + "depth": 2, + "scope": "api", + "anchor": "event-close_2", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:132a0664efe7", + "chapter": "http", + "kind": "event", + "name": "finish", + "signature": "Event: `'finish'`", + "label": "'finish'", + "apiSymbol": "'finish'", + "depth": 2, + "scope": "api", + "anchor": "event-finish_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:5551fd92152f", + "chapter": "http", + "kind": "class", + "name": "http.IncomingMessage", + "signature": "Class: `http.IncomingMessage`", + "label": "http.IncomingMessage", + "apiSymbol": "http.IncomingMessage", + "depth": 1, + "scope": "api", + "anchor": "class-httpincomingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:http.IncomingMessage", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "http:6e8b5aa393f9", + "chapter": "http", + "kind": "method", + "name": "destroy", + "signature": "`message.destroy([error])`", + "label": "message.destroy([error])", + "apiSymbol": "message.destroy", + "depth": 2, + "scope": "api", + "anchor": "messagedestroyerror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:http.message.destroy", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "http:12b0e718b202", + "chapter": "http", + "kind": "method", + "name": "setTimeout", + "signature": "`message.setTimeout(msecs[, callback])`", + "label": "message.setTimeout(msecs[, callback])", + "apiSymbol": "message.setTimeout", + "depth": 2, + "scope": "api", + "anchor": "messagesettimeoutmsecs-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:f3370b31b459", + "chapter": "http", + "kind": "boolean", + "name": "Type", + "signature": "`aborted` Type: {boolean}", + "label": "aborted", + "apiSymbol": "aborted", + "depth": 2, + "scope": "api", + "anchor": "class-httpincomingmessage", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. Check `message.destroyed` from <stream.Readable>.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:a6f5bff3bacd", + "chapter": "http", + "kind": "boolean", + "name": "Type", + "signature": "`complete` Type: {boolean}", + "label": "complete", + "apiSymbol": "complete", + "depth": 2, + "scope": "api", + "anchor": "class-httpincomingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:161bfd79afc5", + "chapter": "http", + "kind": "section", + "name": "connection", + "signature": "`message.connection`", + "label": "message.connection", + "apiSymbol": "message.connection", + "depth": 2, + "scope": "api", + "anchor": "messageconnection", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. Use [`message.socket`][].", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:6ea8d1d67963", + "chapter": "http", + "kind": "Object", + "name": "Type", + "signature": "`headers` Type: {Object}", + "label": "headers", + "apiSymbol": "headers", + "depth": 2, + "scope": "api", + "anchor": "class-httpincomingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:7a1651d7dcd8", + "chapter": "http", + "kind": "Object", + "name": "Type", + "signature": "`headersDistinct` Type: {Object}", + "label": "headersDistinct", + "apiSymbol": "headersDistinct", + "depth": 2, + "scope": "api", + "anchor": "class-httpincomingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:e8094e96df7a", + "chapter": "http", + "kind": "string", + "name": "Type", + "signature": "`httpVersion` Type: {string}", + "label": "httpVersion", + "apiSymbol": "httpVersion", + "depth": 2, + "scope": "api", + "anchor": "class-httpincomingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:7fc5fcb57970", + "chapter": "http", + "kind": "string", + "name": "Type", + "signature": "`method` Type: {string}", + "label": "method", + "apiSymbol": "method", + "depth": 2, + "scope": "api", + "anchor": "class-httpincomingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:c1409aafdd68", + "chapter": "http", + "kind": "string\\[]", + "name": "Type", + "signature": "`rawHeaders` Type: {string\\[]}", + "label": "rawHeaders", + "apiSymbol": "rawHeaders", + "depth": 2, + "scope": "api", + "anchor": "class-httpincomingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:bf10950dea48", + "chapter": "http", + "kind": "string\\[]", + "name": "Type", + "signature": "`rawTrailers` Type: {string\\[]}", + "label": "rawTrailers", + "apiSymbol": "rawTrailers", + "depth": 2, + "scope": "api", + "anchor": "class-httpincomingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:63ef1a2fb4c2", + "chapter": "http", + "kind": "stream.Duplex", + "name": "Type", + "signature": "`socket` Type: {stream.Duplex}", + "label": "socket", + "apiSymbol": "socket", + "depth": 2, + "scope": "api", + "anchor": "class-httpincomingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:d11963648b05", + "chapter": "http", + "kind": "number", + "name": "Type", + "signature": "`statusCode` Type: {number}", + "label": "statusCode", + "apiSymbol": "statusCode", + "depth": 2, + "scope": "api", + "anchor": "class-httpincomingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:86be6f46681e", + "chapter": "http", + "kind": "string", + "name": "Type", + "signature": "`statusMessage` Type: {string}", + "label": "statusMessage", + "apiSymbol": "statusMessage", + "depth": 2, + "scope": "api", + "anchor": "class-httpincomingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:0a0f06df64f2", + "chapter": "http", + "kind": "Object", + "name": "Type", + "signature": "`trailers` Type: {Object}", + "label": "trailers", + "apiSymbol": "trailers", + "depth": 2, + "scope": "api", + "anchor": "class-httpincomingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:a28c536aa46c", + "chapter": "http", + "kind": "Object", + "name": "Type", + "signature": "`trailersDistinct` Type: {Object}", + "label": "trailersDistinct", + "apiSymbol": "trailersDistinct", + "depth": 2, + "scope": "api", + "anchor": "class-httpincomingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:2c7de66edc4c", + "chapter": "http", + "kind": "string", + "name": "Type", + "signature": "`url` Type: {string}", + "label": "url", + "apiSymbol": "url", + "depth": 2, + "scope": "api", + "anchor": "class-httpincomingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:a0087d39beb4", + "chapter": "http", + "kind": "event", + "name": "aborted", + "signature": "Event: `'aborted'`", + "label": "'aborted'", + "apiSymbol": "'aborted'", + "depth": 2, + "scope": "api", + "anchor": "event-aborted", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. Listen for `'close'` event instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:56bfbfa42cb2", + "chapter": "http", + "kind": "event", + "name": "close", + "signature": "Event: `'close'`", + "label": "'close'", + "apiSymbol": "'close'", + "depth": 2, + "scope": "api", + "anchor": "event-close_3", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:d8c91ef893fa", + "chapter": "http", + "kind": "class", + "name": "http.OutgoingMessage", + "signature": "Class: `http.OutgoingMessage`", + "label": "http.OutgoingMessage", + "apiSymbol": "http.OutgoingMessage", + "depth": 1, + "scope": "api", + "anchor": "class-httpoutgoingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:613d68e8030b", + "chapter": "http", + "kind": "method", + "name": "addTrailers", + "signature": "`outgoingMessage.addTrailers(headers)`", + "label": "outgoingMessage.addTrailers(headers)", + "apiSymbol": "outgoingMessage.addTrailers", + "depth": 2, + "scope": "api", + "anchor": "outgoingmessageaddtrailersheaders", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:162aa5d0fb74", + "chapter": "http", + "kind": "method", + "name": "appendHeader", + "signature": "`outgoingMessage.appendHeader(name, value)`", + "label": "outgoingMessage.appendHeader(name, value)", + "apiSymbol": "outgoingMessage.appendHeader", + "depth": 2, + "scope": "api", + "anchor": "outgoingmessageappendheadername-value", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:ae27089d326b", + "chapter": "http", + "kind": "method", + "name": "cork", + "signature": "`outgoingMessage.cork()`", + "label": "outgoingMessage.cork()", + "apiSymbol": "outgoingMessage.cork", + "depth": 2, + "scope": "api", + "anchor": "outgoingmessagecork", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:7bb2ca93136d", + "chapter": "http", + "kind": "method", + "name": "destroy", + "signature": "`outgoingMessage.destroy([error])`", + "label": "outgoingMessage.destroy([error])", + "apiSymbol": "outgoingMessage.destroy", + "depth": 2, + "scope": "api", + "anchor": "outgoingmessagedestroyerror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:f6cd0e4e4ab4", + "chapter": "http", + "kind": "method", + "name": "end", + "signature": "`outgoingMessage.end(chunk[, encoding][, callback])`", + "label": "outgoingMessage.end(chunk[, encoding][, callback])", + "apiSymbol": "outgoingMessage.end", + "depth": 2, + "scope": "api", + "anchor": "outgoingmessageendchunk-encoding-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:c570c0e57047", + "chapter": "http", + "kind": "method", + "name": "flushHeaders", + "signature": "`outgoingMessage.flushHeaders()`", + "label": "outgoingMessage.flushHeaders()", + "apiSymbol": "outgoingMessage.flushHeaders", + "depth": 2, + "scope": "api", + "anchor": "outgoingmessageflushheaders", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:7fe945b2f992", + "chapter": "http", + "kind": "method", + "name": "getHeader", + "signature": "`outgoingMessage.getHeader(name)`", + "label": "outgoingMessage.getHeader(name)", + "apiSymbol": "outgoingMessage.getHeader", + "depth": 2, + "scope": "api", + "anchor": "outgoingmessagegetheadername", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:a8b1da062d05", + "chapter": "http", + "kind": "method", + "name": "getHeaderNames", + "signature": "`outgoingMessage.getHeaderNames()`", + "label": "outgoingMessage.getHeaderNames()", + "apiSymbol": "outgoingMessage.getHeaderNames", + "depth": 2, + "scope": "api", + "anchor": "outgoingmessagegetheadernames", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:27f0008f0617", + "chapter": "http", + "kind": "method", + "name": "getHeaders", + "signature": "`outgoingMessage.getHeaders()`", + "label": "outgoingMessage.getHeaders()", + "apiSymbol": "outgoingMessage.getHeaders", + "depth": 2, + "scope": "api", + "anchor": "outgoingmessagegetheaders", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:08b63b7ee849", + "chapter": "http", + "kind": "method", + "name": "hasHeader", + "signature": "`outgoingMessage.hasHeader(name)`", + "label": "outgoingMessage.hasHeader(name)", + "apiSymbol": "outgoingMessage.hasHeader", + "depth": 2, + "scope": "api", + "anchor": "outgoingmessagehasheadername", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:ce45c25f3e5f", + "chapter": "http", + "kind": "method", + "name": "pipe", + "signature": "`outgoingMessage.pipe()`", + "label": "outgoingMessage.pipe()", + "apiSymbol": "outgoingMessage.pipe", + "depth": 2, + "scope": "api", + "anchor": "outgoingmessagepipe", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:cf7cc98750c4", + "chapter": "http", + "kind": "method", + "name": "removeHeader", + "signature": "`outgoingMessage.removeHeader(name)`", + "label": "outgoingMessage.removeHeader(name)", + "apiSymbol": "outgoingMessage.removeHeader", + "depth": 2, + "scope": "api", + "anchor": "outgoingmessageremoveheadername", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:25f35443d760", + "chapter": "http", + "kind": "method", + "name": "setHeader", + "signature": "`outgoingMessage.setHeader(name, value)`", + "label": "outgoingMessage.setHeader(name, value)", + "apiSymbol": "outgoingMessage.setHeader", + "depth": 2, + "scope": "api", + "anchor": "outgoingmessagesetheadername-value", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:d3a5b2e0adb8", + "chapter": "http", + "kind": "method", + "name": "setHeaders", + "signature": "`outgoingMessage.setHeaders(headers)`", + "label": "outgoingMessage.setHeaders(headers)", + "apiSymbol": "outgoingMessage.setHeaders", + "depth": 2, + "scope": "api", + "anchor": "outgoingmessagesetheadersheaders", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:35c3b035a9c0", + "chapter": "http", + "kind": "method", + "name": "setTimeout", + "signature": "`outgoingMessage.setTimeout(msecs[, callback])`", + "label": "outgoingMessage.setTimeout(msecs[, callback])", + "apiSymbol": "outgoingMessage.setTimeout", + "depth": 2, + "scope": "api", + "anchor": "outgoingmessagesettimeoutmsecs-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:90c945912535", + "chapter": "http", + "kind": "method", + "name": "uncork", + "signature": "`outgoingMessage.uncork()`", + "label": "outgoingMessage.uncork()", + "apiSymbol": "outgoingMessage.uncork", + "depth": 2, + "scope": "api", + "anchor": "outgoingmessageuncork", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:8b618d8d7bd7", + "chapter": "http", + "kind": "method", + "name": "write", + "signature": "`outgoingMessage.write(chunk[, encoding][, callback])`", + "label": "outgoingMessage.write(chunk[, encoding][, callback])", + "apiSymbol": "outgoingMessage.write", + "depth": 2, + "scope": "api", + "anchor": "outgoingmessagewritechunk-encoding-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:c4e43e2764bf", + "chapter": "http", + "kind": "section", + "name": "connection", + "signature": "`outgoingMessage.connection`", + "label": "outgoingMessage.connection", + "apiSymbol": "outgoingMessage.connection", + "depth": 2, + "scope": "api", + "anchor": "outgoingmessageconnection", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Use [`outgoingMessage.socket`][] instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:85a27ee5cb25", + "chapter": "http", + "kind": "boolean", + "name": "Type", + "signature": "`headersSent` Type: {boolean}", + "label": "headersSent", + "apiSymbol": "headersSent", + "depth": 2, + "scope": "api", + "anchor": "class-httpoutgoingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:fffe9369593f", + "chapter": "http", + "kind": "stream.Duplex", + "name": "Type", + "signature": "`socket` Type: {stream.Duplex}", + "label": "socket", + "apiSymbol": "socket", + "depth": 2, + "scope": "api", + "anchor": "class-httpoutgoingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:6e147234a13d", + "chapter": "http", + "kind": "number", + "name": "Type", + "signature": "`writableCorked` Type: {number}", + "label": "writableCorked", + "apiSymbol": "writableCorked", + "depth": 2, + "scope": "api", + "anchor": "class-httpoutgoingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:ad8f73a39719", + "chapter": "http", + "kind": "boolean", + "name": "Type", + "signature": "`writableEnded` Type: {boolean}", + "label": "writableEnded", + "apiSymbol": "writableEnded", + "depth": 2, + "scope": "api", + "anchor": "class-httpoutgoingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:9a1edc22b0fc", + "chapter": "http", + "kind": "boolean", + "name": "Type", + "signature": "`writableFinished` Type: {boolean}", + "label": "writableFinished", + "apiSymbol": "writableFinished", + "depth": 2, + "scope": "api", + "anchor": "class-httpoutgoingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:e50e0a0a819c", + "chapter": "http", + "kind": "number", + "name": "Type", + "signature": "`writableHighWaterMark` Type: {number}", + "label": "writableHighWaterMark", + "apiSymbol": "writableHighWaterMark", + "depth": 2, + "scope": "api", + "anchor": "class-httpoutgoingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:04ff23acfecb", + "chapter": "http", + "kind": "number", + "name": "Type", + "signature": "`writableLength` Type: {number}", + "label": "writableLength", + "apiSymbol": "writableLength", + "depth": 2, + "scope": "api", + "anchor": "class-httpoutgoingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:30eab20decda", + "chapter": "http", + "kind": "boolean", + "name": "Type", + "signature": "`writableObjectMode` Type: {boolean}", + "label": "writableObjectMode", + "apiSymbol": "writableObjectMode", + "depth": 2, + "scope": "api", + "anchor": "class-httpoutgoingmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "ancestor" + }, + { + "id": "http:8edf4b5f7327", + "chapter": "http", + "kind": "event", + "name": "drain", + "signature": "Event: `'drain'`", + "label": "'drain'", + "apiSymbol": "'drain'", + "depth": 2, + "scope": "api", + "anchor": "event-drain", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:ea93acc37dc6", + "chapter": "http", + "kind": "event", + "name": "finish", + "signature": "Event: `'finish'`", + "label": "'finish'", + "apiSymbol": "'finish'", + "depth": 2, + "scope": "api", + "anchor": "event-finish_2", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:c3af63bc0c7f", + "chapter": "http", + "kind": "event", + "name": "prefinish", + "signature": "Event: `'prefinish'`", + "label": "'prefinish'", + "apiSymbol": "'prefinish'", + "depth": 2, + "scope": "api", + "anchor": "event-prefinish", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:76f05de80d85", + "chapter": "http", + "kind": "class", + "name": "WebSocket", + "signature": "Class: `WebSocket`", + "label": "WebSocket", + "apiSymbol": "WebSocket", + "depth": 1, + "scope": "api", + "anchor": "class-websocket", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:30aff27747f4", + "chapter": "http", + "kind": "method", + "name": "createServer", + "signature": "`http.createServer([options][, requestListener])`", + "label": "http.createServer([options][, requestListener])", + "apiSymbol": "http.createServer", + "depth": 1, + "scope": "api", + "anchor": "httpcreateserveroptions-requestlistener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:http.createServer", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:http.createServer" + }, + "anchorSource": "exact" + }, + { + "id": "http:7ea8ba3dee5b", + "chapter": "http", + "kind": "method", + "name": "get", + "signature": "`http.get(options[, callback])`", + "label": "http.get(options[, callback])", + "apiSymbol": "http.get", + "depth": 1, + "scope": "api", + "anchor": "httpgetoptions-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:http.get", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:http.get", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "http:f811fa4ce2d6", + "chapter": "http", + "kind": "method", + "name": "get", + "signature": "`http.get(url[, options][, callback])`", + "label": "http.get(url[, options][, callback])", + "apiSymbol": "http.get", + "depth": 1, + "scope": "api", + "anchor": "httpgeturl-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:http.get", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:http.get", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "http:32baf9e396dd", + "chapter": "http", + "kind": "method", + "name": "request", + "signature": "`http.request(options[, callback])`", + "label": "http.request(options[, callback])", + "apiSymbol": "http.request", + "depth": 1, + "scope": "api", + "anchor": "httprequestoptions-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:http.request", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:http.request", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "http:e322a87c4c90", + "chapter": "http", + "kind": "method", + "name": "request", + "signature": "`http.request(url[, options][, callback])`", + "label": "http.request(url[, options][, callback])", + "apiSymbol": "http.request", + "depth": 1, + "scope": "api", + "anchor": "httprequesturl-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:http.request", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:http.request", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "http:ffd08b3738f5", + "chapter": "http", + "kind": "method", + "name": "validateHeaderName", + "signature": "`http.validateHeaderName(name[, label])`", + "label": "http.validateHeaderName(name[, label])", + "apiSymbol": "http.validateHeaderName", + "depth": 1, + "scope": "api", + "anchor": "httpvalidateheadernamename-label", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:546a5b4ce764", + "chapter": "http", + "kind": "method", + "name": "validateHeaderValue", + "signature": "`http.validateHeaderValue(name, value)`", + "label": "http.validateHeaderValue(name, value)", + "apiSymbol": "http.validateHeaderValue", + "depth": 1, + "scope": "api", + "anchor": "httpvalidateheadervaluename-value", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:af6c9693f43f", + "chapter": "http", + "kind": "method", + "name": "setMaxIdleHTTPParsers", + "signature": "`http.setMaxIdleHTTPParsers(max)`", + "label": "http.setMaxIdleHTTPParsers(max)", + "apiSymbol": "http.setMaxIdleHTTPParsers", + "depth": 1, + "scope": "api", + "anchor": "httpsetmaxidlehttpparsersmax", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:8560905323e9", + "chapter": "http", + "kind": "method", + "name": "setGlobalProxyFromEnv", + "signature": "`http.setGlobalProxyFromEnv([proxyEnv])`", + "label": "http.setGlobalProxyFromEnv([proxyEnv])", + "apiSymbol": "http.setGlobalProxyFromEnv", + "depth": 1, + "scope": "api", + "anchor": "httpsetglobalproxyfromenvproxyenv", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "exact" + }, + { + "id": "http:f66d2eaf2bc0", + "chapter": "http", + "kind": "string\\[]", + "name": "Type", + "signature": "`METHODS` Type: {string\\[]}", + "label": "METHODS", + "apiSymbol": "METHODS", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:http.METHODS", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "http:6677a9ec0cc9", + "chapter": "http", + "kind": "Object", + "name": "Type", + "signature": "`STATUS_CODES` Type: {Object}", + "label": "STATUS_CODES", + "apiSymbol": "STATUS_CODES", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:http.STATUS_CODES", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "http:420a2f28f2fc", + "chapter": "http", + "kind": "http.Agent", + "name": "Type", + "signature": "`globalAgent` Type: {http.Agent}", + "label": "globalAgent", + "apiSymbol": "globalAgent", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:http.globalAgent", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "http:8ee25cb4a690", + "chapter": "http", + "kind": "number", + "name": "Type", + "signature": "`maxHeaderSize` Type: {number}", + "label": "maxHeaderSize", + "apiSymbol": "maxHeaderSize", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:http" + }, + "anchorSource": "chapter" + }, + { + "id": "http2:d34dea393f4d", + "chapter": "http2", + "kind": "module", + "name": "http/2", + "signature": "HTTP/2", + "label": "HTTP/2", + "apiSymbol": "http/2", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "derived:descendants" + }, + "anchorSource": "chapter" + }, + { + "id": "http2:9b9b47777718", + "chapter": "http2", + "kind": "module", + "name": "determining_if_crypto_support_is_unavailable", + "signature": "Determining if crypto support is unavailable", + "label": "Determining if crypto support is unavailable", + "apiSymbol": "determining_if_crypto_support_is_unavailable", + "depth": 1, + "scope": "documentation", + "anchor": "determining-if-crypto-support-is-unavailable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "http2:06ae77af6eee", + "chapter": "http2", + "kind": "module", + "name": "core_api", + "signature": "Core API", + "label": "Core API", + "apiSymbol": "core_api", + "depth": 1, + "scope": "documentation", + "anchor": "core-api", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "http2:5b2b71fa6413", + "chapter": "http2", + "kind": "module", + "name": "server-side_example", + "signature": "Server-side example", + "label": "Server-side example", + "apiSymbol": "server-side_example", + "depth": 2, + "scope": "documentation", + "anchor": "server-side-example", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "http2:80bc1b55f24e", + "chapter": "http2", + "kind": "module", + "name": "client-side_example", + "signature": "Client-side example", + "label": "Client-side example", + "apiSymbol": "client-side_example", + "depth": 2, + "scope": "documentation", + "anchor": "client-side-example", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "http2:8322446a3063", + "chapter": "http2", + "kind": "module", + "name": "headers_object", + "signature": "Headers object", + "label": "Headers object", + "apiSymbol": "headers_object", + "depth": 2, + "scope": "documentation", + "anchor": "headers-object", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "http2:76b0ce5bc804", + "chapter": "http2", + "kind": "module", + "name": "raw_headers", + "signature": "Raw headers", + "label": "Raw headers", + "apiSymbol": "raw_headers", + "depth": 3, + "scope": "documentation", + "anchor": "raw-headers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "http2:614bb03415ee", + "chapter": "http2", + "kind": "module", + "name": "sensitive_headers", + "signature": "Sensitive headers", + "label": "Sensitive headers", + "apiSymbol": "sensitive_headers", + "depth": 3, + "scope": "documentation", + "anchor": "sensitive-headers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "http2:357970a85456", + "chapter": "http2", + "kind": "module", + "name": "settings_object", + "signature": "Settings object", + "label": "Settings object", + "apiSymbol": "settings_object", + "depth": 2, + "scope": "documentation", + "anchor": "settings-object", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "http2:d9d428bb22e8", + "chapter": "http2", + "kind": "module", + "name": "error_handling", + "signature": "Error handling", + "label": "Error handling", + "apiSymbol": "error_handling", + "depth": 2, + "scope": "documentation", + "anchor": "error-handling", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "http2:12b5581fd029", + "chapter": "http2", + "kind": "module", + "name": "invalid_character_handling_in_header_names_and_values", + "signature": "Invalid character handling in header names and values", + "label": "Invalid character handling in header names and values", + "apiSymbol": "invalid_character_handling_in_header_names_and_values", + "depth": 2, + "scope": "documentation", + "anchor": "invalid-character-handling-in-header-names-and-values", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "http2:a6b91a6858ac", + "chapter": "http2", + "kind": "module", + "name": "push_streams_on_the_client", + "signature": "Push streams on the client", + "label": "Push streams on the client", + "apiSymbol": "push_streams_on_the_client", + "depth": 2, + "scope": "documentation", + "anchor": "push-streams-on-the-client", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "http2:6296dfa8e5d1", + "chapter": "http2", + "kind": "module", + "name": "supporting_the_`connect`_method", + "signature": "Supporting the `CONNECT` method", + "label": "Supporting the CONNECT method", + "apiSymbol": "CONNECT", + "depth": 2, + "scope": "api", + "anchor": "supporting-the-connect-method", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:609e3d53a6b1", + "chapter": "http2", + "kind": "module", + "name": "the_extended_`connect`_protocol", + "signature": "The extended `CONNECT` protocol", + "label": "The extended CONNECT protocol", + "apiSymbol": "CONNECT", + "depth": 2, + "scope": "api", + "anchor": "the-extended-connect-protocol", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:8952daf4b40b", + "chapter": "http2", + "kind": "class", + "name": "Http2Session", + "signature": "Class: `Http2Session`", + "label": "Http2Session", + "apiSymbol": "Http2Session", + "depth": 2, + "scope": "api", + "anchor": "class-http2session", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:2823055151cf", + "chapter": "http2", + "kind": "module", + "name": "`http2session`_and_sockets", + "signature": "`Http2Session` and sockets", + "label": "Http2Session", + "apiSymbol": "Http2Session", + "depth": 3, + "scope": "api", + "anchor": "http2session-and-sockets", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:0ad816b9c85c", + "chapter": "http2", + "kind": "method", + "name": "close", + "signature": "`http2session.close([callback])`", + "label": "http2session.close([callback])", + "apiSymbol": "http2session.close", + "depth": 3, + "scope": "api", + "anchor": "http2sessionclosecallback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:f4b8c67ad381", + "chapter": "http2", + "kind": "method", + "name": "destroy", + "signature": "`http2session.destroy([error][, code])`", + "label": "http2session.destroy([error][, code])", + "apiSymbol": "http2session.destroy", + "depth": 3, + "scope": "api", + "anchor": "http2sessiondestroyerror-code", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:f4cbef218fa9", + "chapter": "http2", + "kind": "method", + "name": "goaway", + "signature": "`http2session.goaway([code[, lastStreamID[, opaqueData]]])`", + "label": "http2session.goaway([code[, lastStreamID[, opaqueData]]])", + "apiSymbol": "http2session.goaway", + "depth": 3, + "scope": "api", + "anchor": "http2sessiongoawaycode-laststreamid-opaquedata", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:cced6fa9ba62", + "chapter": "http2", + "kind": "method", + "name": "ping", + "signature": "`http2session.ping([payload, ]callback)`", + "label": "http2session.ping([payload, ]callback)", + "apiSymbol": "http2session.ping", + "depth": 3, + "scope": "api", + "anchor": "http2sessionpingpayload-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:1f6c8cf81a35", + "chapter": "http2", + "kind": "method", + "name": "ref", + "signature": "`http2session.ref()`", + "label": "http2session.ref()", + "apiSymbol": "http2session.ref", + "depth": 3, + "scope": "api", + "anchor": "http2sessionref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:725acf2f7140", + "chapter": "http2", + "kind": "method", + "name": "setLocalWindowSize", + "signature": "`http2session.setLocalWindowSize(windowSize)`", + "label": "http2session.setLocalWindowSize(windowSize)", + "apiSymbol": "http2session.setLocalWindowSize", + "depth": 3, + "scope": "api", + "anchor": "http2sessionsetlocalwindowsizewindowsize", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:0144a989d733", + "chapter": "http2", + "kind": "method", + "name": "setTimeout", + "signature": "`http2session.setTimeout(msecs, callback)`", + "label": "http2session.setTimeout(msecs, callback)", + "apiSymbol": "http2session.setTimeout", + "depth": 3, + "scope": "api", + "anchor": "http2sessionsettimeoutmsecs-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:92f25dc5bc9b", + "chapter": "http2", + "kind": "method", + "name": "settings", + "signature": "`http2session.settings([settings][, callback])`", + "label": "http2session.settings([settings][, callback])", + "apiSymbol": "http2session.settings", + "depth": 3, + "scope": "api", + "anchor": "http2sessionsettingssettings-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:d63b0ac3df8b", + "chapter": "http2", + "kind": "method", + "name": "unref", + "signature": "`http2session.unref()`", + "label": "http2session.unref()", + "apiSymbol": "http2session.unref", + "depth": 3, + "scope": "api", + "anchor": "http2sessionunref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:13821134cf25", + "chapter": "http2", + "kind": "string|undefined", + "name": "Type", + "signature": "`alpnProtocol` Type: {string|undefined}", + "label": "alpnProtocol", + "apiSymbol": "alpnProtocol", + "depth": 3, + "scope": "api", + "anchor": "class-http2session", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "ancestor" + }, + { + "id": "http2:4fe09ce9cf4b", + "chapter": "http2", + "kind": "boolean", + "name": "Type", + "signature": "`closed` Type: {boolean}", + "label": "closed", + "apiSymbol": "closed", + "depth": 3, + "scope": "api", + "anchor": "class-http2session", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "ancestor" + }, + { + "id": "http2:45446ad28641", + "chapter": "http2", + "kind": "boolean", + "name": "Type", + "signature": "`connecting` Type: {boolean}", + "label": "connecting", + "apiSymbol": "connecting", + "depth": 3, + "scope": "api", + "anchor": "class-http2session", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "ancestor" + }, + { + "id": "http2:16fd13553e8b", + "chapter": "http2", + "kind": "boolean", + "name": "Type", + "signature": "`destroyed` Type: {boolean}", + "label": "destroyed", + "apiSymbol": "destroyed", + "depth": 3, + "scope": "api", + "anchor": "class-http2session", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "ancestor" + }, + { + "id": "http2:bcc288bd6ac0", + "chapter": "http2", + "kind": "boolean|undefined", + "name": "Type", + "signature": "`encrypted` Type: {boolean|undefined}", + "label": "encrypted", + "apiSymbol": "encrypted", + "depth": 3, + "scope": "api", + "anchor": "class-http2session", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "ancestor" + }, + { + "id": "http2:47cbe0a4952c", + "chapter": "http2", + "kind": "HTTP/2 Settings Object", + "name": "Type", + "signature": "`localSettings` Type: {HTTP/2 Settings Object}", + "label": "localSettings", + "apiSymbol": "localSettings", + "depth": 3, + "scope": "api", + "anchor": "class-http2session", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "ancestor" + }, + { + "id": "http2:8dd63a543d12", + "chapter": "http2", + "kind": "string\\[]|undefined", + "name": "Type", + "signature": "`originSet` Type: {string\\[]|undefined}", + "label": "originSet", + "apiSymbol": "originSet", + "depth": 3, + "scope": "api", + "anchor": "class-http2session", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "ancestor" + }, + { + "id": "http2:5c51c1461256", + "chapter": "http2", + "kind": "boolean", + "name": "Type", + "signature": "`pendingSettingsAck` Type: {boolean}", + "label": "pendingSettingsAck", + "apiSymbol": "pendingSettingsAck", + "depth": 3, + "scope": "api", + "anchor": "class-http2session", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "ancestor" + }, + { + "id": "http2:b2e54dd10443", + "chapter": "http2", + "kind": "HTTP/2 Settings Object", + "name": "Type", + "signature": "`remoteSettings` Type: {HTTP/2 Settings Object}", + "label": "remoteSettings", + "apiSymbol": "remoteSettings", + "depth": 3, + "scope": "api", + "anchor": "class-http2session", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "ancestor" + }, + { + "id": "http2:19707f39c6d0", + "chapter": "http2", + "kind": "net.Socket|tls.TLSSocket", + "name": "Type", + "signature": "`socket` Type: {net.Socket|tls.TLSSocket}", + "label": "socket", + "apiSymbol": "socket", + "depth": 3, + "scope": "api", + "anchor": "class-http2session", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "ancestor" + }, + { + "id": "http2:df44dffba55a", + "chapter": "http2", + "kind": "section", + "name": "state", + "signature": "`http2session.state`", + "label": "http2session.state", + "apiSymbol": "http2session.state", + "depth": 3, + "scope": "api", + "anchor": "http2sessionstate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:c991e11e1d43", + "chapter": "http2", + "kind": "number", + "name": "Type", + "signature": "`type` Type: {number}", + "label": "type", + "apiSymbol": "type", + "depth": 3, + "scope": "api", + "anchor": "class-http2session", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "ancestor" + }, + { + "id": "http2:965dc30fccc4", + "chapter": "http2", + "kind": "event", + "name": "close", + "signature": "Event: `'close'`", + "label": "'close'", + "apiSymbol": "'close'", + "depth": 3, + "scope": "api", + "anchor": "event-close", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:90001eb58d9a", + "chapter": "http2", + "kind": "event", + "name": "connect", + "signature": "Event: `'connect'`", + "label": "'connect'", + "apiSymbol": "'connect'", + "depth": 3, + "scope": "api", + "anchor": "event-connect", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:8c37d6371554", + "chapter": "http2", + "kind": "event", + "name": "error", + "signature": "Event: `'error'`", + "label": "'error'", + "apiSymbol": "'error'", + "depth": 3, + "scope": "api", + "anchor": "event-error", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:7dbc3d65db95", + "chapter": "http2", + "kind": "event", + "name": "frameError", + "signature": "Event: `'frameError'`", + "label": "'frameError'", + "apiSymbol": "'frameError'", + "depth": 3, + "scope": "api", + "anchor": "event-frameerror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:2f060122a905", + "chapter": "http2", + "kind": "event", + "name": "goaway", + "signature": "Event: `'goaway'`", + "label": "'goaway'", + "apiSymbol": "'goaway'", + "depth": 3, + "scope": "api", + "anchor": "event-goaway", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:4bef6d971dff", + "chapter": "http2", + "kind": "event", + "name": "localSettings", + "signature": "Event: `'localSettings'`", + "label": "'localSettings'", + "apiSymbol": "'localSettings'", + "depth": 3, + "scope": "api", + "anchor": "event-localsettings", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:2e38fa87d5df", + "chapter": "http2", + "kind": "event", + "name": "ping", + "signature": "Event: `'ping'`", + "label": "'ping'", + "apiSymbol": "'ping'", + "depth": 3, + "scope": "api", + "anchor": "event-ping", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:0eceeea2f0d2", + "chapter": "http2", + "kind": "event", + "name": "remoteSettings", + "signature": "Event: `'remoteSettings'`", + "label": "'remoteSettings'", + "apiSymbol": "'remoteSettings'", + "depth": 3, + "scope": "api", + "anchor": "event-remotesettings", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:8c2e3dfd9860", + "chapter": "http2", + "kind": "event", + "name": "stream", + "signature": "Event: `'stream'`", + "label": "'stream'", + "apiSymbol": "'stream'", + "depth": 3, + "scope": "api", + "anchor": "event-stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:35a3072bc370", + "chapter": "http2", + "kind": "event", + "name": "timeout", + "signature": "Event: `'timeout'`", + "label": "'timeout'", + "apiSymbol": "'timeout'", + "depth": 3, + "scope": "api", + "anchor": "event-timeout", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:76a1fc4fed90", + "chapter": "http2", + "kind": "class", + "name": "ServerHttp2Session", + "signature": "Class: `ServerHttp2Session`", + "label": "ServerHttp2Session", + "apiSymbol": "ServerHttp2Session", + "depth": 2, + "scope": "api", + "anchor": "class-serverhttp2session", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:17b48a14622e", + "chapter": "http2", + "kind": "module", + "name": "specifying_alternative_services", + "signature": "Specifying alternative services", + "label": "Specifying alternative services", + "apiSymbol": "specifying_alternative_services", + "depth": 3, + "scope": "documentation", + "anchor": "specifying-alternative-services", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "http2:6d2f4096de0f", + "chapter": "http2", + "kind": "method", + "name": "altsvc", + "signature": "`serverhttp2session.altsvc(alt, originOrStream)`", + "label": "serverhttp2session.altsvc(alt, originOrStream)", + "apiSymbol": "serverhttp2session.altsvc", + "depth": 3, + "scope": "api", + "anchor": "serverhttp2sessionaltsvcalt-originorstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:d37741190d5b", + "chapter": "http2", + "kind": "method", + "name": "origin", + "signature": "`serverhttp2session.origin(...origins)`", + "label": "serverhttp2session.origin(...origins)", + "apiSymbol": "serverhttp2session.origin", + "depth": 3, + "scope": "api", + "anchor": "serverhttp2sessionoriginorigins", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:49ddba896033", + "chapter": "http2", + "kind": "class", + "name": "ClientHttp2Session", + "signature": "Class: `ClientHttp2Session`", + "label": "ClientHttp2Session", + "apiSymbol": "ClientHttp2Session", + "depth": 2, + "scope": "api", + "anchor": "class-clienthttp2session", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:2229531783ce", + "chapter": "http2", + "kind": "method", + "name": "request", + "signature": "`clienthttp2session.request(headers[, options])`", + "label": "clienthttp2session.request(headers[, options])", + "apiSymbol": "clienthttp2session.request", + "depth": 3, + "scope": "api", + "anchor": "clienthttp2sessionrequestheaders-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:896fbb1fa2f7", + "chapter": "http2", + "kind": "event", + "name": "altsvc", + "signature": "Event: `'altsvc'`", + "label": "'altsvc'", + "apiSymbol": "'altsvc'", + "depth": 3, + "scope": "api", + "anchor": "event-altsvc", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:153d1dfdcfaf", + "chapter": "http2", + "kind": "event", + "name": "origin", + "signature": "Event: `'origin'`", + "label": "'origin'", + "apiSymbol": "'origin'", + "depth": 3, + "scope": "api", + "anchor": "event-origin", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:a2f001035565", + "chapter": "http2", + "kind": "class", + "name": "Http2Stream", + "signature": "Class: `Http2Stream`", + "label": "Http2Stream", + "apiSymbol": "Http2Stream", + "depth": 2, + "scope": "api", + "anchor": "class-http2stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:811c732a98da", + "chapter": "http2", + "kind": "module", + "name": "`http2stream`_lifecycle", + "signature": "`Http2Stream` Lifecycle", + "label": "Http2Stream", + "apiSymbol": "Http2Stream", + "depth": 3, + "scope": "api", + "anchor": "http2stream-lifecycle", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:842d76176645", + "chapter": "http2", + "kind": "module", + "name": "creation", + "signature": "Creation", + "label": "Creation", + "apiSymbol": "creation", + "depth": 4, + "scope": "documentation", + "anchor": "creation", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "http2:47b8677f26e1", + "chapter": "http2", + "kind": "module", + "name": "destruction", + "signature": "Destruction", + "label": "Destruction", + "apiSymbol": "destruction", + "depth": 4, + "scope": "documentation", + "anchor": "destruction", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "http2:5802396b25c4", + "chapter": "http2", + "kind": "method", + "name": "close", + "signature": "`http2stream.close(code[, callback])`", + "label": "http2stream.close(code[, callback])", + "apiSymbol": "http2stream.close", + "depth": 3, + "scope": "api", + "anchor": "http2streamclosecode-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:087f4039376e", + "chapter": "http2", + "kind": "method", + "name": "priority", + "signature": "`http2stream.priority(options)`", + "label": "http2stream.priority(options)", + "apiSymbol": "http2stream.priority", + "depth": 3, + "scope": "api", + "anchor": "http2streampriorityoptions", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: support for priority signaling has been deprecated in the [RFC 9113][] and is no longer supported in Node.js.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:12ed0a4b3b64", + "chapter": "http2", + "kind": "method", + "name": "setTimeout", + "signature": "`http2stream.setTimeout(msecs, callback)`", + "label": "http2stream.setTimeout(msecs, callback)", + "apiSymbol": "http2stream.setTimeout", + "depth": 3, + "scope": "api", + "anchor": "http2streamsettimeoutmsecs-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:c1274ca65fc2", + "chapter": "http2", + "kind": "method", + "name": "sendTrailers", + "signature": "`http2stream.sendTrailers(headers)`", + "label": "http2stream.sendTrailers(headers)", + "apiSymbol": "http2stream.sendTrailers", + "depth": 3, + "scope": "api", + "anchor": "http2streamsendtrailersheaders", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:f2e5b1cace83", + "chapter": "http2", + "kind": "boolean", + "name": "Type", + "signature": "`aborted` Type: {boolean}", + "label": "aborted", + "apiSymbol": "aborted", + "depth": 3, + "scope": "api", + "anchor": "class-http2stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "ancestor" + }, + { + "id": "http2:40c49fe9397d", + "chapter": "http2", + "kind": "number", + "name": "Type", + "signature": "`bufferSize` Type: {number}", + "label": "bufferSize", + "apiSymbol": "bufferSize", + "depth": 3, + "scope": "api", + "anchor": "class-http2stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "ancestor" + }, + { + "id": "http2:d56e207a8736", + "chapter": "http2", + "kind": "boolean", + "name": "Type", + "signature": "`closed` Type: {boolean}", + "label": "closed", + "apiSymbol": "closed", + "depth": 3, + "scope": "api", + "anchor": "class-http2stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "ancestor" + }, + { + "id": "http2:93885dd8d07f", + "chapter": "http2", + "kind": "boolean", + "name": "Type", + "signature": "`destroyed` Type: {boolean}", + "label": "destroyed", + "apiSymbol": "destroyed", + "depth": 3, + "scope": "api", + "anchor": "class-http2stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "ancestor" + }, + { + "id": "http2:dae5d4dade50", + "chapter": "http2", + "kind": "boolean", + "name": "Type", + "signature": "`endAfterHeaders` Type: {boolean}", + "label": "endAfterHeaders", + "apiSymbol": "endAfterHeaders", + "depth": 3, + "scope": "api", + "anchor": "class-http2stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "ancestor" + }, + { + "id": "http2:941027bf4ad0", + "chapter": "http2", + "kind": "number|undefined", + "name": "Type", + "signature": "`id` Type: {number|undefined}", + "label": "id", + "apiSymbol": "id", + "depth": 3, + "scope": "api", + "anchor": "class-http2stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "ancestor" + }, + { + "id": "http2:959528914ba6", + "chapter": "http2", + "kind": "boolean", + "name": "Type", + "signature": "`pending` Type: {boolean}", + "label": "pending", + "apiSymbol": "pending", + "depth": 3, + "scope": "api", + "anchor": "class-http2stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "ancestor" + }, + { + "id": "http2:1d6d4fae17c4", + "chapter": "http2", + "kind": "number", + "name": "Type", + "signature": "`rstCode` Type: {number}", + "label": "rstCode", + "apiSymbol": "rstCode", + "depth": 3, + "scope": "api", + "anchor": "class-http2stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "ancestor" + }, + { + "id": "http2:734f8d3605fd", + "chapter": "http2", + "kind": "HTTP/2 Headers Object", + "name": "Type", + "signature": "`sentHeaders` Type: {HTTP/2 Headers Object}", + "label": "sentHeaders", + "apiSymbol": "sentHeaders", + "depth": 3, + "scope": "api", + "anchor": "class-http2stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "ancestor" + }, + { + "id": "http2:8a4c9b51dbf0", + "chapter": "http2", + "kind": "HTTP/2 Headers Object\\[]", + "name": "Type", + "signature": "`sentInfoHeaders` Type: {HTTP/2 Headers Object\\[]}", + "label": "sentInfoHeaders", + "apiSymbol": "sentInfoHeaders", + "depth": 3, + "scope": "api", + "anchor": "class-http2stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "ancestor" + }, + { + "id": "http2:c18a72edad22", + "chapter": "http2", + "kind": "HTTP/2 Headers Object", + "name": "Type", + "signature": "`sentTrailers` Type: {HTTP/2 Headers Object}", + "label": "sentTrailers", + "apiSymbol": "sentTrailers", + "depth": 3, + "scope": "api", + "anchor": "class-http2stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "ancestor" + }, + { + "id": "http2:f91b46f2a6e4", + "chapter": "http2", + "kind": "Http2Session", + "name": "Type", + "signature": "`session` Type: {Http2Session}", + "label": "session", + "apiSymbol": "session", + "depth": 3, + "scope": "api", + "anchor": "class-http2stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "ancestor" + }, + { + "id": "http2:2339e8707e12", + "chapter": "http2", + "kind": "section", + "name": "state", + "signature": "`http2stream.state`", + "label": "http2stream.state", + "apiSymbol": "http2stream.state", + "depth": 3, + "scope": "api", + "anchor": "http2streamstate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:044b0bda4bf7", + "chapter": "http2", + "kind": "event", + "name": "aborted", + "signature": "Event: `'aborted'`", + "label": "'aborted'", + "apiSymbol": "'aborted'", + "depth": 3, + "scope": "api", + "anchor": "event-aborted", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:dcdf1e2bf173", + "chapter": "http2", + "kind": "event", + "name": "close", + "signature": "Event: `'close'`", + "label": "'close'", + "apiSymbol": "'close'", + "depth": 3, + "scope": "api", + "anchor": "event-close_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:1368bf1cf6a3", + "chapter": "http2", + "kind": "event", + "name": "error", + "signature": "Event: `'error'`", + "label": "'error'", + "apiSymbol": "'error'", + "depth": 3, + "scope": "api", + "anchor": "event-error_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:cfdf361f7c14", + "chapter": "http2", + "kind": "event", + "name": "frameError", + "signature": "Event: `'frameError'`", + "label": "'frameError'", + "apiSymbol": "'frameError'", + "depth": 3, + "scope": "api", + "anchor": "event-frameerror_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:bc852715b7a7", + "chapter": "http2", + "kind": "event", + "name": "ready", + "signature": "Event: `'ready'`", + "label": "'ready'", + "apiSymbol": "'ready'", + "depth": 3, + "scope": "api", + "anchor": "event-ready", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:001f8780d406", + "chapter": "http2", + "kind": "event", + "name": "timeout", + "signature": "Event: `'timeout'`", + "label": "'timeout'", + "apiSymbol": "'timeout'", + "depth": 3, + "scope": "api", + "anchor": "event-timeout_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:0d9fd2ecbc59", + "chapter": "http2", + "kind": "event", + "name": "trailers", + "signature": "Event: `'trailers'`", + "label": "'trailers'", + "apiSymbol": "'trailers'", + "depth": 3, + "scope": "api", + "anchor": "event-trailers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:78e226961cb6", + "chapter": "http2", + "kind": "event", + "name": "wantTrailers", + "signature": "Event: `'wantTrailers'`", + "label": "'wantTrailers'", + "apiSymbol": "'wantTrailers'", + "depth": 3, + "scope": "api", + "anchor": "event-wanttrailers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:d9c0bcef72b7", + "chapter": "http2", + "kind": "class", + "name": "ClientHttp2Stream", + "signature": "Class: `ClientHttp2Stream`", + "label": "ClientHttp2Stream", + "apiSymbol": "ClientHttp2Stream", + "depth": 2, + "scope": "api", + "anchor": "class-clienthttp2stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:f3e1632653dd", + "chapter": "http2", + "kind": "event", + "name": "continue", + "signature": "Event: `'continue'`", + "label": "'continue'", + "apiSymbol": "'continue'", + "depth": 3, + "scope": "api", + "anchor": "event-continue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:f3358d38326c", + "chapter": "http2", + "kind": "event", + "name": "headers", + "signature": "Event: `'headers'`", + "label": "'headers'", + "apiSymbol": "'headers'", + "depth": 3, + "scope": "api", + "anchor": "event-headers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:76248374e016", + "chapter": "http2", + "kind": "event", + "name": "push", + "signature": "Event: `'push'`", + "label": "'push'", + "apiSymbol": "'push'", + "depth": 3, + "scope": "api", + "anchor": "event-push", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:a18d6a44e906", + "chapter": "http2", + "kind": "event", + "name": "response", + "signature": "Event: `'response'`", + "label": "'response'", + "apiSymbol": "'response'", + "depth": 3, + "scope": "api", + "anchor": "event-response", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:29d7675853c3", + "chapter": "http2", + "kind": "class", + "name": "ServerHttp2Stream", + "signature": "Class: `ServerHttp2Stream`", + "label": "ServerHttp2Stream", + "apiSymbol": "ServerHttp2Stream", + "depth": 2, + "scope": "api", + "anchor": "class-serverhttp2stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:5bce6633446f", + "chapter": "http2", + "kind": "method", + "name": "additionalHeaders", + "signature": "`http2stream.additionalHeaders(headers)`", + "label": "http2stream.additionalHeaders(headers)", + "apiSymbol": "http2stream.additionalHeaders", + "depth": 3, + "scope": "api", + "anchor": "http2streamadditionalheadersheaders", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:a8c46c9885ff", + "chapter": "http2", + "kind": "method", + "name": "pushStream", + "signature": "`http2stream.pushStream(headers[, options], callback)`", + "label": "http2stream.pushStream(headers[, options], callback)", + "apiSymbol": "http2stream.pushStream", + "depth": 3, + "scope": "api", + "anchor": "http2streampushstreamheaders-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:71946ea781a1", + "chapter": "http2", + "kind": "method", + "name": "respond", + "signature": "`http2stream.respond([headers[, options]])`", + "label": "http2stream.respond([headers[, options]])", + "apiSymbol": "http2stream.respond", + "depth": 3, + "scope": "api", + "anchor": "http2streamrespondheaders-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:c0353b97f605", + "chapter": "http2", + "kind": "method", + "name": "respondWithFD", + "signature": "`http2stream.respondWithFD(fd[, headers[, options]])`", + "label": "http2stream.respondWithFD(fd[, headers[, options]])", + "apiSymbol": "http2stream.respondWithFD", + "depth": 3, + "scope": "api", + "anchor": "http2streamrespondwithfdfd-headers-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:da9bbbdbdff5", + "chapter": "http2", + "kind": "method", + "name": "respondWithFile", + "signature": "`http2stream.respondWithFile(path[, headers[, options]])`", + "label": "http2stream.respondWithFile(path[, headers[, options]])", + "apiSymbol": "http2stream.respondWithFile", + "depth": 3, + "scope": "api", + "anchor": "http2streamrespondwithfilepath-headers-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:8d1372e69d84", + "chapter": "http2", + "kind": "boolean", + "name": "Type", + "signature": "`headersSent` Type: {boolean}", + "label": "headersSent", + "apiSymbol": "headersSent", + "depth": 3, + "scope": "api", + "anchor": "class-serverhttp2stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "ancestor" + }, + { + "id": "http2:a7d245bee40d", + "chapter": "http2", + "kind": "boolean", + "name": "Type", + "signature": "`pushAllowed` Type: {boolean}", + "label": "pushAllowed", + "apiSymbol": "pushAllowed", + "depth": 3, + "scope": "api", + "anchor": "class-serverhttp2stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "ancestor" + }, + { + "id": "http2:ae0a8c606d68", + "chapter": "http2", + "kind": "class", + "name": "Http2Server", + "signature": "Class: `Http2Server`", + "label": "Http2Server", + "apiSymbol": "Http2Server", + "depth": 2, + "scope": "api", + "anchor": "class-http2server", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:3dbe6bfc4025", + "chapter": "http2", + "kind": "method", + "name": "close", + "signature": "`server.close([callback])`", + "label": "server.close([callback])", + "apiSymbol": "server.close", + "depth": 3, + "scope": "api", + "anchor": "serverclosecallback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:server.close", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:c2faceee804f", + "chapter": "http2", + "kind": "method", + "name": "[Symbol.asyncDispose]", + "signature": "`server[Symbol.asyncDispose]()`", + "label": "server[Symbol.asyncDispose]()", + "apiSymbol": "server", + "depth": 3, + "scope": "api", + "anchor": "serversymbolasyncdispose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:402d7d59733c", + "chapter": "http2", + "kind": "method", + "name": "setTimeout", + "signature": "`server.setTimeout([msecs][, callback])`", + "label": "server.setTimeout([msecs][, callback])", + "apiSymbol": "server.setTimeout", + "depth": 3, + "scope": "api", + "anchor": "serversettimeoutmsecs-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:a2a774ceb90d", + "chapter": "http2", + "kind": "method", + "name": "updateSettings", + "signature": "`server.updateSettings([settings])`", + "label": "server.updateSettings([settings])", + "apiSymbol": "server.updateSettings", + "depth": 3, + "scope": "api", + "anchor": "serverupdatesettingssettings", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:2503e492d8e1", + "chapter": "http2", + "kind": "number", + "name": "Type", + "signature": "`timeout` Type: {number} Timeout in milliseconds. **Default:** 0 (no timeout)", + "label": "timeout", + "apiSymbol": "timeout", + "depth": 3, + "scope": "api", + "anchor": "class-http2server", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:timeout", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "ancestor" + }, + { + "id": "http2:5ebd83633c9b", + "chapter": "http2", + "kind": "event", + "name": "checkContinue", + "signature": "Event: `'checkContinue'`", + "label": "'checkContinue'", + "apiSymbol": "'checkContinue'", + "depth": 3, + "scope": "api", + "anchor": "event-checkcontinue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:f6fcaf096c2f", + "chapter": "http2", + "kind": "event", + "name": "connection", + "signature": "Event: `'connection'`", + "label": "'connection'", + "apiSymbol": "'connection'", + "depth": 3, + "scope": "api", + "anchor": "event-connection", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:2e51051fb44a", + "chapter": "http2", + "kind": "event", + "name": "request", + "signature": "Event: `'request'`", + "label": "'request'", + "apiSymbol": "'request'", + "depth": 3, + "scope": "api", + "anchor": "event-request", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:6a175b99924a", + "chapter": "http2", + "kind": "event", + "name": "session", + "signature": "Event: `'session'`", + "label": "'session'", + "apiSymbol": "'session'", + "depth": 3, + "scope": "api", + "anchor": "event-session", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:1de30d5f99ae", + "chapter": "http2", + "kind": "event", + "name": "sessionError", + "signature": "Event: `'sessionError'`", + "label": "'sessionError'", + "apiSymbol": "'sessionError'", + "depth": 3, + "scope": "api", + "anchor": "event-sessionerror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:bf8d98873d12", + "chapter": "http2", + "kind": "event", + "name": "stream", + "signature": "Event: `'stream'`", + "label": "'stream'", + "apiSymbol": "'stream'", + "depth": 3, + "scope": "api", + "anchor": "event-stream_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:8115b797b787", + "chapter": "http2", + "kind": "event", + "name": "timeout", + "signature": "Event: `'timeout'`", + "label": "'timeout'", + "apiSymbol": "'timeout'", + "depth": 3, + "scope": "api", + "anchor": "event-timeout_2", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:7c85961a699d", + "chapter": "http2", + "kind": "class", + "name": "Http2SecureServer", + "signature": "Class: `Http2SecureServer`", + "label": "Http2SecureServer", + "apiSymbol": "Http2SecureServer", + "depth": 2, + "scope": "api", + "anchor": "class-http2secureserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:bb509dd4ad74", + "chapter": "http2", + "kind": "method", + "name": "close", + "signature": "`server.close([callback])`", + "label": "server.close([callback])", + "apiSymbol": "server.close", + "depth": 3, + "scope": "api", + "anchor": "serverclosecallback_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:server.close", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:163ebea6b827", + "chapter": "http2", + "kind": "method", + "name": "setTimeout", + "signature": "`server.setTimeout([msecs][, callback])`", + "label": "server.setTimeout([msecs][, callback])", + "apiSymbol": "server.setTimeout", + "depth": 3, + "scope": "api", + "anchor": "serversettimeoutmsecs-callback_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:66add03fb1b6", + "chapter": "http2", + "kind": "method", + "name": "updateSettings", + "signature": "`server.updateSettings([settings])`", + "label": "server.updateSettings([settings])", + "apiSymbol": "server.updateSettings", + "depth": 3, + "scope": "api", + "anchor": "serverupdatesettingssettings_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:1b49792fd8a8", + "chapter": "http2", + "kind": "number", + "name": "Type", + "signature": "`timeout` Type: {number} Timeout in milliseconds. **Default:** 0 (no timeout)", + "label": "timeout", + "apiSymbol": "timeout", + "depth": 3, + "scope": "api", + "anchor": "class-http2secureserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:timeout", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "ancestor" + }, + { + "id": "http2:86d09445edd3", + "chapter": "http2", + "kind": "event", + "name": "checkContinue", + "signature": "Event: `'checkContinue'`", + "label": "'checkContinue'", + "apiSymbol": "'checkContinue'", + "depth": 3, + "scope": "api", + "anchor": "event-checkcontinue_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:79c7b1e06d72", + "chapter": "http2", + "kind": "event", + "name": "connection", + "signature": "Event: `'connection'`", + "label": "'connection'", + "apiSymbol": "'connection'", + "depth": 3, + "scope": "api", + "anchor": "event-connection_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:71af92ed7b0f", + "chapter": "http2", + "kind": "event", + "name": "request", + "signature": "Event: `'request'`", + "label": "'request'", + "apiSymbol": "'request'", + "depth": 3, + "scope": "api", + "anchor": "event-request_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:26ce5ba2d4d9", + "chapter": "http2", + "kind": "event", + "name": "session", + "signature": "Event: `'session'`", + "label": "'session'", + "apiSymbol": "'session'", + "depth": 3, + "scope": "api", + "anchor": "event-session_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:161153d15286", + "chapter": "http2", + "kind": "event", + "name": "sessionError", + "signature": "Event: `'sessionError'`", + "label": "'sessionError'", + "apiSymbol": "'sessionError'", + "depth": 3, + "scope": "api", + "anchor": "event-sessionerror_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:1a27855c8a25", + "chapter": "http2", + "kind": "event", + "name": "stream", + "signature": "Event: `'stream'`", + "label": "'stream'", + "apiSymbol": "'stream'", + "depth": 3, + "scope": "api", + "anchor": "event-stream_2", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:6229a5081a27", + "chapter": "http2", + "kind": "event", + "name": "timeout", + "signature": "Event: `'timeout'`", + "label": "'timeout'", + "apiSymbol": "'timeout'", + "depth": 3, + "scope": "api", + "anchor": "event-timeout_3", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:7a07cce491a7", + "chapter": "http2", + "kind": "event", + "name": "unknownProtocol", + "signature": "Event: `'unknownProtocol'`", + "label": "'unknownProtocol'", + "apiSymbol": "'unknownProtocol'", + "depth": 3, + "scope": "api", + "anchor": "event-unknownprotocol", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:c6359f9afccf", + "chapter": "http2", + "kind": "method", + "name": "createServer", + "signature": "`http2.createServer([options][, onRequestHandler])`", + "label": "http2.createServer([options][, onRequestHandler])", + "apiSymbol": "http2.createServer", + "depth": 2, + "scope": "api", + "anchor": "http2createserveroptions-onrequesthandler", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.http2.createServer" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:242e1cb51c75", + "chapter": "http2", + "kind": "method", + "name": "createSecureServer", + "signature": "`http2.createSecureServer(options[, onRequestHandler])`", + "label": "http2.createSecureServer(options[, onRequestHandler])", + "apiSymbol": "http2.createSecureServer", + "depth": 2, + "scope": "api", + "anchor": "http2createsecureserveroptions-onrequesthandler", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:680716981c63", + "chapter": "http2", + "kind": "method", + "name": "connect", + "signature": "`http2.connect(authority[, options][, listener])`", + "label": "http2.connect(authority[, options][, listener])", + "apiSymbol": "http2.connect", + "depth": 2, + "scope": "api", + "anchor": "http2connectauthority-options-listener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.http2.connect" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:e379aa61a461", + "chapter": "http2", + "kind": "method", + "name": "getDefaultSettings", + "signature": "`http2.getDefaultSettings()`", + "label": "http2.getDefaultSettings()", + "apiSymbol": "http2.getDefaultSettings", + "depth": 2, + "scope": "api", + "anchor": "http2getdefaultsettings", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:06a55a7b8ea7", + "chapter": "http2", + "kind": "method", + "name": "getPackedSettings", + "signature": "`http2.getPackedSettings([settings])`", + "label": "http2.getPackedSettings([settings])", + "apiSymbol": "http2.getPackedSettings", + "depth": 2, + "scope": "api", + "anchor": "http2getpackedsettingssettings", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:74bbd922d21b", + "chapter": "http2", + "kind": "method", + "name": "getUnpackedSettings", + "signature": "`http2.getUnpackedSettings(buf)`", + "label": "http2.getUnpackedSettings(buf)", + "apiSymbol": "http2.getUnpackedSettings", + "depth": 2, + "scope": "api", + "anchor": "http2getunpackedsettingsbuf", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:bb79e3765b91", + "chapter": "http2", + "kind": "method", + "name": "performServerHandshake", + "signature": "`http2.performServerHandshake(socket[, options])`", + "label": "http2.performServerHandshake(socket[, options])", + "apiSymbol": "http2.performServerHandshake", + "depth": 2, + "scope": "api", + "anchor": "http2performserverhandshakesocket-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:cf84bcf149a1", + "chapter": "http2", + "kind": "section", + "name": "constants", + "signature": "`http2.constants`", + "label": "http2.constants", + "apiSymbol": "http2.constants", + "depth": 2, + "scope": "api", + "anchor": "http2constants", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:3686f80264d2", + "chapter": "http2", + "kind": "module", + "name": "error_codes_for_`rst_stream`_and_`goaway`", + "signature": "Error codes for `RST_STREAM` and `GOAWAY`", + "label": "Error codes for RST_STREAM and GOAWAY", + "apiSymbol": "RST_STREAM", + "depth": 3, + "scope": "api", + "anchor": "error-codes-for-rst_stream-and-goaway", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:f4e11c45f3f3", + "chapter": "http2", + "kind": "symbol", + "name": "Type", + "signature": "`sensitiveHeaders` Type: {symbol}", + "label": "sensitiveHeaders", + "apiSymbol": "sensitiveHeaders", + "depth": 2, + "scope": "api", + "anchor": "core-api", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "ancestor" + }, + { + "id": "http2:2545b6e9de4f", + "chapter": "http2", + "kind": "module", + "name": "compatibility_api", + "signature": "Compatibility API", + "label": "Compatibility API", + "apiSymbol": "compatibility_api", + "depth": 1, + "scope": "documentation", + "anchor": "compatibility-api", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "http2:f12e5e9e98c0", + "chapter": "http2", + "kind": "module", + "name": "alpn_negotiation", + "signature": "ALPN negotiation", + "label": "ALPN negotiation", + "apiSymbol": "alpn_negotiation", + "depth": 2, + "scope": "documentation", + "anchor": "alpn-negotiation", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "http2:eb9e125f0e4f", + "chapter": "http2", + "kind": "class", + "name": "http2.Http2ServerRequest", + "signature": "Class: `http2.Http2ServerRequest`", + "label": "http2.Http2ServerRequest", + "apiSymbol": "http2.Http2ServerRequest", + "depth": 2, + "scope": "api", + "anchor": "class-http2http2serverrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:ec664bd1b54e", + "chapter": "http2", + "kind": "method", + "name": "destroy", + "signature": "`request.destroy([error])`", + "label": "request.destroy([error])", + "apiSymbol": "request.destroy", + "depth": 3, + "scope": "api", + "anchor": "requestdestroyerror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:request.destroy", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:e7b7e6caa073", + "chapter": "http2", + "kind": "method", + "name": "setTimeout", + "signature": "`request.setTimeout(msecs, callback)`", + "label": "request.setTimeout(msecs, callback)", + "apiSymbol": "request.setTimeout", + "depth": 3, + "scope": "api", + "anchor": "requestsettimeoutmsecs-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:request.setTimeout", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:bf1c565acb31", + "chapter": "http2", + "kind": "boolean", + "name": "Type", + "signature": "`aborted` Type: {boolean}", + "label": "aborted", + "apiSymbol": "aborted", + "depth": 3, + "scope": "api", + "anchor": "class-http2http2serverrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "ancestor" + }, + { + "id": "http2:eabf9c3e27e6", + "chapter": "http2", + "kind": "string", + "name": "Type", + "signature": "`authority` Type: {string}", + "label": "authority", + "apiSymbol": "authority", + "depth": 3, + "scope": "api", + "anchor": "class-http2http2serverrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "ancestor" + }, + { + "id": "http2:e348f998e755", + "chapter": "http2", + "kind": "boolean", + "name": "Type", + "signature": "`complete` Type: {boolean}", + "label": "complete", + "apiSymbol": "complete", + "depth": 3, + "scope": "api", + "anchor": "class-http2http2serverrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "ancestor" + }, + { + "id": "http2:622ff72078b1", + "chapter": "http2", + "kind": "net.Socket|tls.TLSSocket", + "name": "Type", + "signature": "`connection` Type: {net.Socket|tls.TLSSocket}", + "label": "connection", + "apiSymbol": "connection", + "depth": 3, + "scope": "api", + "anchor": "class-http2http2serverrequest", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. Use [`request.socket`][].", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "ancestor" + }, + { + "id": "http2:e3bca47a3a84", + "chapter": "http2", + "kind": "Object", + "name": "Type", + "signature": "`headers` Type: {Object}", + "label": "headers", + "apiSymbol": "headers", + "depth": 3, + "scope": "api", + "anchor": "class-http2http2serverrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "ancestor" + }, + { + "id": "http2:6f500d89c819", + "chapter": "http2", + "kind": "string", + "name": "Type", + "signature": "`httpVersion` Type: {string}", + "label": "httpVersion", + "apiSymbol": "httpVersion", + "depth": 3, + "scope": "api", + "anchor": "class-http2http2serverrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "ancestor" + }, + { + "id": "http2:756fb6a7298f", + "chapter": "http2", + "kind": "string", + "name": "Type", + "signature": "`method` Type: {string}", + "label": "method", + "apiSymbol": "method", + "depth": 3, + "scope": "api", + "anchor": "class-http2http2serverrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "ancestor" + }, + { + "id": "http2:2c3b46e3d2e2", + "chapter": "http2", + "kind": "HTTP/2 Raw Headers", + "name": "Type", + "signature": "`rawHeaders` Type: {HTTP/2 Raw Headers}", + "label": "rawHeaders", + "apiSymbol": "rawHeaders", + "depth": 3, + "scope": "api", + "anchor": "class-http2http2serverrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "ancestor" + }, + { + "id": "http2:91a2937e1252", + "chapter": "http2", + "kind": "string\\[]", + "name": "Type", + "signature": "`rawTrailers` Type: {string\\[]}", + "label": "rawTrailers", + "apiSymbol": "rawTrailers", + "depth": 3, + "scope": "api", + "anchor": "class-http2http2serverrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "ancestor" + }, + { + "id": "http2:409442c3d132", + "chapter": "http2", + "kind": "string", + "name": "Type", + "signature": "`scheme` Type: {string}", + "label": "scheme", + "apiSymbol": "scheme", + "depth": 3, + "scope": "api", + "anchor": "class-http2http2serverrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "ancestor" + }, + { + "id": "http2:5c266757bc0c", + "chapter": "http2", + "kind": "net.Socket|tls.TLSSocket", + "name": "Type", + "signature": "`socket` Type: {net.Socket|tls.TLSSocket}", + "label": "socket", + "apiSymbol": "socket", + "depth": 3, + "scope": "api", + "anchor": "class-http2http2serverrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "ancestor" + }, + { + "id": "http2:55bbe07e47aa", + "chapter": "http2", + "kind": "Http2Stream", + "name": "Type", + "signature": "`stream` Type: {Http2Stream}", + "label": "stream", + "apiSymbol": "stream", + "depth": 3, + "scope": "api", + "anchor": "class-http2http2serverrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "ancestor" + }, + { + "id": "http2:9788bf31c26e", + "chapter": "http2", + "kind": "Object", + "name": "Type", + "signature": "`trailers` Type: {Object}", + "label": "trailers", + "apiSymbol": "trailers", + "depth": 3, + "scope": "api", + "anchor": "class-http2http2serverrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "ancestor" + }, + { + "id": "http2:78cb12766f93", + "chapter": "http2", + "kind": "string", + "name": "Type", + "signature": "`url` Type: {string}", + "label": "url", + "apiSymbol": "url", + "depth": 3, + "scope": "api", + "anchor": "class-http2http2serverrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "ancestor" + }, + { + "id": "http2:a5d565d32ad8", + "chapter": "http2", + "kind": "event", + "name": "aborted", + "signature": "Event: `'aborted'`", + "label": "'aborted'", + "apiSymbol": "'aborted'", + "depth": 3, + "scope": "api", + "anchor": "event-aborted_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:052c6a11243c", + "chapter": "http2", + "kind": "event", + "name": "close", + "signature": "Event: `'close'`", + "label": "'close'", + "apiSymbol": "'close'", + "depth": 3, + "scope": "api", + "anchor": "event-close_2", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:8e4623c9bee8", + "chapter": "http2", + "kind": "class", + "name": "http2.Http2ServerResponse", + "signature": "Class: `http2.Http2ServerResponse`", + "label": "http2.Http2ServerResponse", + "apiSymbol": "http2.Http2ServerResponse", + "depth": 2, + "scope": "api", + "anchor": "class-http2http2serverresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:2dddf8716f12", + "chapter": "http2", + "kind": "method", + "name": "addTrailers", + "signature": "`response.addTrailers(headers)`", + "label": "response.addTrailers(headers)", + "apiSymbol": "response.addTrailers", + "depth": 3, + "scope": "api", + "anchor": "responseaddtrailersheaders", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:ccf6193b4c76", + "chapter": "http2", + "kind": "method", + "name": "appendHeader", + "signature": "`response.appendHeader(name, value)`", + "label": "response.appendHeader(name, value)", + "apiSymbol": "response.appendHeader", + "depth": 3, + "scope": "api", + "anchor": "responseappendheadername-value", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:2cd90631110d", + "chapter": "http2", + "kind": "method", + "name": "createPushResponse", + "signature": "`response.createPushResponse(headers, callback)`", + "label": "response.createPushResponse(headers, callback)", + "apiSymbol": "response.createPushResponse", + "depth": 3, + "scope": "api", + "anchor": "responsecreatepushresponseheaders-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:389de6adb8e2", + "chapter": "http2", + "kind": "method", + "name": "end", + "signature": "`response.end([data[, encoding]][, callback])`", + "label": "response.end([data[, encoding]][, callback])", + "apiSymbol": "response.end", + "depth": 3, + "scope": "api", + "anchor": "responseenddata-encoding-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:response.end", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:02f00d298856", + "chapter": "http2", + "kind": "method", + "name": "getHeader", + "signature": "`response.getHeader(name)`", + "label": "response.getHeader(name)", + "apiSymbol": "response.getHeader", + "depth": 3, + "scope": "api", + "anchor": "responsegetheadername", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:response.getHeader", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:90e7c1967850", + "chapter": "http2", + "kind": "method", + "name": "getHeaderNames", + "signature": "`response.getHeaderNames()`", + "label": "response.getHeaderNames()", + "apiSymbol": "response.getHeaderNames", + "depth": 3, + "scope": "api", + "anchor": "responsegetheadernames", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:0870e5404508", + "chapter": "http2", + "kind": "method", + "name": "getHeaders", + "signature": "`response.getHeaders()`", + "label": "response.getHeaders()", + "apiSymbol": "response.getHeaders", + "depth": 3, + "scope": "api", + "anchor": "responsegetheaders", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:6a7c0e7f4b3e", + "chapter": "http2", + "kind": "method", + "name": "hasHeader", + "signature": "`response.hasHeader(name)`", + "label": "response.hasHeader(name)", + "apiSymbol": "response.hasHeader", + "depth": 3, + "scope": "api", + "anchor": "responsehasheadername", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:response.hasHeader", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:3c0929523f76", + "chapter": "http2", + "kind": "method", + "name": "removeHeader", + "signature": "`response.removeHeader(name)`", + "label": "response.removeHeader(name)", + "apiSymbol": "response.removeHeader", + "depth": 3, + "scope": "api", + "anchor": "responseremoveheadername", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:response.removeHeader", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:8a0628bc7af4", + "chapter": "http2", + "kind": "method", + "name": "setHeader", + "signature": "`response.setHeader(name, value)`", + "label": "response.setHeader(name, value)", + "apiSymbol": "response.setHeader", + "depth": 3, + "scope": "api", + "anchor": "responsesetheadername-value", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:response.setHeader", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:8c76c08fe197", + "chapter": "http2", + "kind": "method", + "name": "setTimeout", + "signature": "`response.setTimeout(msecs[, callback])`", + "label": "response.setTimeout(msecs[, callback])", + "apiSymbol": "response.setTimeout", + "depth": 3, + "scope": "api", + "anchor": "responsesettimeoutmsecs-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:9417df303cd3", + "chapter": "http2", + "kind": "method", + "name": "write", + "signature": "`response.write(chunk[, encoding][, callback])`", + "label": "response.write(chunk[, encoding][, callback])", + "apiSymbol": "response.write", + "depth": 3, + "scope": "api", + "anchor": "responsewritechunk-encoding-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:response.write", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:b2265ee703a4", + "chapter": "http2", + "kind": "method", + "name": "writeContinue", + "signature": "`response.writeContinue()`", + "label": "response.writeContinue()", + "apiSymbol": "response.writeContinue", + "depth": 3, + "scope": "api", + "anchor": "responsewritecontinue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:d1481ac6ad80", + "chapter": "http2", + "kind": "method", + "name": "writeEarlyHints", + "signature": "`response.writeEarlyHints(hints)`", + "label": "response.writeEarlyHints(hints)", + "apiSymbol": "response.writeEarlyHints", + "depth": 3, + "scope": "api", + "anchor": "responsewriteearlyhintshints", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:b551a5ca3a62", + "chapter": "http2", + "kind": "method", + "name": "writeHead", + "signature": "`response.writeHead(statusCode[, statusMessage][, headers])`", + "label": "response.writeHead(statusCode[, statusMessage][, headers])", + "apiSymbol": "response.writeHead", + "depth": 3, + "scope": "api", + "anchor": "responsewriteheadstatuscode-statusmessage-headers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:response.writeHead", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:ae9b6a1ea75e", + "chapter": "http2", + "kind": "net.Socket|tls.TLSSocket", + "name": "Type", + "signature": "`connection` Type: {net.Socket|tls.TLSSocket}", + "label": "connection", + "apiSymbol": "connection", + "depth": 3, + "scope": "api", + "anchor": "class-http2http2serverresponse", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. Use [`response.socket`][].", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "ancestor" + }, + { + "id": "http2:5dd06d15a6f6", + "chapter": "http2", + "kind": "boolean", + "name": "Type", + "signature": "`finished` Type: {boolean}", + "label": "finished", + "apiSymbol": "finished", + "depth": 3, + "scope": "api", + "anchor": "class-http2http2serverresponse", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. Use [`response.writableEnded`][].", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "ancestor" + }, + { + "id": "http2:769f28a2ad9b", + "chapter": "http2", + "kind": "boolean", + "name": "Type", + "signature": "`headersSent` Type: {boolean}", + "label": "headersSent", + "apiSymbol": "headersSent", + "depth": 3, + "scope": "api", + "anchor": "class-http2http2serverresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "ancestor" + }, + { + "id": "http2:e5da26d368f8", + "chapter": "http2", + "kind": "http2.Http2ServerRequest", + "name": "Type", + "signature": "`req` Type: {http2.Http2ServerRequest}", + "label": "req", + "apiSymbol": "req", + "depth": 3, + "scope": "api", + "anchor": "class-http2http2serverresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "ancestor" + }, + { + "id": "http2:6ee664a5a21b", + "chapter": "http2", + "kind": "boolean", + "name": "Type", + "signature": "`sendDate` Type: {boolean}", + "label": "sendDate", + "apiSymbol": "sendDate", + "depth": 3, + "scope": "api", + "anchor": "class-http2http2serverresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "ancestor" + }, + { + "id": "http2:cd987e511544", + "chapter": "http2", + "kind": "net.Socket|tls.TLSSocket", + "name": "Type", + "signature": "`socket` Type: {net.Socket|tls.TLSSocket}", + "label": "socket", + "apiSymbol": "socket", + "depth": 3, + "scope": "api", + "anchor": "class-http2http2serverresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "ancestor" + }, + { + "id": "http2:ce3de195f200", + "chapter": "http2", + "kind": "number", + "name": "Type", + "signature": "`statusCode` Type: {number}", + "label": "statusCode", + "apiSymbol": "statusCode", + "depth": 3, + "scope": "api", + "anchor": "class-http2http2serverresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "ancestor" + }, + { + "id": "http2:dc8b64206bbd", + "chapter": "http2", + "kind": "string", + "name": "Type", + "signature": "`statusMessage` Type: {string}", + "label": "statusMessage", + "apiSymbol": "statusMessage", + "depth": 3, + "scope": "api", + "anchor": "class-http2http2serverresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "ancestor" + }, + { + "id": "http2:3bc6917ba9ea", + "chapter": "http2", + "kind": "Http2Stream", + "name": "Type", + "signature": "`stream` Type: {Http2Stream}", + "label": "stream", + "apiSymbol": "stream", + "depth": 3, + "scope": "api", + "anchor": "class-http2http2serverresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "ancestor" + }, + { + "id": "http2:001356307366", + "chapter": "http2", + "kind": "boolean", + "name": "Type", + "signature": "`writableEnded` Type: {boolean}", + "label": "writableEnded", + "apiSymbol": "writableEnded", + "depth": 3, + "scope": "api", + "anchor": "class-http2http2serverresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "ancestor" + }, + { + "id": "http2:ff3b0bf7f43d", + "chapter": "http2", + "kind": "event", + "name": "close", + "signature": "Event: `'close'`", + "label": "'close'", + "apiSymbol": "'close'", + "depth": 3, + "scope": "api", + "anchor": "event-close_3", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:67d56ddf01e4", + "chapter": "http2", + "kind": "event", + "name": "finish", + "signature": "Event: `'finish'`", + "label": "'finish'", + "apiSymbol": "'finish'", + "depth": 3, + "scope": "api", + "anchor": "event-finish", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "http2:35a55b34e36d", + "chapter": "http2", + "kind": "module", + "name": "collecting_http/2_performance_metrics", + "signature": "Collecting HTTP/2 performance metrics", + "label": "Collecting HTTP/2 performance metrics", + "apiSymbol": "collecting_http/2_performance_metrics", + "depth": 1, + "scope": "documentation", + "anchor": "collecting-http2-performance-metrics", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "http2:c262b200b595", + "chapter": "http2", + "kind": "module", + "name": "note_on_`:authority`_and_`host`", + "signature": "Note on `:authority` and `host`", + "label": "Note on :authority and host", + "apiSymbol": ":authority", + "depth": 1, + "scope": "api", + "anchor": "note-on-authority-and-host", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:http2" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:http2" + }, + "anchorSource": "exact" + }, + { + "id": "https:30e1fa35e1bd", + "chapter": "https", + "kind": "module", + "name": "https", + "signature": "HTTPS", + "label": "HTTPS", + "apiSymbol": "https", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "https:e807dbac0450", + "chapter": "https", + "kind": "module", + "name": "determining_if_crypto_support_is_unavailable", + "signature": "Determining if crypto support is unavailable", + "label": "Determining if crypto support is unavailable", + "apiSymbol": "determining_if_crypto_support_is_unavailable", + "depth": 1, + "scope": "documentation", + "anchor": "determining-if-crypto-support-is-unavailable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "https:7c1063eafcf3", + "chapter": "https", + "kind": "class", + "name": "https.Agent", + "signature": "Class: `https.Agent`", + "label": "https.Agent", + "apiSymbol": "https.Agent", + "depth": 1, + "scope": "api", + "anchor": "class-httpsagent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:https" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:https.Agent", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "https:f180dfed7707", + "chapter": "https", + "kind": "class", + "name": "https.Server", + "signature": "Class: `https.Server`", + "label": "https.Server", + "apiSymbol": "https.Server", + "depth": 1, + "scope": "api", + "anchor": "class-httpsserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:https" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:https.Server" + }, + "anchorSource": "exact" + }, + { + "id": "https:2c15a6b7a66d", + "chapter": "https", + "kind": "method", + "name": "close", + "signature": "`server.close([callback])`", + "label": "server.close([callback])", + "apiSymbol": "server.close", + "depth": 2, + "scope": "api", + "anchor": "serverclosecallback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:server.close", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:https" + }, + "anchorSource": "exact" + }, + { + "id": "https:3aa494c7e94b", + "chapter": "https", + "kind": "method", + "name": "[Symbol.asyncDispose]", + "signature": "`server[Symbol.asyncDispose]()`", + "label": "server[Symbol.asyncDispose]()", + "apiSymbol": "server", + "depth": 2, + "scope": "api", + "anchor": "serversymbolasyncdispose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:https" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:https" + }, + "anchorSource": "exact" + }, + { + "id": "https:e549c5016960", + "chapter": "https", + "kind": "method", + "name": "closeAllConnections", + "signature": "`server.closeAllConnections()`", + "label": "server.closeAllConnections()", + "apiSymbol": "server.closeAllConnections", + "depth": 2, + "scope": "api", + "anchor": "servercloseallconnections", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:https" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:https" + }, + "anchorSource": "exact" + }, + { + "id": "https:b7235bc8bef3", + "chapter": "https", + "kind": "method", + "name": "closeIdleConnections", + "signature": "`server.closeIdleConnections()`", + "label": "server.closeIdleConnections()", + "apiSymbol": "server.closeIdleConnections", + "depth": 2, + "scope": "api", + "anchor": "servercloseidleconnections", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:https" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:https" + }, + "anchorSource": "exact" + }, + { + "id": "https:2bb41f479711", + "chapter": "https", + "kind": "method", + "name": "listen", + "signature": "`server.listen()`", + "label": "server.listen()", + "apiSymbol": "server.listen", + "depth": 2, + "scope": "api", + "anchor": "serverlisten", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:server.listen", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:https" + }, + "anchorSource": "exact" + }, + { + "id": "https:238525ea3743", + "chapter": "https", + "kind": "method", + "name": "setTimeout", + "signature": "`server.setTimeout([msecs][, callback])`", + "label": "server.setTimeout([msecs][, callback])", + "apiSymbol": "server.setTimeout", + "depth": 2, + "scope": "api", + "anchor": "serversettimeoutmsecs-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:https" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:https" + }, + "anchorSource": "exact" + }, + { + "id": "https:79d27bbfc81c", + "chapter": "https", + "kind": "number", + "name": "Type", + "signature": "`headersTimeout` Type: {number} **Default:** `60000`", + "label": "headersTimeout", + "apiSymbol": "headersTimeout", + "depth": 2, + "scope": "api", + "anchor": "class-httpsserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:headersTimeout", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:https" + }, + "anchorSource": "ancestor" + }, + { + "id": "https:705c007905d2", + "chapter": "https", + "kind": "number", + "name": "Type", + "signature": "`maxHeadersCount` Type: {number} **Default:** `2000`", + "label": "maxHeadersCount", + "apiSymbol": "maxHeadersCount", + "depth": 2, + "scope": "api", + "anchor": "class-httpsserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:https" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:https" + }, + "anchorSource": "ancestor" + }, + { + "id": "https:d3f2bf1b271e", + "chapter": "https", + "kind": "number", + "name": "Type", + "signature": "`requestTimeout` Type: {number} **Default:** `300000`", + "label": "requestTimeout", + "apiSymbol": "requestTimeout", + "depth": 2, + "scope": "api", + "anchor": "class-httpsserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:requestTimeout", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:https" + }, + "anchorSource": "ancestor" + }, + { + "id": "https:b0a22c39ef5b", + "chapter": "https", + "kind": "number", + "name": "Type", + "signature": "`timeout` Type: {number} **Default:** 0 (no timeout)", + "label": "timeout", + "apiSymbol": "timeout", + "depth": 2, + "scope": "api", + "anchor": "class-httpsserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:timeout", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:https" + }, + "anchorSource": "ancestor" + }, + { + "id": "https:dd64c534c494", + "chapter": "https", + "kind": "number", + "name": "Type", + "signature": "`keepAliveTimeout` Type: {number} **Default:** `5000` (5 seconds)", + "label": "keepAliveTimeout", + "apiSymbol": "keepAliveTimeout", + "depth": 2, + "scope": "api", + "anchor": "class-httpsserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:keepAliveTimeout", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:https" + }, + "anchorSource": "ancestor" + }, + { + "id": "https:19a8c08fbe38", + "chapter": "https", + "kind": "method", + "name": "createServer", + "signature": "`https.createServer([options][, requestListener])`", + "label": "https.createServer([options][, requestListener])", + "apiSymbol": "https.createServer", + "depth": 1, + "scope": "api", + "anchor": "httpscreateserveroptions-requestlistener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:https.createServer", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:https.createServer" + }, + "anchorSource": "exact" + }, + { + "id": "https:e6e6ab3162b3", + "chapter": "https", + "kind": "method", + "name": "get", + "signature": "`https.get(options[, callback])`", + "label": "https.get(options[, callback])", + "apiSymbol": "https.get", + "depth": 1, + "scope": "api", + "anchor": "httpsgetoptions-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:https.get", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:https.get", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "https:5dfd4dcbf840", + "chapter": "https", + "kind": "method", + "name": "get", + "signature": "`https.get(url[, options][, callback])`", + "label": "https.get(url[, options][, callback])", + "apiSymbol": "https.get", + "depth": 1, + "scope": "api", + "anchor": "httpsgeturl-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:https.get", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:https.get", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "https:4495f7d7245b", + "chapter": "https", + "kind": "method", + "name": "request", + "signature": "`https.request(options[, callback])`", + "label": "https.request(options[, callback])", + "apiSymbol": "https.request", + "depth": 1, + "scope": "api", + "anchor": "httpsrequestoptions-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:https.request", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:https.request", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "https:90a745bc6f83", + "chapter": "https", + "kind": "method", + "name": "request", + "signature": "`https.request(url[, options][, callback])`", + "label": "https.request(url[, options][, callback])", + "apiSymbol": "https.request", + "depth": 1, + "scope": "api", + "anchor": "httpsrequesturl-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:https.request", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:https.request", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "https:411d4901404d", + "chapter": "https", + "kind": "section", + "name": "globalAgent", + "signature": "`https.globalAgent`", + "label": "https.globalAgent", + "apiSymbol": "https.globalAgent", + "depth": 1, + "scope": "api", + "anchor": "httpsglobalagent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:https" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:https.globalAgent", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "inspector:75d4a0236715", + "chapter": "inspector", + "kind": "module", + "name": "inspector", + "signature": "Inspector", + "label": "Inspector", + "apiSymbol": "inspector", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "derived:descendants" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "derived:descendants" + }, + "anchorSource": "chapter" + }, + { + "id": "inspector:b2df6c821ff3", + "chapter": "inspector", + "kind": "module", + "name": "promises_api", + "signature": "Promises API", + "label": "Promises API", + "apiSymbol": "promises_api", + "depth": 1, + "scope": "documentation", + "anchor": "promises-api", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "inspector:7e98f25e350f", + "chapter": "inspector", + "kind": "class", + "name": "inspector.Session", + "signature": "Class: `inspector.Session`", + "label": "inspector.Session", + "apiSymbol": "inspector.Session", + "depth": 2, + "scope": "api", + "anchor": "class-inspectorsession", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:inspector" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:inspector,node:inspector/promises" + }, + "anchorSource": "exact" + }, + { + "id": "inspector:da810b155bf9", + "chapter": "inspector", + "kind": "method", + "name": "connect", + "signature": "`session.connect()`", + "label": "session.connect()", + "apiSymbol": "session.connect", + "depth": 3, + "scope": "api", + "anchor": "sessionconnect", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:inspector" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:inspector,node:inspector/promises" + }, + "anchorSource": "exact" + }, + { + "id": "inspector:2fbe3854b786", + "chapter": "inspector", + "kind": "method", + "name": "connectToMainThread", + "signature": "`session.connectToMainThread()`", + "label": "session.connectToMainThread()", + "apiSymbol": "session.connectToMainThread", + "depth": 3, + "scope": "api", + "anchor": "sessionconnecttomainthread", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:inspector" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:inspector,node:inspector/promises" + }, + "anchorSource": "exact" + }, + { + "id": "inspector:0f46763d8dcd", + "chapter": "inspector", + "kind": "method", + "name": "disconnect", + "signature": "`session.disconnect()`", + "label": "session.disconnect()", + "apiSymbol": "session.disconnect", + "depth": 3, + "scope": "api", + "anchor": "sessiondisconnect", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:inspector" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:inspector,node:inspector/promises" + }, + "anchorSource": "exact" + }, + { + "id": "inspector:8e69ad0e666b", + "chapter": "inspector", + "kind": "method", + "name": "post", + "signature": "`session.post(method[, params])`", + "label": "session.post(method[, params])", + "apiSymbol": "session.post", + "depth": 3, + "scope": "api", + "anchor": "sessionpostmethod-params", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:inspector" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:inspector,node:inspector/promises" + }, + "anchorSource": "exact" + }, + { + "id": "inspector:bc5521310b5d", + "chapter": "inspector", + "kind": "module", + "name": "cpu_profiler", + "signature": "CPU profiler", + "label": "CPU profiler", + "apiSymbol": "cpu_profiler", + "depth": 4, + "scope": "documentation", + "anchor": "cpu-profiler", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "inspector:c204a61db134", + "chapter": "inspector", + "kind": "module", + "name": "heap_profiler", + "signature": "Heap profiler", + "label": "Heap profiler", + "apiSymbol": "heap_profiler", + "depth": 4, + "scope": "documentation", + "anchor": "heap-profiler", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "inspector:b8dd22ac0374", + "chapter": "inspector", + "kind": "event", + "name": "inspectorNotification", + "signature": "Event: `'inspectorNotification'`", + "label": "'inspectorNotification'", + "apiSymbol": "'inspectorNotification'", + "depth": 3, + "scope": "api", + "anchor": "event-inspectornotification", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:inspector" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:inspector,node:inspector/promises" + }, + "anchorSource": "exact" + }, + { + "id": "inspector:a4eb954ec85d", + "chapter": "inspector", + "kind": "event", + "name": "`", + "signature": "Event: ``", + "label": "", + "apiSymbol": "", + "depth": 3, + "scope": "api", + "anchor": "event-inspector-protocol-method", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:inspector" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:inspector,node:inspector/promises" + }, + "anchorSource": "exact" + }, + { + "id": "inspector:694828ba889d", + "chapter": "inspector", + "kind": "module", + "name": "callback_api", + "signature": "Callback API", + "label": "Callback API", + "apiSymbol": "callback_api", + "depth": 1, + "scope": "documentation", + "anchor": "callback-api", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "inspector:144b7c164639", + "chapter": "inspector", + "kind": "class", + "name": "inspector.Session", + "signature": "Class: `inspector.Session`", + "label": "inspector.Session", + "apiSymbol": "inspector.Session", + "depth": 2, + "scope": "api", + "anchor": "class-inspectorsession_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:inspector" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:inspector,node:inspector/promises" + }, + "anchorSource": "exact" + }, + { + "id": "inspector:11f760f5ac88", + "chapter": "inspector", + "kind": "method", + "name": "connect", + "signature": "`session.connect()`", + "label": "session.connect()", + "apiSymbol": "session.connect", + "depth": 3, + "scope": "api", + "anchor": "sessionconnect_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:inspector" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:inspector,node:inspector/promises" + }, + "anchorSource": "exact" + }, + { + "id": "inspector:6a4172b0db63", + "chapter": "inspector", + "kind": "method", + "name": "connectToMainThread", + "signature": "`session.connectToMainThread()`", + "label": "session.connectToMainThread()", + "apiSymbol": "session.connectToMainThread", + "depth": 3, + "scope": "api", + "anchor": "sessionconnecttomainthread_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:inspector" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:inspector,node:inspector/promises" + }, + "anchorSource": "exact" + }, + { + "id": "inspector:07954dae5df5", + "chapter": "inspector", + "kind": "method", + "name": "disconnect", + "signature": "`session.disconnect()`", + "label": "session.disconnect()", + "apiSymbol": "session.disconnect", + "depth": 3, + "scope": "api", + "anchor": "sessiondisconnect_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:inspector" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:inspector,node:inspector/promises" + }, + "anchorSource": "exact" + }, + { + "id": "inspector:8a9096e0d872", + "chapter": "inspector", + "kind": "method", + "name": "post", + "signature": "`session.post(method[, params][, callback])`", + "label": "session.post(method[, params][, callback])", + "apiSymbol": "session.post", + "depth": 3, + "scope": "api", + "anchor": "sessionpostmethod-params-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:inspector" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:inspector,node:inspector/promises" + }, + "anchorSource": "exact" + }, + { + "id": "inspector:ab074a1d2909", + "chapter": "inspector", + "kind": "module", + "name": "cpu_profiler", + "signature": "CPU profiler", + "label": "CPU profiler", + "apiSymbol": "cpu_profiler", + "depth": 4, + "scope": "documentation", + "anchor": "cpu-profiler_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "inspector:0c91c5395039", + "chapter": "inspector", + "kind": "module", + "name": "heap_profiler", + "signature": "Heap profiler", + "label": "Heap profiler", + "apiSymbol": "heap_profiler", + "depth": 4, + "scope": "documentation", + "anchor": "heap-profiler_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "inspector:f429a2197858", + "chapter": "inspector", + "kind": "event", + "name": "inspectorNotification", + "signature": "Event: `'inspectorNotification'`", + "label": "'inspectorNotification'", + "apiSymbol": "'inspectorNotification'", + "depth": 3, + "scope": "api", + "anchor": "event-inspectornotification_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:inspector" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:inspector,node:inspector/promises" + }, + "anchorSource": "exact" + }, + { + "id": "inspector:11fb65d02d7f", + "chapter": "inspector", + "kind": "event", + "name": "`;", + "signature": "Event: ``;", + "label": ";", + "apiSymbol": "", + "depth": 3, + "scope": "api", + "anchor": "event-inspector-protocol-method_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:inspector" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:inspector,node:inspector/promises" + }, + "anchorSource": "exact" + }, + { + "id": "inspector:b744c730d93d", + "chapter": "inspector", + "kind": "module", + "name": "common_objects", + "signature": "Common Objects", + "label": "Common Objects", + "apiSymbol": "common_objects", + "depth": 1, + "scope": "documentation", + "anchor": "common-objects", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "inspector:495a3305b81e", + "chapter": "inspector", + "kind": "method", + "name": "close", + "signature": "`inspector.close()`", + "label": "inspector.close()", + "apiSymbol": "inspector.close", + "depth": 2, + "scope": "api", + "anchor": "inspectorclose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:inspector" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:inspector,node:inspector/promises" + }, + "anchorSource": "exact" + }, + { + "id": "inspector:36b6a1d4187f", + "chapter": "inspector", + "kind": "method", + "name": "open", + "signature": "`inspector.open([port[, host[, wait]]])`", + "label": "inspector.open([port[, host[, wait]]])", + "apiSymbol": "inspector.open", + "depth": 2, + "scope": "api", + "anchor": "inspectoropenport-host-wait", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:inspector" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:inspector,node:inspector/promises" + }, + "anchorSource": "exact" + }, + { + "id": "inspector:c2b9b25f44d8", + "chapter": "inspector", + "kind": "method", + "name": "url", + "signature": "`inspector.url()`", + "label": "inspector.url()", + "apiSymbol": "inspector.url", + "depth": 2, + "scope": "api", + "anchor": "inspectorurl", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:inspector" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:inspector,node:inspector/promises" + }, + "anchorSource": "exact" + }, + { + "id": "inspector:ac0af066a800", + "chapter": "inspector", + "kind": "method", + "name": "waitForDebugger", + "signature": "`inspector.waitForDebugger()`", + "label": "inspector.waitForDebugger()", + "apiSymbol": "inspector.waitForDebugger", + "depth": 2, + "scope": "api", + "anchor": "inspectorwaitfordebugger", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:inspector" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:inspector,node:inspector/promises" + }, + "anchorSource": "exact" + }, + { + "id": "inspector:eeb4613729c7", + "chapter": "inspector", + "kind": "Object", + "name": "Type", + "signature": "`console` Type: {Object} An object to send messages to the remote inspector console.", + "label": "console", + "apiSymbol": "console", + "depth": 2, + "scope": "api", + "anchor": "common-objects", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:inspector" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:inspector,node:inspector/promises" + }, + "anchorSource": "ancestor" + }, + { + "id": "inspector:b51e0e8ad4a2", + "chapter": "inspector", + "kind": "module", + "name": "integration_with_devtools", + "signature": "Integration with DevTools", + "label": "Integration with DevTools", + "apiSymbol": "integration_with_devtools", + "depth": 1, + "scope": "documentation", + "anchor": "integration-with-devtools", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "inspector:daecf7c2a28f", + "chapter": "inspector", + "kind": "method", + "name": "dataReceived", + "signature": "`inspector.Network.dataReceived([params])`", + "label": "inspector.Network.dataReceived([params])", + "apiSymbol": "inspector.Network.dataReceived", + "depth": 2, + "scope": "api", + "anchor": "inspectornetworkdatareceivedparams", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:inspector" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:inspector,node:inspector/promises" + }, + "anchorSource": "exact" + }, + { + "id": "inspector:9923d95e16ba", + "chapter": "inspector", + "kind": "method", + "name": "dataSent", + "signature": "`inspector.Network.dataSent([params])`", + "label": "inspector.Network.dataSent([params])", + "apiSymbol": "inspector.Network.dataSent", + "depth": 2, + "scope": "api", + "anchor": "inspectornetworkdatasentparams", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:inspector" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:inspector,node:inspector/promises" + }, + "anchorSource": "exact" + }, + { + "id": "inspector:782080f91c05", + "chapter": "inspector", + "kind": "method", + "name": "requestWillBeSent", + "signature": "`inspector.Network.requestWillBeSent([params])`", + "label": "inspector.Network.requestWillBeSent([params])", + "apiSymbol": "inspector.Network.requestWillBeSent", + "depth": 2, + "scope": "api", + "anchor": "inspectornetworkrequestwillbesentparams", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:inspector" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:inspector,node:inspector/promises" + }, + "anchorSource": "exact" + }, + { + "id": "inspector:9849da6fbbfb", + "chapter": "inspector", + "kind": "method", + "name": "responseReceived", + "signature": "`inspector.Network.responseReceived([params])`", + "label": "inspector.Network.responseReceived([params])", + "apiSymbol": "inspector.Network.responseReceived", + "depth": 2, + "scope": "api", + "anchor": "inspectornetworkresponsereceivedparams", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:inspector" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:inspector,node:inspector/promises" + }, + "anchorSource": "exact" + }, + { + "id": "inspector:31d03ff45321", + "chapter": "inspector", + "kind": "method", + "name": "loadingFinished", + "signature": "`inspector.Network.loadingFinished([params])`", + "label": "inspector.Network.loadingFinished([params])", + "apiSymbol": "inspector.Network.loadingFinished", + "depth": 2, + "scope": "api", + "anchor": "inspectornetworkloadingfinishedparams", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:inspector" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:inspector,node:inspector/promises" + }, + "anchorSource": "exact" + }, + { + "id": "inspector:283d5981db84", + "chapter": "inspector", + "kind": "method", + "name": "loadingFailed", + "signature": "`inspector.Network.loadingFailed([params])`", + "label": "inspector.Network.loadingFailed([params])", + "apiSymbol": "inspector.Network.loadingFailed", + "depth": 2, + "scope": "api", + "anchor": "inspectornetworkloadingfailedparams", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:inspector" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:inspector,node:inspector/promises" + }, + "anchorSource": "exact" + }, + { + "id": "inspector:8194789fc3ed", + "chapter": "inspector", + "kind": "method", + "name": "webSocketCreated", + "signature": "`inspector.Network.webSocketCreated([params])`", + "label": "inspector.Network.webSocketCreated([params])", + "apiSymbol": "inspector.Network.webSocketCreated", + "depth": 2, + "scope": "api", + "anchor": "inspectornetworkwebsocketcreatedparams", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:inspector" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:inspector,node:inspector/promises" + }, + "anchorSource": "exact" + }, + { + "id": "inspector:073a58206ebd", + "chapter": "inspector", + "kind": "method", + "name": "webSocketHandshakeResponseReceived", + "signature": "`inspector.Network.webSocketHandshakeResponseReceived([params])`", + "label": "inspector.Network.webSocketHandshakeResponseReceived([params])", + "apiSymbol": "inspector.Network.webSocketHandshakeResponseReceived", + "depth": 2, + "scope": "api", + "anchor": "inspectornetworkwebsockethandshakeresponsereceivedparams", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:inspector" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:inspector,node:inspector/promises" + }, + "anchorSource": "exact" + }, + { + "id": "inspector:e32f46ffbe49", + "chapter": "inspector", + "kind": "method", + "name": "webSocketClosed", + "signature": "`inspector.Network.webSocketClosed([params])`", + "label": "inspector.Network.webSocketClosed([params])", + "apiSymbol": "inspector.Network.webSocketClosed", + "depth": 2, + "scope": "api", + "anchor": "inspectornetworkwebsocketclosedparams", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:inspector" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:inspector,node:inspector/promises" + }, + "anchorSource": "exact" + }, + { + "id": "inspector:754fde4d242c", + "chapter": "inspector", + "kind": "section", + "name": "put", + "signature": "`inspector.NetworkResources.put`", + "label": "inspector.NetworkResources.put", + "apiSymbol": "inspector.NetworkResources.put", + "depth": 2, + "scope": "api", + "anchor": "inspectornetworkresourcesput", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active Development", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:inspector" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:inspector,node:inspector/promises" + }, + "anchorSource": "exact" + }, + { + "id": "inspector:631a4889f729", + "chapter": "inspector", + "kind": "module", + "name": "support_of_breakpoints", + "signature": "Support of breakpoints", + "label": "Support of breakpoints", + "apiSymbol": "support_of_breakpoints", + "depth": 1, + "scope": "documentation", + "anchor": "support-of-breakpoints", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "intl:3b7574185290", + "chapter": "intl", + "kind": "misc", + "name": "Internationalization support", + "signature": "Internationalization support", + "label": "Internationalization support", + "apiSymbol": "Internationalization support", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:intl" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:intl" + }, + "anchorSource": "chapter" + }, + { + "id": "intl:0c61f85dc57f", + "chapter": "intl", + "kind": "misc", + "name": "options_for_building_node.js", + "signature": "Options for building Node.js", + "label": "Options for building Node.js", + "apiSymbol": "options_for_building_node.js", + "depth": 1, + "scope": "documentation", + "anchor": "options-for-building-nodejs", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "intl:fe2878ac25a9", + "chapter": "intl", + "kind": "module", + "name": "disable_all_internationalization_features_(`none`)", + "signature": "Disable all internationalization features (`none`)", + "label": "Disable all internationalization features (none)", + "apiSymbol": "none", + "depth": 2, + "scope": "metadata", + "anchor": "disable-all-internationalization-features-none", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:intl" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:intl" + }, + "anchorSource": "exact" + }, + { + "id": "intl:1a7f0f56b9a0", + "chapter": "intl", + "kind": "module", + "name": "build_with_a_pre-installed_icu_(`system-icu`)", + "signature": "Build with a pre-installed ICU (`system-icu`)", + "label": "Build with a pre-installed ICU (system-icu)", + "apiSymbol": "system-icu", + "depth": 2, + "scope": "metadata", + "anchor": "build-with-a-pre-installed-icu-system-icu", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:intl" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:intl" + }, + "anchorSource": "exact" + }, + { + "id": "intl:3e48a128971b", + "chapter": "intl", + "kind": "module", + "name": "embed_a_limited_set_of_icu_data_(`small-icu`)", + "signature": "Embed a limited set of ICU data (`small-icu`)", + "label": "Embed a limited set of ICU data (small-icu)", + "apiSymbol": "small-icu", + "depth": 2, + "scope": "metadata", + "anchor": "embed-a-limited-set-of-icu-data-small-icu", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:intl" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:intl" + }, + "anchorSource": "exact" + }, + { + "id": "intl:b0ebb1fd6a57", + "chapter": "intl", + "kind": "module", + "name": "providing_icu_data_at_runtime", + "signature": "Providing ICU data at runtime", + "label": "Providing ICU data at runtime", + "apiSymbol": "providing_icu_data_at_runtime", + "depth": 3, + "scope": "metadata", + "anchor": "providing-icu-data-at-runtime", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:intl" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:intl" + }, + "anchorSource": "exact" + }, + { + "id": "intl:33d1f07daf6c", + "chapter": "intl", + "kind": "module", + "name": "embed_the_entire_icu_(`full-icu`)", + "signature": "Embed the entire ICU (`full-icu`)", + "label": "Embed the entire ICU (full-icu)", + "apiSymbol": "full-icu", + "depth": 2, + "scope": "metadata", + "anchor": "embed-the-entire-icu-full-icu", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:intl" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:intl" + }, + "anchorSource": "exact" + }, + { + "id": "intl:c8abd49ee5de", + "chapter": "intl", + "kind": "misc", + "name": "detecting_internationalization_support", + "signature": "Detecting internationalization support", + "label": "Detecting internationalization support", + "apiSymbol": "detecting_internationalization_support", + "depth": 1, + "scope": "documentation", + "anchor": "detecting-internationalization-support", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "modules:407c51651126", + "chapter": "modules", + "kind": "module", + "name": "module", + "signature": "Modules: CommonJS modules", + "label": "Modules: CommonJS modules", + "apiSymbol": "module", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/corpus/1596-cjs-modules/main.js", + "tests/corpus/1598-cjs-builtin-require/main.js", + "tests/corpus/1612-cjs-module-globals.cjs", + "tests/corpus/1629-require-main-filename.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts", + "tests/fixtures/npm/cases/create-require/main.ts", + "tests/fixtures/npm/cases/dynamic-import/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "modules:748c4e009d36", + "chapter": "modules", + "kind": "module", + "name": "loading_ecmascript_modules_using_`require()`", + "signature": "Loading ECMAScript modules using `require()`", + "label": "Loading ECMAScript modules using require()", + "apiSymbol": "require", + "depth": 1, + "scope": "api", + "anchor": "loading-ecmascript-modules-using-require", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-feature:modules.require", + "tests": [ + "tests/corpus/1612-cjs-module-globals.cjs", + "tests/corpus/1596-cjs-modules/main.js", + "tests/corpus/1629-require-main-filename.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-feature:modules.require", + "tests": [ + "tests/fixtures/npm/cases/create-require/main.ts", + "tests/fixtures/npm/cases/dynamic-import/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "modules:4211d4f133a2", + "chapter": "modules", + "kind": "module", + "name": "the_module_scope", + "signature": "The module scope", + "label": "The module scope", + "apiSymbol": "the_module_scope", + "depth": 1, + "scope": "documentation", + "anchor": "the-module-scope", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "modules:b261076c9f37", + "chapter": "modules", + "kind": "module", + "name": "`__dirname`", + "signature": "`__dirname`", + "label": "__dirname", + "apiSymbol": "__dirname", + "depth": 2, + "scope": "api", + "anchor": "__dirname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-feature:modules.__dirname", + "tests": [ + "tests/corpus/1612-cjs-module-globals.cjs", + "tests/corpus/1596-cjs-modules/main.js", + "tests/corpus/1629-require-main-filename.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-feature:modules.__dirname", + "tests": [ + "tests/fixtures/npm/cases/create-require/main.ts", + "tests/fixtures/npm/cases/dynamic-import/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "modules:e625dd8580d1", + "chapter": "modules", + "kind": "module", + "name": "`__filename`", + "signature": "`__filename`", + "label": "__filename", + "apiSymbol": "__filename", + "depth": 2, + "scope": "api", + "anchor": "__filename", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-feature:modules.__filename", + "tests": [ + "tests/corpus/1612-cjs-module-globals.cjs", + "tests/corpus/1596-cjs-modules/main.js", + "tests/corpus/1629-require-main-filename.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-feature:modules.__filename", + "tests": [ + "tests/fixtures/npm/cases/create-require/main.ts", + "tests/fixtures/npm/cases/dynamic-import/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "modules:d5b495045982", + "chapter": "modules", + "kind": "module", + "name": "`exports`", + "signature": "`exports`", + "label": "exports", + "apiSymbol": "exports", + "depth": 2, + "scope": "api", + "anchor": "exports", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-feature:modules.exports", + "tests": [ + "tests/corpus/1612-cjs-module-globals.cjs", + "tests/corpus/1596-cjs-modules/main.js", + "tests/corpus/1629-require-main-filename.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-feature:modules.exports", + "tests": [ + "tests/fixtures/npm/cases/create-require/main.ts", + "tests/fixtures/npm/cases/dynamic-import/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "modules:5a5f51b4fc3e", + "chapter": "modules", + "kind": "module", + "name": "`module`", + "signature": "`module`", + "label": "module", + "apiSymbol": "module", + "depth": 2, + "scope": "api", + "anchor": "module", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "unreviewed" + }, + "dynamic": { + "status": "partial", + "evidence": "island-feature:modules.module", + "tests": [ + "tests/fixtures/npm/cases/create-require/main.ts", + "tests/fixtures/npm/cases/dynamic-import/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "modules:056495e043c6", + "chapter": "modules", + "kind": "method", + "name": "require", + "signature": "`require(id)`", + "label": "require(id)", + "apiSymbol": "require", + "depth": 2, + "scope": "api", + "anchor": "requireid", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-feature:modules.require", + "tests": [ + "tests/corpus/1612-cjs-module-globals.cjs", + "tests/corpus/1596-cjs-modules/main.js", + "tests/corpus/1629-require-main-filename.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-feature:modules.require", + "tests": [ + "tests/fixtures/npm/cases/create-require/main.ts", + "tests/fixtures/npm/cases/dynamic-import/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "modules:954d775e870c", + "chapter": "modules", + "kind": "method", + "name": "resolve", + "signature": "`require.resolve(request[, options])`", + "label": "require.resolve(request[, options])", + "apiSymbol": "require.resolve", + "depth": 3, + "scope": "api", + "anchor": "requireresolverequest-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-feature:modules.require.resolve" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-feature:modules.require.resolve" + }, + "anchorSource": "exact" + }, + { + "id": "modules:249279b983c4", + "chapter": "modules", + "kind": "method", + "name": "paths", + "signature": "`require.resolve.paths(request)`", + "label": "require.resolve.paths(request)", + "apiSymbol": "require.resolve.paths", + "depth": 4, + "scope": "api", + "anchor": "requireresolvepathsrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-feature:modules.require.resolve.paths" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-feature:modules.require.resolve.paths" + }, + "anchorSource": "exact" + }, + { + "id": "modules:be556cbed19e", + "chapter": "modules", + "kind": "Object", + "name": "Type", + "signature": "`cache` Type: {Object}", + "label": "cache", + "apiSymbol": "cache", + "depth": 3, + "scope": "api", + "anchor": "requireid", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-feature:modules.cache" + }, + "dynamic": { + "status": "partial", + "evidence": "island-feature:modules.cache", + "tests": [ + "tests/fixtures/npm/cases/create-require/main.ts", + "tests/fixtures/npm/cases/dynamic-import/main.ts" + ] + }, + "anchorSource": "ancestor" + }, + { + "id": "modules:48aa32b742d7", + "chapter": "modules", + "kind": "Object", + "name": "Type", + "signature": "`extensions` Type: {Object}", + "label": "extensions", + "apiSymbol": "extensions", + "depth": 3, + "scope": "api", + "anchor": "requireid", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-feature:modules.extensions" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-feature:modules.extensions" + }, + "anchorSource": "ancestor" + }, + { + "id": "modules:3b647f98c57f", + "chapter": "modules", + "kind": "module | undefined", + "name": "Type", + "signature": "`main` Type: {module | undefined}", + "label": "main", + "apiSymbol": "main", + "depth": 3, + "scope": "api", + "anchor": "requireid", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-feature:modules.main", + "tests": [ + "tests/corpus/1612-cjs-module-globals.cjs", + "tests/corpus/1596-cjs-modules/main.js", + "tests/corpus/1629-require-main-filename.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-feature:modules.main" + }, + "anchorSource": "ancestor" + }, + { + "id": "modules:09f0d43f4cd8", + "chapter": "modules", + "kind": "module", + "name": "module", + "signature": "The `module` object", + "label": "The module object", + "apiSymbol": "module", + "depth": 1, + "scope": "api", + "anchor": "the-module-object", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "unreviewed" + }, + "dynamic": { + "status": "partial", + "evidence": "island-feature:modules.module", + "tests": [ + "tests/fixtures/npm/cases/create-require/main.ts", + "tests/fixtures/npm/cases/dynamic-import/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "modules:43f2429babdc", + "chapter": "modules", + "kind": "method", + "name": "require", + "signature": "`module.require(id)`", + "label": "module.require(id)", + "apiSymbol": "module.require", + "depth": 2, + "scope": "api", + "anchor": "modulerequireid", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-feature:modules.module.require", + "tests": [ + "tests/corpus/1612-cjs-module-globals.cjs", + "tests/corpus/1596-cjs-modules/main.js", + "tests/corpus/1629-require-main-filename.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-feature:modules.module.require" + }, + "anchorSource": "exact" + }, + { + "id": "modules:6da2d3248165", + "chapter": "modules", + "kind": "module\\[]", + "name": "Type", + "signature": "`children` Type: {module\\[]}", + "label": "children", + "apiSymbol": "children", + "depth": 2, + "scope": "api", + "anchor": "the-module-object", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-feature:modules.children" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-feature:modules.children" + }, + "anchorSource": "ancestor" + }, + { + "id": "modules:e063afa1f252", + "chapter": "modules", + "kind": "Object", + "name": "Type", + "signature": "`exports` Type: {Object}", + "label": "exports", + "apiSymbol": "exports", + "depth": 2, + "scope": "api", + "anchor": "the-module-object", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-feature:modules.exports", + "tests": [ + "tests/corpus/1612-cjs-module-globals.cjs", + "tests/corpus/1596-cjs-modules/main.js", + "tests/corpus/1629-require-main-filename.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-feature:modules.exports", + "tests": [ + "tests/fixtures/npm/cases/create-require/main.ts", + "tests/fixtures/npm/cases/dynamic-import/main.ts" + ] + }, + "anchorSource": "ancestor" + }, + { + "id": "modules:478c1a7222f7", + "chapter": "modules", + "kind": "module", + "name": "`exports`_shortcut", + "signature": "`exports` shortcut", + "label": "exports", + "apiSymbol": "exports", + "depth": 3, + "scope": "api", + "anchor": "exports-shortcut", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-feature:modules.exports", + "tests": [ + "tests/corpus/1612-cjs-module-globals.cjs", + "tests/corpus/1596-cjs-modules/main.js", + "tests/corpus/1629-require-main-filename.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-feature:modules.exports", + "tests": [ + "tests/fixtures/npm/cases/create-require/main.ts", + "tests/fixtures/npm/cases/dynamic-import/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "modules:d075de97814c", + "chapter": "modules", + "kind": "string", + "name": "Type", + "signature": "`filename` Type: {string}", + "label": "filename", + "apiSymbol": "filename", + "depth": 2, + "scope": "api", + "anchor": "the-module-object", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-feature:modules.filename", + "tests": [ + "tests/corpus/1612-cjs-module-globals.cjs", + "tests/corpus/1596-cjs-modules/main.js", + "tests/corpus/1629-require-main-filename.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-feature:modules.filename", + "tests": [ + "tests/fixtures/npm/cases/create-require/main.ts", + "tests/fixtures/npm/cases/dynamic-import/main.ts" + ] + }, + "anchorSource": "ancestor" + }, + { + "id": "modules:a9747d3ba468", + "chapter": "modules", + "kind": "string", + "name": "Type", + "signature": "`id` Type: {string}", + "label": "id", + "apiSymbol": "id", + "depth": 2, + "scope": "api", + "anchor": "the-module-object", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-feature:modules.id" + }, + "dynamic": { + "status": "partial", + "evidence": "island-feature:modules.id", + "tests": [ + "tests/fixtures/npm/cases/create-require/main.ts", + "tests/fixtures/npm/cases/dynamic-import/main.ts" + ] + }, + "anchorSource": "ancestor" + }, + { + "id": "modules:da6596907e16", + "chapter": "modules", + "kind": "boolean", + "name": "Type", + "signature": "`isPreloading` Type: {boolean} `true` if the module is running during the Node.js preload phase.", + "label": "isPreloading", + "apiSymbol": "isPreloading", + "depth": 2, + "scope": "api", + "anchor": "the-module-object", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-feature:modules.isPreloading" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-feature:modules.isPreloading" + }, + "anchorSource": "ancestor" + }, + { + "id": "modules:e6ff44b0445e", + "chapter": "modules", + "kind": "boolean", + "name": "Type", + "signature": "`loaded` Type: {boolean}", + "label": "loaded", + "apiSymbol": "loaded", + "depth": 2, + "scope": "api", + "anchor": "the-module-object", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-feature:modules.loaded" + }, + "dynamic": { + "status": "partial", + "evidence": "island-feature:modules.loaded", + "tests": [ + "tests/fixtures/npm/cases/create-require/main.ts", + "tests/fixtures/npm/cases/dynamic-import/main.ts" + ] + }, + "anchorSource": "ancestor" + }, + { + "id": "modules:a6403934f0b5", + "chapter": "modules", + "kind": "module | null | undefined", + "name": "Type", + "signature": "`parent` Type: {module | null | undefined}", + "label": "parent", + "apiSymbol": "parent", + "depth": 2, + "scope": "api", + "anchor": "the-module-object", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Please use [`require.main`][] and [`module.children`][] instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-feature:modules.parent" + }, + "dynamic": { + "status": "partial", + "evidence": "island-feature:modules.parent", + "tests": [ + "tests/fixtures/npm/cases/create-require/main.ts", + "tests/fixtures/npm/cases/dynamic-import/main.ts" + ] + }, + "anchorSource": "ancestor" + }, + { + "id": "modules:8093a07cb637", + "chapter": "modules", + "kind": "string", + "name": "Type", + "signature": "`path` Type: {string}", + "label": "path", + "apiSymbol": "path", + "depth": 2, + "scope": "api", + "anchor": "the-module-object", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "unreviewed" + }, + "dynamic": { + "status": "partial", + "evidence": "island-feature:modules.path", + "tests": [ + "tests/fixtures/npm/cases/create-require/main.ts", + "tests/fixtures/npm/cases/dynamic-import/main.ts" + ] + }, + "anchorSource": "ancestor" + }, + { + "id": "modules:06d390012d4d", + "chapter": "modules", + "kind": "string\\[]", + "name": "Type", + "signature": "`paths` Type: {string\\[]}", + "label": "paths", + "apiSymbol": "paths", + "depth": 2, + "scope": "api", + "anchor": "the-module-object", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-feature:modules.paths" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-feature:modules.paths" + }, + "anchorSource": "ancestor" + }, + { + "id": "modules:9500e0c7ec5b", + "chapter": "modules", + "kind": "module", + "name": "the_`module`_object", + "signature": "The `Module` object", + "label": "The Module object", + "apiSymbol": "Module", + "depth": 1, + "scope": "api", + "anchor": "the-module-object_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-feature:modules.Module" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-feature:modules.Module" + }, + "anchorSource": "exact" + }, + { + "id": "modules:f3dbc2d1d0a8", + "chapter": "modules", + "kind": "module", + "name": "source_map_v3_support", + "signature": "Source map v3 support", + "label": "Source map v3 support", + "apiSymbol": "source_map_v3_support", + "depth": 1, + "scope": "documentation", + "anchor": "source-map-v3-support", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "modules:6248d2647c02", + "chapter": "modules", + "kind": "misc", + "name": "Enabling", + "signature": "Enabling", + "label": "Enabling", + "apiSymbol": "Enabling", + "depth": 1, + "scope": "documentation", + "anchor": "enabling", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "modules:9f5247fd24c6", + "chapter": "modules", + "kind": "misc", + "name": "Accessing the main module", + "signature": "Accessing the main module", + "label": "Accessing the main module", + "apiSymbol": "Accessing the main module", + "depth": 1, + "scope": "documentation", + "anchor": "accessing-the-main-module", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "modules:c800c62daee5", + "chapter": "modules", + "kind": "misc", + "name": "Package manager tips", + "signature": "Package manager tips", + "label": "Package manager tips", + "apiSymbol": "Package manager tips", + "depth": 1, + "scope": "documentation", + "anchor": "package-manager-tips", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "modules:0bd3dba02e6f", + "chapter": "modules", + "kind": "misc", + "name": "All together", + "signature": "All together", + "label": "All together", + "apiSymbol": "All together", + "depth": 1, + "scope": "documentation", + "anchor": "all-together", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "modules:1b6639ed8699", + "chapter": "modules", + "kind": "misc", + "name": "Caching", + "signature": "Caching", + "label": "Caching", + "apiSymbol": "Caching", + "depth": 1, + "scope": "documentation", + "anchor": "caching", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "modules:3cc5add90be3", + "chapter": "modules", + "kind": "misc", + "name": "Module caching caveats", + "signature": "Module caching caveats", + "label": "Module caching caveats", + "apiSymbol": "Module caching caveats", + "depth": 2, + "scope": "documentation", + "anchor": "module-caching-caveats", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "modules:975bf2557595", + "chapter": "modules", + "kind": "misc", + "name": "Built-in modules", + "signature": "Built-in modules", + "label": "Built-in modules", + "apiSymbol": "Built-in modules", + "depth": 1, + "scope": "documentation", + "anchor": "built-in-modules", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "modules:b7b296f1ef44", + "chapter": "modules", + "kind": "misc", + "name": "built-in_modules_with_mandatory_`node:`_prefix", + "signature": "Built-in modules with mandatory `node:` prefix", + "label": "Built-in modules with mandatory node: prefix", + "apiSymbol": "node:", + "depth": 2, + "scope": "api", + "anchor": "built-in-modules-with-mandatory-node-prefix", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-feature:modules.node:", + "tests": [ + "tests/corpus/1598-cjs-builtin-require/main.js", + "tests/corpus/1596-cjs-modules/main.js" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-feature:modules.node:", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts", + "tests/fixtures/npm/cases/create-require/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "modules:c0e66929a5f9", + "chapter": "modules", + "kind": "misc", + "name": "Cycles", + "signature": "Cycles", + "label": "Cycles", + "apiSymbol": "Cycles", + "depth": 1, + "scope": "documentation", + "anchor": "cycles", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "modules:9a0db7858908", + "chapter": "modules", + "kind": "misc", + "name": "File modules", + "signature": "File modules", + "label": "File modules", + "apiSymbol": "File modules", + "depth": 1, + "scope": "documentation", + "anchor": "file-modules", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "modules:26855fafc922", + "chapter": "modules", + "kind": "misc", + "name": "Folders as modules", + "signature": "Folders as modules", + "label": "Folders as modules", + "apiSymbol": "Folders as modules", + "depth": 1, + "scope": "documentation", + "anchor": "folders-as-modules", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use [subpath exports][] or [subpath imports][] instead.", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "modules:3b9ec73acaba", + "chapter": "modules", + "kind": "misc", + "name": "Loading from `node_modules` folders", + "signature": "Loading from `node_modules` folders", + "label": "Loading from node_modules folders", + "apiSymbol": "node_modules", + "depth": 1, + "scope": "api", + "anchor": "loading-from-node_modules-folders", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-feature:modules.node_modules", + "tests": [ + "tests/corpus/1598-cjs-builtin-require/main.js", + "tests/corpus/1596-cjs-modules/main.js" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-feature:modules.node_modules", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts", + "tests/fixtures/npm/cases/create-require/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "modules:5553806eab3c", + "chapter": "modules", + "kind": "misc", + "name": "Loading from the global folders", + "signature": "Loading from the global folders", + "label": "Loading from the global folders", + "apiSymbol": "Loading from the global folders", + "depth": 1, + "scope": "documentation", + "anchor": "loading-from-the-global-folders", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "modules:4ea43a9bc36f", + "chapter": "modules", + "kind": "misc", + "name": "The module wrapper", + "signature": "The module wrapper", + "label": "The module wrapper", + "apiSymbol": "The module wrapper", + "depth": 1, + "scope": "documentation", + "anchor": "the-module-wrapper", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "esm:cbbbc5888f51", + "chapter": "esm", + "kind": "misc", + "name": "Modules: ECMAScript modules", + "signature": "Modules: ECMAScript modules", + "label": "Modules: ECMAScript modules", + "apiSymbol": "Modules: ECMAScript modules", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/corpus/2646-top-level-await.ts", + "tests/corpus/950-modules-basic/main.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/corpus/2646-top-level-await.ts", + "tests/fixtures/npm/cases/dynamic-import/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "esm:398729f00331", + "chapter": "esm", + "kind": "Object", + "name": "Type", + "signature": "`meta` Type: {Object}", + "label": "meta", + "apiSymbol": "meta", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-feature:esm.meta" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-feature:esm.meta" + }, + "anchorSource": "chapter" + }, + { + "id": "esm:770cc3feb10f", + "chapter": "esm", + "kind": "method", + "name": "resolve", + "signature": "`import.meta.resolve(specifier)`", + "label": "import.meta.resolve(specifier)", + "apiSymbol": "import.meta.resolve", + "depth": 2, + "scope": "api", + "anchor": "importmetaresolvespecifier", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-feature:esm.import.meta.resolve" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-feature:esm.import.meta.resolve" + }, + "anchorSource": "exact" + }, + { + "id": "esm:3d34d71eee99", + "chapter": "esm", + "kind": "string", + "name": "Type", + "signature": "`dirname` Type: {string} The directory name of the current module.", + "label": "dirname", + "apiSymbol": "dirname", + "depth": 2, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-feature:esm.dirname" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-feature:esm.dirname" + }, + "anchorSource": "chapter" + }, + { + "id": "esm:a5296bf4d3c8", + "chapter": "esm", + "kind": "string", + "name": "Type", + "signature": "`filename` Type: {string} The full absolute path and filename of the current module, with symlinks resolved.", + "label": "filename", + "apiSymbol": "filename", + "depth": 2, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-feature:esm.filename" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-feature:esm.filename" + }, + "anchorSource": "chapter" + }, + { + "id": "esm:da8d4c5ee6d4", + "chapter": "esm", + "kind": "string", + "name": "Type", + "signature": "`url` Type: {string} The absolute `file:` URL of the module.", + "label": "url", + "apiSymbol": "url", + "depth": 2, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "unreviewed" + }, + "dynamic": { + "status": "partial", + "evidence": "island-feature:esm.url", + "tests": [ + "tests/fixtures/npm/cases/dynamic-import/main.ts", + "tests/corpus/2646-top-level-await.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "esm:f3967e55a1b9", + "chapter": "esm", + "kind": "boolean", + "name": "Type", + "signature": "`main` Type: {boolean} `true` when the current module is the entry point of the current process; `false` otherwise.", + "label": "main", + "apiSymbol": "main", + "depth": 2, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "1.0", + "level": 1, + "text": "Early development", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-feature:esm.main" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-feature:esm.main" + }, + "anchorSource": "chapter" + }, + { + "id": "esm:288264e58110", + "chapter": "esm", + "kind": "misc", + "name": "esm", + "signature": "Introduction", + "label": "Introduction", + "apiSymbol": "esm", + "depth": 1, + "scope": "documentation", + "anchor": "introduction", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "esm:4ef533cdd63c", + "chapter": "esm", + "kind": "misc", + "name": "Enabling", + "signature": "Enabling", + "label": "Enabling", + "apiSymbol": "Enabling", + "depth": 1, + "scope": "documentation", + "anchor": "enabling", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "esm:1a7b093b490a", + "chapter": "esm", + "kind": "misc", + "name": "packages", + "signature": "Packages", + "label": "Packages", + "apiSymbol": "packages", + "depth": 1, + "scope": "documentation", + "anchor": "packages", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "esm:6c87e539e091", + "chapter": "esm", + "kind": "misc", + "name": "`import`_specifiers", + "signature": "`import` Specifiers", + "label": "import", + "apiSymbol": "import", + "depth": 1, + "scope": "api", + "anchor": "import-specifiers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-feature:esm.import", + "tests": [ + "tests/corpus/950-modules-basic/main.ts", + "tests/corpus/2646-top-level-await.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-feature:esm.import", + "tests": [ + "tests/fixtures/npm/cases/dynamic-import/main.ts", + "tests/corpus/2646-top-level-await.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "esm:c6c4e313acc2", + "chapter": "esm", + "kind": "module", + "name": "terminology", + "signature": "Terminology", + "label": "Terminology", + "apiSymbol": "terminology", + "depth": 2, + "scope": "documentation", + "anchor": "terminology", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "esm:e110a402ec8d", + "chapter": "esm", + "kind": "module", + "name": "mandatory_file_extensions", + "signature": "Mandatory file extensions", + "label": "Mandatory file extensions", + "apiSymbol": "mandatory_file_extensions", + "depth": 2, + "scope": "documentation", + "anchor": "mandatory-file-extensions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "esm:77c505d17e49", + "chapter": "esm", + "kind": "module", + "name": "urls", + "signature": "URLs", + "label": "URLs", + "apiSymbol": "urls", + "depth": 2, + "scope": "documentation", + "anchor": "urls", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "esm:2a244b54b925", + "chapter": "esm", + "kind": "module", + "name": "`file:`_urls", + "signature": "`file:` URLs", + "label": "file:", + "apiSymbol": "file:", + "depth": 3, + "scope": "api", + "anchor": "file-urls", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-feature:esm.file:", + "tests": [ + "tests/corpus/950-modules-basic/main.ts", + "tests/corpus/2646-top-level-await.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-feature:esm.file:", + "tests": [ + "tests/fixtures/npm/cases/dynamic-import/main.ts", + "tests/corpus/2646-top-level-await.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "esm:9822dee686fe", + "chapter": "esm", + "kind": "module", + "name": "`data:`_imports", + "signature": "`data:` imports", + "label": "data:", + "apiSymbol": "data:", + "depth": 3, + "scope": "api", + "anchor": "data-imports", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-feature:esm.data:" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-feature:esm.data:" + }, + "anchorSource": "exact" + }, + { + "id": "esm:be988d8c5641", + "chapter": "esm", + "kind": "module", + "name": "`node:`_imports", + "signature": "`node:` imports", + "label": "node:", + "apiSymbol": "node:", + "depth": 3, + "scope": "api", + "anchor": "node-imports", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-feature:esm.node:", + "tests": [ + "tests/corpus/950-modules-basic/main.ts", + "tests/corpus/2646-top-level-await.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-feature:esm.node:", + "tests": [ + "tests/fixtures/npm/cases/dynamic-import/main.ts", + "tests/corpus/2646-top-level-await.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "esm:45c9980efc96", + "chapter": "esm", + "kind": "misc", + "name": "import_attributes", + "signature": "Import attributes", + "label": "Import attributes", + "apiSymbol": "import_attributes", + "depth": 1, + "scope": "documentation", + "anchor": "import-attributes", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "esm:8552b066d476", + "chapter": "esm", + "kind": "misc", + "name": "built-in_modules", + "signature": "Built-in modules", + "label": "Built-in modules", + "apiSymbol": "built-in_modules", + "depth": 1, + "scope": "documentation", + "anchor": "built-in-modules", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "esm:42b89f19c721", + "chapter": "esm", + "kind": "misc", + "name": "`import()`_expressions", + "signature": "`import()` expressions", + "label": "import()", + "apiSymbol": "import", + "depth": 1, + "scope": "api", + "anchor": "import-expressions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-feature:esm.import", + "tests": [ + "tests/corpus/950-modules-basic/main.ts", + "tests/corpus/2646-top-level-await.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-feature:esm.import", + "tests": [ + "tests/fixtures/npm/cases/dynamic-import/main.ts", + "tests/corpus/2646-top-level-await.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "esm:298443af7003", + "chapter": "esm", + "kind": "misc", + "name": "interoperability_with_commonjs", + "signature": "Interoperability with CommonJS", + "label": "Interoperability with CommonJS", + "apiSymbol": "interoperability_with_commonjs", + "depth": 1, + "scope": "documentation", + "anchor": "interoperability-with-commonjs", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "esm:1cd65a249eb8", + "chapter": "esm", + "kind": "module", + "name": "`import`_statements", + "signature": "`import` statements", + "label": "import", + "apiSymbol": "import", + "depth": 2, + "scope": "api", + "anchor": "import-statements", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-feature:esm.import", + "tests": [ + "tests/corpus/950-modules-basic/main.ts", + "tests/corpus/2646-top-level-await.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-feature:esm.import", + "tests": [ + "tests/fixtures/npm/cases/dynamic-import/main.ts", + "tests/corpus/2646-top-level-await.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "esm:2ea8c24c8d10", + "chapter": "esm", + "kind": "module", + "name": "`require`", + "signature": "`require`", + "label": "require", + "apiSymbol": "require", + "depth": 2, + "scope": "api", + "anchor": "require", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-feature:esm.require" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-feature:esm.require" + }, + "anchorSource": "exact" + }, + { + "id": "esm:175d6329e859", + "chapter": "esm", + "kind": "module", + "name": "commonjs_namespaces", + "signature": "CommonJS Namespaces", + "label": "CommonJS Namespaces", + "apiSymbol": "commonjs_namespaces", + "depth": 2, + "scope": "documentation", + "anchor": "commonjs-namespaces", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "esm:435e426eb8f5", + "chapter": "esm", + "kind": "module", + "name": "differences_between_es_modules_and_commonjs", + "signature": "Differences between ES modules and CommonJS", + "label": "Differences between ES modules and CommonJS", + "apiSymbol": "differences_between_es_modules_and_commonjs", + "depth": 2, + "scope": "documentation", + "anchor": "differences-between-es-modules-and-commonjs", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "esm:d2f2039bf558", + "chapter": "esm", + "kind": "module", + "name": "no_`require`,_`exports`,_or_`module.exports`", + "signature": "No `require`, `exports`, or `module.exports`", + "label": "No require, exports, or module.exports", + "apiSymbol": "require", + "depth": 3, + "scope": "api", + "anchor": "no-require-exports-or-moduleexports", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-feature:esm.require" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-feature:esm.require" + }, + "anchorSource": "exact" + }, + { + "id": "esm:42a5ef0b1e3a", + "chapter": "esm", + "kind": "module", + "name": "no_`__filename`_or_`__dirname`", + "signature": "No `__filename` or `__dirname`", + "label": "No __filename or __dirname", + "apiSymbol": "__filename", + "depth": 3, + "scope": "api", + "anchor": "no-__filename-or-__dirname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-feature:esm.__filename" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-feature:esm.__filename" + }, + "anchorSource": "exact" + }, + { + "id": "esm:8e9f3460c161", + "chapter": "esm", + "kind": "module", + "name": "no_addon_loading", + "signature": "No Addon Loading", + "label": "No Addon Loading", + "apiSymbol": "no_addon_loading", + "depth": 3, + "scope": "documentation", + "anchor": "no-addon-loading", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "esm:f13c9567bec7", + "chapter": "esm", + "kind": "module", + "name": "no_`require.main`", + "signature": "No `require.main`", + "label": "No require.main", + "apiSymbol": "require.main", + "depth": 3, + "scope": "api", + "anchor": "no-requiremain", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-feature:esm.require.main" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-feature:esm.require.main" + }, + "anchorSource": "exact" + }, + { + "id": "esm:d161faeca501", + "chapter": "esm", + "kind": "module", + "name": "no_`require.resolve`", + "signature": "No `require.resolve`", + "label": "No require.resolve", + "apiSymbol": "require.resolve", + "depth": 3, + "scope": "api", + "anchor": "no-requireresolve", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-feature:esm.require.resolve" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-feature:esm.require.resolve" + }, + "anchorSource": "exact" + }, + { + "id": "esm:915bca871ae7", + "chapter": "esm", + "kind": "module", + "name": "no_`node_path`", + "signature": "No `NODE_PATH`", + "label": "No NODE_PATH", + "apiSymbol": "NODE_PATH", + "depth": 3, + "scope": "api", + "anchor": "no-node_path", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-feature:esm.NODE_PATH" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-feature:esm.NODE_PATH" + }, + "anchorSource": "exact" + }, + { + "id": "esm:a2d3948d79c1", + "chapter": "esm", + "kind": "module", + "name": "no_`require.extensions`", + "signature": "No `require.extensions`", + "label": "No require.extensions", + "apiSymbol": "require.extensions", + "depth": 3, + "scope": "api", + "anchor": "no-requireextensions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-feature:esm.require.extensions" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-feature:esm.require.extensions" + }, + "anchorSource": "exact" + }, + { + "id": "esm:b26a1a3160c5", + "chapter": "esm", + "kind": "module", + "name": "no_`require.cache`", + "signature": "No `require.cache`", + "label": "No require.cache", + "apiSymbol": "require.cache", + "depth": 3, + "scope": "api", + "anchor": "no-requirecache", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-feature:esm.require.cache" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-feature:esm.require.cache" + }, + "anchorSource": "exact" + }, + { + "id": "esm:d35754470149", + "chapter": "esm", + "kind": "misc", + "name": "json_modules", + "signature": "JSON modules", + "label": "JSON modules", + "apiSymbol": "json_modules", + "depth": 1, + "scope": "documentation", + "anchor": "json-modules", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "esm:552288b53cd6", + "chapter": "esm", + "kind": "misc", + "name": "wasm_modules", + "signature": "Wasm modules", + "label": "Wasm modules", + "apiSymbol": "wasm_modules", + "depth": 1, + "scope": "documentation", + "anchor": "wasm-modules", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "esm:bf446950c3a7", + "chapter": "esm", + "kind": "module", + "name": "wasm_source_phase_imports", + "signature": "Wasm Source Phase Imports", + "label": "Wasm Source Phase Imports", + "apiSymbol": "wasm_source_phase_imports", + "depth": 2, + "scope": "documentation", + "anchor": "wasm-source-phase-imports", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "esm:1a6fb0d47464", + "chapter": "esm", + "kind": "module", + "name": "javascript_string_builtins", + "signature": "JavaScript String Builtins", + "label": "JavaScript String Builtins", + "apiSymbol": "javascript_string_builtins", + "depth": 2, + "scope": "documentation", + "anchor": "javascript-string-builtins", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "esm:a0f0a8eb0d18", + "chapter": "esm", + "kind": "module", + "name": "wasm_instance_phase_imports", + "signature": "Wasm Instance Phase Imports", + "label": "Wasm Instance Phase Imports", + "apiSymbol": "wasm_instance_phase_imports", + "depth": 2, + "scope": "documentation", + "anchor": "wasm-instance-phase-imports", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "esm:614fd8777aa6", + "chapter": "esm", + "kind": "module", + "name": "reserved_wasm_namespaces", + "signature": "Reserved Wasm Namespaces", + "label": "Reserved Wasm Namespaces", + "apiSymbol": "reserved_wasm_namespaces", + "depth": 2, + "scope": "documentation", + "anchor": "reserved-wasm-namespaces", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "esm:5fac97cf09fd", + "chapter": "esm", + "kind": "misc", + "name": "top-level_`await`", + "signature": "Top-level `await`", + "label": "Top-level await", + "apiSymbol": "await", + "depth": 1, + "scope": "api", + "anchor": "top-level-await", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-feature:esm.await", + "tests": [ + "tests/corpus/950-modules-basic/main.ts", + "tests/corpus/2646-top-level-await.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-feature:esm.await", + "tests": [ + "tests/fixtures/npm/cases/dynamic-import/main.ts", + "tests/corpus/2646-top-level-await.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "esm:182bfca9a0be", + "chapter": "esm", + "kind": "misc", + "name": "loaders", + "signature": "Loaders", + "label": "Loaders", + "apiSymbol": "loaders", + "depth": 1, + "scope": "documentation", + "anchor": "loaders", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "esm:c83e9808ce11", + "chapter": "esm", + "kind": "misc", + "name": "resolution_and_loading_algorithm", + "signature": "Resolution and loading algorithm", + "label": "Resolution and loading algorithm", + "apiSymbol": "resolution_and_loading_algorithm", + "depth": 1, + "scope": "documentation", + "anchor": "resolution-and-loading-algorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "esm:a6da223f98d3", + "chapter": "esm", + "kind": "module", + "name": "features", + "signature": "Features", + "label": "Features", + "apiSymbol": "features", + "depth": 2, + "scope": "documentation", + "anchor": "features", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "esm:e9acd1f32c2f", + "chapter": "esm", + "kind": "module", + "name": "resolution_algorithm", + "signature": "Resolution algorithm", + "label": "Resolution algorithm", + "apiSymbol": "resolution_algorithm", + "depth": 2, + "scope": "documentation", + "anchor": "resolution-algorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "esm:b85b9195d425", + "chapter": "esm", + "kind": "module", + "name": "resolution_algorithm_specification", + "signature": "Resolution Algorithm Specification", + "label": "Resolution Algorithm Specification", + "apiSymbol": "resolution_algorithm_specification", + "depth": 2, + "scope": "documentation", + "anchor": "resolution-algorithm-specification", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "esm:f620438e5e0d", + "chapter": "esm", + "kind": "module", + "name": "customizing_esm_specifier_resolution_algorithm", + "signature": "Customizing ESM specifier resolution algorithm", + "label": "Customizing ESM specifier resolution algorithm", + "apiSymbol": "customizing_esm_specifier_resolution_algorithm", + "depth": 2, + "scope": "documentation", + "anchor": "customizing-esm-specifier-resolution-algorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "module:010bae4a52c1", + "chapter": "module", + "kind": "module", + "name": "modules:_`node:module`_api", + "signature": "Modules: `node:module` API", + "label": "Modules: node:module API", + "apiSymbol": "node:module", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "derived:descendants" + }, + "dynamic": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/fixtures/npm/cases/create-require/main.ts", + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "module:c350c12559fe", + "chapter": "module", + "kind": "module", + "name": "the_`module`_object", + "signature": "The `Module` object", + "label": "The Module object", + "apiSymbol": "Module", + "depth": 1, + "scope": "api", + "anchor": "the-module-object", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:module" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:module" + }, + "anchorSource": "exact" + }, + { + "id": "module:9d8908f53c16", + "chapter": "module", + "kind": "method", + "name": "createRequire", + "signature": "`module.createRequire(filename)`", + "label": "module.createRequire(filename)", + "apiSymbol": "module.createRequire", + "depth": 2, + "scope": "api", + "anchor": "modulecreaterequirefilename", + "nodeStability": null, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.module.createRequire" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:module.createRequire", + "tests": [ + "tests/fixtures/npm/cases/create-require/main.ts", + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "module:94dee3eb15e0", + "chapter": "module", + "kind": "method", + "name": "findPackageJSON", + "signature": "`module.findPackageJSON(specifier[, base])`", + "label": "module.findPackageJSON(specifier[, base])", + "apiSymbol": "module.findPackageJSON", + "depth": 2, + "scope": "api", + "anchor": "modulefindpackagejsonspecifier-base", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active Development", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:module" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:module" + }, + "anchorSource": "exact" + }, + { + "id": "module:f6fbd730ec50", + "chapter": "module", + "kind": "method", + "name": "isBuiltin", + "signature": "`module.isBuiltin(moduleName)`", + "label": "module.isBuiltin(moduleName)", + "apiSymbol": "module.isBuiltin", + "depth": 2, + "scope": "api", + "anchor": "moduleisbuiltinmodulename", + "nodeStability": null, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.module.isBuiltin" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:module.isBuiltin", + "tests": [ + "tests/fixtures/npm/cases/create-require/main.ts", + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "module:3d54b9c0e7c7", + "chapter": "module", + "kind": "method", + "name": "register", + "signature": "`module.register(specifier[, parentURL][, options])`", + "label": "module.register(specifier[, parentURL][, options])", + "apiSymbol": "module.register", + "depth": 2, + "scope": "api", + "anchor": "moduleregisterspecifier-parenturl-options", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Use [`module.registerHooks()`][] instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:module" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:module.register" + }, + "anchorSource": "exact" + }, + { + "id": "module:8ff8dc23b804", + "chapter": "module", + "kind": "method", + "name": "registerHooks", + "signature": "`module.registerHooks(options)`", + "label": "module.registerHooks(options)", + "apiSymbol": "module.registerHooks", + "depth": 2, + "scope": "api", + "anchor": "moduleregisterhooksoptions", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:module" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:module" + }, + "anchorSource": "exact" + }, + { + "id": "module:aa4c3c8d7c9a", + "chapter": "module", + "kind": "method", + "name": "stripTypeScriptTypes", + "signature": "`module.stripTypeScriptTypes(code[, options])`", + "label": "module.stripTypeScriptTypes(code[, options])", + "apiSymbol": "module.stripTypeScriptTypes", + "depth": 2, + "scope": "api", + "anchor": "modulestriptypescripttypescode-options", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:module" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:module" + }, + "anchorSource": "exact" + }, + { + "id": "module:85115e1e8511", + "chapter": "module", + "kind": "method", + "name": "syncBuiltinESMExports", + "signature": "`module.syncBuiltinESMExports()`", + "label": "module.syncBuiltinESMExports()", + "apiSymbol": "module.syncBuiltinESMExports", + "depth": 2, + "scope": "api", + "anchor": "modulesyncbuiltinesmexports", + "nodeStability": null, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.module.syncBuiltinESMExports" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:module.syncBuiltinESMExports", + "tests": [ + "tests/fixtures/npm/cases/create-require/main.ts", + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "module:15fffe123676", + "chapter": "module", + "kind": "string\\[]", + "name": "Type", + "signature": "`builtinModules` Type: {string\\[]}", + "label": "builtinModules", + "apiSymbol": "builtinModules", + "depth": 2, + "scope": "api", + "anchor": "the-module-object", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:module" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:module.builtinModules", + "tests": [ + "tests/fixtures/npm/cases/create-require/main.ts", + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "ancestor" + }, + { + "id": "module:b5009eed6d55", + "chapter": "module", + "kind": "module", + "name": "module_compile_cache", + "signature": "Module compile cache", + "label": "Module compile cache", + "apiSymbol": "module_compile_cache", + "depth": 1, + "scope": "documentation", + "anchor": "module-compile-cache", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "module:f5a7e9e884d7", + "chapter": "module", + "kind": "module", + "name": "portability_of_the_compile_cache", + "signature": "Portability of the compile cache", + "label": "Portability of the compile cache", + "apiSymbol": "portability_of_the_compile_cache", + "depth": 2, + "scope": "documentation", + "anchor": "portability-of-the-compile-cache", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "module:d28b2cc85ead", + "chapter": "module", + "kind": "module", + "name": "limitations_of_the_compile_cache", + "signature": "Limitations of the compile cache", + "label": "Limitations of the compile cache", + "apiSymbol": "limitations_of_the_compile_cache", + "depth": 2, + "scope": "documentation", + "anchor": "limitations-of-the-compile-cache", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "module:7e2798ff7fc1", + "chapter": "module", + "kind": "method", + "name": "enableCompileCache", + "signature": "`module.enableCompileCache([options])`", + "label": "module.enableCompileCache([options])", + "apiSymbol": "module.enableCompileCache", + "depth": 2, + "scope": "api", + "anchor": "moduleenablecompilecacheoptions", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:module" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:module" + }, + "anchorSource": "exact" + }, + { + "id": "module:5bd39a385e2c", + "chapter": "module", + "kind": "method", + "name": "flushCompileCache", + "signature": "`module.flushCompileCache()`", + "label": "module.flushCompileCache()", + "apiSymbol": "module.flushCompileCache", + "depth": 2, + "scope": "api", + "anchor": "moduleflushcompilecache", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:module" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:module" + }, + "anchorSource": "exact" + }, + { + "id": "module:aeb80bcfec08", + "chapter": "module", + "kind": "method", + "name": "getCompileCacheDir", + "signature": "`module.getCompileCacheDir()`", + "label": "module.getCompileCacheDir()", + "apiSymbol": "module.getCompileCacheDir", + "depth": 2, + "scope": "api", + "anchor": "modulegetcompilecachedir", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:module" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:module" + }, + "anchorSource": "exact" + }, + { + "id": "module:e163ffeb7c47", + "chapter": "module", + "kind": "section", + "name": "compileCacheStatus", + "signature": "`module.constants.compileCacheStatus`", + "label": "module.constants.compileCacheStatus", + "apiSymbol": "module.constants.compileCacheStatus", + "depth": 2, + "scope": "api", + "anchor": "moduleconstantscompilecachestatus", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:module" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:module" + }, + "anchorSource": "exact" + }, + { + "id": "module:0b2f7d86af5c", + "chapter": "module", + "kind": "module", + "name": "source_map_support", + "signature": "Source Map Support", + "label": "Source Map Support", + "apiSymbol": "source_map_support", + "depth": 1, + "scope": "documentation", + "anchor": "source-map-support", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "module:c94ee6d8a102", + "chapter": "module", + "kind": "class", + "name": "module.SourceMap", + "signature": "Class: `module.SourceMap`", + "label": "module.SourceMap", + "apiSymbol": "module.SourceMap", + "depth": 2, + "scope": "api", + "anchor": "class-modulesourcemap", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:module" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:module" + }, + "anchorSource": "exact" + }, + { + "id": "module:112bfcb4f027", + "chapter": "module", + "kind": "method", + "name": "findEntry", + "signature": "`sourceMap.findEntry(lineOffset, columnOffset)`", + "label": "sourceMap.findEntry(lineOffset, columnOffset)", + "apiSymbol": "sourceMap.findEntry", + "depth": 3, + "scope": "api", + "anchor": "sourcemapfindentrylineoffset-columnoffset", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:module" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:module" + }, + "anchorSource": "exact" + }, + { + "id": "module:34ac288a1e43", + "chapter": "module", + "kind": "method", + "name": "findOrigin", + "signature": "`sourceMap.findOrigin(lineNumber, columnNumber)`", + "label": "sourceMap.findOrigin(lineNumber, columnNumber)", + "apiSymbol": "sourceMap.findOrigin", + "depth": 3, + "scope": "api", + "anchor": "sourcemapfindoriginlinenumber-columnnumber", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:module" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:module" + }, + "anchorSource": "exact" + }, + { + "id": "module:ae3d77ef4af2", + "chapter": "module", + "kind": "Object", + "name": "return", + "signature": "`payload` Returns: {Object}", + "label": "payload", + "apiSymbol": "payload", + "depth": 3, + "scope": "api", + "anchor": "class-modulesourcemap", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:module" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:module" + }, + "anchorSource": "ancestor" + }, + { + "id": "module:98f96a7a43aa", + "chapter": "module", + "kind": "method", + "name": "getSourceMapsSupport", + "signature": "`module.getSourceMapsSupport()`", + "label": "module.getSourceMapsSupport()", + "apiSymbol": "module.getSourceMapsSupport", + "depth": 2, + "scope": "api", + "anchor": "modulegetsourcemapssupport", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:module" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:module" + }, + "anchorSource": "exact" + }, + { + "id": "module:ccc5785834c2", + "chapter": "module", + "kind": "method", + "name": "findSourceMap", + "signature": "`module.findSourceMap(path)`", + "label": "module.findSourceMap(path)", + "apiSymbol": "module.findSourceMap", + "depth": 2, + "scope": "api", + "anchor": "modulefindsourcemappath", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:module" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:module.findSourceMap", + "tests": [ + "tests/fixtures/npm/cases/create-require/main.ts", + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "module:1a931cc1687d", + "chapter": "module", + "kind": "method", + "name": "setSourceMapsSupport", + "signature": "`module.setSourceMapsSupport(enabled[, options])`", + "label": "module.setSourceMapsSupport(enabled[, options])", + "apiSymbol": "module.setSourceMapsSupport", + "depth": 2, + "scope": "api", + "anchor": "modulesetsourcemapssupportenabled-options", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:module" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:module" + }, + "anchorSource": "exact" + }, + { + "id": "module:cf2c27d06d55", + "chapter": "module", + "kind": "misc", + "name": "Customization Hooks", + "signature": "Customization Hooks", + "label": "Customization Hooks", + "apiSymbol": "Customization Hooks", + "depth": 1, + "scope": "documentation", + "anchor": "customization-hooks", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "module:27daf939568b", + "chapter": "module", + "kind": "misc", + "name": "synchronous_customization_hooks", + "signature": "Synchronous customization hooks", + "label": "Synchronous customization hooks", + "apiSymbol": "synchronous_customization_hooks", + "depth": 2, + "scope": "documentation", + "anchor": "synchronous-customization-hooks", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "module:9c05a4f98ded", + "chapter": "module", + "kind": "module", + "name": "registration_of_synchronous_customization_hooks", + "signature": "Registration of synchronous customization hooks", + "label": "Registration of synchronous customization hooks", + "apiSymbol": "registration_of_synchronous_customization_hooks", + "depth": 3, + "scope": "documentation", + "anchor": "registration-of-synchronous-customization-hooks", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "module:9e20bd7b1fd4", + "chapter": "module", + "kind": "module", + "name": "registering_hooks_before_application_code_runs_with_flags", + "signature": "Registering hooks before application code runs with flags", + "label": "Registering hooks before application code runs with flags", + "apiSymbol": "registering_hooks_before_application_code_runs_with_flags", + "depth": 4, + "scope": "documentation", + "anchor": "registering-hooks-before-application-code-runs-with-flags", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "module:273c6825abaa", + "chapter": "module", + "kind": "module", + "name": "registering_hooks_before_application_code_runs_programmatically", + "signature": "Registering hooks before application code runs programmatically", + "label": "Registering hooks before application code runs programmatically", + "apiSymbol": "registering_hooks_before_application_code_runs_programmatically", + "depth": 4, + "scope": "documentation", + "anchor": "registering-hooks-before-application-code-runs-programmatically", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "module:3e194cae16a0", + "chapter": "module", + "kind": "module", + "name": "registering_hooks_before_application_code_runs_with_a_`data:`_url", + "signature": "Registering hooks before application code runs with a `data:` URL", + "label": "Registering hooks before application code runs with a data: URL", + "apiSymbol": "data:", + "depth": 4, + "scope": "api", + "anchor": "registering-hooks-before-application-code-runs-with-a-data-url", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:module" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:module" + }, + "anchorSource": "exact" + }, + { + "id": "module:00a180bb8fa0", + "chapter": "module", + "kind": "module", + "name": "convention_of_hooks_and_chaining", + "signature": "Convention of hooks and chaining", + "label": "Convention of hooks and chaining", + "apiSymbol": "convention_of_hooks_and_chaining", + "depth": 3, + "scope": "documentation", + "anchor": "convention-of-hooks-and-chaining", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "module:1e3b97264406", + "chapter": "module", + "kind": "module", + "name": "deregistration_of_synchronous_customization_hooks", + "signature": "Deregistration of synchronous customization hooks", + "label": "Deregistration of synchronous customization hooks", + "apiSymbol": "deregistration_of_synchronous_customization_hooks", + "depth": 3, + "scope": "documentation", + "anchor": "deregistration-of-synchronous-customization-hooks", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "module:40fc43ea4dff", + "chapter": "module", + "kind": "module", + "name": "hook_functions_accepted_by_`module.registerhooks()`", + "signature": "Hook functions accepted by `module.registerHooks()`", + "label": "Hook functions accepted by module.registerHooks()", + "apiSymbol": "module.registerHooks", + "depth": 3, + "scope": "api", + "anchor": "hook-functions-accepted-by-moduleregisterhooks", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:module" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:module" + }, + "anchorSource": "exact" + }, + { + "id": "module:6adb33d3a573", + "chapter": "module", + "kind": "module", + "name": "synchronous_`resolve(specifier,_context,_nextresolve)`", + "signature": "Synchronous `resolve(specifier, context, nextResolve)`", + "label": "Synchronous resolve(specifier, context, nextResolve)", + "apiSymbol": "resolve", + "depth": 3, + "scope": "api", + "anchor": "synchronous-resolvespecifier-context-nextresolve", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:module" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:module" + }, + "anchorSource": "exact" + }, + { + "id": "module:5e3f1bc1c4c1", + "chapter": "module", + "kind": "module", + "name": "synchronous_`load(url,_context,_nextload)`", + "signature": "Synchronous `load(url, context, nextLoad)`", + "label": "Synchronous load(url, context, nextLoad)", + "apiSymbol": "load", + "depth": 3, + "scope": "api", + "anchor": "synchronous-loadurl-context-nextload", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:module" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:module" + }, + "anchorSource": "exact" + }, + { + "id": "module:5af285eecd9c", + "chapter": "module", + "kind": "module", + "name": "accepted_final_formats_returned_by_`load`", + "signature": "Accepted final formats returned by `load`", + "label": "Accepted final formats returned by load", + "apiSymbol": "load", + "depth": 4, + "scope": "api", + "anchor": "accepted-final-formats-returned-by-load", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:module" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:module" + }, + "anchorSource": "exact" + }, + { + "id": "module:235c5581d7cf", + "chapter": "module", + "kind": "misc", + "name": "asynchronous_customization_hooks", + "signature": "Asynchronous customization hooks", + "label": "Asynchronous customization hooks", + "apiSymbol": "asynchronous_customization_hooks", + "depth": 2, + "scope": "documentation", + "anchor": "asynchronous-customization-hooks", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active Development", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "module:dfb7d06a444a", + "chapter": "module", + "kind": "module", + "name": "caveats_of_asynchronous_customization_hooks", + "signature": "Caveats of asynchronous customization hooks", + "label": "Caveats of asynchronous customization hooks", + "apiSymbol": "caveats_of_asynchronous_customization_hooks", + "depth": 3, + "scope": "documentation", + "anchor": "caveats-of-asynchronous-customization-hooks", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active Development", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "module:3849728d2061", + "chapter": "module", + "kind": "module", + "name": "registration_of_asynchronous_customization_hooks", + "signature": "Registration of asynchronous customization hooks", + "label": "Registration of asynchronous customization hooks", + "apiSymbol": "registration_of_asynchronous_customization_hooks", + "depth": 3, + "scope": "documentation", + "anchor": "registration-of-asynchronous-customization-hooks", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active Development", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "module:2239d185fe77", + "chapter": "module", + "kind": "module", + "name": "chaining_of_asynchronous_customization_hooks", + "signature": "Chaining of asynchronous customization hooks", + "label": "Chaining of asynchronous customization hooks", + "apiSymbol": "chaining_of_asynchronous_customization_hooks", + "depth": 3, + "scope": "documentation", + "anchor": "chaining-of-asynchronous-customization-hooks", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active Development", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "module:febba7aa9b75", + "chapter": "module", + "kind": "module", + "name": "communication_with_asynchronous_module_customization_hooks", + "signature": "Communication with asynchronous module customization hooks", + "label": "Communication with asynchronous module customization hooks", + "apiSymbol": "communication_with_asynchronous_module_customization_hooks", + "depth": 3, + "scope": "documentation", + "anchor": "communication-with-asynchronous-module-customization-hooks", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active Development", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "module:45b84dcd4cb5", + "chapter": "module", + "kind": "module", + "name": "asynchronous_hooks_accepted_by_`module.register()`", + "signature": "Asynchronous hooks accepted by `module.register()`", + "label": "Asynchronous hooks accepted by module.register()", + "apiSymbol": "module.register", + "depth": 3, + "scope": "api", + "anchor": "asynchronous-hooks-accepted-by-moduleregister", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active Development", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:module" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:module.register" + }, + "anchorSource": "exact" + }, + { + "id": "module:4446fe337c1f", + "chapter": "module", + "kind": "module", + "name": "asynchronous_`resolve(specifier,_context,_nextresolve)`", + "signature": "Asynchronous `resolve(specifier, context, nextResolve)`", + "label": "Asynchronous resolve(specifier, context, nextResolve)", + "apiSymbol": "resolve", + "depth": 3, + "scope": "api", + "anchor": "asynchronous-resolvespecifier-context-nextresolve", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active Development", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:module" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:module" + }, + "anchorSource": "exact" + }, + { + "id": "module:0567054ffe29", + "chapter": "module", + "kind": "module", + "name": "asynchronous_`load(url,_context,_nextload)`", + "signature": "Asynchronous `load(url, context, nextLoad)`", + "label": "Asynchronous load(url, context, nextLoad)", + "apiSymbol": "load", + "depth": 3, + "scope": "api", + "anchor": "asynchronous-loadurl-context-nextload", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active Development", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:module" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:module" + }, + "anchorSource": "exact" + }, + { + "id": "module:808055bb8c5e", + "chapter": "module", + "kind": "module", + "name": "import_from_https", + "signature": "Import from HTTPS", + "label": "Import from HTTPS", + "apiSymbol": "import_from_https", + "depth": 3, + "scope": "documentation", + "anchor": "import-from-https", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active Development", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "module:90c57c59c56b", + "chapter": "module", + "kind": "module", + "name": "transpilation", + "signature": "Transpilation", + "label": "Transpilation", + "apiSymbol": "transpilation", + "depth": 3, + "scope": "documentation", + "anchor": "transpilation", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active Development", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "module:c1f7f3448bf4", + "chapter": "module", + "kind": "module", + "name": "asynchronous_version", + "signature": "Asynchronous version", + "label": "Asynchronous version", + "apiSymbol": "asynchronous_version", + "depth": 4, + "scope": "documentation", + "anchor": "asynchronous-version", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active Development", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "module:fe591fb7bd85", + "chapter": "module", + "kind": "module", + "name": "synchronous_version", + "signature": "Synchronous version", + "label": "Synchronous version", + "apiSymbol": "synchronous_version", + "depth": 4, + "scope": "documentation", + "anchor": "synchronous-version", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active Development", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "module:5ea8c217c0bd", + "chapter": "module", + "kind": "module", + "name": "running_hooks", + "signature": "Running hooks", + "label": "Running hooks", + "apiSymbol": "running_hooks", + "depth": 3, + "scope": "documentation", + "anchor": "running-hooks", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active Development", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "module:5652a8b40f06", + "chapter": "module", + "kind": "module", + "name": "import_maps", + "signature": "Import maps", + "label": "Import maps", + "apiSymbol": "import_maps", + "depth": 3, + "scope": "documentation", + "anchor": "import-maps", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active Development", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "module:03f392c42ccc", + "chapter": "module", + "kind": "module", + "name": "asynchronous_version", + "signature": "Asynchronous version", + "label": "Asynchronous version", + "apiSymbol": "asynchronous_version", + "depth": 4, + "scope": "documentation", + "anchor": "asynchronous-version_1", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active Development", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "module:8303fd866bdf", + "chapter": "module", + "kind": "module", + "name": "synchronous_version", + "signature": "Synchronous version", + "label": "Synchronous version", + "apiSymbol": "synchronous_version", + "depth": 4, + "scope": "documentation", + "anchor": "synchronous-version_1", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active Development", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "module:1b411010ced3", + "chapter": "module", + "kind": "module", + "name": "using_the_hooks", + "signature": "Using the hooks", + "label": "Using the hooks", + "apiSymbol": "using_the_hooks", + "depth": 4, + "scope": "documentation", + "anchor": "using-the-hooks", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active Development", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "module:ef9f58bf7f69", + "chapter": "module", + "kind": "method", + "name": "initialize", + "signature": "`initialize()`", + "label": "initialize()", + "apiSymbol": "initialize", + "depth": 3, + "scope": "api", + "anchor": "initialize", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active Development", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:module" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:module" + }, + "anchorSource": "exact" + }, + { + "id": "packages:ab92bf0ae7fe", + "chapter": "packages", + "kind": "misc", + "name": "Modules: Packages", + "signature": "Modules: Packages", + "label": "Modules: Packages", + "apiSymbol": "Modules: Packages", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/corpus/2092-package-imports/main.ts", + "tests/corpus/2120-package-self-import/main.ts", + "tests/corpus/2124-imports-field-wildcard/main.ts", + "tests/corpus/2390-dot-requires/main.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/fixtures/npm/cases/dual-entry/main.ts", + "tests/fixtures/npm/cases/scoped-nested/main.ts", + "tests/fixtures/npm/cases/self-name/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "packages:ce3837fc8fd3", + "chapter": "packages", + "kind": "misc", + "name": "introduction", + "signature": "Introduction", + "label": "Introduction", + "apiSymbol": "introduction", + "depth": 1, + "scope": "documentation", + "anchor": "introduction", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "packages:ce4963a2cfc6", + "chapter": "packages", + "kind": "misc", + "name": "determining_module_system", + "signature": "Determining module system", + "label": "Determining module system", + "apiSymbol": "determining_module_system", + "depth": 1, + "scope": "documentation", + "anchor": "determining-module-system", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "packages:0a6f90637692", + "chapter": "packages", + "kind": "module", + "name": "introduction", + "signature": "Introduction", + "label": "Introduction", + "apiSymbol": "introduction", + "depth": 2, + "scope": "documentation", + "anchor": "introduction_1", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "packages:2279b6327f7a", + "chapter": "packages", + "kind": "module", + "name": "syntax_detection", + "signature": "Syntax detection", + "label": "Syntax detection", + "apiSymbol": "syntax_detection", + "depth": 2, + "scope": "documentation", + "anchor": "syntax-detection", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "packages:86a9cb93b3b6", + "chapter": "packages", + "kind": "module", + "name": "module_resolution_and_loading", + "signature": "Module resolution and loading", + "label": "Module resolution and loading", + "apiSymbol": "module_resolution_and_loading", + "depth": 2, + "scope": "documentation", + "anchor": "module-resolution-and-loading", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "packages:e4e12db6fba6", + "chapter": "packages", + "kind": "module", + "name": "`package.json`_and_file_extensions", + "signature": "`package.json` and file extensions", + "label": "package.json", + "apiSymbol": "package.json", + "depth": 2, + "scope": "api", + "anchor": "packagejson-and-file-extensions", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "compiler-feature:packages.package.json", + "tests": [ + "tests/corpus/2092-package-imports/main.ts", + "tests/corpus/2120-package-self-import/main.ts", + "tests/corpus/2124-imports-field-wildcard/main.ts", + "tests/corpus/2390-dot-requires/main.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-feature:packages.package.json", + "tests": [ + "tests/fixtures/npm/cases/dual-entry/main.ts", + "tests/fixtures/npm/cases/self-name/main.ts", + "tests/fixtures/npm/cases/scoped-nested/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "packages:ea16828507af", + "chapter": "packages", + "kind": "module", + "name": "`--input-type`_flag", + "signature": "`--input-type` flag", + "label": "--input-type", + "apiSymbol": "--input-type", + "depth": 2, + "scope": "configuration", + "anchor": "--input-type-flag", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "packages:04f61475a0b3", + "chapter": "packages", + "kind": "misc", + "name": "package_entry_points", + "signature": "Package entry points", + "label": "Package entry points", + "apiSymbol": "package_entry_points", + "depth": 1, + "scope": "documentation", + "anchor": "package-entry-points", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "packages:42fa750bd331", + "chapter": "packages", + "kind": "module", + "name": "main_entry_point_export", + "signature": "Main entry point export", + "label": "Main entry point export", + "apiSymbol": "main_entry_point_export", + "depth": 2, + "scope": "documentation", + "anchor": "main-entry-point-export", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "packages:c801fbf354d1", + "chapter": "packages", + "kind": "module", + "name": "subpath_exports", + "signature": "Subpath exports", + "label": "Subpath exports", + "apiSymbol": "subpath_exports", + "depth": 2, + "scope": "documentation", + "anchor": "subpath-exports", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "packages:ab1b8d994e21", + "chapter": "packages", + "kind": "module", + "name": "extensions_in_subpaths", + "signature": "Extensions in subpaths", + "label": "Extensions in subpaths", + "apiSymbol": "extensions_in_subpaths", + "depth": 3, + "scope": "documentation", + "anchor": "extensions-in-subpaths", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "packages:2956c81c9cb3", + "chapter": "packages", + "kind": "module", + "name": "path_rules_and_validation_for_export_targets", + "signature": "Path Rules and Validation for Export Targets", + "label": "Path Rules and Validation for Export Targets", + "apiSymbol": "path_rules_and_validation_for_export_targets", + "depth": 3, + "scope": "documentation", + "anchor": "path-rules-and-validation-for-export-targets", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "packages:236cafb9e8cb", + "chapter": "packages", + "kind": "module", + "name": "targets_must_be_relative_urls", + "signature": "Targets must be relative URLs", + "label": "Targets must be relative URLs", + "apiSymbol": "targets_must_be_relative_urls", + "depth": 4, + "scope": "documentation", + "anchor": "targets-must-be-relative-urls", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "packages:a20e3d181a5e", + "chapter": "packages", + "kind": "module", + "name": "no_path_traversal_or_invalid_segments", + "signature": "No path traversal or invalid segments", + "label": "No path traversal or invalid segments", + "apiSymbol": "no_path_traversal_or_invalid_segments", + "depth": 4, + "scope": "documentation", + "anchor": "no-path-traversal-or-invalid-segments", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "packages:89ce57879d34", + "chapter": "packages", + "kind": "module", + "name": "exports_sugar", + "signature": "Exports sugar", + "label": "Exports sugar", + "apiSymbol": "exports_sugar", + "depth": 2, + "scope": "documentation", + "anchor": "exports-sugar", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "packages:ecd7fac4dbd6", + "chapter": "packages", + "kind": "module", + "name": "subpath_imports", + "signature": "Subpath imports", + "label": "Subpath imports", + "apiSymbol": "subpath_imports", + "depth": 2, + "scope": "documentation", + "anchor": "subpath-imports", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "packages:0646a0d0d8f1", + "chapter": "packages", + "kind": "module", + "name": "subpath_patterns", + "signature": "Subpath patterns", + "label": "Subpath patterns", + "apiSymbol": "subpath_patterns", + "depth": 2, + "scope": "documentation", + "anchor": "subpath-patterns", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "packages:393c4146a099", + "chapter": "packages", + "kind": "module", + "name": "conditional_exports", + "signature": "Conditional exports", + "label": "Conditional exports", + "apiSymbol": "conditional_exports", + "depth": 2, + "scope": "documentation", + "anchor": "conditional-exports", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "packages:66f562ec7ef7", + "chapter": "packages", + "kind": "module", + "name": "nested_conditions", + "signature": "Nested conditions", + "label": "Nested conditions", + "apiSymbol": "nested_conditions", + "depth": 2, + "scope": "documentation", + "anchor": "nested-conditions", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "packages:457ed3468113", + "chapter": "packages", + "kind": "module", + "name": "resolving_user_conditions", + "signature": "Resolving user conditions", + "label": "Resolving user conditions", + "apiSymbol": "resolving_user_conditions", + "depth": 2, + "scope": "documentation", + "anchor": "resolving-user-conditions", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "packages:bcb65065e532", + "chapter": "packages", + "kind": "module", + "name": "community_conditions_definitions", + "signature": "Community Conditions Definitions", + "label": "Community Conditions Definitions", + "apiSymbol": "community_conditions_definitions", + "depth": 2, + "scope": "documentation", + "anchor": "community-conditions-definitions", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "packages:b4bb97944c86", + "chapter": "packages", + "kind": "module", + "name": "self-referencing_a_package_using_its_name", + "signature": "Self-referencing a package using its name", + "label": "Self-referencing a package using its name", + "apiSymbol": "self-referencing_a_package_using_its_name", + "depth": 2, + "scope": "documentation", + "anchor": "self-referencing-a-package-using-its-name", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "packages:2aa1d331fae8", + "chapter": "packages", + "kind": "misc", + "name": "dual_commonjs/es_module_packages", + "signature": "Dual CommonJS/ES module packages", + "label": "Dual CommonJS/ES module packages", + "apiSymbol": "dual_commonjs/es_module_packages", + "depth": 1, + "scope": "documentation", + "anchor": "dual-commonjses-module-packages", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "packages:e3b770c4d8b1", + "chapter": "packages", + "kind": "misc", + "name": "node.js_`package.json`_field_definitions", + "signature": "Node.js `package.json` field definitions", + "label": "Node.js package.json field definitions", + "apiSymbol": "package.json", + "depth": 1, + "scope": "api", + "anchor": "nodejs-packagejson-field-definitions", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "compiler-feature:packages.package.json", + "tests": [ + "tests/corpus/2092-package-imports/main.ts", + "tests/corpus/2120-package-self-import/main.ts", + "tests/corpus/2124-imports-field-wildcard/main.ts", + "tests/corpus/2390-dot-requires/main.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-feature:packages.package.json", + "tests": [ + "tests/fixtures/npm/cases/dual-entry/main.ts", + "tests/fixtures/npm/cases/self-name/main.ts", + "tests/fixtures/npm/cases/scoped-nested/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "packages:b6d20a843522", + "chapter": "packages", + "kind": "module", + "name": "`\"name\"`", + "signature": "`\"name\"`", + "label": "\"name\"", + "apiSymbol": "\"name\"", + "depth": 2, + "scope": "api", + "anchor": "name", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "compiler-feature:packages.\"name\"", + "tests": [ + "tests/corpus/2092-package-imports/main.ts", + "tests/corpus/2120-package-self-import/main.ts", + "tests/corpus/2124-imports-field-wildcard/main.ts", + "tests/corpus/2390-dot-requires/main.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-feature:packages.\"name\"", + "tests": [ + "tests/fixtures/npm/cases/dual-entry/main.ts", + "tests/fixtures/npm/cases/self-name/main.ts", + "tests/fixtures/npm/cases/scoped-nested/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "packages:10cca2a3ef0e", + "chapter": "packages", + "kind": "module", + "name": "`\"main\"`", + "signature": "`\"main\"`", + "label": "\"main\"", + "apiSymbol": "\"main\"", + "depth": 2, + "scope": "api", + "anchor": "main", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "compiler-feature:packages.\"main\"", + "tests": [ + "tests/corpus/2092-package-imports/main.ts", + "tests/corpus/2120-package-self-import/main.ts", + "tests/corpus/2124-imports-field-wildcard/main.ts", + "tests/corpus/2390-dot-requires/main.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-feature:packages.\"main\"", + "tests": [ + "tests/fixtures/npm/cases/dual-entry/main.ts", + "tests/fixtures/npm/cases/self-name/main.ts", + "tests/fixtures/npm/cases/scoped-nested/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "packages:bec1b7b9334b", + "chapter": "packages", + "kind": "module", + "name": "`\"type\"`", + "signature": "`\"type\"`", + "label": "\"type\"", + "apiSymbol": "\"type\"", + "depth": 2, + "scope": "api", + "anchor": "type", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "compiler-feature:packages.\"type\"", + "tests": [ + "tests/corpus/2092-package-imports/main.ts", + "tests/corpus/2120-package-self-import/main.ts", + "tests/corpus/2124-imports-field-wildcard/main.ts", + "tests/corpus/2390-dot-requires/main.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-feature:packages.\"type\"", + "tests": [ + "tests/fixtures/npm/cases/dual-entry/main.ts", + "tests/fixtures/npm/cases/self-name/main.ts", + "tests/fixtures/npm/cases/scoped-nested/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "packages:1cb07d11fb3a", + "chapter": "packages", + "kind": "module", + "name": "`\"exports\"`", + "signature": "`\"exports\"`", + "label": "\"exports\"", + "apiSymbol": "\"exports\"", + "depth": 2, + "scope": "api", + "anchor": "exports", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "compiler-feature:packages.\"exports\"", + "tests": [ + "tests/corpus/2092-package-imports/main.ts", + "tests/corpus/2120-package-self-import/main.ts", + "tests/corpus/2124-imports-field-wildcard/main.ts", + "tests/corpus/2390-dot-requires/main.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-feature:packages.\"exports\"", + "tests": [ + "tests/fixtures/npm/cases/dual-entry/main.ts", + "tests/fixtures/npm/cases/self-name/main.ts", + "tests/fixtures/npm/cases/scoped-nested/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "packages:72775c823949", + "chapter": "packages", + "kind": "module", + "name": "`\"imports\"`", + "signature": "`\"imports\"`", + "label": "\"imports\"", + "apiSymbol": "\"imports\"", + "depth": 2, + "scope": "api", + "anchor": "imports", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "compiler-feature:packages.\"imports\"", + "tests": [ + "tests/corpus/2092-package-imports/main.ts", + "tests/corpus/2120-package-self-import/main.ts", + "tests/corpus/2124-imports-field-wildcard/main.ts", + "tests/corpus/2390-dot-requires/main.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-feature:packages.\"imports\"", + "tests": [ + "tests/fixtures/npm/cases/dual-entry/main.ts", + "tests/fixtures/npm/cases/self-name/main.ts", + "tests/fixtures/npm/cases/scoped-nested/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "typescript:962aa6ea9774", + "chapter": "typescript", + "kind": "module", + "name": "modules:_typescript", + "signature": "Modules: TypeScript", + "label": "Modules: TypeScript", + "apiSymbol": "modules:_typescript", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "derived:descendants" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "derived:descendants" + }, + "anchorSource": "chapter" + }, + { + "id": "typescript:e1d8b2615d6b", + "chapter": "typescript", + "kind": "module", + "name": "enabling", + "signature": "Enabling", + "label": "Enabling", + "apiSymbol": "enabling", + "depth": 1, + "scope": "documentation", + "anchor": "enabling", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "typescript:25b51b47b580", + "chapter": "typescript", + "kind": "module", + "name": "full_typescript_support", + "signature": "Full TypeScript support", + "label": "Full TypeScript support", + "apiSymbol": "full_typescript_support", + "depth": 1, + "scope": "documentation", + "anchor": "full-typescript-support", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "typescript:73d979f8e05b", + "chapter": "typescript", + "kind": "module", + "name": "type_stripping", + "signature": "Type stripping", + "label": "Type stripping", + "apiSymbol": "type_stripping", + "depth": 1, + "scope": "documentation", + "anchor": "type-stripping", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "typescript:a2e8354082fb", + "chapter": "typescript", + "kind": "module", + "name": "determining_module_system", + "signature": "Determining module system", + "label": "Determining module system", + "apiSymbol": "determining_module_system", + "depth": 2, + "scope": "documentation", + "anchor": "determining-module-system", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "typescript:699f7d387b98", + "chapter": "typescript", + "kind": "module", + "name": "typescript_features", + "signature": "TypeScript features", + "label": "TypeScript features", + "apiSymbol": "typescript_features", + "depth": 2, + "scope": "documentation", + "anchor": "typescript-features", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "typescript:e0b7094a6baa", + "chapter": "typescript", + "kind": "module", + "name": "importing_types_without_`type`_keyword", + "signature": "Importing types without `type` keyword", + "label": "Importing types without type keyword", + "apiSymbol": "type", + "depth": 2, + "scope": "api", + "anchor": "importing-types-without-type-keyword", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-feature:typescript.type" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-feature:typescript.type" + }, + "anchorSource": "exact" + }, + { + "id": "typescript:7c1fc80b100c", + "chapter": "typescript", + "kind": "module", + "name": "non-file_forms_of_input", + "signature": "Non-file forms of input", + "label": "Non-file forms of input", + "apiSymbol": "non-file_forms_of_input", + "depth": 2, + "scope": "documentation", + "anchor": "non-file-forms-of-input", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "typescript:e07a29b1552f", + "chapter": "typescript", + "kind": "module", + "name": "source_maps", + "signature": "Source maps", + "label": "Source maps", + "apiSymbol": "source_maps", + "depth": 2, + "scope": "documentation", + "anchor": "source-maps", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "typescript:91e0fa10a64c", + "chapter": "typescript", + "kind": "module", + "name": "type_stripping_in_dependencies", + "signature": "Type stripping in dependencies", + "label": "Type stripping in dependencies", + "apiSymbol": "type_stripping_in_dependencies", + "depth": 2, + "scope": "documentation", + "anchor": "type-stripping-in-dependencies", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "typescript:ef6a6189445a", + "chapter": "typescript", + "kind": "module", + "name": "paths_aliases", + "signature": "Paths aliases", + "label": "Paths aliases", + "apiSymbol": "paths_aliases", + "depth": 2, + "scope": "documentation", + "anchor": "paths-aliases", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "net:257fba929cb6", + "chapter": "net", + "kind": "module", + "name": "net", + "signature": "Net", + "label": "Net", + "apiSymbol": "net", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs", + "tests/corpus/2597-dgram-send-ladders.cjs", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "net:46530ec19225", + "chapter": "net", + "kind": "module", + "name": "ipc_support", + "signature": "IPC support", + "label": "IPC support", + "apiSymbol": "ipc_support", + "depth": 1, + "scope": "documentation", + "anchor": "ipc-support", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "net:40a82e56c70f", + "chapter": "net", + "kind": "module", + "name": "identifying_paths_for_ipc_connections", + "signature": "Identifying paths for IPC connections", + "label": "Identifying paths for IPC connections", + "apiSymbol": "identifying_paths_for_ipc_connections", + "depth": 2, + "scope": "documentation", + "anchor": "identifying-paths-for-ipc-connections", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "net:a4534171f578", + "chapter": "net", + "kind": "class", + "name": "net.BlockList", + "signature": "Class: `net.BlockList`", + "label": "net.BlockList", + "apiSymbol": "net.BlockList", + "depth": 1, + "scope": "api", + "anchor": "class-netblocklist", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:aa4d5d08e9a5", + "chapter": "net", + "kind": "method", + "name": "addAddress", + "signature": "`blockList.addAddress(address[, type])`", + "label": "blockList.addAddress(address[, type])", + "apiSymbol": "blockList.addAddress", + "depth": 2, + "scope": "api", + "anchor": "blocklistaddaddressaddress-type", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:035828cd10e1", + "chapter": "net", + "kind": "method", + "name": "addRange", + "signature": "`blockList.addRange(start, end[, type])`", + "label": "blockList.addRange(start, end[, type])", + "apiSymbol": "blockList.addRange", + "depth": 2, + "scope": "api", + "anchor": "blocklistaddrangestart-end-type", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:a2c2a1e796ad", + "chapter": "net", + "kind": "method", + "name": "addSubnet", + "signature": "`blockList.addSubnet(net, prefix[, type])`", + "label": "blockList.addSubnet(net, prefix[, type])", + "apiSymbol": "blockList.addSubnet", + "depth": 2, + "scope": "api", + "anchor": "blocklistaddsubnetnet-prefix-type", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:278a3ce510c8", + "chapter": "net", + "kind": "method", + "name": "check", + "signature": "`blockList.check(address[, type])`", + "label": "blockList.check(address[, type])", + "apiSymbol": "blockList.check", + "depth": 2, + "scope": "api", + "anchor": "blocklistcheckaddress-type", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:4ff6a4c12f52", + "chapter": "net", + "kind": "method", + "name": "isBlockList", + "signature": "`BlockList.isBlockList(value)`", + "label": "BlockList.isBlockList(value)", + "apiSymbol": "BlockList.isBlockList", + "depth": 2, + "scope": "api", + "anchor": "blocklistisblocklistvalue", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:07e5de315d95", + "chapter": "net", + "kind": "method", + "name": "fromJSON", + "signature": "`blockList.fromJSON(value)`", + "label": "blockList.fromJSON(value)", + "apiSymbol": "blockList.fromJSON", + "depth": 2, + "scope": "api", + "anchor": "blocklistfromjsonvalue", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:fb2019fd5533", + "chapter": "net", + "kind": "method", + "name": "toJSON", + "signature": "`blockList.toJSON()`", + "label": "blockList.toJSON()", + "apiSymbol": "blockList.toJSON", + "depth": 2, + "scope": "api", + "anchor": "blocklisttojson", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:044763579a8b", + "chapter": "net", + "kind": "string\\[]", + "name": "Type", + "signature": "`rules` Type: {string\\[]}", + "label": "rules", + "apiSymbol": "rules", + "depth": 2, + "scope": "api", + "anchor": "class-netblocklist", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "ancestor" + }, + { + "id": "net:89343bd5aaf9", + "chapter": "net", + "kind": "class", + "name": "net.SocketAddress", + "signature": "Class: `net.SocketAddress`", + "label": "net.SocketAddress", + "apiSymbol": "net.SocketAddress", + "depth": 1, + "scope": "api", + "anchor": "class-netsocketaddress", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:d8b7ddef1a9e", + "chapter": "net", + "kind": "method", + "name": "parse", + "signature": "`SocketAddress.parse(input)`", + "label": "SocketAddress.parse(input)", + "apiSymbol": "SocketAddress.parse", + "depth": 2, + "scope": "api", + "anchor": "socketaddressparseinput", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:ecb37fc5e10a", + "chapter": "net", + "kind": "string", + "name": "Type", + "signature": "`address` Type: {string}", + "label": "address", + "apiSymbol": "address", + "depth": 2, + "scope": "api", + "anchor": "class-netsocketaddress", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "ancestor" + }, + { + "id": "net:700645a75b6d", + "chapter": "net", + "kind": "string", + "name": "Type", + "signature": "`family` Type: {string} Either `'ipv4'` or `'ipv6'`.", + "label": "family", + "apiSymbol": "family", + "depth": 2, + "scope": "api", + "anchor": "class-netsocketaddress", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "ancestor" + }, + { + "id": "net:edb24548b5ad", + "chapter": "net", + "kind": "number", + "name": "Type", + "signature": "`flowlabel` Type: {number}", + "label": "flowlabel", + "apiSymbol": "flowlabel", + "depth": 2, + "scope": "api", + "anchor": "class-netsocketaddress", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "ancestor" + }, + { + "id": "net:d3fe623d8a5d", + "chapter": "net", + "kind": "number", + "name": "Type", + "signature": "`port` Type: {number}", + "label": "port", + "apiSymbol": "port", + "depth": 2, + "scope": "api", + "anchor": "class-netsocketaddress", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "ancestor" + }, + { + "id": "net:9cc05694ab6f", + "chapter": "net", + "kind": "class", + "name": "net.Server", + "signature": "Class: `net.Server`", + "label": "net.Server", + "apiSymbol": "net.Server", + "depth": 1, + "scope": "api", + "anchor": "class-netserver", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:net.Server" + }, + "anchorSource": "exact" + }, + { + "id": "net:e4829b616e5e", + "chapter": "net", + "kind": "method", + "name": "address", + "signature": "`server.address()`", + "label": "server.address()", + "apiSymbol": "server.address", + "depth": 2, + "scope": "api", + "anchor": "serveraddress", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:server.address", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:8b0b6930cf28", + "chapter": "net", + "kind": "method", + "name": "close", + "signature": "`server.close([callback])`", + "label": "server.close([callback])", + "apiSymbol": "server.close", + "depth": 2, + "scope": "api", + "anchor": "serverclosecallback", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:server.close", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:cb8af1f3e96e", + "chapter": "net", + "kind": "method", + "name": "[Symbol.asyncDispose]", + "signature": "`server[Symbol.asyncDispose]()`", + "label": "server[Symbol.asyncDispose]()", + "apiSymbol": "server", + "depth": 2, + "scope": "api", + "anchor": "serversymbolasyncdispose", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:d771bbf766b3", + "chapter": "net", + "kind": "method", + "name": "getConnections", + "signature": "`server.getConnections(callback)`", + "label": "server.getConnections(callback)", + "apiSymbol": "server.getConnections", + "depth": 2, + "scope": "api", + "anchor": "servergetconnectionscallback", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:46c3dc88f874", + "chapter": "net", + "kind": "method", + "name": "listen", + "signature": "`server.listen()`", + "label": "server.listen()", + "apiSymbol": "server.listen", + "depth": 2, + "scope": "api", + "anchor": "serverlisten", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:server.listen", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:641706b9cde1", + "chapter": "net", + "kind": "method", + "name": "listen", + "signature": "`server.listen(handle[, backlog][, callback])`", + "label": "server.listen(handle[, backlog][, callback])", + "apiSymbol": "server.listen", + "depth": 3, + "scope": "api", + "anchor": "serverlistenhandle-backlog-callback", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:server.listen", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:69ae5c16ea9b", + "chapter": "net", + "kind": "method", + "name": "listen", + "signature": "`server.listen(options[, callback])`", + "label": "server.listen(options[, callback])", + "apiSymbol": "server.listen", + "depth": 3, + "scope": "api", + "anchor": "serverlistenoptions-callback", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:server.listen", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:8db90e9d7226", + "chapter": "net", + "kind": "method", + "name": "listen", + "signature": "`server.listen(path[, backlog][, callback])`", + "label": "server.listen(path[, backlog][, callback])", + "apiSymbol": "server.listen", + "depth": 3, + "scope": "api", + "anchor": "serverlistenpath-backlog-callback", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:server.listen", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:3f2a5a150495", + "chapter": "net", + "kind": "method", + "name": "listen", + "signature": "`server.listen([port[, host[, backlog]]][, callback])`", + "label": "server.listen([port[, host[, backlog]]][, callback])", + "apiSymbol": "server.listen", + "depth": 3, + "scope": "api", + "anchor": "serverlistenport-host-backlog-callback", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:server.listen", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:bfc1c02de603", + "chapter": "net", + "kind": "method", + "name": "ref", + "signature": "`server.ref()`", + "label": "server.ref()", + "apiSymbol": "server.ref", + "depth": 2, + "scope": "api", + "anchor": "serverref", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:e8c45031923b", + "chapter": "net", + "kind": "method", + "name": "unref", + "signature": "`server.unref()`", + "label": "server.unref()", + "apiSymbol": "server.unref", + "depth": 2, + "scope": "api", + "anchor": "serverunref", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:f512fa4d215e", + "chapter": "net", + "kind": "boolean", + "name": "Type", + "signature": "`listening` Type: {boolean} Indicates whether or not the server is listening for connections.", + "label": "listening", + "apiSymbol": "listening", + "depth": 2, + "scope": "api", + "anchor": "class-netserver", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "ancestor" + }, + { + "id": "net:9bdb0c5b0e96", + "chapter": "net", + "kind": "integer", + "name": "Type", + "signature": "`maxConnections` Type: {integer}", + "label": "maxConnections", + "apiSymbol": "maxConnections", + "depth": 2, + "scope": "api", + "anchor": "class-netserver", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "ancestor" + }, + { + "id": "net:5067a03de492", + "chapter": "net", + "kind": "boolean", + "name": "Type", + "signature": "`dropMaxConnection` Type: {boolean}", + "label": "dropMaxConnection", + "apiSymbol": "dropMaxConnection", + "depth": 2, + "scope": "api", + "anchor": "class-netserver", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "ancestor" + }, + { + "id": "net:992edf208e3d", + "chapter": "net", + "kind": "event", + "name": "close", + "signature": "Event: `'close'`", + "label": "'close'", + "apiSymbol": "'close'", + "depth": 2, + "scope": "api", + "anchor": "event-close", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:3bcc9da04a85", + "chapter": "net", + "kind": "event", + "name": "connection", + "signature": "Event: `'connection'`", + "label": "'connection'", + "apiSymbol": "'connection'", + "depth": 2, + "scope": "api", + "anchor": "event-connection", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:88491a799abc", + "chapter": "net", + "kind": "event", + "name": "error", + "signature": "Event: `'error'`", + "label": "'error'", + "apiSymbol": "'error'", + "depth": 2, + "scope": "api", + "anchor": "event-error", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:e0948c09f069", + "chapter": "net", + "kind": "event", + "name": "listening", + "signature": "Event: `'listening'`", + "label": "'listening'", + "apiSymbol": "'listening'", + "depth": 2, + "scope": "api", + "anchor": "event-listening", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:1b50e0231816", + "chapter": "net", + "kind": "event", + "name": "drop", + "signature": "Event: `'drop'`", + "label": "'drop'", + "apiSymbol": "'drop'", + "depth": 2, + "scope": "api", + "anchor": "event-drop", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:9296e277bdec", + "chapter": "net", + "kind": "class", + "name": "net.Socket", + "signature": "Class: `net.Socket`", + "label": "net.Socket", + "apiSymbol": "net.Socket", + "depth": 1, + "scope": "api", + "anchor": "class-netsocket", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:net.Socket" + }, + "anchorSource": "exact" + }, + { + "id": "net:0acfadfa8cd9", + "chapter": "net", + "kind": "method", + "name": "address", + "signature": "`socket.address()`", + "label": "socket.address()", + "apiSymbol": "socket.address", + "depth": 2, + "scope": "api", + "anchor": "socketaddress", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:socket.address", + "tests": [ + "tests/corpus/2597-dgram-send-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:1a257d617710", + "chapter": "net", + "kind": "method", + "name": "connect", + "signature": "`socket.connect()`", + "label": "socket.connect()", + "apiSymbol": "socket.connect", + "depth": 2, + "scope": "api", + "anchor": "socketconnect", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:socket.connect", + "tests": [ + "tests/corpus/2597-dgram-send-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:a2a9cd13141f", + "chapter": "net", + "kind": "method", + "name": "connect", + "signature": "`socket.connect(options[, connectListener])`", + "label": "socket.connect(options[, connectListener])", + "apiSymbol": "socket.connect", + "depth": 3, + "scope": "api", + "anchor": "socketconnectoptions-connectlistener", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:socket.connect", + "tests": [ + "tests/corpus/2597-dgram-send-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:1e2bef4908f3", + "chapter": "net", + "kind": "method", + "name": "connect", + "signature": "`socket.connect(path[, connectListener])`", + "label": "socket.connect(path[, connectListener])", + "apiSymbol": "socket.connect", + "depth": 3, + "scope": "api", + "anchor": "socketconnectpath-connectlistener", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:socket.connect", + "tests": [ + "tests/corpus/2597-dgram-send-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:f1b87f136bfb", + "chapter": "net", + "kind": "method", + "name": "connect", + "signature": "`socket.connect(port[, host][, connectListener])`", + "label": "socket.connect(port[, host][, connectListener])", + "apiSymbol": "socket.connect", + "depth": 3, + "scope": "api", + "anchor": "socketconnectport-host-connectlistener", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:socket.connect", + "tests": [ + "tests/corpus/2597-dgram-send-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:e61cf2d7869b", + "chapter": "net", + "kind": "method", + "name": "destroy", + "signature": "`socket.destroy([error])`", + "label": "socket.destroy([error])", + "apiSymbol": "socket.destroy", + "depth": 2, + "scope": "api", + "anchor": "socketdestroyerror", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:socket.destroy", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:cdaa141289fd", + "chapter": "net", + "kind": "method", + "name": "destroySoon", + "signature": "`socket.destroySoon()`", + "label": "socket.destroySoon()", + "apiSymbol": "socket.destroySoon", + "depth": 2, + "scope": "api", + "anchor": "socketdestroysoon", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:0522326138b8", + "chapter": "net", + "kind": "method", + "name": "end", + "signature": "`socket.end([data[, encoding]][, callback])`", + "label": "socket.end([data[, encoding]][, callback])", + "apiSymbol": "socket.end", + "depth": 2, + "scope": "api", + "anchor": "socketenddata-encoding-callback", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:socket.end", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:75d839acf1ae", + "chapter": "net", + "kind": "method", + "name": "pause", + "signature": "`socket.pause()`", + "label": "socket.pause()", + "apiSymbol": "socket.pause", + "depth": 2, + "scope": "api", + "anchor": "socketpause", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:socket.pause", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:a7ef1c528048", + "chapter": "net", + "kind": "method", + "name": "ref", + "signature": "`socket.ref()`", + "label": "socket.ref()", + "apiSymbol": "socket.ref", + "depth": 2, + "scope": "api", + "anchor": "socketref", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:socket.ref", + "tests": [ + "tests/corpus/2597-dgram-send-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:64f5c6c21ebb", + "chapter": "net", + "kind": "method", + "name": "resetAndDestroy", + "signature": "`socket.resetAndDestroy()`", + "label": "socket.resetAndDestroy()", + "apiSymbol": "socket.resetAndDestroy", + "depth": 2, + "scope": "api", + "anchor": "socketresetanddestroy", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:2ff2d2f7acc7", + "chapter": "net", + "kind": "method", + "name": "resume", + "signature": "`socket.resume()`", + "label": "socket.resume()", + "apiSymbol": "socket.resume", + "depth": 2, + "scope": "api", + "anchor": "socketresume", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:socket.resume", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:14a0fb92fa7b", + "chapter": "net", + "kind": "method", + "name": "setEncoding", + "signature": "`socket.setEncoding([encoding])`", + "label": "socket.setEncoding([encoding])", + "apiSymbol": "socket.setEncoding", + "depth": 2, + "scope": "api", + "anchor": "socketsetencodingencoding", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:socket.setEncoding", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:7412f0f2828d", + "chapter": "net", + "kind": "method", + "name": "setKeepAlive", + "signature": "`socket.setKeepAlive([enable][, initialDelay])`", + "label": "socket.setKeepAlive([enable][, initialDelay])", + "apiSymbol": "socket.setKeepAlive", + "depth": 2, + "scope": "api", + "anchor": "socketsetkeepaliveenable-initialdelay", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:b6764f532190", + "chapter": "net", + "kind": "method", + "name": "setNoDelay", + "signature": "`socket.setNoDelay([noDelay])`", + "label": "socket.setNoDelay([noDelay])", + "apiSymbol": "socket.setNoDelay", + "depth": 2, + "scope": "api", + "anchor": "socketsetnodelaynodelay", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:84001187a222", + "chapter": "net", + "kind": "method", + "name": "setTimeout", + "signature": "`socket.setTimeout(timeout[, callback])`", + "label": "socket.setTimeout(timeout[, callback])", + "apiSymbol": "socket.setTimeout", + "depth": 2, + "scope": "api", + "anchor": "socketsettimeouttimeout-callback", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:socket.setTimeout", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:7fc21d77580a", + "chapter": "net", + "kind": "method", + "name": "getTypeOfService", + "signature": "`socket.getTypeOfService()`", + "label": "socket.getTypeOfService()", + "apiSymbol": "socket.getTypeOfService", + "depth": 2, + "scope": "api", + "anchor": "socketgettypeofservice", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:2b2ff106a8d7", + "chapter": "net", + "kind": "method", + "name": "setTypeOfService", + "signature": "`socket.setTypeOfService(tos)`", + "label": "socket.setTypeOfService(tos)", + "apiSymbol": "socket.setTypeOfService", + "depth": 2, + "scope": "api", + "anchor": "socketsettypeofservicetos", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:6e2b583dea69", + "chapter": "net", + "kind": "method", + "name": "unref", + "signature": "`socket.unref()`", + "label": "socket.unref()", + "apiSymbol": "socket.unref", + "depth": 2, + "scope": "api", + "anchor": "socketunref", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:socket.unref", + "tests": [ + "tests/corpus/2597-dgram-send-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:8c0698d22ee6", + "chapter": "net", + "kind": "method", + "name": "write", + "signature": "`socket.write(data[, encoding][, callback])`", + "label": "socket.write(data[, encoding][, callback])", + "apiSymbol": "socket.write", + "depth": 2, + "scope": "api", + "anchor": "socketwritedata-encoding-callback", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:socket.write", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:d41cbd39c438", + "chapter": "net", + "kind": "string\\[]", + "name": "Type", + "signature": "`autoSelectFamilyAttemptedAddresses` Type: {string\\[]}", + "label": "autoSelectFamilyAttemptedAddresses", + "apiSymbol": "autoSelectFamilyAttemptedAddresses", + "depth": 2, + "scope": "api", + "anchor": "class-netsocket", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "ancestor" + }, + { + "id": "net:52afe2bd1f88", + "chapter": "net", + "kind": "integer", + "name": "Type", + "signature": "`bufferSize` Type: {integer}", + "label": "bufferSize", + "apiSymbol": "bufferSize", + "depth": 2, + "scope": "api", + "anchor": "class-netsocket", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Use [`writable.writableLength`][] instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "ancestor" + }, + { + "id": "net:e095ee43b02e", + "chapter": "net", + "kind": "integer", + "name": "Type", + "signature": "`bytesRead` Type: {integer}", + "label": "bytesRead", + "apiSymbol": "bytesRead", + "depth": 2, + "scope": "api", + "anchor": "class-netsocket", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "ancestor" + }, + { + "id": "net:98bf772b3f15", + "chapter": "net", + "kind": "integer", + "name": "Type", + "signature": "`bytesWritten` Type: {integer}", + "label": "bytesWritten", + "apiSymbol": "bytesWritten", + "depth": 2, + "scope": "api", + "anchor": "class-netsocket", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "ancestor" + }, + { + "id": "net:5c9c48be12d3", + "chapter": "net", + "kind": "boolean", + "name": "Type", + "signature": "`connecting` Type: {boolean}", + "label": "connecting", + "apiSymbol": "connecting", + "depth": 2, + "scope": "api", + "anchor": "class-netsocket", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "ancestor" + }, + { + "id": "net:606071fbf392", + "chapter": "net", + "kind": "boolean", + "name": "Type", + "signature": "`destroyed` Type: {boolean} Indicates if the connection is destroyed or not. Once a connection is destroyed no further data can be transferred using it.", + "label": "destroyed", + "apiSymbol": "destroyed", + "depth": 2, + "scope": "api", + "anchor": "class-netsocket", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "ancestor" + }, + { + "id": "net:c2ef3c0f5e17", + "chapter": "net", + "kind": "string", + "name": "Type", + "signature": "`localAddress` Type: {string}", + "label": "localAddress", + "apiSymbol": "localAddress", + "depth": 2, + "scope": "api", + "anchor": "class-netsocket", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "ancestor" + }, + { + "id": "net:6da396af94a6", + "chapter": "net", + "kind": "integer", + "name": "Type", + "signature": "`localPort` Type: {integer}", + "label": "localPort", + "apiSymbol": "localPort", + "depth": 2, + "scope": "api", + "anchor": "class-netsocket", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "ancestor" + }, + { + "id": "net:c792f6ed2d9c", + "chapter": "net", + "kind": "string", + "name": "Type", + "signature": "`localFamily` Type: {string}", + "label": "localFamily", + "apiSymbol": "localFamily", + "depth": 2, + "scope": "api", + "anchor": "class-netsocket", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "ancestor" + }, + { + "id": "net:fb343fc72ba2", + "chapter": "net", + "kind": "boolean", + "name": "Type", + "signature": "`pending` Type: {boolean}", + "label": "pending", + "apiSymbol": "pending", + "depth": 2, + "scope": "api", + "anchor": "class-netsocket", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "ancestor" + }, + { + "id": "net:cb5514a7fed1", + "chapter": "net", + "kind": "string", + "name": "Type", + "signature": "`remoteAddress` Type: {string}", + "label": "remoteAddress", + "apiSymbol": "remoteAddress", + "depth": 2, + "scope": "api", + "anchor": "class-netsocket", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "ancestor" + }, + { + "id": "net:10f734f083d2", + "chapter": "net", + "kind": "string", + "name": "Type", + "signature": "`remoteFamily` Type: {string}", + "label": "remoteFamily", + "apiSymbol": "remoteFamily", + "depth": 2, + "scope": "api", + "anchor": "class-netsocket", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "ancestor" + }, + { + "id": "net:9f91bb06165a", + "chapter": "net", + "kind": "integer", + "name": "Type", + "signature": "`remotePort` Type: {integer}", + "label": "remotePort", + "apiSymbol": "remotePort", + "depth": 2, + "scope": "api", + "anchor": "class-netsocket", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "ancestor" + }, + { + "id": "net:f96568725a94", + "chapter": "net", + "kind": "number|undefined", + "name": "Type", + "signature": "`timeout` Type: {number|undefined}", + "label": "timeout", + "apiSymbol": "timeout", + "depth": 2, + "scope": "api", + "anchor": "class-netsocket", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:timeout", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "ancestor" + }, + { + "id": "net:f73b745b326e", + "chapter": "net", + "kind": "string", + "name": "Type", + "signature": "`readyState` Type: {string}", + "label": "readyState", + "apiSymbol": "readyState", + "depth": 2, + "scope": "api", + "anchor": "class-netsocket", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "ancestor" + }, + { + "id": "net:b2599fa8371a", + "chapter": "net", + "kind": "event", + "name": "close", + "signature": "Event: `'close'`", + "label": "'close'", + "apiSymbol": "'close'", + "depth": 2, + "scope": "api", + "anchor": "event-close_1", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:0a8cc1336b80", + "chapter": "net", + "kind": "event", + "name": "connect", + "signature": "Event: `'connect'`", + "label": "'connect'", + "apiSymbol": "'connect'", + "depth": 2, + "scope": "api", + "anchor": "event-connect", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:5d2419fc5afe", + "chapter": "net", + "kind": "event", + "name": "connectionAttempt", + "signature": "Event: `'connectionAttempt'`", + "label": "'connectionAttempt'", + "apiSymbol": "'connectionAttempt'", + "depth": 2, + "scope": "api", + "anchor": "event-connectionattempt", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:7909ab428071", + "chapter": "net", + "kind": "event", + "name": "connectionAttemptFailed", + "signature": "Event: `'connectionAttemptFailed'`", + "label": "'connectionAttemptFailed'", + "apiSymbol": "'connectionAttemptFailed'", + "depth": 2, + "scope": "api", + "anchor": "event-connectionattemptfailed", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:ae5ce3686340", + "chapter": "net", + "kind": "event", + "name": "connectionAttemptTimeout", + "signature": "Event: `'connectionAttemptTimeout'`", + "label": "'connectionAttemptTimeout'", + "apiSymbol": "'connectionAttemptTimeout'", + "depth": 2, + "scope": "api", + "anchor": "event-connectionattempttimeout", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:4478488608ba", + "chapter": "net", + "kind": "event", + "name": "data", + "signature": "Event: `'data'`", + "label": "'data'", + "apiSymbol": "'data'", + "depth": 2, + "scope": "api", + "anchor": "event-data", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:06034dedc39f", + "chapter": "net", + "kind": "event", + "name": "drain", + "signature": "Event: `'drain'`", + "label": "'drain'", + "apiSymbol": "'drain'", + "depth": 2, + "scope": "api", + "anchor": "event-drain", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:59e69be71236", + "chapter": "net", + "kind": "event", + "name": "end", + "signature": "Event: `'end'`", + "label": "'end'", + "apiSymbol": "'end'", + "depth": 2, + "scope": "api", + "anchor": "event-end", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:5c5069a07554", + "chapter": "net", + "kind": "event", + "name": "error", + "signature": "Event: `'error'`", + "label": "'error'", + "apiSymbol": "'error'", + "depth": 2, + "scope": "api", + "anchor": "event-error_1", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:03d3f8746cb8", + "chapter": "net", + "kind": "event", + "name": "lookup", + "signature": "Event: `'lookup'`", + "label": "'lookup'", + "apiSymbol": "'lookup'", + "depth": 2, + "scope": "api", + "anchor": "event-lookup", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:fafd8bcda5fe", + "chapter": "net", + "kind": "event", + "name": "ready", + "signature": "Event: `'ready'`", + "label": "'ready'", + "apiSymbol": "'ready'", + "depth": 2, + "scope": "api", + "anchor": "event-ready", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:bd336464f782", + "chapter": "net", + "kind": "event", + "name": "timeout", + "signature": "Event: `'timeout'`", + "label": "'timeout'", + "apiSymbol": "'timeout'", + "depth": 2, + "scope": "api", + "anchor": "event-timeout", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:2d7b6dbbbe2c", + "chapter": "net", + "kind": "method", + "name": "connect", + "signature": "`net.connect()`", + "label": "net.connect()", + "apiSymbol": "net.connect", + "depth": 1, + "scope": "api", + "anchor": "netconnect", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:net.connect", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:net.connect" + }, + "anchorSource": "exact" + }, + { + "id": "net:12d18d57ece0", + "chapter": "net", + "kind": "method", + "name": "connect", + "signature": "`net.connect(options[, connectListener])`", + "label": "net.connect(options[, connectListener])", + "apiSymbol": "net.connect", + "depth": 2, + "scope": "api", + "anchor": "netconnectoptions-connectlistener", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:net.connect", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:net.connect" + }, + "anchorSource": "exact" + }, + { + "id": "net:40a2d79beab9", + "chapter": "net", + "kind": "method", + "name": "connect", + "signature": "`net.connect(path[, connectListener])`", + "label": "net.connect(path[, connectListener])", + "apiSymbol": "net.connect", + "depth": 2, + "scope": "api", + "anchor": "netconnectpath-connectlistener", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:net.connect", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:net.connect" + }, + "anchorSource": "exact" + }, + { + "id": "net:ef1c5fc36ae5", + "chapter": "net", + "kind": "method", + "name": "connect", + "signature": "`net.connect(port[, host][, connectListener])`", + "label": "net.connect(port[, host][, connectListener])", + "apiSymbol": "net.connect", + "depth": 2, + "scope": "api", + "anchor": "netconnectport-host-connectlistener", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:net.connect", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:net.connect" + }, + "anchorSource": "exact" + }, + { + "id": "net:fd4e1cf3dd55", + "chapter": "net", + "kind": "method", + "name": "createConnection", + "signature": "`net.createConnection()`", + "label": "net.createConnection()", + "apiSymbol": "net.createConnection", + "depth": 1, + "scope": "api", + "anchor": "netcreateconnection", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:net.createConnection", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:net.createConnection" + }, + "anchorSource": "exact" + }, + { + "id": "net:0a914b7857cd", + "chapter": "net", + "kind": "method", + "name": "createConnection", + "signature": "`net.createConnection(options[, connectListener])`", + "label": "net.createConnection(options[, connectListener])", + "apiSymbol": "net.createConnection", + "depth": 2, + "scope": "api", + "anchor": "netcreateconnectionoptions-connectlistener", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:net.createConnection", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:net.createConnection" + }, + "anchorSource": "exact" + }, + { + "id": "net:694a4f54a581", + "chapter": "net", + "kind": "method", + "name": "createConnection", + "signature": "`net.createConnection(path[, connectListener])`", + "label": "net.createConnection(path[, connectListener])", + "apiSymbol": "net.createConnection", + "depth": 2, + "scope": "api", + "anchor": "netcreateconnectionpath-connectlistener", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:net.createConnection", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:net.createConnection" + }, + "anchorSource": "exact" + }, + { + "id": "net:5f8c1e35d1dd", + "chapter": "net", + "kind": "method", + "name": "createConnection", + "signature": "`net.createConnection(port[, host][, connectListener])`", + "label": "net.createConnection(port[, host][, connectListener])", + "apiSymbol": "net.createConnection", + "depth": 2, + "scope": "api", + "anchor": "netcreateconnectionport-host-connectlistener", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:net.createConnection", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:net.createConnection" + }, + "anchorSource": "exact" + }, + { + "id": "net:6ac098125b16", + "chapter": "net", + "kind": "method", + "name": "createServer", + "signature": "`net.createServer([options][, connectionListener])`", + "label": "net.createServer([options][, connectionListener])", + "apiSymbol": "net.createServer", + "depth": 1, + "scope": "api", + "anchor": "netcreateserveroptions-connectionlistener", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:net.createServer", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:net.createServer" + }, + "anchorSource": "exact" + }, + { + "id": "net:5184a955728a", + "chapter": "net", + "kind": "method", + "name": "getDefaultAutoSelectFamily", + "signature": "`net.getDefaultAutoSelectFamily()`", + "label": "net.getDefaultAutoSelectFamily()", + "apiSymbol": "net.getDefaultAutoSelectFamily", + "depth": 1, + "scope": "api", + "anchor": "netgetdefaultautoselectfamily", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:9f966c770cb2", + "chapter": "net", + "kind": "method", + "name": "setDefaultAutoSelectFamily", + "signature": "`net.setDefaultAutoSelectFamily(value)`", + "label": "net.setDefaultAutoSelectFamily(value)", + "apiSymbol": "net.setDefaultAutoSelectFamily", + "depth": 1, + "scope": "api", + "anchor": "netsetdefaultautoselectfamilyvalue", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:87666547ae4b", + "chapter": "net", + "kind": "method", + "name": "getDefaultAutoSelectFamilyAttemptTimeout", + "signature": "`net.getDefaultAutoSelectFamilyAttemptTimeout()`", + "label": "net.getDefaultAutoSelectFamilyAttemptTimeout()", + "apiSymbol": "net.getDefaultAutoSelectFamilyAttemptTimeout", + "depth": 1, + "scope": "api", + "anchor": "netgetdefaultautoselectfamilyattempttimeout", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:net.getDefaultAutoSelectFamilyAttemptTimeout", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:fdd0fb27ee4b", + "chapter": "net", + "kind": "method", + "name": "setDefaultAutoSelectFamilyAttemptTimeout", + "signature": "`net.setDefaultAutoSelectFamilyAttemptTimeout(value)`", + "label": "net.setDefaultAutoSelectFamilyAttemptTimeout(value)", + "apiSymbol": "net.setDefaultAutoSelectFamilyAttemptTimeout", + "depth": 1, + "scope": "api", + "anchor": "netsetdefaultautoselectfamilyattempttimeoutvalue", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:net.setDefaultAutoSelectFamilyAttemptTimeout", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:net" + }, + "anchorSource": "exact" + }, + { + "id": "net:3bbf8fc6cea0", + "chapter": "net", + "kind": "method", + "name": "isIP", + "signature": "`net.isIP(input)`", + "label": "net.isIP(input)", + "apiSymbol": "net.isIP", + "depth": 1, + "scope": "api", + "anchor": "netisipinput", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:net.isIP", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "net:4564b8a65ecf", + "chapter": "net", + "kind": "method", + "name": "isIPv4", + "signature": "`net.isIPv4(input)`", + "label": "net.isIPv4(input)", + "apiSymbol": "net.isIPv4", + "depth": 1, + "scope": "api", + "anchor": "netisipv4input", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:net.isIPv4", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "net:a2c600b17356", + "chapter": "net", + "kind": "method", + "name": "isIPv6", + "signature": "`net.isIPv6(input)`", + "label": "net.isIPv6(input)", + "apiSymbol": "net.isIPv6", + "depth": 1, + "scope": "api", + "anchor": "netisipv6input", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:net" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:net.isIPv6", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "os:2dd2b8971171", + "chapter": "os", + "kind": "module", + "name": "os", + "signature": "OS", + "label": "OS", + "apiSymbol": "os", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/corpus/1480-os-network-interfaces.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "os:e58c6a623b6f", + "chapter": "os", + "kind": "module", + "name": "os_constants", + "signature": "OS constants", + "label": "OS constants", + "apiSymbol": "os_constants", + "depth": 1, + "scope": "documentation", + "anchor": "os-constants", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "os:afe201cc2195", + "chapter": "os", + "kind": "module", + "name": "signal_constants", + "signature": "Signal constants", + "label": "Signal constants", + "apiSymbol": "signal_constants", + "depth": 2, + "scope": "documentation", + "anchor": "signal-constants", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "os:e52787b830eb", + "chapter": "os", + "kind": "module", + "name": "error_constants", + "signature": "Error constants", + "label": "Error constants", + "apiSymbol": "error_constants", + "depth": 2, + "scope": "documentation", + "anchor": "error-constants", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "os:ed4b59918961", + "chapter": "os", + "kind": "module", + "name": "posix_error_constants", + "signature": "POSIX error constants", + "label": "POSIX error constants", + "apiSymbol": "posix_error_constants", + "depth": 3, + "scope": "documentation", + "anchor": "posix-error-constants", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "os:e5590c1ef742", + "chapter": "os", + "kind": "module", + "name": "windows-specific_error_constants", + "signature": "Windows-specific error constants", + "label": "Windows-specific error constants", + "apiSymbol": "windows-specific_error_constants", + "depth": 3, + "scope": "documentation", + "anchor": "windows-specific-error-constants", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "os:05f6188d0f58", + "chapter": "os", + "kind": "module", + "name": "dlopen_constants", + "signature": "dlopen constants", + "label": "dlopen constants", + "apiSymbol": "dlopen_constants", + "depth": 2, + "scope": "documentation", + "anchor": "dlopen-constants", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "os:821c7336fe97", + "chapter": "os", + "kind": "module", + "name": "priority_constants", + "signature": "Priority constants", + "label": "Priority constants", + "apiSymbol": "priority_constants", + "depth": 2, + "scope": "documentation", + "anchor": "priority-constants", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "os:a73329baa458", + "chapter": "os", + "kind": "module", + "name": "libuv_constants", + "signature": "libuv constants", + "label": "libuv constants", + "apiSymbol": "libuv_constants", + "depth": 2, + "scope": "documentation", + "anchor": "libuv-constants", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "os:a41e9446f2bf", + "chapter": "os", + "kind": "method", + "name": "availableParallelism", + "signature": "`os.availableParallelism()`", + "label": "os.availableParallelism()", + "apiSymbol": "os.availableParallelism", + "depth": 1, + "scope": "api", + "anchor": "osavailableparallelism", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:os" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:os.availableParallelism", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "os:08f3f4e35b71", + "chapter": "os", + "kind": "method", + "name": "arch", + "signature": "`os.arch()`", + "label": "os.arch()", + "apiSymbol": "os.arch", + "depth": 1, + "scope": "api", + "anchor": "osarch", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:os" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:os.arch", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "os:965cd78a7277", + "chapter": "os", + "kind": "method", + "name": "cpus", + "signature": "`os.cpus()`", + "label": "os.cpus()", + "apiSymbol": "os.cpus", + "depth": 1, + "scope": "api", + "anchor": "oscpus", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:os" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:os.cpus", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "os:90f0b126f9dc", + "chapter": "os", + "kind": "method", + "name": "endianness", + "signature": "`os.endianness()`", + "label": "os.endianness()", + "apiSymbol": "os.endianness", + "depth": 1, + "scope": "api", + "anchor": "osendianness", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:os" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:os.endianness", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "os:e5fbf9cf1d23", + "chapter": "os", + "kind": "method", + "name": "freemem", + "signature": "`os.freemem()`", + "label": "os.freemem()", + "apiSymbol": "os.freemem", + "depth": 1, + "scope": "api", + "anchor": "osfreemem", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:os" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:os.freemem", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "os:4d66ebd23497", + "chapter": "os", + "kind": "method", + "name": "getPriority", + "signature": "`os.getPriority([pid])`", + "label": "os.getPriority([pid])", + "apiSymbol": "os.getPriority", + "depth": 1, + "scope": "api", + "anchor": "osgetprioritypid", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:os" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:os" + }, + "anchorSource": "exact" + }, + { + "id": "os:eebf91f2cc0f", + "chapter": "os", + "kind": "method", + "name": "homedir", + "signature": "`os.homedir()`", + "label": "os.homedir()", + "apiSymbol": "os.homedir", + "depth": 1, + "scope": "api", + "anchor": "oshomedir", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.os.homedir", + "tests": [ + "tests/corpus/1480-os-network-interfaces.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:os.homedir", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "os:7396ccfc37e3", + "chapter": "os", + "kind": "method", + "name": "hostname", + "signature": "`os.hostname()`", + "label": "os.hostname()", + "apiSymbol": "os.hostname", + "depth": 1, + "scope": "api", + "anchor": "oshostname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:os" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:os.hostname", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "os:651b563fd52e", + "chapter": "os", + "kind": "method", + "name": "loadavg", + "signature": "`os.loadavg()`", + "label": "os.loadavg()", + "apiSymbol": "os.loadavg", + "depth": 1, + "scope": "api", + "anchor": "osloadavg", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:os" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:os.loadavg", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "os:78c2e69d1fdf", + "chapter": "os", + "kind": "method", + "name": "machine", + "signature": "`os.machine()`", + "label": "os.machine()", + "apiSymbol": "os.machine", + "depth": 1, + "scope": "api", + "anchor": "osmachine", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:os" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:os.machine", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "os:ad838ab2f7e3", + "chapter": "os", + "kind": "method", + "name": "networkInterfaces", + "signature": "`os.networkInterfaces()`", + "label": "os.networkInterfaces()", + "apiSymbol": "os.networkInterfaces", + "depth": 1, + "scope": "api", + "anchor": "osnetworkinterfaces", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.os.networkInterfaces", + "tests": [ + "tests/corpus/1480-os-network-interfaces.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:os.networkInterfaces", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "os:435fc2fc08b1", + "chapter": "os", + "kind": "method", + "name": "platform", + "signature": "`os.platform()`", + "label": "os.platform()", + "apiSymbol": "os.platform", + "depth": 1, + "scope": "api", + "anchor": "osplatform", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.os.platform", + "tests": [ + "tests/corpus/1480-os-network-interfaces.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:os.platform", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "os:640dc7f343f4", + "chapter": "os", + "kind": "method", + "name": "release", + "signature": "`os.release()`", + "label": "os.release()", + "apiSymbol": "os.release", + "depth": 1, + "scope": "api", + "anchor": "osrelease", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.os.release", + "tests": [ + "tests/corpus/1480-os-network-interfaces.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:os.release", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "os:e20aab5c65c1", + "chapter": "os", + "kind": "method", + "name": "setPriority", + "signature": "`os.setPriority([pid, ]priority)`", + "label": "os.setPriority([pid, ]priority)", + "apiSymbol": "os.setPriority", + "depth": 1, + "scope": "api", + "anchor": "ossetprioritypid-priority", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:os" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:os" + }, + "anchorSource": "exact" + }, + { + "id": "os:a185533216ba", + "chapter": "os", + "kind": "method", + "name": "tmpdir", + "signature": "`os.tmpdir()`", + "label": "os.tmpdir()", + "apiSymbol": "os.tmpdir", + "depth": 1, + "scope": "api", + "anchor": "ostmpdir", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.os.tmpdir", + "tests": [ + "tests/corpus/1480-os-network-interfaces.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:os.tmpdir", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "os:70f1fee74b86", + "chapter": "os", + "kind": "method", + "name": "totalmem", + "signature": "`os.totalmem()`", + "label": "os.totalmem()", + "apiSymbol": "os.totalmem", + "depth": 1, + "scope": "api", + "anchor": "ostotalmem", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.os.totalmem", + "tests": [ + "tests/corpus/1480-os-network-interfaces.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:os.totalmem", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "os:d6f6da48d880", + "chapter": "os", + "kind": "method", + "name": "type", + "signature": "`os.type()`", + "label": "os.type()", + "apiSymbol": "os.type", + "depth": 1, + "scope": "api", + "anchor": "ostype", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.os.type", + "tests": [ + "tests/corpus/1480-os-network-interfaces.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:os.type", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "os:b9c93a734e8d", + "chapter": "os", + "kind": "method", + "name": "uptime", + "signature": "`os.uptime()`", + "label": "os.uptime()", + "apiSymbol": "os.uptime", + "depth": 1, + "scope": "api", + "anchor": "osuptime", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:os" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:os.uptime", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "os:b4eedcce1580", + "chapter": "os", + "kind": "method", + "name": "userInfo", + "signature": "`os.userInfo([options])`", + "label": "os.userInfo([options])", + "apiSymbol": "os.userInfo", + "depth": 1, + "scope": "api", + "anchor": "osuserinfooptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.os.userInfo", + "tests": [ + "tests/corpus/1480-os-network-interfaces.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:os.userInfo", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "os:72f5b3f2ef64", + "chapter": "os", + "kind": "method", + "name": "version", + "signature": "`os.version()`", + "label": "os.version()", + "apiSymbol": "os.version", + "depth": 1, + "scope": "api", + "anchor": "osversion", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:os" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:os.version", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "os:adc23f556640", + "chapter": "os", + "kind": "string", + "name": "Type", + "signature": "`EOL` Type: {string}", + "label": "EOL", + "apiSymbol": "EOL", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.os.EOL", + "tests": [ + "tests/corpus/1480-os-network-interfaces.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:os.EOL", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "os:a5b9d352944f", + "chapter": "os", + "kind": "Object", + "name": "Type", + "signature": "`constants` Type: {Object}", + "label": "constants", + "apiSymbol": "constants", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:os" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:os.constants", + "tests": [ + "tests/fixtures/npm/cases/builtin-shims/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "os:c5e8d4dcf1db", + "chapter": "os", + "kind": "string", + "name": "Type", + "signature": "`devNull` Type: {string}", + "label": "devNull", + "apiSymbol": "devNull", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:os" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:os" + }, + "anchorSource": "chapter" + }, + { + "id": "path:669986112fe1", + "chapter": "path", + "kind": "module", + "name": "path", + "signature": "Path", + "label": "Path", + "apiSymbol": "path", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/corpus/957-builtins-namespace.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "path:e16e3f06c198", + "chapter": "path", + "kind": "module", + "name": "windows_vs._posix", + "signature": "Windows vs. POSIX", + "label": "Windows vs. POSIX", + "apiSymbol": "windows_vs._posix", + "depth": 1, + "scope": "documentation", + "anchor": "windows-vs-posix", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "path:7250a15b94a7", + "chapter": "path", + "kind": "method", + "name": "basename", + "signature": "`path.basename(path[, suffix])`", + "label": "path.basename(path[, suffix])", + "apiSymbol": "path.basename", + "depth": 1, + "scope": "api", + "anchor": "pathbasenamepath-suffix", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.path.basename", + "tests": [ + "tests/corpus/957-builtins-namespace.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:path.basename", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "path:1dcc51cfa0c5", + "chapter": "path", + "kind": "method", + "name": "dirname", + "signature": "`path.dirname(path)`", + "label": "path.dirname(path)", + "apiSymbol": "path.dirname", + "depth": 1, + "scope": "api", + "anchor": "pathdirnamepath", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.path.dirname", + "tests": [ + "tests/corpus/957-builtins-namespace.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:path.dirname", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "path:cc28b9b161db", + "chapter": "path", + "kind": "method", + "name": "extname", + "signature": "`path.extname(path)`", + "label": "path.extname(path)", + "apiSymbol": "path.extname", + "depth": 1, + "scope": "api", + "anchor": "pathextnamepath", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.path.extname", + "tests": [ + "tests/corpus/957-builtins-namespace.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:path.extname", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "path:40e393d10f79", + "chapter": "path", + "kind": "method", + "name": "format", + "signature": "`path.format(pathObject)`", + "label": "path.format(pathObject)", + "apiSymbol": "path.format", + "depth": 1, + "scope": "api", + "anchor": "pathformatpathobject", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:path" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:path.format", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "path:625fe3d61e8d", + "chapter": "path", + "kind": "method", + "name": "matchesGlob", + "signature": "`path.matchesGlob(path, pattern)`", + "label": "path.matchesGlob(path, pattern)", + "apiSymbol": "path.matchesGlob", + "depth": 1, + "scope": "api", + "anchor": "pathmatchesglobpath-pattern", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:path" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:path" + }, + "anchorSource": "exact" + }, + { + "id": "path:2a06aa5ac212", + "chapter": "path", + "kind": "method", + "name": "isAbsolute", + "signature": "`path.isAbsolute(path)`", + "label": "path.isAbsolute(path)", + "apiSymbol": "path.isAbsolute", + "depth": 1, + "scope": "api", + "anchor": "pathisabsolutepath", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.path.isAbsolute", + "tests": [ + "tests/corpus/957-builtins-namespace.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:path.isAbsolute", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "path:964527f1583c", + "chapter": "path", + "kind": "method", + "name": "join", + "signature": "`path.join([...paths])`", + "label": "path.join([...paths])", + "apiSymbol": "path.join", + "depth": 1, + "scope": "api", + "anchor": "pathjoinpaths", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.path.join", + "tests": [ + "tests/corpus/957-builtins-namespace.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:path.join", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "path:0eea52505737", + "chapter": "path", + "kind": "method", + "name": "normalize", + "signature": "`path.normalize(path)`", + "label": "path.normalize(path)", + "apiSymbol": "path.normalize", + "depth": 1, + "scope": "api", + "anchor": "pathnormalizepath", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.path.normalize", + "tests": [ + "tests/corpus/957-builtins-namespace.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:path.normalize", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "path:d07cbf8afc37", + "chapter": "path", + "kind": "method", + "name": "parse", + "signature": "`path.parse(path)`", + "label": "path.parse(path)", + "apiSymbol": "path.parse", + "depth": 1, + "scope": "api", + "anchor": "pathparsepath", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:path" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:path.parse", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "path:20c9b0419eed", + "chapter": "path", + "kind": "method", + "name": "relative", + "signature": "`path.relative(from, to)`", + "label": "path.relative(from, to)", + "apiSymbol": "path.relative", + "depth": 1, + "scope": "api", + "anchor": "pathrelativefrom-to", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.path.relative", + "tests": [ + "tests/corpus/957-builtins-namespace.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:path.relative", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "path:99d3d3f8bb3b", + "chapter": "path", + "kind": "method", + "name": "resolve", + "signature": "`path.resolve([...paths])`", + "label": "path.resolve([...paths])", + "apiSymbol": "path.resolve", + "depth": 1, + "scope": "api", + "anchor": "pathresolvepaths", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.path.resolve", + "tests": [ + "tests/corpus/957-builtins-namespace.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:path.resolve", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "path:e0956b791e31", + "chapter": "path", + "kind": "method", + "name": "toNamespacedPath", + "signature": "`path.toNamespacedPath(path)`", + "label": "path.toNamespacedPath(path)", + "apiSymbol": "path.toNamespacedPath", + "depth": 1, + "scope": "api", + "anchor": "pathtonamespacedpathpath", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.path.toNamespacedPath", + "tests": [ + "tests/corpus/957-builtins-namespace.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:path.toNamespacedPath", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "path:5b4c30163bb7", + "chapter": "path", + "kind": "string", + "name": "Type", + "signature": "`delimiter` Type: {string}", + "label": "delimiter", + "apiSymbol": "delimiter", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.path.delimiter", + "tests": [ + "tests/corpus/957-builtins-namespace.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:path.delimiter", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "path:77c7f6b48cd0", + "chapter": "path", + "kind": "Object", + "name": "Type", + "signature": "`posix` Type: {Object}", + "label": "posix", + "apiSymbol": "posix", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.path.posix", + "tests": [ + "tests/corpus/957-builtins-namespace.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:path.posix", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "path:3c7f767f0a27", + "chapter": "path", + "kind": "string", + "name": "Type", + "signature": "`sep` Type: {string}", + "label": "sep", + "apiSymbol": "sep", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.path.sep", + "tests": [ + "tests/corpus/957-builtins-namespace.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:path.sep", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "path:a61594579213", + "chapter": "path", + "kind": "Object", + "name": "Type", + "signature": "`win32` Type: {Object}", + "label": "win32", + "apiSymbol": "win32", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.path.win32", + "tests": [ + "tests/corpus/957-builtins-namespace.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:path.win32", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "perf_hooks:72a4bd428803", + "chapter": "perf_hooks", + "kind": "module", + "name": "performance_measurement_apis", + "signature": "Performance measurement APIs", + "label": "Performance measurement APIs", + "apiSymbol": "performance_measurement_apis", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "perf_hooks:4191f3d1f637", + "chapter": "perf_hooks", + "kind": "class", + "name": "PerformanceEntry", + "signature": "Class: `PerformanceEntry`", + "label": "PerformanceEntry", + "apiSymbol": "PerformanceEntry", + "depth": 1, + "scope": "api", + "anchor": "class-performanceentry", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:1f9a6cb25ceb", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`duration` Type: {number}", + "label": "duration", + "apiSymbol": "duration", + "depth": 2, + "scope": "api", + "anchor": "class-performanceentry", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "ancestor" + }, + { + "id": "perf_hooks:e8061026c790", + "chapter": "perf_hooks", + "kind": "string", + "name": "Type", + "signature": "`entryType` Type: {string}", + "label": "entryType", + "apiSymbol": "entryType", + "depth": 2, + "scope": "api", + "anchor": "class-performanceentry", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "ancestor" + }, + { + "id": "perf_hooks:ae280bad5340", + "chapter": "perf_hooks", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string}", + "label": "name", + "apiSymbol": "name", + "depth": 2, + "scope": "api", + "anchor": "class-performanceentry", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "ancestor" + }, + { + "id": "perf_hooks:28d0ce9a33a8", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`startTime` Type: {number}", + "label": "startTime", + "apiSymbol": "startTime", + "depth": 2, + "scope": "api", + "anchor": "class-performanceentry", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "ancestor" + }, + { + "id": "perf_hooks:62dc8fa6e93a", + "chapter": "perf_hooks", + "kind": "class", + "name": "PerformanceMark", + "signature": "Class: `PerformanceMark`", + "label": "PerformanceMark", + "apiSymbol": "PerformanceMark", + "depth": 1, + "scope": "api", + "anchor": "class-performancemark", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:8f11d66797d1", + "chapter": "perf_hooks", + "kind": "any", + "name": "Type", + "signature": "`detail` Type: {any}", + "label": "detail", + "apiSymbol": "detail", + "depth": 2, + "scope": "api", + "anchor": "class-performancemark", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "ancestor" + }, + { + "id": "perf_hooks:7e01593bf814", + "chapter": "perf_hooks", + "kind": "class", + "name": "PerformanceMeasure", + "signature": "Class: `PerformanceMeasure`", + "label": "PerformanceMeasure", + "apiSymbol": "PerformanceMeasure", + "depth": 1, + "scope": "api", + "anchor": "class-performancemeasure", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:ee5e4e453e50", + "chapter": "perf_hooks", + "kind": "any", + "name": "Type", + "signature": "`detail` Type: {any}", + "label": "detail", + "apiSymbol": "detail", + "depth": 2, + "scope": "api", + "anchor": "class-performancemeasure", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "ancestor" + }, + { + "id": "perf_hooks:256ac7cefb1f", + "chapter": "perf_hooks", + "kind": "class", + "name": "PerformanceNodeEntry", + "signature": "Class: `PerformanceNodeEntry`", + "label": "PerformanceNodeEntry", + "apiSymbol": "PerformanceNodeEntry", + "depth": 1, + "scope": "api", + "anchor": "class-performancenodeentry", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:825adb9a4e72", + "chapter": "perf_hooks", + "kind": "module", + "name": "garbage_collection_('gc')_details", + "signature": "Garbage Collection ('gc') Details", + "label": "Garbage Collection ('gc') Details", + "apiSymbol": "garbage_collection_", + "depth": 2, + "scope": "documentation", + "anchor": "garbage-collection-gc-details", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:0680045220d2", + "chapter": "perf_hooks", + "kind": "module", + "name": "http_('http')_details", + "signature": "HTTP ('http') Details", + "label": "HTTP ('http') Details", + "apiSymbol": "http_", + "depth": 2, + "scope": "documentation", + "anchor": "http-http-details", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:5edb6fdedbb3", + "chapter": "perf_hooks", + "kind": "module", + "name": "http/2_('http2')_details", + "signature": "HTTP/2 ('http2') Details", + "label": "HTTP/2 ('http2') Details", + "apiSymbol": "http/2_", + "depth": 2, + "scope": "documentation", + "anchor": "http2-http2-details", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:160e29131062", + "chapter": "perf_hooks", + "kind": "module", + "name": "timerify_('function')_details", + "signature": "Timerify ('function') Details", + "label": "Timerify ('function') Details", + "apiSymbol": "timerify_", + "depth": 2, + "scope": "documentation", + "anchor": "timerify-function-details", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:d53e90dc7679", + "chapter": "perf_hooks", + "kind": "module", + "name": "net_('net')_details", + "signature": "Net ('net') Details", + "label": "Net ('net') Details", + "apiSymbol": "net_", + "depth": 2, + "scope": "documentation", + "anchor": "net-net-details", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:addc53cdeeac", + "chapter": "perf_hooks", + "kind": "module", + "name": "dns_('dns')_details", + "signature": "DNS ('dns') Details", + "label": "DNS ('dns') Details", + "apiSymbol": "dns_", + "depth": 2, + "scope": "documentation", + "anchor": "dns-dns-details", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:4933cefedc94", + "chapter": "perf_hooks", + "kind": "any", + "name": "Type", + "signature": "`detail` Type: {any}", + "label": "detail", + "apiSymbol": "detail", + "depth": 2, + "scope": "api", + "anchor": "class-performancenodeentry", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "ancestor" + }, + { + "id": "perf_hooks:bae3522825d6", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`flags` Type: {number}", + "label": "flags", + "apiSymbol": "flags", + "depth": 2, + "scope": "api", + "anchor": "class-performancenodeentry", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Use `performanceNodeEntry.detail` instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "ancestor" + }, + { + "id": "perf_hooks:d3e6477c485c", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`kind` Type: {number}", + "label": "kind", + "apiSymbol": "kind", + "depth": 2, + "scope": "api", + "anchor": "class-performancenodeentry", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Use `performanceNodeEntry.detail` instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "ancestor" + }, + { + "id": "perf_hooks:8ecb3ea14374", + "chapter": "perf_hooks", + "kind": "class", + "name": "PerformanceNodeTiming", + "signature": "Class: `PerformanceNodeTiming`", + "label": "PerformanceNodeTiming", + "apiSymbol": "PerformanceNodeTiming", + "depth": 1, + "scope": "api", + "anchor": "class-performancenodetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:bfb3b0423504", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`bootstrapComplete` Type: {number}", + "label": "bootstrapComplete", + "apiSymbol": "bootstrapComplete", + "depth": 2, + "scope": "api", + "anchor": "class-performancenodetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "ancestor" + }, + { + "id": "perf_hooks:16945a6825e2", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`environment` Type: {number}", + "label": "environment", + "apiSymbol": "environment", + "depth": 2, + "scope": "api", + "anchor": "class-performancenodetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "ancestor" + }, + { + "id": "perf_hooks:bfbbcd095905", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`idleTime` Type: {number}", + "label": "idleTime", + "apiSymbol": "idleTime", + "depth": 2, + "scope": "api", + "anchor": "class-performancenodetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "ancestor" + }, + { + "id": "perf_hooks:57152874e4b6", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`loopExit` Type: {number}", + "label": "loopExit", + "apiSymbol": "loopExit", + "depth": 2, + "scope": "api", + "anchor": "class-performancenodetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "ancestor" + }, + { + "id": "perf_hooks:b1b6fa495b7f", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`loopStart` Type: {number}", + "label": "loopStart", + "apiSymbol": "loopStart", + "depth": 2, + "scope": "api", + "anchor": "class-performancenodetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "ancestor" + }, + { + "id": "perf_hooks:dd3625440326", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`nodeStart` Type: {number}", + "label": "nodeStart", + "apiSymbol": "nodeStart", + "depth": 2, + "scope": "api", + "anchor": "class-performancenodetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "ancestor" + }, + { + "id": "perf_hooks:840d8edbb58f", + "chapter": "perf_hooks", + "kind": "Object", + "name": "return", + "signature": "`uvMetricsInfo` Returns: {Object}", + "label": "uvMetricsInfo", + "apiSymbol": "uvMetricsInfo", + "depth": 2, + "scope": "api", + "anchor": "class-performancenodetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "ancestor" + }, + { + "id": "perf_hooks:926aff9758da", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`v8Start` Type: {number}", + "label": "v8Start", + "apiSymbol": "v8Start", + "depth": 2, + "scope": "api", + "anchor": "class-performancenodetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "ancestor" + }, + { + "id": "perf_hooks:d50415882b98", + "chapter": "perf_hooks", + "kind": "class", + "name": "PerformanceResourceTiming", + "signature": "Class: `PerformanceResourceTiming`", + "label": "PerformanceResourceTiming", + "apiSymbol": "PerformanceResourceTiming", + "depth": 1, + "scope": "api", + "anchor": "class-performanceresourcetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:feadabc65ca1", + "chapter": "perf_hooks", + "kind": "method", + "name": "toJSON", + "signature": "`performanceResourceTiming.toJSON()`", + "label": "performanceResourceTiming.toJSON()", + "apiSymbol": "performanceResourceTiming.toJSON", + "depth": 2, + "scope": "api", + "anchor": "performanceresourcetimingtojson", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:4168e62b4adc", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`workerStart` Type: {number}", + "label": "workerStart", + "apiSymbol": "workerStart", + "depth": 2, + "scope": "api", + "anchor": "class-performanceresourcetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "ancestor" + }, + { + "id": "perf_hooks:3d9e8927f421", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`redirectStart` Type: {number}", + "label": "redirectStart", + "apiSymbol": "redirectStart", + "depth": 2, + "scope": "api", + "anchor": "class-performanceresourcetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "ancestor" + }, + { + "id": "perf_hooks:d8b317438a96", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`redirectEnd` Type: {number}", + "label": "redirectEnd", + "apiSymbol": "redirectEnd", + "depth": 2, + "scope": "api", + "anchor": "class-performanceresourcetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "ancestor" + }, + { + "id": "perf_hooks:4ee0cb7dda90", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`fetchStart` Type: {number}", + "label": "fetchStart", + "apiSymbol": "fetchStart", + "depth": 2, + "scope": "api", + "anchor": "class-performanceresourcetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "ancestor" + }, + { + "id": "perf_hooks:9f8fac595e48", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`domainLookupStart` Type: {number}", + "label": "domainLookupStart", + "apiSymbol": "domainLookupStart", + "depth": 2, + "scope": "api", + "anchor": "class-performanceresourcetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "ancestor" + }, + { + "id": "perf_hooks:bef659cad139", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`domainLookupEnd` Type: {number}", + "label": "domainLookupEnd", + "apiSymbol": "domainLookupEnd", + "depth": 2, + "scope": "api", + "anchor": "class-performanceresourcetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "ancestor" + }, + { + "id": "perf_hooks:6f0d699a309d", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`connectStart` Type: {number}", + "label": "connectStart", + "apiSymbol": "connectStart", + "depth": 2, + "scope": "api", + "anchor": "class-performanceresourcetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "ancestor" + }, + { + "id": "perf_hooks:34d282ce7bd9", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`connectEnd` Type: {number}", + "label": "connectEnd", + "apiSymbol": "connectEnd", + "depth": 2, + "scope": "api", + "anchor": "class-performanceresourcetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "ancestor" + }, + { + "id": "perf_hooks:75a534e90bcc", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`secureConnectionStart` Type: {number}", + "label": "secureConnectionStart", + "apiSymbol": "secureConnectionStart", + "depth": 2, + "scope": "api", + "anchor": "class-performanceresourcetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "ancestor" + }, + { + "id": "perf_hooks:565b8a46a863", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`requestStart` Type: {number}", + "label": "requestStart", + "apiSymbol": "requestStart", + "depth": 2, + "scope": "api", + "anchor": "class-performanceresourcetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "ancestor" + }, + { + "id": "perf_hooks:19c7eaa1d601", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`responseEnd` Type: {number}", + "label": "responseEnd", + "apiSymbol": "responseEnd", + "depth": 2, + "scope": "api", + "anchor": "class-performanceresourcetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "ancestor" + }, + { + "id": "perf_hooks:3213a0efd304", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`transferSize` Type: {number}", + "label": "transferSize", + "apiSymbol": "transferSize", + "depth": 2, + "scope": "api", + "anchor": "class-performanceresourcetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "ancestor" + }, + { + "id": "perf_hooks:335771789b02", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`encodedBodySize` Type: {number}", + "label": "encodedBodySize", + "apiSymbol": "encodedBodySize", + "depth": 2, + "scope": "api", + "anchor": "class-performanceresourcetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "ancestor" + }, + { + "id": "perf_hooks:8e4482fb7bc1", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`decodedBodySize` Type: {number}", + "label": "decodedBodySize", + "apiSymbol": "decodedBodySize", + "depth": 2, + "scope": "api", + "anchor": "class-performanceresourcetiming", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "ancestor" + }, + { + "id": "perf_hooks:44c5636e6a4c", + "chapter": "perf_hooks", + "kind": "class", + "name": "PerformanceObserver", + "signature": "Class: `PerformanceObserver`", + "label": "PerformanceObserver", + "apiSymbol": "PerformanceObserver", + "depth": 1, + "scope": "api", + "anchor": "class-performanceobserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:perf_hooks.PerformanceObserver", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:e5c8c6842247", + "chapter": "perf_hooks", + "kind": "method", + "name": "disconnect", + "signature": "`performanceObserver.disconnect()`", + "label": "performanceObserver.disconnect()", + "apiSymbol": "performanceObserver.disconnect", + "depth": 2, + "scope": "api", + "anchor": "performanceobserverdisconnect", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:perf_hooks.performanceObserver.disconnect", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:93192ffccbf3", + "chapter": "perf_hooks", + "kind": "method", + "name": "observe", + "signature": "`performanceObserver.observe(options)`", + "label": "performanceObserver.observe(options)", + "apiSymbol": "performanceObserver.observe", + "depth": 2, + "scope": "api", + "anchor": "performanceobserverobserveoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:perf_hooks.performanceObserver.observe", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:d8f9b6391e2a", + "chapter": "perf_hooks", + "kind": "method", + "name": "takeRecords", + "signature": "`performanceObserver.takeRecords()`", + "label": "performanceObserver.takeRecords()", + "apiSymbol": "performanceObserver.takeRecords", + "depth": 2, + "scope": "api", + "anchor": "performanceobservertakerecords", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:perf_hooks.performanceObserver.takeRecords", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:2beb3bfd5ecc", + "chapter": "perf_hooks", + "kind": "string\\[]", + "name": "Type", + "signature": "`supportedEntryTypes` Type: {string\\[]}", + "label": "supportedEntryTypes", + "apiSymbol": "supportedEntryTypes", + "depth": 2, + "scope": "api", + "anchor": "class-performanceobserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "ancestor" + }, + { + "id": "perf_hooks:514d6e9cab8a", + "chapter": "perf_hooks", + "kind": "class", + "name": "PerformanceObserverEntryList", + "signature": "Class: `PerformanceObserverEntryList`", + "label": "PerformanceObserverEntryList", + "apiSymbol": "PerformanceObserverEntryList", + "depth": 1, + "scope": "api", + "anchor": "class-performanceobserverentrylist", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:167fa4fe3132", + "chapter": "perf_hooks", + "kind": "method", + "name": "getEntries", + "signature": "`performanceObserverEntryList.getEntries()`", + "label": "performanceObserverEntryList.getEntries()", + "apiSymbol": "performanceObserverEntryList.getEntries", + "depth": 2, + "scope": "api", + "anchor": "performanceobserverentrylistgetentries", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:ab6585b9639d", + "chapter": "perf_hooks", + "kind": "method", + "name": "getEntriesByName", + "signature": "`performanceObserverEntryList.getEntriesByName(name[, type])`", + "label": "performanceObserverEntryList.getEntriesByName(name[, type])", + "apiSymbol": "performanceObserverEntryList.getEntriesByName", + "depth": 2, + "scope": "api", + "anchor": "performanceobserverentrylistgetentriesbynamename-type", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:b1a056d5203a", + "chapter": "perf_hooks", + "kind": "method", + "name": "getEntriesByType", + "signature": "`performanceObserverEntryList.getEntriesByType(type)`", + "label": "performanceObserverEntryList.getEntriesByType(type)", + "apiSymbol": "performanceObserverEntryList.getEntriesByType", + "depth": 2, + "scope": "api", + "anchor": "performanceobserverentrylistgetentriesbytypetype", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:c89f0beb0e9f", + "chapter": "perf_hooks", + "kind": "class", + "name": "Histogram", + "signature": "Class: `Histogram`", + "label": "Histogram", + "apiSymbol": "Histogram", + "depth": 1, + "scope": "api", + "anchor": "class-histogram", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:831e531b3964", + "chapter": "perf_hooks", + "kind": "method", + "name": "percentile", + "signature": "`histogram.percentile(percentile)`", + "label": "histogram.percentile(percentile)", + "apiSymbol": "histogram.percentile", + "depth": 2, + "scope": "api", + "anchor": "histogrampercentilepercentile", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:04cfc34bfc96", + "chapter": "perf_hooks", + "kind": "method", + "name": "percentileBigInt", + "signature": "`histogram.percentileBigInt(percentile)`", + "label": "histogram.percentileBigInt(percentile)", + "apiSymbol": "histogram.percentileBigInt", + "depth": 2, + "scope": "api", + "anchor": "histogrampercentilebigintpercentile", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:0c8a168f2d58", + "chapter": "perf_hooks", + "kind": "method", + "name": "reset", + "signature": "`histogram.reset()`", + "label": "histogram.reset()", + "apiSymbol": "histogram.reset", + "depth": 2, + "scope": "api", + "anchor": "histogramreset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:c3ade18455b5", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`count` Type: {number}", + "label": "count", + "apiSymbol": "count", + "depth": 2, + "scope": "api", + "anchor": "class-histogram", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "ancestor" + }, + { + "id": "perf_hooks:6f617351e2f4", + "chapter": "perf_hooks", + "kind": "bigint", + "name": "Type", + "signature": "`countBigInt` Type: {bigint}", + "label": "countBigInt", + "apiSymbol": "countBigInt", + "depth": 2, + "scope": "api", + "anchor": "class-histogram", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "ancestor" + }, + { + "id": "perf_hooks:a8fd32a72955", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`exceeds` Type: {number}", + "label": "exceeds", + "apiSymbol": "exceeds", + "depth": 2, + "scope": "api", + "anchor": "class-histogram", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "ancestor" + }, + { + "id": "perf_hooks:d3d141a0aafa", + "chapter": "perf_hooks", + "kind": "bigint", + "name": "Type", + "signature": "`exceedsBigInt` Type: {bigint}", + "label": "exceedsBigInt", + "apiSymbol": "exceedsBigInt", + "depth": 2, + "scope": "api", + "anchor": "class-histogram", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "ancestor" + }, + { + "id": "perf_hooks:2a2f8716b952", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`max` Type: {number}", + "label": "max", + "apiSymbol": "max", + "depth": 2, + "scope": "api", + "anchor": "class-histogram", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "ancestor" + }, + { + "id": "perf_hooks:922693582449", + "chapter": "perf_hooks", + "kind": "bigint", + "name": "Type", + "signature": "`maxBigInt` Type: {bigint}", + "label": "maxBigInt", + "apiSymbol": "maxBigInt", + "depth": 2, + "scope": "api", + "anchor": "class-histogram", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "ancestor" + }, + { + "id": "perf_hooks:5470f308346b", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`mean` Type: {number}", + "label": "mean", + "apiSymbol": "mean", + "depth": 2, + "scope": "api", + "anchor": "class-histogram", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "ancestor" + }, + { + "id": "perf_hooks:9eb490e3b5a0", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`min` Type: {number}", + "label": "min", + "apiSymbol": "min", + "depth": 2, + "scope": "api", + "anchor": "class-histogram", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "ancestor" + }, + { + "id": "perf_hooks:b98c4f4cb2a3", + "chapter": "perf_hooks", + "kind": "bigint", + "name": "Type", + "signature": "`minBigInt` Type: {bigint}", + "label": "minBigInt", + "apiSymbol": "minBigInt", + "depth": 2, + "scope": "api", + "anchor": "class-histogram", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "ancestor" + }, + { + "id": "perf_hooks:049a2710663c", + "chapter": "perf_hooks", + "kind": "Map", + "name": "Type", + "signature": "`percentiles` Type: {Map}", + "label": "percentiles", + "apiSymbol": "percentiles", + "depth": 2, + "scope": "api", + "anchor": "class-histogram", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "ancestor" + }, + { + "id": "perf_hooks:977fe37cf714", + "chapter": "perf_hooks", + "kind": "Map", + "name": "Type", + "signature": "`percentilesBigInt` Type: {Map}", + "label": "percentilesBigInt", + "apiSymbol": "percentilesBigInt", + "depth": 2, + "scope": "api", + "anchor": "class-histogram", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "ancestor" + }, + { + "id": "perf_hooks:dcfa27e91fad", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`stddev` Type: {number}", + "label": "stddev", + "apiSymbol": "stddev", + "depth": 2, + "scope": "api", + "anchor": "class-histogram", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "ancestor" + }, + { + "id": "perf_hooks:d8033c297e16", + "chapter": "perf_hooks", + "kind": "class", + "name": "IntervalHistogram", + "signature": "Class: `IntervalHistogram extends Histogram`", + "label": "IntervalHistogram extends Histogram", + "apiSymbol": "IntervalHistogram extends Histogram", + "depth": 1, + "scope": "api", + "anchor": "class-intervalhistogram-extends-histogram", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:22e7f3f19476", + "chapter": "perf_hooks", + "kind": "module", + "name": "cloning_an_`intervalhistogram`", + "signature": "Cloning an `IntervalHistogram`", + "label": "Cloning an IntervalHistogram", + "apiSymbol": "IntervalHistogram", + "depth": 2, + "scope": "api", + "anchor": "cloning-an-intervalhistogram", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:b164c7ab2b1f", + "chapter": "perf_hooks", + "kind": "method", + "name": "disable", + "signature": "`histogram.disable()`", + "label": "histogram.disable()", + "apiSymbol": "histogram.disable", + "depth": 2, + "scope": "api", + "anchor": "histogramdisable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:651554deb586", + "chapter": "perf_hooks", + "kind": "method", + "name": "enable", + "signature": "`histogram.enable()`", + "label": "histogram.enable()", + "apiSymbol": "histogram.enable", + "depth": 2, + "scope": "api", + "anchor": "histogramenable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:e996f640b593", + "chapter": "perf_hooks", + "kind": "method", + "name": "[Symbol.dispose]", + "signature": "`histogram[Symbol.dispose]()`", + "label": "histogram[Symbol.dispose]()", + "apiSymbol": "histogram", + "depth": 2, + "scope": "api", + "anchor": "histogramsymboldispose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:4bc24e9a9db7", + "chapter": "perf_hooks", + "kind": "class", + "name": "RecordableHistogram", + "signature": "Class: `RecordableHistogram extends Histogram`", + "label": "RecordableHistogram extends Histogram", + "apiSymbol": "RecordableHistogram extends Histogram", + "depth": 1, + "scope": "api", + "anchor": "class-recordablehistogram-extends-histogram", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:76b9cd148368", + "chapter": "perf_hooks", + "kind": "module", + "name": "measuring_the_duration_of_async_operations", + "signature": "Measuring the duration of async operations", + "label": "Measuring the duration of async operations", + "apiSymbol": "measuring_the_duration_of_async_operations", + "depth": 2, + "scope": "documentation", + "anchor": "measuring-the-duration-of-async-operations", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:b31b279a981b", + "chapter": "perf_hooks", + "kind": "module", + "name": "measuring_how_long_it_takes_to_load_dependencies", + "signature": "Measuring how long it takes to load dependencies", + "label": "Measuring how long it takes to load dependencies", + "apiSymbol": "measuring_how_long_it_takes_to_load_dependencies", + "depth": 2, + "scope": "documentation", + "anchor": "measuring-how-long-it-takes-to-load-dependencies", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:3195dadda5d7", + "chapter": "perf_hooks", + "kind": "module", + "name": "measuring_how_long_one_http_round-trip_takes", + "signature": "Measuring how long one HTTP round-trip takes", + "label": "Measuring how long one HTTP round-trip takes", + "apiSymbol": "measuring_how_long_one_http_round-trip_takes", + "depth": 2, + "scope": "documentation", + "anchor": "measuring-how-long-one-http-round-trip-takes", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:07074b77fe50", + "chapter": "perf_hooks", + "kind": "module", + "name": "measuring_how_long_the_`net.connect`_(only_for_tcp)_takes_when_the_connection_is_successful", + "signature": "Measuring how long the `net.connect` (only for TCP) takes when the connection is successful", + "label": "Measuring how long the net.connect (only for TCP) takes when the connection is successful", + "apiSymbol": "net.connect", + "depth": 2, + "scope": "api", + "anchor": "measuring-how-long-the-netconnect-only-for-tcp-takes-when-the-connection-is-successful", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:net.connect", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:726a43ab240e", + "chapter": "perf_hooks", + "kind": "module", + "name": "measuring_how_long_the_dns_takes_when_the_request_is_successful", + "signature": "Measuring how long the DNS takes when the request is successful", + "label": "Measuring how long the DNS takes when the request is successful", + "apiSymbol": "measuring_how_long_the_dns_takes_when_the_request_is_successful", + "depth": 2, + "scope": "documentation", + "anchor": "measuring-how-long-the-dns-takes-when-the-request-is-successful", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:30eb4343b866", + "chapter": "perf_hooks", + "kind": "method", + "name": "add", + "signature": "`histogram.add(other)`", + "label": "histogram.add(other)", + "apiSymbol": "histogram.add", + "depth": 2, + "scope": "api", + "anchor": "histogramaddother", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:267107123ca7", + "chapter": "perf_hooks", + "kind": "method", + "name": "record", + "signature": "`histogram.record(val)`", + "label": "histogram.record(val)", + "apiSymbol": "histogram.record", + "depth": 2, + "scope": "api", + "anchor": "histogramrecordval", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:f8d7c36f7da0", + "chapter": "perf_hooks", + "kind": "method", + "name": "recordDelta", + "signature": "`histogram.recordDelta()`", + "label": "histogram.recordDelta()", + "apiSymbol": "histogram.recordDelta", + "depth": 2, + "scope": "api", + "anchor": "histogramrecorddelta", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:5ac562207ef9", + "chapter": "perf_hooks", + "kind": "method", + "name": "createHistogram", + "signature": "`perf_hooks.createHistogram([options])`", + "label": "perf_hooks.createHistogram([options])", + "apiSymbol": "perf_hooks.createHistogram", + "depth": 1, + "scope": "api", + "anchor": "perf_hookscreatehistogramoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:0136161053c0", + "chapter": "perf_hooks", + "kind": "method", + "name": "eventLoopUtilization", + "signature": "`perf_hooks.eventLoopUtilization([utilization1[, utilization2]])`", + "label": "perf_hooks.eventLoopUtilization([utilization1[, utilization2]])", + "apiSymbol": "perf_hooks.eventLoopUtilization", + "depth": 1, + "scope": "api", + "anchor": "perf_hookseventlooputilizationutilization1-utilization2", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:27f1f7b9e14c", + "chapter": "perf_hooks", + "kind": "method", + "name": "monitorEventLoopDelay", + "signature": "`perf_hooks.monitorEventLoopDelay([options])`", + "label": "perf_hooks.monitorEventLoopDelay([options])", + "apiSymbol": "perf_hooks.monitorEventLoopDelay", + "depth": 1, + "scope": "api", + "anchor": "perf_hooksmonitoreventloopdelayoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:perf_hooks.monitorEventLoopDelay", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:4206c46535f1", + "chapter": "perf_hooks", + "kind": "method", + "name": "timerify", + "signature": "`perf_hooks.timerify(fn[, options])`", + "label": "perf_hooks.timerify(fn[, options])", + "apiSymbol": "perf_hooks.timerify", + "depth": 1, + "scope": "api", + "anchor": "perf_hookstimerifyfn-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:365d16e00243", + "chapter": "perf_hooks", + "kind": "section", + "name": "performance", + "signature": "`perf_hooks.performance`", + "label": "perf_hooks.performance", + "apiSymbol": "perf_hooks.performance", + "depth": 1, + "scope": "api", + "anchor": "perf_hooksperformance", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:perf_hooks.performance", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:67ebe1e4ba9c", + "chapter": "perf_hooks", + "kind": "method", + "name": "clearMarks", + "signature": "`performance.clearMarks([name])`", + "label": "performance.clearMarks([name])", + "apiSymbol": "performance.clearMarks", + "depth": 2, + "scope": "api", + "anchor": "performanceclearmarksname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:perf_hooks.performance.clearMarks", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:ca44c25d7a70", + "chapter": "perf_hooks", + "kind": "method", + "name": "clearMeasures", + "signature": "`performance.clearMeasures([name])`", + "label": "performance.clearMeasures([name])", + "apiSymbol": "performance.clearMeasures", + "depth": 2, + "scope": "api", + "anchor": "performanceclearmeasuresname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:perf_hooks.performance.clearMeasures", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:8f190a1347fe", + "chapter": "perf_hooks", + "kind": "method", + "name": "clearResourceTimings", + "signature": "`performance.clearResourceTimings([name])`", + "label": "performance.clearResourceTimings([name])", + "apiSymbol": "performance.clearResourceTimings", + "depth": 2, + "scope": "api", + "anchor": "performanceclearresourcetimingsname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:735d19d562d1", + "chapter": "perf_hooks", + "kind": "method", + "name": "eventLoopUtilization", + "signature": "`performance.eventLoopUtilization([utilization1[, utilization2]])`", + "label": "performance.eventLoopUtilization([utilization1[, utilization2]])", + "apiSymbol": "performance.eventLoopUtilization", + "depth": 2, + "scope": "api", + "anchor": "performanceeventlooputilizationutilization1-utilization2", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:834e850aa638", + "chapter": "perf_hooks", + "kind": "method", + "name": "getEntries", + "signature": "`performance.getEntries()`", + "label": "performance.getEntries()", + "apiSymbol": "performance.getEntries", + "depth": 2, + "scope": "api", + "anchor": "performancegetentries", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:perf_hooks.performance.getEntries", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:adba0675b69d", + "chapter": "perf_hooks", + "kind": "method", + "name": "getEntriesByName", + "signature": "`performance.getEntriesByName(name[, type])`", + "label": "performance.getEntriesByName(name[, type])", + "apiSymbol": "performance.getEntriesByName", + "depth": 2, + "scope": "api", + "anchor": "performancegetentriesbynamename-type", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:perf_hooks.performance.getEntriesByName", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:ca511f7b8904", + "chapter": "perf_hooks", + "kind": "method", + "name": "getEntriesByType", + "signature": "`performance.getEntriesByType(type)`", + "label": "performance.getEntriesByType(type)", + "apiSymbol": "performance.getEntriesByType", + "depth": 2, + "scope": "api", + "anchor": "performancegetentriesbytypetype", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:perf_hooks.performance.getEntriesByType", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:6d1b45a380e6", + "chapter": "perf_hooks", + "kind": "method", + "name": "mark", + "signature": "`performance.mark(name[, options])`", + "label": "performance.mark(name[, options])", + "apiSymbol": "performance.mark", + "depth": 2, + "scope": "api", + "anchor": "performancemarkname-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:perf_hooks.performance.mark", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:15fb662408d8", + "chapter": "perf_hooks", + "kind": "method", + "name": "markResourceTiming", + "signature": "`performance.markResourceTiming(timingInfo, requestedUrl, initiatorType, global, cacheMode, bodyInfo, responseStatus[, deliveryType])`", + "label": "performance.markResourceTiming(timingInfo, requestedUrl, initiatorType, global, cacheMode, bodyInfo, responseStatus[, deliveryType])", + "apiSymbol": "performance.markResourceTiming", + "depth": 2, + "scope": "api", + "anchor": "performancemarkresourcetimingtiminginfo-requestedurl-initiatortype-global-cachemode-bodyinfo-responsestatus-deliverytype", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:e9b9911539c4", + "chapter": "perf_hooks", + "kind": "method", + "name": "measure", + "signature": "`performance.measure(name[, startMarkOrOptions[, endMark]])`", + "label": "performance.measure(name[, startMarkOrOptions[, endMark]])", + "apiSymbol": "performance.measure", + "depth": 2, + "scope": "api", + "anchor": "performancemeasurename-startmarkoroptions-endmark", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:perf_hooks.performance.measure", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:7ba42a060d45", + "chapter": "perf_hooks", + "kind": "method", + "name": "now", + "signature": "`performance.now()`", + "label": "performance.now()", + "apiSymbol": "performance.now", + "depth": 2, + "scope": "api", + "anchor": "performancenow", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:perf_hooks.performance.now", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:0357d07f7536", + "chapter": "perf_hooks", + "kind": "method", + "name": "setResourceTimingBufferSize", + "signature": "`performance.setResourceTimingBufferSize(maxSize)`", + "label": "performance.setResourceTimingBufferSize(maxSize)", + "apiSymbol": "performance.setResourceTimingBufferSize", + "depth": 2, + "scope": "api", + "anchor": "performancesetresourcetimingbuffersizemaxsize", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:0b0a81d5c467", + "chapter": "perf_hooks", + "kind": "method", + "name": "timerify", + "signature": "`performance.timerify(fn[, options])`", + "label": "performance.timerify(fn[, options])", + "apiSymbol": "performance.timerify", + "depth": 2, + "scope": "api", + "anchor": "performancetimerifyfn-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:d1920dadd6ca", + "chapter": "perf_hooks", + "kind": "method", + "name": "toJSON", + "signature": "`performance.toJSON()`", + "label": "performance.toJSON()", + "apiSymbol": "performance.toJSON", + "depth": 2, + "scope": "api", + "anchor": "performancetojson", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:perf_hooks.performance.toJSON", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:c71a0c677e9c", + "chapter": "perf_hooks", + "kind": "event", + "name": "resourcetimingbufferfull", + "signature": "Event: `'resourcetimingbufferfull'`", + "label": "'resourcetimingbufferfull'", + "apiSymbol": "'resourcetimingbufferfull'", + "depth": 3, + "scope": "api", + "anchor": "event-resourcetimingbufferfull", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "exact" + }, + { + "id": "perf_hooks:a959c69d3aa6", + "chapter": "perf_hooks", + "kind": "PerformanceNodeTiming", + "name": "Type", + "signature": "`nodeTiming` Type: {PerformanceNodeTiming}", + "label": "nodeTiming", + "apiSymbol": "nodeTiming", + "depth": 2, + "scope": "api", + "anchor": "perf_hooksperformance", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "ancestor" + }, + { + "id": "perf_hooks:dd1c2a558f83", + "chapter": "perf_hooks", + "kind": "number", + "name": "Type", + "signature": "`timeOrigin` Type: {number}", + "label": "timeOrigin", + "apiSymbol": "timeOrigin", + "depth": 2, + "scope": "api", + "anchor": "perf_hooksperformance", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:perf_hooks" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:perf_hooks" + }, + "anchorSource": "ancestor" + }, + { + "id": "permissions:0650a46e1dd9", + "chapter": "permissions", + "kind": "module", + "name": "permissions", + "signature": "Permissions", + "label": "Permissions", + "apiSymbol": "permissions", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "derived:descendants" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "derived:descendants" + }, + "anchorSource": "chapter" + }, + { + "id": "permissions:862be726a47a", + "chapter": "permissions", + "kind": "module", + "name": "process-based_permissions", + "signature": "Process-based permissions", + "label": "Process-based permissions", + "apiSymbol": "process-based_permissions", + "depth": 1, + "scope": "documentation", + "anchor": "process-based-permissions", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "permissions:83837696869f", + "chapter": "permissions", + "kind": "module", + "name": "permission_model", + "signature": "Permission Model", + "label": "Permission Model", + "apiSymbol": "permission_model", + "depth": 2, + "scope": "documentation", + "anchor": "permission-model", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "permissions:61891034f5f7", + "chapter": "permissions", + "kind": "module", + "name": "runtime_api", + "signature": "Runtime API", + "label": "Runtime API", + "apiSymbol": "runtime_api", + "depth": 3, + "scope": "documentation", + "anchor": "runtime-api", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "permissions:4dd8a89338eb", + "chapter": "permissions", + "kind": "method", + "name": "has", + "signature": "`permission.has(scope[, reference])`", + "label": "permission.has(scope[, reference])", + "apiSymbol": "permission.has", + "depth": 4, + "scope": "api", + "anchor": "permissionhasscope-reference", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:permissions" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:permissions" + }, + "anchorSource": "exact" + }, + { + "id": "permissions:3b86af66c1d1", + "chapter": "permissions", + "kind": "module", + "name": "file_system_permissions", + "signature": "File System Permissions", + "label": "File System Permissions", + "apiSymbol": "file_system_permissions", + "depth": 3, + "scope": "documentation", + "anchor": "file-system-permissions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "permissions:bd6544e08561", + "chapter": "permissions", + "kind": "module", + "name": "using_the_permission_model_with_`npx`", + "signature": "Using the Permission Model with `npx`", + "label": "Using the Permission Model with npx", + "apiSymbol": "npx", + "depth": 3, + "scope": "api", + "anchor": "using-the-permission-model-with-npx", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:permissions" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:permissions" + }, + "anchorSource": "exact" + }, + { + "id": "permissions:8a2ab9d2f472", + "chapter": "permissions", + "kind": "module", + "name": "permission_model_constraints", + "signature": "Permission Model constraints", + "label": "Permission Model constraints", + "apiSymbol": "permission_model_constraints", + "depth": 3, + "scope": "documentation", + "anchor": "permission-model-constraints", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "permissions:08ab82ade467", + "chapter": "permissions", + "kind": "module", + "name": "limitations_and_known_issues", + "signature": "Limitations and Known Issues", + "label": "Limitations and Known Issues", + "apiSymbol": "limitations_and_known_issues", + "depth": 3, + "scope": "documentation", + "anchor": "limitations-and-known-issues", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "process:77c102769649", + "chapter": "process", + "kind": "global", + "name": "Process", + "signature": "Process", + "label": "Process", + "apiSymbol": "Process", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/corpus/2314-process-introspection.ts", + "tests/corpus/990-process-basics.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "process:f4115bbcc54e", + "chapter": "process", + "kind": "module", + "name": "process_events", + "signature": "Process events", + "label": "Process events", + "apiSymbol": "process_events", + "depth": 1, + "scope": "documentation", + "anchor": "process-events", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "process:35e516c63f70", + "chapter": "process", + "kind": "event", + "name": "beforeExit", + "signature": "Event: `'beforeExit'`", + "label": "'beforeExit'", + "apiSymbol": "'beforeExit'", + "depth": 2, + "scope": "api", + "anchor": "event-beforeexit", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "exact" + }, + { + "id": "process:b0f5287073cf", + "chapter": "process", + "kind": "event", + "name": "disconnect", + "signature": "Event: `'disconnect'`", + "label": "'disconnect'", + "apiSymbol": "'disconnect'", + "depth": 2, + "scope": "api", + "anchor": "event-disconnect", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "exact" + }, + { + "id": "process:72cf959b8403", + "chapter": "process", + "kind": "event", + "name": "exit", + "signature": "Event: `'exit'`", + "label": "'exit'", + "apiSymbol": "'exit'", + "depth": 2, + "scope": "api", + "anchor": "event-exit", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "exact" + }, + { + "id": "process:27fb6582a846", + "chapter": "process", + "kind": "event", + "name": "message", + "signature": "Event: `'message'`", + "label": "'message'", + "apiSymbol": "'message'", + "depth": 2, + "scope": "api", + "anchor": "event-message", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "exact" + }, + { + "id": "process:3b70d5c09855", + "chapter": "process", + "kind": "event", + "name": "multipleResolves", + "signature": "Event: `'multipleResolves'`", + "label": "'multipleResolves'", + "apiSymbol": "'multipleResolves'", + "depth": 2, + "scope": "api", + "anchor": "event-multipleresolves", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "exact" + }, + { + "id": "process:69641ca3039c", + "chapter": "process", + "kind": "event", + "name": "rejectionHandled", + "signature": "Event: `'rejectionHandled'`", + "label": "'rejectionHandled'", + "apiSymbol": "'rejectionHandled'", + "depth": 2, + "scope": "api", + "anchor": "event-rejectionhandled", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "exact" + }, + { + "id": "process:62913d9ef0c3", + "chapter": "process", + "kind": "event", + "name": "workerMessage", + "signature": "Event: `'workerMessage'`", + "label": "'workerMessage'", + "apiSymbol": "'workerMessage'", + "depth": 2, + "scope": "api", + "anchor": "event-workermessage", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "exact" + }, + { + "id": "process:fe4823c86d0f", + "chapter": "process", + "kind": "event", + "name": "uncaughtException", + "signature": "Event: `'uncaughtException'`", + "label": "'uncaughtException'", + "apiSymbol": "'uncaughtException'", + "depth": 2, + "scope": "api", + "anchor": "event-uncaughtexception", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "exact" + }, + { + "id": "process:4192abfa1680", + "chapter": "process", + "kind": "module", + "name": "warning:_using_`'uncaughtexception'`_correctly", + "signature": "Warning: Using `'uncaughtException'` correctly", + "label": "Warning: Using 'uncaughtException' correctly", + "apiSymbol": "'uncaughtException'", + "depth": 3, + "scope": "api", + "anchor": "warning-using-uncaughtexception-correctly", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "exact" + }, + { + "id": "process:24d8fbedbbf8", + "chapter": "process", + "kind": "event", + "name": "uncaughtExceptionMonitor", + "signature": "Event: `'uncaughtExceptionMonitor'`", + "label": "'uncaughtExceptionMonitor'", + "apiSymbol": "'uncaughtExceptionMonitor'", + "depth": 2, + "scope": "api", + "anchor": "event-uncaughtexceptionmonitor", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "exact" + }, + { + "id": "process:452b05938836", + "chapter": "process", + "kind": "event", + "name": "unhandledRejection", + "signature": "Event: `'unhandledRejection'`", + "label": "'unhandledRejection'", + "apiSymbol": "'unhandledRejection'", + "depth": 2, + "scope": "api", + "anchor": "event-unhandledrejection", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "exact" + }, + { + "id": "process:67c924429a6f", + "chapter": "process", + "kind": "event", + "name": "warning", + "signature": "Event: `'warning'`", + "label": "'warning'", + "apiSymbol": "'warning'", + "depth": 2, + "scope": "api", + "anchor": "event-warning", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "exact" + }, + { + "id": "process:22047e2b2e9d", + "chapter": "process", + "kind": "module", + "name": "emitting_custom_warnings", + "signature": "Emitting custom warnings", + "label": "Emitting custom warnings", + "apiSymbol": "emitting_custom_warnings", + "depth": 3, + "scope": "documentation", + "anchor": "emitting-custom-warnings", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "process:54317badcc7e", + "chapter": "process", + "kind": "module", + "name": "node.js_warning_names", + "signature": "Node.js warning names", + "label": "Node.js warning names", + "apiSymbol": "node.js_warning_names", + "depth": 3, + "scope": "documentation", + "anchor": "nodejs-warning-names", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "process:c506d49acae3", + "chapter": "process", + "kind": "event", + "name": "worker", + "signature": "Event: `'worker'`", + "label": "'worker'", + "apiSymbol": "'worker'", + "depth": 2, + "scope": "api", + "anchor": "event-worker", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "exact" + }, + { + "id": "process:6fc19fe2dfff", + "chapter": "process", + "kind": "event", + "name": "SIGINT, SIGHUP, etc.", + "signature": "Signal events", + "label": "Signal events", + "apiSymbol": "SIGINT, SIGHUP, etc.", + "depth": 2, + "scope": "api", + "anchor": "signal-events", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "exact" + }, + { + "id": "process:5bd0715d2369", + "chapter": "process", + "kind": "module", + "name": "exit_codes", + "signature": "Exit codes", + "label": "Exit codes", + "apiSymbol": "exit_codes", + "depth": 1, + "scope": "documentation", + "anchor": "exit-codes", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "process:8d640b9ad0b7", + "chapter": "process", + "kind": "method", + "name": "abort", + "signature": "`process.abort()`", + "label": "process.abort()", + "apiSymbol": "process.abort", + "depth": 1, + "scope": "api", + "anchor": "processabort", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "exact" + }, + { + "id": "process:7cba06bed67c", + "chapter": "process", + "kind": "method", + "name": "availableMemory", + "signature": "`process.availableMemory()`", + "label": "process.availableMemory()", + "apiSymbol": "process.availableMemory", + "depth": 1, + "scope": "api", + "anchor": "processavailablememory", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.process.availableMemory", + "tests": [ + "tests/corpus/990-process-basics.ts", + "tests/corpus/2314-process-introspection.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "exact" + }, + { + "id": "process:eacade82f5f8", + "chapter": "process", + "kind": "method", + "name": "chdir", + "signature": "`process.chdir(directory)`", + "label": "process.chdir(directory)", + "apiSymbol": "process.chdir", + "depth": 1, + "scope": "api", + "anchor": "processchdirdirectory", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.process.chdir", + "tests": [ + "tests/corpus/990-process-basics.ts", + "tests/corpus/2314-process-introspection.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "exact" + }, + { + "id": "process:0d24a9d09ee6", + "chapter": "process", + "kind": "method", + "name": "constrainedMemory", + "signature": "`process.constrainedMemory()`", + "label": "process.constrainedMemory()", + "apiSymbol": "process.constrainedMemory", + "depth": 1, + "scope": "api", + "anchor": "processconstrainedmemory", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.process.constrainedMemory", + "tests": [ + "tests/corpus/990-process-basics.ts", + "tests/corpus/2314-process-introspection.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "exact" + }, + { + "id": "process:b1e81b4d41d4", + "chapter": "process", + "kind": "method", + "name": "cpuUsage", + "signature": "`process.cpuUsage([previousValue])`", + "label": "process.cpuUsage([previousValue])", + "apiSymbol": "process.cpuUsage", + "depth": 1, + "scope": "api", + "anchor": "processcpuusagepreviousvalue", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.process.cpuUsage", + "tests": [ + "tests/corpus/990-process-basics.ts", + "tests/corpus/2314-process-introspection.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "exact" + }, + { + "id": "process:836674d28ad5", + "chapter": "process", + "kind": "method", + "name": "cwd", + "signature": "`process.cwd()`", + "label": "process.cwd()", + "apiSymbol": "process.cwd", + "depth": 1, + "scope": "api", + "anchor": "processcwd", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.process.cwd", + "tests": [ + "tests/corpus/990-process-basics.ts", + "tests/corpus/2314-process-introspection.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:process.cwd", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "process:bf56eccae064", + "chapter": "process", + "kind": "method", + "name": "disconnect", + "signature": "`process.disconnect()`", + "label": "process.disconnect()", + "apiSymbol": "process.disconnect", + "depth": 1, + "scope": "api", + "anchor": "processdisconnect", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "exact" + }, + { + "id": "process:806e8042338f", + "chapter": "process", + "kind": "method", + "name": "dlopen", + "signature": "`process.dlopen(module, filename[, flags])`", + "label": "process.dlopen(module, filename[, flags])", + "apiSymbol": "process.dlopen", + "depth": 1, + "scope": "api", + "anchor": "processdlopenmodule-filename-flags", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "exact" + }, + { + "id": "process:1116fdf74cbe", + "chapter": "process", + "kind": "method", + "name": "emitWarning", + "signature": "`process.emitWarning(warning[, options])`", + "label": "process.emitWarning(warning[, options])", + "apiSymbol": "process.emitWarning", + "depth": 1, + "scope": "api", + "anchor": "processemitwarningwarning-options", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:process.emitWarning", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "process:bf6d1d5f3dd8", + "chapter": "process", + "kind": "method", + "name": "emitWarning", + "signature": "`process.emitWarning(warning[, type[, code]][, ctor])`", + "label": "process.emitWarning(warning[, type[, code]][, ctor])", + "apiSymbol": "process.emitWarning", + "depth": 1, + "scope": "api", + "anchor": "processemitwarningwarning-type-code-ctor", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:process.emitWarning", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "process:7b8880df20c8", + "chapter": "process", + "kind": "module", + "name": "avoiding_duplicate_warnings", + "signature": "Avoiding duplicate warnings", + "label": "Avoiding duplicate warnings", + "apiSymbol": "avoiding_duplicate_warnings", + "depth": 2, + "scope": "documentation", + "anchor": "avoiding-duplicate-warnings", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "process:719a0ed0af87", + "chapter": "process", + "kind": "method", + "name": "execve", + "signature": "`process.execve(file[, args[, env]])`", + "label": "process.execve(file[, args[, env]])", + "apiSymbol": "process.execve", + "depth": 1, + "scope": "api", + "anchor": "processexecvefile-args-env", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "exact" + }, + { + "id": "process:e8f9659de16e", + "chapter": "process", + "kind": "method", + "name": "exit", + "signature": "`process.exit([code])`", + "label": "process.exit([code])", + "apiSymbol": "process.exit", + "depth": 1, + "scope": "api", + "anchor": "processexitcode", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.process.exit", + "tests": [ + "tests/corpus/990-process-basics.ts", + "tests/corpus/2314-process-introspection.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:process.exit", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "process:a6f598a1c566", + "chapter": "process", + "kind": "method", + "name": "register", + "signature": "`process.finalization.register(ref, callback)`", + "label": "process.finalization.register(ref, callback)", + "apiSymbol": "process.finalization.register", + "depth": 1, + "scope": "api", + "anchor": "processfinalizationregisterref-callback", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active Development", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "exact" + }, + { + "id": "process:4b498051c24f", + "chapter": "process", + "kind": "method", + "name": "registerBeforeExit", + "signature": "`process.finalization.registerBeforeExit(ref, callback)`", + "label": "process.finalization.registerBeforeExit(ref, callback)", + "apiSymbol": "process.finalization.registerBeforeExit", + "depth": 1, + "scope": "api", + "anchor": "processfinalizationregisterbeforeexitref-callback", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active Development", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "exact" + }, + { + "id": "process:fc35596874de", + "chapter": "process", + "kind": "method", + "name": "unregister", + "signature": "`process.finalization.unregister(ref)`", + "label": "process.finalization.unregister(ref)", + "apiSymbol": "process.finalization.unregister", + "depth": 1, + "scope": "api", + "anchor": "processfinalizationunregisterref", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active Development", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "exact" + }, + { + "id": "process:b00f553355c5", + "chapter": "process", + "kind": "method", + "name": "getActiveResourcesInfo", + "signature": "`process.getActiveResourcesInfo()`", + "label": "process.getActiveResourcesInfo()", + "apiSymbol": "process.getActiveResourcesInfo", + "depth": 1, + "scope": "api", + "anchor": "processgetactiveresourcesinfo", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "exact" + }, + { + "id": "process:02183ce5cd8f", + "chapter": "process", + "kind": "method", + "name": "getBuiltinModule", + "signature": "`process.getBuiltinModule(id)`", + "label": "process.getBuiltinModule(id)", + "apiSymbol": "process.getBuiltinModule", + "depth": 1, + "scope": "api", + "anchor": "processgetbuiltinmoduleid", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "exact" + }, + { + "id": "process:93f1bc4a95e7", + "chapter": "process", + "kind": "method", + "name": "getegid", + "signature": "`process.getegid()`", + "label": "process.getegid()", + "apiSymbol": "process.getegid", + "depth": 1, + "scope": "api", + "anchor": "processgetegid", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "exact" + }, + { + "id": "process:ca846708fed7", + "chapter": "process", + "kind": "method", + "name": "geteuid", + "signature": "`process.geteuid()`", + "label": "process.geteuid()", + "apiSymbol": "process.geteuid", + "depth": 1, + "scope": "api", + "anchor": "processgeteuid", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "exact" + }, + { + "id": "process:1b4287e4083a", + "chapter": "process", + "kind": "method", + "name": "getgid", + "signature": "`process.getgid()`", + "label": "process.getgid()", + "apiSymbol": "process.getgid", + "depth": 1, + "scope": "api", + "anchor": "processgetgid", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.process.getgid", + "tests": [ + "tests/corpus/990-process-basics.ts", + "tests/corpus/2314-process-introspection.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "exact" + }, + { + "id": "process:d29ab25c5c2e", + "chapter": "process", + "kind": "method", + "name": "getgroups", + "signature": "`process.getgroups()`", + "label": "process.getgroups()", + "apiSymbol": "process.getgroups", + "depth": 1, + "scope": "api", + "anchor": "processgetgroups", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "exact" + }, + { + "id": "process:6517dbbd362e", + "chapter": "process", + "kind": "method", + "name": "getuid", + "signature": "`process.getuid()`", + "label": "process.getuid()", + "apiSymbol": "process.getuid", + "depth": 1, + "scope": "api", + "anchor": "processgetuid", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.process.getuid", + "tests": [ + "tests/corpus/990-process-basics.ts", + "tests/corpus/2314-process-introspection.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "exact" + }, + { + "id": "process:c223b1037286", + "chapter": "process", + "kind": "method", + "name": "hasUncaughtExceptionCaptureCallback", + "signature": "`process.hasUncaughtExceptionCaptureCallback()`", + "label": "process.hasUncaughtExceptionCaptureCallback()", + "apiSymbol": "process.hasUncaughtExceptionCaptureCallback", + "depth": 1, + "scope": "api", + "anchor": "processhasuncaughtexceptioncapturecallback", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "exact" + }, + { + "id": "process:edfbcd0bc504", + "chapter": "process", + "kind": "method", + "name": "hrtime", + "signature": "`process.hrtime([time])`", + "label": "process.hrtime([time])", + "apiSymbol": "process.hrtime", + "depth": 1, + "scope": "api", + "anchor": "processhrtimetime", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy. Use [`process.hrtime.bigint()`][] instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:process.hrtime", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "process:c80c699d0d2e", + "chapter": "process", + "kind": "method", + "name": "bigint", + "signature": "`process.hrtime.bigint()`", + "label": "process.hrtime.bigint()", + "apiSymbol": "process.hrtime.bigint", + "depth": 1, + "scope": "api", + "anchor": "processhrtimebigint", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "exact" + }, + { + "id": "process:c00a10882035", + "chapter": "process", + "kind": "method", + "name": "initgroups", + "signature": "`process.initgroups(user, extraGroup)`", + "label": "process.initgroups(user, extraGroup)", + "apiSymbol": "process.initgroups", + "depth": 1, + "scope": "api", + "anchor": "processinitgroupsuser-extragroup", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "exact" + }, + { + "id": "process:927e53713d32", + "chapter": "process", + "kind": "method", + "name": "kill", + "signature": "`process.kill(pid[, signal])`", + "label": "process.kill(pid[, signal])", + "apiSymbol": "process.kill", + "depth": 1, + "scope": "api", + "anchor": "processkillpid-signal", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.process.kill", + "tests": [ + "tests/corpus/990-process-basics.ts", + "tests/corpus/2314-process-introspection.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "exact" + }, + { + "id": "process:488ec362cb48", + "chapter": "process", + "kind": "method", + "name": "loadEnvFile", + "signature": "`process.loadEnvFile(path)`", + "label": "process.loadEnvFile(path)", + "apiSymbol": "process.loadEnvFile", + "depth": 1, + "scope": "api", + "anchor": "processloadenvfilepath", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "exact" + }, + { + "id": "process:1628d0513814", + "chapter": "process", + "kind": "method", + "name": "memoryUsage", + "signature": "`process.memoryUsage()`", + "label": "process.memoryUsage()", + "apiSymbol": "process.memoryUsage", + "depth": 1, + "scope": "api", + "anchor": "processmemoryusage", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:process.memoryUsage", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "process:85d92c25878c", + "chapter": "process", + "kind": "module", + "name": "a_note_on_process_memoryusage", + "signature": "A note on process memoryUsage", + "label": "A note on process memoryUsage", + "apiSymbol": "a_note_on_process_memoryusage", + "depth": 2, + "scope": "documentation", + "anchor": "a-note-on-process-memoryusage", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "process:75d02abb6b3f", + "chapter": "process", + "kind": "method", + "name": "rss", + "signature": "`process.memoryUsage.rss()`", + "label": "process.memoryUsage.rss()", + "apiSymbol": "process.memoryUsage.rss", + "depth": 1, + "scope": "api", + "anchor": "processmemoryusagerss", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "exact" + }, + { + "id": "process:0339b6b70128", + "chapter": "process", + "kind": "method", + "name": "nextTick", + "signature": "`process.nextTick(callback[, ...args])`", + "label": "process.nextTick(callback[, ...args])", + "apiSymbol": "process.nextTick", + "depth": 1, + "scope": "api", + "anchor": "processnexttickcallback-args", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use [`queueMicrotask()`][] instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:process.nextTick", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "process:af246c4881bd", + "chapter": "process", + "kind": "module", + "name": "when_to_use_`queuemicrotask()`_vs._`process.nexttick()`", + "signature": "When to use `queueMicrotask()` vs. `process.nextTick()`", + "label": "When to use queueMicrotask() vs. process.nextTick()", + "apiSymbol": "queueMicrotask", + "depth": 2, + "scope": "api", + "anchor": "when-to-use-queuemicrotask-vs-processnexttick", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use [`queueMicrotask()`][] instead.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "exact" + }, + { + "id": "process:7156b34d562d", + "chapter": "process", + "kind": "method", + "name": "ref", + "signature": "`process.ref(maybeRefable)`", + "label": "process.ref(maybeRefable)", + "apiSymbol": "process.ref", + "depth": 1, + "scope": "api", + "anchor": "processrefmayberefable", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "exact" + }, + { + "id": "process:b49c4a057d0f", + "chapter": "process", + "kind": "method", + "name": "resourceUsage", + "signature": "`process.resourceUsage()`", + "label": "process.resourceUsage()", + "apiSymbol": "process.resourceUsage", + "depth": 1, + "scope": "api", + "anchor": "processresourceusage", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.process.resourceUsage", + "tests": [ + "tests/corpus/990-process-basics.ts", + "tests/corpus/2314-process-introspection.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "exact" + }, + { + "id": "process:735851a82d2f", + "chapter": "process", + "kind": "method", + "name": "send", + "signature": "`process.send(message[, sendHandle[, options]][, callback])`", + "label": "process.send(message[, sendHandle[, options]][, callback])", + "apiSymbol": "process.send", + "depth": 1, + "scope": "api", + "anchor": "processsendmessage-sendhandle-options-callback", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "exact" + }, + { + "id": "process:59962add91ed", + "chapter": "process", + "kind": "method", + "name": "setegid", + "signature": "`process.setegid(id)`", + "label": "process.setegid(id)", + "apiSymbol": "process.setegid", + "depth": 1, + "scope": "api", + "anchor": "processsetegidid", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "exact" + }, + { + "id": "process:f90d2e42d287", + "chapter": "process", + "kind": "method", + "name": "seteuid", + "signature": "`process.seteuid(id)`", + "label": "process.seteuid(id)", + "apiSymbol": "process.seteuid", + "depth": 1, + "scope": "api", + "anchor": "processseteuidid", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "exact" + }, + { + "id": "process:0cf3ff25fa53", + "chapter": "process", + "kind": "method", + "name": "setgid", + "signature": "`process.setgid(id)`", + "label": "process.setgid(id)", + "apiSymbol": "process.setgid", + "depth": 1, + "scope": "api", + "anchor": "processsetgidid", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "exact" + }, + { + "id": "process:e648a86675b4", + "chapter": "process", + "kind": "method", + "name": "setgroups", + "signature": "`process.setgroups(groups)`", + "label": "process.setgroups(groups)", + "apiSymbol": "process.setgroups", + "depth": 1, + "scope": "api", + "anchor": "processsetgroupsgroups", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "exact" + }, + { + "id": "process:907f567aa3c8", + "chapter": "process", + "kind": "method", + "name": "setuid", + "signature": "`process.setuid(id)`", + "label": "process.setuid(id)", + "apiSymbol": "process.setuid", + "depth": 1, + "scope": "api", + "anchor": "processsetuidid", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "exact" + }, + { + "id": "process:4a17014e054c", + "chapter": "process", + "kind": "method", + "name": "setSourceMapsEnabled", + "signature": "`process.setSourceMapsEnabled(val)`", + "label": "process.setSourceMapsEnabled(val)", + "apiSymbol": "process.setSourceMapsEnabled", + "depth": 1, + "scope": "api", + "anchor": "processsetsourcemapsenabledval", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental: Use [`module.setSourceMapsSupport()`][] instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "exact" + }, + { + "id": "process:7ef00d9dc202", + "chapter": "process", + "kind": "method", + "name": "setUncaughtExceptionCaptureCallback", + "signature": "`process.setUncaughtExceptionCaptureCallback(fn)`", + "label": "process.setUncaughtExceptionCaptureCallback(fn)", + "apiSymbol": "process.setUncaughtExceptionCaptureCallback", + "depth": 1, + "scope": "api", + "anchor": "processsetuncaughtexceptioncapturecallbackfn", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "exact" + }, + { + "id": "process:3253f599da6b", + "chapter": "process", + "kind": "method", + "name": "threadCpuUsage", + "signature": "`process.threadCpuUsage([previousValue])`", + "label": "process.threadCpuUsage([previousValue])", + "apiSymbol": "process.threadCpuUsage", + "depth": 1, + "scope": "api", + "anchor": "processthreadcpuusagepreviousvalue", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.process.threadCpuUsage", + "tests": [ + "tests/corpus/990-process-basics.ts", + "tests/corpus/2314-process-introspection.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "exact" + }, + { + "id": "process:d8423d1fb7be", + "chapter": "process", + "kind": "method", + "name": "umask", + "signature": "`process.umask()`", + "label": "process.umask()", + "apiSymbol": "process.umask", + "depth": 1, + "scope": "api", + "anchor": "processumask", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. Calling `process.umask()` with no argument causes the process-wide umask to be written twice. This introduces a race condition between threads, and is a potential security vulnerability. There is no safe, cross-platform alternative API.", + "inherited": false + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.process.umask", + "tests": [ + "tests/corpus/990-process-basics.ts", + "tests/corpus/2314-process-introspection.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:process.umask", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "process:af23e255f9f6", + "chapter": "process", + "kind": "method", + "name": "umask", + "signature": "`process.umask(mask)`", + "label": "process.umask(mask)", + "apiSymbol": "process.umask", + "depth": 1, + "scope": "api", + "anchor": "processumaskmask", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.process.umask", + "tests": [ + "tests/corpus/990-process-basics.ts", + "tests/corpus/2314-process-introspection.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:process.umask", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "process:d3ae54961935", + "chapter": "process", + "kind": "method", + "name": "unref", + "signature": "`process.unref(maybeRefable)`", + "label": "process.unref(maybeRefable)", + "apiSymbol": "process.unref", + "depth": 1, + "scope": "api", + "anchor": "processunrefmayberefable", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "exact" + }, + { + "id": "process:be357affe05a", + "chapter": "process", + "kind": "method", + "name": "uptime", + "signature": "`process.uptime()`", + "label": "process.uptime()", + "apiSymbol": "process.uptime", + "depth": 1, + "scope": "api", + "anchor": "processuptime", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.process.uptime", + "tests": [ + "tests/corpus/990-process-basics.ts", + "tests/corpus/2314-process-introspection.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:process.uptime", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "process:c6accb058068", + "chapter": "process", + "kind": "Set", + "name": "Type", + "signature": "`allowedNodeEnvironmentFlags` Type: {Set}", + "label": "allowedNodeEnvironmentFlags", + "apiSymbol": "allowedNodeEnvironmentFlags", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:process.allowedNodeEnvironmentFlags", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "process:2063d6c1662d", + "chapter": "process", + "kind": "string", + "name": "Type", + "signature": "`arch` Type: {string}", + "label": "arch", + "apiSymbol": "arch", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "chapter" + }, + { + "id": "process:f0366557e058", + "chapter": "process", + "kind": "string\\[]", + "name": "Type", + "signature": "`argv` Type: {string\\[]}", + "label": "argv", + "apiSymbol": "argv", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.process.argv", + "tests": [ + "tests/corpus/990-process-basics.ts", + "tests/corpus/2314-process-introspection.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:process.argv", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "process:acc7519bee11", + "chapter": "process", + "kind": "string", + "name": "Type", + "signature": "`argv0` Type: {string}", + "label": "argv0", + "apiSymbol": "argv0", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:process.argv0", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "process:4ddaea2b8513", + "chapter": "process", + "kind": "Object", + "name": "Type", + "signature": "`channel` Type: {Object}", + "label": "channel", + "apiSymbol": "channel", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "chapter" + }, + { + "id": "process:f4e71050f610", + "chapter": "process", + "kind": "method", + "name": "ref", + "signature": "`process.channel.ref()`", + "label": "process.channel.ref()", + "apiSymbol": "process.channel.ref", + "depth": 2, + "scope": "api", + "anchor": "processchannelref", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "exact" + }, + { + "id": "process:55afa1254a1f", + "chapter": "process", + "kind": "method", + "name": "unref", + "signature": "`process.channel.unref()`", + "label": "process.channel.unref()", + "apiSymbol": "process.channel.unref", + "depth": 2, + "scope": "api", + "anchor": "processchannelunref", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "exact" + }, + { + "id": "process:cfa31d3f878d", + "chapter": "process", + "kind": "Object", + "name": "Type", + "signature": "`config` Type: {Object}", + "label": "config", + "apiSymbol": "config", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:process.config", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "process:d1c564e89314", + "chapter": "process", + "kind": "boolean", + "name": "Type", + "signature": "`connected` Type: {boolean}", + "label": "connected", + "apiSymbol": "connected", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "chapter" + }, + { + "id": "process:e8feb5eba4d8", + "chapter": "process", + "kind": "number", + "name": "Type", + "signature": "`debugPort` Type: {number}", + "label": "debugPort", + "apiSymbol": "debugPort", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "chapter" + }, + { + "id": "process:8a44c7d74c80", + "chapter": "process", + "kind": "Object", + "name": "Type", + "signature": "`env` Type: {Object}", + "label": "env", + "apiSymbol": "env", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.process.env", + "tests": [ + "tests/corpus/990-process-basics.ts", + "tests/corpus/2314-process-introspection.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:process.env", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "process:c355c6919e2d", + "chapter": "process", + "kind": "string\\[]", + "name": "Type", + "signature": "`execArgv` Type: {string\\[]}", + "label": "execArgv", + "apiSymbol": "execArgv", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:process.execArgv", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "process:da12c880f318", + "chapter": "process", + "kind": "string", + "name": "Type", + "signature": "`execPath` Type: {string}", + "label": "execPath", + "apiSymbol": "execPath", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.process.execPath", + "tests": [ + "tests/corpus/990-process-basics.ts", + "tests/corpus/2314-process-introspection.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:process.execPath", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "process:9b2ad777201c", + "chapter": "process", + "kind": "integer|string|null|undefined", + "name": "Type", + "signature": "`exitCode` Type: {integer|string|null|undefined} The exit code. For string type, only integer strings (e.g.,'1') are allowed. **Default:** `undefined`.", + "label": "exitCode", + "apiSymbol": "exitCode", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:process.exitCode", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "process:b8e0da5ae951", + "chapter": "process", + "kind": "boolean", + "name": "Type", + "signature": "`cached_builtins` Type: {boolean}", + "label": "cached_builtins", + "apiSymbol": "cached_builtins", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "chapter" + }, + { + "id": "process:9d635f1c82b0", + "chapter": "process", + "kind": "boolean", + "name": "Type", + "signature": "`debug` Type: {boolean}", + "label": "debug", + "apiSymbol": "debug", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "chapter" + }, + { + "id": "process:4190cdc13f5c", + "chapter": "process", + "kind": "boolean", + "name": "Type", + "signature": "`inspector` Type: {boolean}", + "label": "inspector", + "apiSymbol": "inspector", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "chapter" + }, + { + "id": "process:809a2c908877", + "chapter": "process", + "kind": "boolean", + "name": "Type", + "signature": "`ipv6` Type: {boolean}", + "label": "ipv6", + "apiSymbol": "ipv6", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. This property is always true, and any checks based on it are redundant.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "chapter" + }, + { + "id": "process:7f4530bc2b2a", + "chapter": "process", + "kind": "boolean", + "name": "Type", + "signature": "`require_module` Type: {boolean}", + "label": "require_module", + "apiSymbol": "require_module", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "chapter" + }, + { + "id": "process:07dd979d3559", + "chapter": "process", + "kind": "boolean", + "name": "Type", + "signature": "`tls` Type: {boolean}", + "label": "tls", + "apiSymbol": "tls", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "chapter" + }, + { + "id": "process:6baf4965ec21", + "chapter": "process", + "kind": "boolean", + "name": "Type", + "signature": "`tls_alpn` Type: {boolean}", + "label": "tls_alpn", + "apiSymbol": "tls_alpn", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. Use `process.features.tls` instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "chapter" + }, + { + "id": "process:db664d25fae7", + "chapter": "process", + "kind": "boolean", + "name": "Type", + "signature": "`tls_ocsp` Type: {boolean}", + "label": "tls_ocsp", + "apiSymbol": "tls_ocsp", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. Use `process.features.tls` instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "chapter" + }, + { + "id": "process:b70cdad80190", + "chapter": "process", + "kind": "boolean", + "name": "Type", + "signature": "`tls_sni` Type: {boolean}", + "label": "tls_sni", + "apiSymbol": "tls_sni", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. Use `process.features.tls` instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "chapter" + }, + { + "id": "process:6ecacf575a3a", + "chapter": "process", + "kind": "boolean|string", + "name": "Type", + "signature": "`typescript` Type: {boolean|string}", + "label": "typescript", + "apiSymbol": "typescript", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "chapter" + }, + { + "id": "process:0a8e5d146af4", + "chapter": "process", + "kind": "boolean", + "name": "Type", + "signature": "`uv` Type: {boolean}", + "label": "uv", + "apiSymbol": "uv", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. This property is always true, and any checks based on it are redundant.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "chapter" + }, + { + "id": "process:6f0743ca803a", + "chapter": "process", + "kind": "Object", + "name": "Type", + "signature": "`mainModule` Type: {Object}", + "label": "mainModule", + "apiSymbol": "mainModule", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Use [`require.main`][] instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "chapter" + }, + { + "id": "process:3f5ccb4aceaf", + "chapter": "process", + "kind": "boolean", + "name": "Type", + "signature": "`noDeprecation` Type: {boolean}", + "label": "noDeprecation", + "apiSymbol": "noDeprecation", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "chapter" + }, + { + "id": "process:4ff8994c4fb3", + "chapter": "process", + "kind": "Object", + "name": "Type", + "signature": "`permission` Type: {Object}", + "label": "permission", + "apiSymbol": "permission", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "chapter" + }, + { + "id": "process:d7fdff6a41a9", + "chapter": "process", + "kind": "method", + "name": "has", + "signature": "`process.permission.has(scope[, reference])`", + "label": "process.permission.has(scope[, reference])", + "apiSymbol": "process.permission.has", + "depth": 2, + "scope": "api", + "anchor": "processpermissionhasscope-reference", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "exact" + }, + { + "id": "process:0fbc1d44adb8", + "chapter": "process", + "kind": "integer", + "name": "Type", + "signature": "`pid` Type: {integer}", + "label": "pid", + "apiSymbol": "pid", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.process.pid", + "tests": [ + "tests/corpus/990-process-basics.ts", + "tests/corpus/2314-process-introspection.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:process.pid", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "process:cd0885b5dab6", + "chapter": "process", + "kind": "string", + "name": "Type", + "signature": "`platform` Type: {string}", + "label": "platform", + "apiSymbol": "platform", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:process.platform", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "process:e999004ba6cc", + "chapter": "process", + "kind": "integer", + "name": "Type", + "signature": "`ppid` Type: {integer}", + "label": "ppid", + "apiSymbol": "ppid", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:process.ppid", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "process:a4ee516257d8", + "chapter": "process", + "kind": "Object", + "name": "Type", + "signature": "`release` Type: {Object}", + "label": "release", + "apiSymbol": "release", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:process.release", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "process:8f7cfb3c1938", + "chapter": "process", + "kind": "Object", + "name": "Type", + "signature": "`report` Type: {Object}", + "label": "report", + "apiSymbol": "report", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "chapter" + }, + { + "id": "process:cce279ccf61c", + "chapter": "process", + "kind": "method", + "name": "getReport", + "signature": "`process.report.getReport([err])`", + "label": "process.report.getReport([err])", + "apiSymbol": "process.report.getReport", + "depth": 2, + "scope": "api", + "anchor": "processreportgetreporterr", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "exact" + }, + { + "id": "process:c8884173e64e", + "chapter": "process", + "kind": "method", + "name": "writeReport", + "signature": "`process.report.writeReport([filename][, err])`", + "label": "process.report.writeReport([filename][, err])", + "apiSymbol": "process.report.writeReport", + "depth": 2, + "scope": "api", + "anchor": "processreportwritereportfilename-err", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "exact" + }, + { + "id": "process:e0a42a44eb43", + "chapter": "process", + "kind": "boolean", + "name": "Type", + "signature": "`compact` Type: {boolean}", + "label": "compact", + "apiSymbol": "compact", + "depth": 2, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "chapter" + }, + { + "id": "process:2b76e23bd757", + "chapter": "process", + "kind": "string", + "name": "Type", + "signature": "`directory` Type: {string}", + "label": "directory", + "apiSymbol": "directory", + "depth": 2, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "chapter" + }, + { + "id": "process:e0ddf27fa39a", + "chapter": "process", + "kind": "string", + "name": "Type", + "signature": "`filename` Type: {string}", + "label": "filename", + "apiSymbol": "filename", + "depth": 2, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "chapter" + }, + { + "id": "process:f69cb0495e8f", + "chapter": "process", + "kind": "boolean", + "name": "Type", + "signature": "`reportOnFatalError` Type: {boolean}", + "label": "reportOnFatalError", + "apiSymbol": "reportOnFatalError", + "depth": 2, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "chapter" + }, + { + "id": "process:63758395b3f9", + "chapter": "process", + "kind": "boolean", + "name": "Type", + "signature": "`reportOnSignal` Type: {boolean}", + "label": "reportOnSignal", + "apiSymbol": "reportOnSignal", + "depth": 2, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "chapter" + }, + { + "id": "process:7fb3e0980e63", + "chapter": "process", + "kind": "boolean", + "name": "Type", + "signature": "`reportOnUncaughtException` Type: {boolean}", + "label": "reportOnUncaughtException", + "apiSymbol": "reportOnUncaughtException", + "depth": 2, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "chapter" + }, + { + "id": "process:4c2ef77e5295", + "chapter": "process", + "kind": "boolean", + "name": "Type", + "signature": "`excludeEnv` Type: {boolean}", + "label": "excludeEnv", + "apiSymbol": "excludeEnv", + "depth": 2, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "chapter" + }, + { + "id": "process:46cef7d9a40b", + "chapter": "process", + "kind": "string", + "name": "Type", + "signature": "`signal` Type: {string}", + "label": "signal", + "apiSymbol": "signal", + "depth": 2, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "chapter" + }, + { + "id": "process:a53b97f6fe5a", + "chapter": "process", + "kind": "boolean", + "name": "Type", + "signature": "`sourceMapsEnabled` Type: {boolean}", + "label": "sourceMapsEnabled", + "apiSymbol": "sourceMapsEnabled", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental: Use [`module.getSourceMapsSupport()`][] instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "chapter" + }, + { + "id": "process:2974f8887c0b", + "chapter": "process", + "kind": "Stream", + "name": "Type", + "signature": "`stderr` Type: {Stream}", + "label": "stderr", + "apiSymbol": "stderr", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:process.stderr", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "process:5aa32000609d", + "chapter": "process", + "kind": "number", + "name": "Type", + "signature": "`fd` Type: {number}", + "label": "fd", + "apiSymbol": "fd", + "depth": 2, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "chapter" + }, + { + "id": "process:6309e297b84b", + "chapter": "process", + "kind": "Stream", + "name": "Type", + "signature": "`stdin` Type: {Stream}", + "label": "stdin", + "apiSymbol": "stdin", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:process.stdin", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "process:5aa32000609d:2", + "chapter": "process", + "kind": "number", + "name": "Type", + "signature": "`fd` Type: {number}", + "label": "fd", + "apiSymbol": "fd", + "depth": 2, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "chapter" + }, + { + "id": "process:6c129c448850", + "chapter": "process", + "kind": "Stream", + "name": "Type", + "signature": "`stdout` Type: {Stream}", + "label": "stdout", + "apiSymbol": "stdout", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:process.stdout", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "process:bd401d5e5411", + "chapter": "process", + "kind": "module", + "name": "a_note_on_process_i/o", + "signature": "A note on process I/O", + "label": "A note on process I/O", + "apiSymbol": "a_note_on_process_i/o", + "depth": 2, + "scope": "documentation", + "anchor": "a-note-on-process-io", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "process:5aa32000609d:3", + "chapter": "process", + "kind": "number", + "name": "Type", + "signature": "`fd` Type: {number}", + "label": "fd", + "apiSymbol": "fd", + "depth": 2, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "chapter" + }, + { + "id": "process:bc98f8b642f1", + "chapter": "process", + "kind": "boolean", + "name": "Type", + "signature": "`throwDeprecation` Type: {boolean}", + "label": "throwDeprecation", + "apiSymbol": "throwDeprecation", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "chapter" + }, + { + "id": "process:7752db6a3c21", + "chapter": "process", + "kind": "string", + "name": "Type", + "signature": "`title` Type: {string}", + "label": "title", + "apiSymbol": "title", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:process.title", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "process:2536f074b319", + "chapter": "process", + "kind": "boolean", + "name": "Type", + "signature": "`traceDeprecation` Type: {boolean}", + "label": "traceDeprecation", + "apiSymbol": "traceDeprecation", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "chapter" + }, + { + "id": "process:e5725270a76a", + "chapter": "process", + "kind": "boolean", + "name": "traceProcessWarnings", + "signature": "`traceProcessWarnings` {boolean}", + "label": "traceProcessWarnings", + "apiSymbol": "traceProcessWarnings", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:process" + }, + "anchorSource": "chapter" + }, + { + "id": "process:06e71bed1fb2", + "chapter": "process", + "kind": "string", + "name": "Type", + "signature": "`version` Type: {string}", + "label": "version", + "apiSymbol": "version", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:process.version", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "process:902174dc5fb1", + "chapter": "process", + "kind": "Object", + "name": "Type", + "signature": "`versions` Type: {Object}", + "label": "versions", + "apiSymbol": "versions", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:process" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:process.versions", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "punycode:821d37f5d323", + "chapter": "punycode", + "kind": "module", + "name": "punycode", + "signature": "Punycode", + "label": "Punycode", + "apiSymbol": "punycode", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "derived:descendants" + }, + "dynamic": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "punycode:a799f8d15dd0", + "chapter": "punycode", + "kind": "method", + "name": "decode", + "signature": "`punycode.decode(string)`", + "label": "punycode.decode(string)", + "apiSymbol": "punycode.decode", + "depth": 1, + "scope": "api", + "anchor": "punycodedecodestring", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:punycode" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:punycode.decode", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "punycode:c4117618b851", + "chapter": "punycode", + "kind": "method", + "name": "encode", + "signature": "`punycode.encode(string)`", + "label": "punycode.encode(string)", + "apiSymbol": "punycode.encode", + "depth": 1, + "scope": "api", + "anchor": "punycodeencodestring", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:punycode" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:punycode.encode", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "punycode:6eb8ba2fa294", + "chapter": "punycode", + "kind": "method", + "name": "toASCII", + "signature": "`punycode.toASCII(domain)`", + "label": "punycode.toASCII(domain)", + "apiSymbol": "punycode.toASCII", + "depth": 1, + "scope": "api", + "anchor": "punycodetoasciidomain", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:punycode" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:punycode.toASCII", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "punycode:8f0a9f610831", + "chapter": "punycode", + "kind": "method", + "name": "toUnicode", + "signature": "`punycode.toUnicode(domain)`", + "label": "punycode.toUnicode(domain)", + "apiSymbol": "punycode.toUnicode", + "depth": 1, + "scope": "api", + "anchor": "punycodetounicodedomain", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:punycode" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:punycode.toUnicode", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "punycode:219a4fe955e9", + "chapter": "punycode", + "kind": "section", + "name": "ucs2", + "signature": "`punycode.ucs2`", + "label": "punycode.ucs2", + "apiSymbol": "punycode.ucs2", + "depth": 1, + "scope": "api", + "anchor": "punycodeucs2", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:punycode" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:punycode.ucs2", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "punycode:71bbda2cf0e3", + "chapter": "punycode", + "kind": "method", + "name": "decode", + "signature": "`punycode.ucs2.decode(string)`", + "label": "punycode.ucs2.decode(string)", + "apiSymbol": "punycode.ucs2.decode", + "depth": 2, + "scope": "api", + "anchor": "punycodeucs2decodestring", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:punycode" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:punycode" + }, + "anchorSource": "exact" + }, + { + "id": "punycode:f0a37edfde9c", + "chapter": "punycode", + "kind": "method", + "name": "encode", + "signature": "`punycode.ucs2.encode(codePoints)`", + "label": "punycode.ucs2.encode(codePoints)", + "apiSymbol": "punycode.ucs2.encode", + "depth": 2, + "scope": "api", + "anchor": "punycodeucs2encodecodepoints", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:punycode" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:punycode" + }, + "anchorSource": "exact" + }, + { + "id": "punycode:8401b3810d6a", + "chapter": "punycode", + "kind": "string", + "name": "Type", + "signature": "`version` Type: {string}", + "label": "version", + "apiSymbol": "version", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:punycode" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:punycode.version", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "querystring:6daca1e4b100", + "chapter": "querystring", + "kind": "module", + "name": "querystring", + "signature": "Query string", + "label": "Query string", + "apiSymbol": "querystring", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/corpus/957-builtins-namespace.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "querystring:49c85da5a3aa", + "chapter": "querystring", + "kind": "method", + "name": "decode", + "signature": "`querystring.decode()`", + "label": "querystring.decode()", + "apiSymbol": "querystring.decode", + "depth": 1, + "scope": "api", + "anchor": "querystringdecode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.querystring.decode", + "tests": [ + "tests/corpus/957-builtins-namespace.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:querystring.decode", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "querystring:5dae28cfd428", + "chapter": "querystring", + "kind": "method", + "name": "encode", + "signature": "`querystring.encode()`", + "label": "querystring.encode()", + "apiSymbol": "querystring.encode", + "depth": 1, + "scope": "api", + "anchor": "querystringencode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.querystring.encode", + "tests": [ + "tests/corpus/957-builtins-namespace.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:querystring.encode", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "querystring:8a91837627cc", + "chapter": "querystring", + "kind": "method", + "name": "escape", + "signature": "`querystring.escape(str)`", + "label": "querystring.escape(str)", + "apiSymbol": "querystring.escape", + "depth": 1, + "scope": "api", + "anchor": "querystringescapestr", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.querystring.escape", + "tests": [ + "tests/corpus/957-builtins-namespace.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:querystring.escape", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "querystring:9cbcedea5f3a", + "chapter": "querystring", + "kind": "method", + "name": "parse", + "signature": "`querystring.parse(str[, sep[, eq[, options]]])`", + "label": "querystring.parse(str[, sep[, eq[, options]]])", + "apiSymbol": "querystring.parse", + "depth": 1, + "scope": "api", + "anchor": "querystringparsestr-sep-eq-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.querystring.parse", + "tests": [ + "tests/corpus/957-builtins-namespace.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:querystring.parse", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "querystring:0f8ec65246ae", + "chapter": "querystring", + "kind": "method", + "name": "stringify", + "signature": "`querystring.stringify(obj[, sep[, eq[, options]]])`", + "label": "querystring.stringify(obj[, sep[, eq[, options]]])", + "apiSymbol": "querystring.stringify", + "depth": 1, + "scope": "api", + "anchor": "querystringstringifyobj-sep-eq-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.querystring.stringify", + "tests": [ + "tests/corpus/957-builtins-namespace.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:querystring.stringify", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "querystring:5315956e9400", + "chapter": "querystring", + "kind": "method", + "name": "unescape", + "signature": "`querystring.unescape(str)`", + "label": "querystring.unescape(str)", + "apiSymbol": "querystring.unescape", + "depth": 1, + "scope": "api", + "anchor": "querystringunescapestr", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.querystring.unescape", + "tests": [ + "tests/corpus/957-builtins-namespace.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:querystring.unescape", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "readline:623e7726eca0", + "chapter": "readline", + "kind": "module", + "name": "readline", + "signature": "Readline", + "label": "Readline", + "apiSymbol": "readline", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/corpus/1475-readline-closed-stdin.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "readline:4a6b54c5199c", + "chapter": "readline", + "kind": "module", + "name": "promises_api", + "signature": "Promises API", + "label": "Promises API", + "apiSymbol": "promises_api", + "depth": 1, + "scope": "documentation", + "anchor": "promises-api", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "readline:f6115aa98422", + "chapter": "readline", + "kind": "class", + "name": "readlinePromises.Interface", + "signature": "Class: `readlinePromises.Interface`", + "label": "readlinePromises.Interface", + "apiSymbol": "readlinePromises.Interface", + "depth": 2, + "scope": "api", + "anchor": "class-readlinepromisesinterface", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:readline" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:readline" + }, + "anchorSource": "exact" + }, + { + "id": "readline:93e8bfa7183b", + "chapter": "readline", + "kind": "method", + "name": "question", + "signature": "`rl.question(query[, options])`", + "label": "rl.question(query[, options])", + "apiSymbol": "rl.question", + "depth": 3, + "scope": "api", + "anchor": "rlquestionquery-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:readline" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:readline.rl.question", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "readline:b031461adce4", + "chapter": "readline", + "kind": "class", + "name": "readlinePromises.Readline", + "signature": "Class: `readlinePromises.Readline`", + "label": "readlinePromises.Readline", + "apiSymbol": "readlinePromises.Readline", + "depth": 2, + "scope": "api", + "anchor": "class-readlinepromisesreadline", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:readline" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:readline" + }, + "anchorSource": "exact" + }, + { + "id": "readline:77225325910c", + "chapter": "readline", + "kind": "method", + "name": "clearLine", + "signature": "`rl.clearLine(dir)`", + "label": "rl.clearLine(dir)", + "apiSymbol": "rl.clearLine", + "depth": 3, + "scope": "api", + "anchor": "rlclearlinedir", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:readline" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:readline" + }, + "anchorSource": "exact" + }, + { + "id": "readline:c807d041da09", + "chapter": "readline", + "kind": "method", + "name": "clearScreenDown", + "signature": "`rl.clearScreenDown()`", + "label": "rl.clearScreenDown()", + "apiSymbol": "rl.clearScreenDown", + "depth": 3, + "scope": "api", + "anchor": "rlclearscreendown", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:readline" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:readline" + }, + "anchorSource": "exact" + }, + { + "id": "readline:1f63fe751514", + "chapter": "readline", + "kind": "method", + "name": "commit", + "signature": "`rl.commit()`", + "label": "rl.commit()", + "apiSymbol": "rl.commit", + "depth": 3, + "scope": "api", + "anchor": "rlcommit", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:readline" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:readline" + }, + "anchorSource": "exact" + }, + { + "id": "readline:b972d74a14a6", + "chapter": "readline", + "kind": "method", + "name": "cursorTo", + "signature": "`rl.cursorTo(x[, y])`", + "label": "rl.cursorTo(x[, y])", + "apiSymbol": "rl.cursorTo", + "depth": 3, + "scope": "api", + "anchor": "rlcursortox-y", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:readline" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:readline" + }, + "anchorSource": "exact" + }, + { + "id": "readline:0ad8def7aa46", + "chapter": "readline", + "kind": "method", + "name": "moveCursor", + "signature": "`rl.moveCursor(dx, dy)`", + "label": "rl.moveCursor(dx, dy)", + "apiSymbol": "rl.moveCursor", + "depth": 3, + "scope": "api", + "anchor": "rlmovecursordx-dy", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:readline" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:readline" + }, + "anchorSource": "exact" + }, + { + "id": "readline:0e4972f76e11", + "chapter": "readline", + "kind": "method", + "name": "rollback", + "signature": "`rl.rollback()`", + "label": "rl.rollback()", + "apiSymbol": "rl.rollback", + "depth": 3, + "scope": "api", + "anchor": "rlrollback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:readline" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:readline" + }, + "anchorSource": "exact" + }, + { + "id": "readline:c9f5e2431cf3", + "chapter": "readline", + "kind": "method", + "name": "createInterface", + "signature": "`readlinePromises.createInterface(options)`", + "label": "readlinePromises.createInterface(options)", + "apiSymbol": "readlinePromises.createInterface", + "depth": 2, + "scope": "api", + "anchor": "readlinepromisescreateinterfaceoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:readline" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:readline" + }, + "anchorSource": "exact" + }, + { + "id": "readline:f99a9215d7e8", + "chapter": "readline", + "kind": "module", + "name": "use_of_the_`completer`_function", + "signature": "Use of the `completer` function", + "label": "Use of the completer function", + "apiSymbol": "completer", + "depth": 3, + "scope": "api", + "anchor": "use-of-the-completer-function", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:readline" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:readline" + }, + "anchorSource": "exact" + }, + { + "id": "readline:e767118500db", + "chapter": "readline", + "kind": "module", + "name": "callback_api", + "signature": "Callback API", + "label": "Callback API", + "apiSymbol": "callback_api", + "depth": 1, + "scope": "documentation", + "anchor": "callback-api", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "readline:119ae49a30d4", + "chapter": "readline", + "kind": "class", + "name": "readline.Interface", + "signature": "Class: `readline.Interface`", + "label": "readline.Interface", + "apiSymbol": "readline.Interface", + "depth": 2, + "scope": "api", + "anchor": "class-readlineinterface", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:readline" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:readline.Interface", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "readline:eddd243d9e88", + "chapter": "readline", + "kind": "method", + "name": "question", + "signature": "`rl.question(query[, options], callback)`", + "label": "rl.question(query[, options], callback)", + "apiSymbol": "rl.question", + "depth": 3, + "scope": "api", + "anchor": "rlquestionquery-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:readline" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:readline.rl.question", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "readline:f904a5c5575e", + "chapter": "readline", + "kind": "method", + "name": "clearLine", + "signature": "`readline.clearLine(stream, dir[, callback])`", + "label": "readline.clearLine(stream, dir[, callback])", + "apiSymbol": "readline.clearLine", + "depth": 2, + "scope": "api", + "anchor": "readlineclearlinestream-dir-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:readline" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:readline.clearLine", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "readline:1ec0ef0a672e", + "chapter": "readline", + "kind": "method", + "name": "clearScreenDown", + "signature": "`readline.clearScreenDown(stream[, callback])`", + "label": "readline.clearScreenDown(stream[, callback])", + "apiSymbol": "readline.clearScreenDown", + "depth": 2, + "scope": "api", + "anchor": "readlineclearscreendownstream-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:readline" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:readline.clearScreenDown", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "readline:e42fe9c65553", + "chapter": "readline", + "kind": "method", + "name": "createInterface", + "signature": "`readline.createInterface(options)`", + "label": "readline.createInterface(options)", + "apiSymbol": "readline.createInterface", + "depth": 2, + "scope": "api", + "anchor": "readlinecreateinterfaceoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:readline.createInterface", + "tests": [ + "tests/corpus/1475-readline-closed-stdin.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:readline.createInterface", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "readline:7406acc1f122", + "chapter": "readline", + "kind": "module", + "name": "use_of_the_`completer`_function", + "signature": "Use of the `completer` function", + "label": "Use of the completer function", + "apiSymbol": "completer", + "depth": 3, + "scope": "api", + "anchor": "use-of-the-completer-function_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:readline" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:readline" + }, + "anchorSource": "exact" + }, + { + "id": "readline:7c8b4b55c589", + "chapter": "readline", + "kind": "method", + "name": "cursorTo", + "signature": "`readline.cursorTo(stream, x[, y][, callback])`", + "label": "readline.cursorTo(stream, x[, y][, callback])", + "apiSymbol": "readline.cursorTo", + "depth": 2, + "scope": "api", + "anchor": "readlinecursortostream-x-y-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:readline" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:readline.cursorTo", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "readline:c41448e7f6f3", + "chapter": "readline", + "kind": "method", + "name": "moveCursor", + "signature": "`readline.moveCursor(stream, dx, dy[, callback])`", + "label": "readline.moveCursor(stream, dx, dy[, callback])", + "apiSymbol": "readline.moveCursor", + "depth": 2, + "scope": "api", + "anchor": "readlinemovecursorstream-dx-dy-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:readline" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:readline.moveCursor", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "readline:439f050b079a", + "chapter": "readline", + "kind": "module", + "name": "tty_keybindings", + "signature": "TTY keybindings", + "label": "TTY keybindings", + "apiSymbol": "tty_keybindings", + "depth": 1, + "scope": "documentation", + "anchor": "tty-keybindings", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "readline:cdf3ee503158", + "chapter": "readline", + "kind": "class", + "name": "InterfaceConstructor", + "signature": "Class: `InterfaceConstructor`", + "label": "InterfaceConstructor", + "apiSymbol": "InterfaceConstructor", + "depth": 1, + "scope": "api", + "anchor": "class-interfaceconstructor", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:readline" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:readline" + }, + "anchorSource": "exact" + }, + { + "id": "readline:7f16c47dd206", + "chapter": "readline", + "kind": "method", + "name": "close", + "signature": "`rl.close()`", + "label": "rl.close()", + "apiSymbol": "rl.close", + "depth": 2, + "scope": "api", + "anchor": "rlclose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:rl.close", + "tests": [ + "tests/corpus/1475-readline-closed-stdin.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:readline.rl.close", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "readline:df8bde84f5e8", + "chapter": "readline", + "kind": "method", + "name": "[Symbol.dispose]", + "signature": "`rl[Symbol.dispose]()`", + "label": "rl[Symbol.dispose]()", + "apiSymbol": "rl", + "depth": 2, + "scope": "api", + "anchor": "rlsymboldispose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:readline" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:readline" + }, + "anchorSource": "exact" + }, + { + "id": "readline:b89bd225bf61", + "chapter": "readline", + "kind": "method", + "name": "pause", + "signature": "`rl.pause()`", + "label": "rl.pause()", + "apiSymbol": "rl.pause", + "depth": 2, + "scope": "api", + "anchor": "rlpause", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:readline" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:readline.rl.pause", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "readline:66d998cc034b", + "chapter": "readline", + "kind": "method", + "name": "prompt", + "signature": "`rl.prompt([preserveCursor])`", + "label": "rl.prompt([preserveCursor])", + "apiSymbol": "rl.prompt", + "depth": 2, + "scope": "api", + "anchor": "rlpromptpreservecursor", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:readline" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:readline.rl.prompt", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "readline:601596706c1d", + "chapter": "readline", + "kind": "method", + "name": "resume", + "signature": "`rl.resume()`", + "label": "rl.resume()", + "apiSymbol": "rl.resume", + "depth": 2, + "scope": "api", + "anchor": "rlresume", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:readline" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:readline.rl.resume", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "readline:cb20a8dab59e", + "chapter": "readline", + "kind": "method", + "name": "setPrompt", + "signature": "`rl.setPrompt(prompt)`", + "label": "rl.setPrompt(prompt)", + "apiSymbol": "rl.setPrompt", + "depth": 2, + "scope": "api", + "anchor": "rlsetpromptprompt", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:readline" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:readline.rl.setPrompt", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "readline:e905c7e5b602", + "chapter": "readline", + "kind": "method", + "name": "getPrompt", + "signature": "`rl.getPrompt()`", + "label": "rl.getPrompt()", + "apiSymbol": "rl.getPrompt", + "depth": 2, + "scope": "api", + "anchor": "rlgetprompt", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:readline" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:readline.rl.getPrompt", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "readline:4784b2dfdd25", + "chapter": "readline", + "kind": "method", + "name": "write", + "signature": "`rl.write(data[, key])`", + "label": "rl.write(data[, key])", + "apiSymbol": "rl.write", + "depth": 2, + "scope": "api", + "anchor": "rlwritedata-key", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:readline" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:readline.rl.write", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "readline:90b08a5cc645", + "chapter": "readline", + "kind": "method", + "name": "[Symbol.asyncIterator]", + "signature": "`rl[Symbol.asyncIterator]()`", + "label": "rl[Symbol.asyncIterator]()", + "apiSymbol": "rl", + "depth": 2, + "scope": "api", + "anchor": "rlsymbolasynciterator", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:readline" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:readline" + }, + "anchorSource": "exact" + }, + { + "id": "readline:c3f5b7f0a365", + "chapter": "readline", + "kind": "method", + "name": "getCursorPos", + "signature": "`rl.getCursorPos()`", + "label": "rl.getCursorPos()", + "apiSymbol": "rl.getCursorPos", + "depth": 2, + "scope": "api", + "anchor": "rlgetcursorpos", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:readline" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:readline" + }, + "anchorSource": "exact" + }, + { + "id": "readline:7e67bfc5bded", + "chapter": "readline", + "kind": "string", + "name": "Type", + "signature": "`line` Type: {string}", + "label": "line", + "apiSymbol": "line", + "depth": 2, + "scope": "api", + "anchor": "class-interfaceconstructor", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:readline" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:readline" + }, + "anchorSource": "ancestor" + }, + { + "id": "readline:0ff5208c2947", + "chapter": "readline", + "kind": "number|undefined", + "name": "Type", + "signature": "`cursor` Type: {number|undefined}", + "label": "cursor", + "apiSymbol": "cursor", + "depth": 2, + "scope": "api", + "anchor": "class-interfaceconstructor", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:readline" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:readline" + }, + "anchorSource": "ancestor" + }, + { + "id": "readline:75a8f0db89ad", + "chapter": "readline", + "kind": "event", + "name": "close", + "signature": "Event: `'close'`", + "label": "'close'", + "apiSymbol": "'close'", + "depth": 2, + "scope": "api", + "anchor": "event-close", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:readline" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:readline" + }, + "anchorSource": "exact" + }, + { + "id": "readline:550124c72f08", + "chapter": "readline", + "kind": "event", + "name": "error", + "signature": "Event: `'error'`", + "label": "'error'", + "apiSymbol": "'error'", + "depth": 2, + "scope": "api", + "anchor": "event-error", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:readline" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:readline" + }, + "anchorSource": "exact" + }, + { + "id": "readline:7ccc87c378ac", + "chapter": "readline", + "kind": "event", + "name": "line", + "signature": "Event: `'line'`", + "label": "'line'", + "apiSymbol": "'line'", + "depth": 2, + "scope": "api", + "anchor": "event-line", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:readline" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:readline" + }, + "anchorSource": "exact" + }, + { + "id": "readline:0205bb428e81", + "chapter": "readline", + "kind": "event", + "name": "history", + "signature": "Event: `'history'`", + "label": "'history'", + "apiSymbol": "'history'", + "depth": 2, + "scope": "api", + "anchor": "event-history", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:readline" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:readline" + }, + "anchorSource": "exact" + }, + { + "id": "readline:5196c2bcbcb0", + "chapter": "readline", + "kind": "event", + "name": "pause", + "signature": "Event: `'pause'`", + "label": "'pause'", + "apiSymbol": "'pause'", + "depth": 2, + "scope": "api", + "anchor": "event-pause", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:readline" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:readline" + }, + "anchorSource": "exact" + }, + { + "id": "readline:3ec6bba9a753", + "chapter": "readline", + "kind": "event", + "name": "resume", + "signature": "Event: `'resume'`", + "label": "'resume'", + "apiSymbol": "'resume'", + "depth": 2, + "scope": "api", + "anchor": "event-resume", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:readline" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:readline" + }, + "anchorSource": "exact" + }, + { + "id": "readline:7afa8a8c9096", + "chapter": "readline", + "kind": "event", + "name": "SIGCONT", + "signature": "Event: `'SIGCONT'`", + "label": "'SIGCONT'", + "apiSymbol": "'SIGCONT'", + "depth": 2, + "scope": "api", + "anchor": "event-sigcont", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:readline" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:readline" + }, + "anchorSource": "exact" + }, + { + "id": "readline:1299d94c162b", + "chapter": "readline", + "kind": "event", + "name": "SIGINT", + "signature": "Event: `'SIGINT'`", + "label": "'SIGINT'", + "apiSymbol": "'SIGINT'", + "depth": 2, + "scope": "api", + "anchor": "event-sigint", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:readline" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:readline" + }, + "anchorSource": "exact" + }, + { + "id": "readline:ccbf160aefe1", + "chapter": "readline", + "kind": "event", + "name": "SIGTSTP", + "signature": "Event: `'SIGTSTP'`", + "label": "'SIGTSTP'", + "apiSymbol": "'SIGTSTP'", + "depth": 2, + "scope": "api", + "anchor": "event-sigtstp", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:readline" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:readline" + }, + "anchorSource": "exact" + }, + { + "id": "readline:e368b2b8f4bb", + "chapter": "readline", + "kind": "method", + "name": "emitKeypressEvents", + "signature": "`readline.emitKeypressEvents(stream[, interface])`", + "label": "readline.emitKeypressEvents(stream[, interface])", + "apiSymbol": "readline.emitKeypressEvents", + "depth": 1, + "scope": "api", + "anchor": "readlineemitkeypresseventsstream-interface", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:readline" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:readline.emitKeypressEvents", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "repl:e683d31f46d6", + "chapter": "repl", + "kind": "module", + "name": "repl", + "signature": "REPL", + "label": "REPL", + "apiSymbol": "repl", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "derived:descendants" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "derived:descendants" + }, + "anchorSource": "chapter" + }, + { + "id": "repl:fdd0a3e661ac", + "chapter": "repl", + "kind": "module", + "name": "design_and_features", + "signature": "Design and features", + "label": "Design and features", + "apiSymbol": "design_and_features", + "depth": 1, + "scope": "documentation", + "anchor": "design-and-features", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "repl:6a9ab3fdfe04", + "chapter": "repl", + "kind": "module", + "name": "commands_and_special_keys", + "signature": "Commands and special keys", + "label": "Commands and special keys", + "apiSymbol": "commands_and_special_keys", + "depth": 2, + "scope": "documentation", + "anchor": "commands-and-special-keys", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "repl:6c377586f66e", + "chapter": "repl", + "kind": "module", + "name": "default_evaluation", + "signature": "Default evaluation", + "label": "Default evaluation", + "apiSymbol": "default_evaluation", + "depth": 2, + "scope": "documentation", + "anchor": "default-evaluation", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "repl:eff47cef5691", + "chapter": "repl", + "kind": "module", + "name": "javascript_expressions", + "signature": "JavaScript expressions", + "label": "JavaScript expressions", + "apiSymbol": "javascript_expressions", + "depth": 3, + "scope": "documentation", + "anchor": "javascript-expressions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "repl:ce86826f3249", + "chapter": "repl", + "kind": "module", + "name": "global_and_local_scope", + "signature": "Global and local scope", + "label": "Global and local scope", + "apiSymbol": "global_and_local_scope", + "depth": 3, + "scope": "documentation", + "anchor": "global-and-local-scope", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "repl:c4fbb2ba02d9", + "chapter": "repl", + "kind": "module", + "name": "accessing_core_node.js_modules", + "signature": "Accessing core Node.js modules", + "label": "Accessing core Node.js modules", + "apiSymbol": "accessing_core_node.js_modules", + "depth": 3, + "scope": "documentation", + "anchor": "accessing-core-nodejs-modules", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "repl:7dda5042243d", + "chapter": "repl", + "kind": "module", + "name": "global_uncaught_exceptions", + "signature": "Global uncaught exceptions", + "label": "Global uncaught exceptions", + "apiSymbol": "global_uncaught_exceptions", + "depth": 3, + "scope": "documentation", + "anchor": "global-uncaught-exceptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "repl:6324ed248bee", + "chapter": "repl", + "kind": "module", + "name": "assignment_of_the_`_`_(underscore)_variable", + "signature": "Assignment of the `_` (underscore) variable", + "label": "Assignment of the _ (underscore) variable", + "apiSymbol": "_", + "depth": 3, + "scope": "api", + "anchor": "assignment-of-the-_-underscore-variable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:repl" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:repl" + }, + "anchorSource": "exact" + }, + { + "id": "repl:4246bc36ffa1", + "chapter": "repl", + "kind": "module", + "name": "`await`_keyword", + "signature": "`await` keyword", + "label": "await", + "apiSymbol": "await", + "depth": 3, + "scope": "api", + "anchor": "await-keyword", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:repl" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:repl" + }, + "anchorSource": "exact" + }, + { + "id": "repl:ba2bb48c654f", + "chapter": "repl", + "kind": "module", + "name": "reverse-i-search", + "signature": "Reverse-i-search", + "label": "Reverse-i-search", + "apiSymbol": "reverse-i-search", + "depth": 2, + "scope": "documentation", + "anchor": "reverse-i-search", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "repl:0693e85f97df", + "chapter": "repl", + "kind": "module", + "name": "custom_evaluation_functions", + "signature": "Custom evaluation functions", + "label": "Custom evaluation functions", + "apiSymbol": "custom_evaluation_functions", + "depth": 2, + "scope": "documentation", + "anchor": "custom-evaluation-functions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "repl:552f5e6f5434", + "chapter": "repl", + "kind": "module", + "name": "recoverable_errors", + "signature": "Recoverable errors", + "label": "Recoverable errors", + "apiSymbol": "recoverable_errors", + "depth": 3, + "scope": "documentation", + "anchor": "recoverable-errors", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "repl:9537fe74e6fb", + "chapter": "repl", + "kind": "module", + "name": "customizing_repl_output", + "signature": "Customizing REPL output", + "label": "Customizing REPL output", + "apiSymbol": "customizing_repl_output", + "depth": 2, + "scope": "documentation", + "anchor": "customizing-repl-output", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "repl:a5e32da781de", + "chapter": "repl", + "kind": "module", + "name": "the_node.js_repl", + "signature": "The Node.js REPL", + "label": "The Node.js REPL", + "apiSymbol": "the_node.js_repl", + "depth": 1, + "scope": "documentation", + "anchor": "the-nodejs-repl", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "repl:4d7e096a2428", + "chapter": "repl", + "kind": "module", + "name": "environment_variable_options", + "signature": "Environment variable options", + "label": "Environment variable options", + "apiSymbol": "environment_variable_options", + "depth": 2, + "scope": "documentation", + "anchor": "environment-variable-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "repl:21453911ab67", + "chapter": "repl", + "kind": "module", + "name": "persistent_history", + "signature": "Persistent history", + "label": "Persistent history", + "apiSymbol": "persistent_history", + "depth": 2, + "scope": "documentation", + "anchor": "persistent-history", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "repl:71a25b44fcbc", + "chapter": "repl", + "kind": "module", + "name": "using_the_node.js_repl_with_advanced_line-editors", + "signature": "Using the Node.js REPL with advanced line-editors", + "label": "Using the Node.js REPL with advanced line-editors", + "apiSymbol": "using_the_node.js_repl_with_advanced_line-editors", + "depth": 2, + "scope": "documentation", + "anchor": "using-the-nodejs-repl-with-advanced-line-editors", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "repl:4795cd855fd2", + "chapter": "repl", + "kind": "module", + "name": "starting_multiple_repl_instances_in_the_same_process", + "signature": "Starting multiple REPL instances in the same process", + "label": "Starting multiple REPL instances in the same process", + "apiSymbol": "starting_multiple_repl_instances_in_the_same_process", + "depth": 2, + "scope": "documentation", + "anchor": "starting-multiple-repl-instances-in-the-same-process", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "repl:83837e32e950", + "chapter": "repl", + "kind": "module", + "name": "full-featured_\"terminal\"_repl_over_`net.server`_and_`net.socket`", + "signature": "Full-featured \"terminal\" REPL over `net.Server` and `net.Socket`", + "label": "Full-featured \"terminal\" REPL over net.Server and net.Socket", + "apiSymbol": "net.Server", + "depth": 3, + "scope": "api", + "anchor": "full-featured-terminal-repl-over-netserver-and-netsocket", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:repl" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:repl" + }, + "anchorSource": "exact" + }, + { + "id": "repl:b82b0348ce62", + "chapter": "repl", + "kind": "module", + "name": "repl_over_`curl`", + "signature": "REPL over `curl`", + "label": "REPL over curl", + "apiSymbol": "curl", + "depth": 3, + "scope": "api", + "anchor": "repl-over-curl", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:repl" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:repl" + }, + "anchorSource": "exact" + }, + { + "id": "repl:20b36f4d9bea", + "chapter": "repl", + "kind": "class", + "name": "REPLServer", + "signature": "Class: `REPLServer`", + "label": "REPLServer", + "apiSymbol": "REPLServer", + "depth": 1, + "scope": "api", + "anchor": "class-replserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:repl" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:repl" + }, + "anchorSource": "exact" + }, + { + "id": "repl:3cee2cd101bb", + "chapter": "repl", + "kind": "method", + "name": "defineCommand", + "signature": "`replServer.defineCommand(keyword, cmd)`", + "label": "replServer.defineCommand(keyword, cmd)", + "apiSymbol": "replServer.defineCommand", + "depth": 2, + "scope": "api", + "anchor": "replserverdefinecommandkeyword-cmd", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:repl" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:repl" + }, + "anchorSource": "exact" + }, + { + "id": "repl:6fe531f347f2", + "chapter": "repl", + "kind": "method", + "name": "displayPrompt", + "signature": "`replServer.displayPrompt([preserveCursor])`", + "label": "replServer.displayPrompt([preserveCursor])", + "apiSymbol": "replServer.displayPrompt", + "depth": 2, + "scope": "api", + "anchor": "replserverdisplaypromptpreservecursor", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:repl" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:repl" + }, + "anchorSource": "exact" + }, + { + "id": "repl:9289ede87520", + "chapter": "repl", + "kind": "method", + "name": "clearBufferedCommand", + "signature": "`replServer.clearBufferedCommand()`", + "label": "replServer.clearBufferedCommand()", + "apiSymbol": "replServer.clearBufferedCommand", + "depth": 2, + "scope": "api", + "anchor": "replserverclearbufferedcommand", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:repl" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:repl" + }, + "anchorSource": "exact" + }, + { + "id": "repl:9368d832c17c", + "chapter": "repl", + "kind": "method", + "name": "setupHistory", + "signature": "`replServer.setupHistory(historyConfig, callback)`", + "label": "replServer.setupHistory(historyConfig, callback)", + "apiSymbol": "replServer.setupHistory", + "depth": 2, + "scope": "api", + "anchor": "replserversetuphistoryhistoryconfig-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:repl" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:repl" + }, + "anchorSource": "exact" + }, + { + "id": "repl:5cb88b9773a5", + "chapter": "repl", + "kind": "event", + "name": "exit", + "signature": "Event: `'exit'`", + "label": "'exit'", + "apiSymbol": "'exit'", + "depth": 2, + "scope": "api", + "anchor": "event-exit", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:repl" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:repl" + }, + "anchorSource": "exact" + }, + { + "id": "repl:ba5fc79eb080", + "chapter": "repl", + "kind": "event", + "name": "reset", + "signature": "Event: `'reset'`", + "label": "'reset'", + "apiSymbol": "'reset'", + "depth": 2, + "scope": "api", + "anchor": "event-reset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:repl" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:repl" + }, + "anchorSource": "exact" + }, + { + "id": "repl:c87920abcd05", + "chapter": "repl", + "kind": "method", + "name": "start", + "signature": "`repl.start([options])`", + "label": "repl.start([options])", + "apiSymbol": "repl.start", + "depth": 1, + "scope": "api", + "anchor": "replstartoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:repl" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:repl" + }, + "anchorSource": "exact" + }, + { + "id": "repl:d0a7039ec748", + "chapter": "repl", + "kind": "string\\[]", + "name": "Type", + "signature": "`builtinModules` Type: {string\\[]}", + "label": "builtinModules", + "apiSymbol": "builtinModules", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated. Use [`module.builtinModules`][] instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:repl" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:repl" + }, + "anchorSource": "chapter" + }, + { + "id": "report:c976d3322753", + "chapter": "report", + "kind": "misc", + "name": "report", + "signature": "Diagnostic report", + "label": "Diagnostic report", + "apiSymbol": "report", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:report" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:report" + }, + "anchorSource": "chapter" + }, + { + "id": "report:90747b41df02", + "chapter": "report", + "kind": "misc", + "name": "usage", + "signature": "Usage", + "label": "Usage", + "apiSymbol": "usage", + "depth": 1, + "scope": "documentation", + "anchor": "usage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "report:7cc30fd415fc", + "chapter": "report", + "kind": "misc", + "name": "report_version", + "signature": "Report Version", + "label": "Report Version", + "apiSymbol": "report_version", + "depth": 1, + "scope": "documentation", + "anchor": "report-version", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "report:7635838e1d8f", + "chapter": "report", + "kind": "module", + "name": "version_history", + "signature": "Version history", + "label": "Version history", + "apiSymbol": "version_history", + "depth": 2, + "scope": "documentation", + "anchor": "version-history", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "report:6132641d8657", + "chapter": "report", + "kind": "module", + "name": "version_5", + "signature": "Version 5", + "label": "Version 5", + "apiSymbol": "version_5", + "depth": 3, + "scope": "documentation", + "anchor": "version-5", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "report:dcbbbe00aad9", + "chapter": "report", + "kind": "module", + "name": "version_4", + "signature": "Version 4", + "label": "Version 4", + "apiSymbol": "version_4", + "depth": 3, + "scope": "documentation", + "anchor": "version-4", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "report:8c52a9c40e1e", + "chapter": "report", + "kind": "module", + "name": "version_3", + "signature": "Version 3", + "label": "Version 3", + "apiSymbol": "version_3", + "depth": 3, + "scope": "documentation", + "anchor": "version-3", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "report:26ab392b3e66", + "chapter": "report", + "kind": "module", + "name": "version_2", + "signature": "Version 2", + "label": "Version 2", + "apiSymbol": "version_2", + "depth": 3, + "scope": "documentation", + "anchor": "version-2", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "report:6ee229ceda24", + "chapter": "report", + "kind": "module", + "name": "version_1", + "signature": "Version 1", + "label": "Version 1", + "apiSymbol": "version_1", + "depth": 3, + "scope": "documentation", + "anchor": "version-1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "report:fda09ddcfffe", + "chapter": "report", + "kind": "misc", + "name": "configuration", + "signature": "Configuration", + "label": "Configuration", + "apiSymbol": "configuration", + "depth": 1, + "scope": "documentation", + "anchor": "configuration", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "report:a658505d5f8d", + "chapter": "report", + "kind": "misc", + "name": "interaction_with_workers", + "signature": "Interaction with workers", + "label": "Interaction with workers", + "apiSymbol": "interaction_with_workers", + "depth": 1, + "scope": "documentation", + "anchor": "interaction-with-workers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "single-executable-applications:43d9fc6b5322", + "chapter": "single-executable-applications", + "kind": "module", + "name": "single_executable_applications", + "signature": "Single executable applications", + "label": "Single executable applications", + "apiSymbol": "single_executable_applications", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "derived:descendants" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "derived:descendants" + }, + "anchorSource": "chapter" + }, + { + "id": "single-executable-applications:8a9df6b5576e", + "chapter": "single-executable-applications", + "kind": "module", + "name": "generating_single_executable_preparation_blobs", + "signature": "Generating single executable preparation blobs", + "label": "Generating single executable preparation blobs", + "apiSymbol": "generating_single_executable_preparation_blobs", + "depth": 1, + "scope": "documentation", + "anchor": "generating-single-executable-preparation-blobs", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "single-executable-applications:33859b1f1845", + "chapter": "single-executable-applications", + "kind": "module", + "name": "assets", + "signature": "Assets", + "label": "Assets", + "apiSymbol": "assets", + "depth": 2, + "scope": "documentation", + "anchor": "assets", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "single-executable-applications:b468e45d6792", + "chapter": "single-executable-applications", + "kind": "module", + "name": "startup_snapshot_support", + "signature": "Startup snapshot support", + "label": "Startup snapshot support", + "apiSymbol": "startup_snapshot_support", + "depth": 2, + "scope": "documentation", + "anchor": "startup-snapshot-support", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "single-executable-applications:abb3fa192831", + "chapter": "single-executable-applications", + "kind": "module", + "name": "v8_code_cache_support", + "signature": "V8 code cache support", + "label": "V8 code cache support", + "apiSymbol": "v8_code_cache_support", + "depth": 2, + "scope": "documentation", + "anchor": "v8-code-cache-support", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "single-executable-applications:da2841cfcfb8", + "chapter": "single-executable-applications", + "kind": "module", + "name": "execution_arguments", + "signature": "Execution arguments", + "label": "Execution arguments", + "apiSymbol": "execution_arguments", + "depth": 2, + "scope": "documentation", + "anchor": "execution-arguments", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "single-executable-applications:9a6c43952af4", + "chapter": "single-executable-applications", + "kind": "module", + "name": "execution_argument_extension", + "signature": "Execution argument extension", + "label": "Execution argument extension", + "apiSymbol": "execution_argument_extension", + "depth": 2, + "scope": "documentation", + "anchor": "execution-argument-extension", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "single-executable-applications:1acd5e2b523f", + "chapter": "single-executable-applications", + "kind": "module", + "name": "in_the_injected_main_script", + "signature": "In the injected main script", + "label": "In the injected main script", + "apiSymbol": "in_the_injected_main_script", + "depth": 1, + "scope": "documentation", + "anchor": "in-the-injected-main-script", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "single-executable-applications:748185e873a1", + "chapter": "single-executable-applications", + "kind": "module", + "name": "single-executable_application_api", + "signature": "Single-executable application API", + "label": "Single-executable application API", + "apiSymbol": "single-executable_application_api", + "depth": 2, + "scope": "documentation", + "anchor": "single-executable-application-api", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "single-executable-applications:c6cd28e0913d", + "chapter": "single-executable-applications", + "kind": "method", + "name": "isSea", + "signature": "`sea.isSea()`", + "label": "sea.isSea()", + "apiSymbol": "sea.isSea", + "depth": 3, + "scope": "api", + "anchor": "seaissea", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:single-executable-applications" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:single-executable-applications" + }, + "anchorSource": "exact" + }, + { + "id": "single-executable-applications:3a808a789e69", + "chapter": "single-executable-applications", + "kind": "module", + "name": "`require(id)`_in_the_injected_main_script_is_not_file_based", + "signature": "`require(id)` in the injected main script is not file based", + "label": "require(id)", + "apiSymbol": "require", + "depth": 2, + "scope": "api", + "anchor": "requireid-in-the-injected-main-script-is-not-file-based", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:single-executable-applications" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:single-executable-applications" + }, + "anchorSource": "exact" + }, + { + "id": "single-executable-applications:b6575875e554", + "chapter": "single-executable-applications", + "kind": "module", + "name": "`__filename`_and_`module.filename`_in_the_injected_main_script", + "signature": "`__filename` and `module.filename` in the injected main script", + "label": "__filename", + "apiSymbol": "__filename", + "depth": 2, + "scope": "api", + "anchor": "__filename-and-modulefilename-in-the-injected-main-script", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:single-executable-applications" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:single-executable-applications" + }, + "anchorSource": "exact" + }, + { + "id": "single-executable-applications:ec061ce7ad37", + "chapter": "single-executable-applications", + "kind": "module", + "name": "`__dirname`_in_the_injected_main_script", + "signature": "`__dirname` in the injected main script", + "label": "__dirname", + "apiSymbol": "__dirname", + "depth": 2, + "scope": "api", + "anchor": "__dirname-in-the-injected-main-script", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:single-executable-applications" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:single-executable-applications" + }, + "anchorSource": "exact" + }, + { + "id": "single-executable-applications:03b114c9dcd8", + "chapter": "single-executable-applications", + "kind": "module", + "name": "using_native_addons_in_the_injected_main_script", + "signature": "Using native addons in the injected main script", + "label": "Using native addons in the injected main script", + "apiSymbol": "using_native_addons_in_the_injected_main_script", + "depth": 2, + "scope": "documentation", + "anchor": "using-native-addons-in-the-injected-main-script", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "single-executable-applications:386d34a67b43", + "chapter": "single-executable-applications", + "kind": "method", + "name": "getAsset", + "signature": "`sea.getAsset(key[, encoding])`", + "label": "sea.getAsset(key[, encoding])", + "apiSymbol": "sea.getAsset", + "depth": 2, + "scope": "api", + "anchor": "seagetassetkey-encoding", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:single-executable-applications" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:single-executable-applications" + }, + "anchorSource": "exact" + }, + { + "id": "single-executable-applications:20737357e3d1", + "chapter": "single-executable-applications", + "kind": "method", + "name": "getAssetAsBlob", + "signature": "`sea.getAssetAsBlob(key[, options])`", + "label": "sea.getAssetAsBlob(key[, options])", + "apiSymbol": "sea.getAssetAsBlob", + "depth": 2, + "scope": "api", + "anchor": "seagetassetasblobkey-options", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:single-executable-applications" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:single-executable-applications" + }, + "anchorSource": "exact" + }, + { + "id": "single-executable-applications:9f7c7f9f6596", + "chapter": "single-executable-applications", + "kind": "method", + "name": "getRawAsset", + "signature": "`sea.getRawAsset(key)`", + "label": "sea.getRawAsset(key)", + "apiSymbol": "sea.getRawAsset", + "depth": 2, + "scope": "api", + "anchor": "seagetrawassetkey", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:single-executable-applications" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:single-executable-applications" + }, + "anchorSource": "exact" + }, + { + "id": "single-executable-applications:d6d5e45df4b8", + "chapter": "single-executable-applications", + "kind": "method", + "name": "getAssetKeys", + "signature": "`sea.getAssetKeys()`", + "label": "sea.getAssetKeys()", + "apiSymbol": "sea.getAssetKeys", + "depth": 2, + "scope": "api", + "anchor": "seagetassetkeys", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "compiler-chapter-policy:single-executable-applications" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "island-chapter-policy:single-executable-applications" + }, + "anchorSource": "exact" + }, + { + "id": "single-executable-applications:8635af0df4b7", + "chapter": "single-executable-applications", + "kind": "module", + "name": "notes", + "signature": "Notes", + "label": "Notes", + "apiSymbol": "notes", + "depth": 1, + "scope": "documentation", + "anchor": "notes", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "single-executable-applications:31237e64754d", + "chapter": "single-executable-applications", + "kind": "module", + "name": "single_executable_application_creation_process", + "signature": "Single executable application creation process", + "label": "Single executable application creation process", + "apiSymbol": "single_executable_application_creation_process", + "depth": 2, + "scope": "documentation", + "anchor": "single-executable-application-creation-process", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "single-executable-applications:ca8a00b2ad32", + "chapter": "single-executable-applications", + "kind": "module", + "name": "platform_support", + "signature": "Platform support", + "label": "Platform support", + "apiSymbol": "platform_support", + "depth": 2, + "scope": "documentation", + "anchor": "platform-support", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "sqlite:faf299884f86", + "chapter": "sqlite", + "kind": "module", + "name": "sqlite", + "signature": "SQLite", + "label": "SQLite", + "apiSymbol": "sqlite", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "derived:descendants" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "derived:descendants" + }, + "anchorSource": "chapter" + }, + { + "id": "sqlite:9a04560e2a88", + "chapter": "sqlite", + "kind": "module", + "name": "type_conversion_between_javascript_and_sqlite", + "signature": "Type conversion between JavaScript and SQLite", + "label": "Type conversion between JavaScript and SQLite", + "apiSymbol": "type_conversion_between_javascript_and_sqlite", + "depth": 1, + "scope": "documentation", + "anchor": "type-conversion-between-javascript-and-sqlite", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "sqlite:c3ba43816b9c", + "chapter": "sqlite", + "kind": "class", + "name": "DatabaseSync", + "signature": "Class: `DatabaseSync`", + "label": "DatabaseSync", + "apiSymbol": "DatabaseSync", + "depth": 1, + "scope": "api", + "anchor": "class-databasesync", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:sqlite" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:sqlite" + }, + "anchorSource": "exact" + }, + { + "id": "sqlite:24851a2f2aa3", + "chapter": "sqlite", + "kind": "method", + "name": "aggregate", + "signature": "`database.aggregate(name, options)`", + "label": "database.aggregate(name, options)", + "apiSymbol": "database.aggregate", + "depth": 2, + "scope": "api", + "anchor": "databaseaggregatename-options", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:sqlite" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:sqlite" + }, + "anchorSource": "exact" + }, + { + "id": "sqlite:f4bf2db3cff6", + "chapter": "sqlite", + "kind": "method", + "name": "close", + "signature": "`database.close()`", + "label": "database.close()", + "apiSymbol": "database.close", + "depth": 2, + "scope": "api", + "anchor": "databaseclose", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:sqlite" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:sqlite" + }, + "anchorSource": "exact" + }, + { + "id": "sqlite:bea9dd7076f9", + "chapter": "sqlite", + "kind": "method", + "name": "loadExtension", + "signature": "`database.loadExtension(path)`", + "label": "database.loadExtension(path)", + "apiSymbol": "database.loadExtension", + "depth": 2, + "scope": "api", + "anchor": "databaseloadextensionpath", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:sqlite" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:sqlite" + }, + "anchorSource": "exact" + }, + { + "id": "sqlite:22683e746fb2", + "chapter": "sqlite", + "kind": "method", + "name": "enableLoadExtension", + "signature": "`database.enableLoadExtension(allow)`", + "label": "database.enableLoadExtension(allow)", + "apiSymbol": "database.enableLoadExtension", + "depth": 2, + "scope": "api", + "anchor": "databaseenableloadextensionallow", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:sqlite" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:sqlite" + }, + "anchorSource": "exact" + }, + { + "id": "sqlite:c1e30df24a81", + "chapter": "sqlite", + "kind": "method", + "name": "enableDefensive", + "signature": "`database.enableDefensive(active)`", + "label": "database.enableDefensive(active)", + "apiSymbol": "database.enableDefensive", + "depth": 2, + "scope": "api", + "anchor": "databaseenabledefensiveactive", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:sqlite" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:sqlite" + }, + "anchorSource": "exact" + }, + { + "id": "sqlite:edc3b92630cc", + "chapter": "sqlite", + "kind": "method", + "name": "location", + "signature": "`database.location([dbName])`", + "label": "database.location([dbName])", + "apiSymbol": "database.location", + "depth": 2, + "scope": "api", + "anchor": "databaselocationdbname", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:sqlite" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:sqlite" + }, + "anchorSource": "exact" + }, + { + "id": "sqlite:316a738f96af", + "chapter": "sqlite", + "kind": "method", + "name": "exec", + "signature": "`database.exec(sql)`", + "label": "database.exec(sql)", + "apiSymbol": "database.exec", + "depth": 2, + "scope": "api", + "anchor": "databaseexecsql", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:sqlite" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:sqlite" + }, + "anchorSource": "exact" + }, + { + "id": "sqlite:65a8500327df", + "chapter": "sqlite", + "kind": "method", + "name": "function", + "signature": "`database.function(name[, options], fn)`", + "label": "database.function(name[, options], fn)", + "apiSymbol": "database.function", + "depth": 2, + "scope": "api", + "anchor": "databasefunctionname-options-fn", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:sqlite" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:sqlite" + }, + "anchorSource": "exact" + }, + { + "id": "sqlite:5b55cb20bd3d", + "chapter": "sqlite", + "kind": "method", + "name": "setAuthorizer", + "signature": "`database.setAuthorizer(callback)`", + "label": "database.setAuthorizer(callback)", + "apiSymbol": "database.setAuthorizer", + "depth": 2, + "scope": "api", + "anchor": "databasesetauthorizercallback", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:sqlite" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:sqlite" + }, + "anchorSource": "exact" + }, + { + "id": "sqlite:e53f27b171bc", + "chapter": "sqlite", + "kind": "method", + "name": "open", + "signature": "`database.open()`", + "label": "database.open()", + "apiSymbol": "database.open", + "depth": 2, + "scope": "api", + "anchor": "databaseopen", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:sqlite" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:sqlite" + }, + "anchorSource": "exact" + }, + { + "id": "sqlite:29d553079aa0", + "chapter": "sqlite", + "kind": "method", + "name": "prepare", + "signature": "`database.prepare(sql[, options])`", + "label": "database.prepare(sql[, options])", + "apiSymbol": "database.prepare", + "depth": 2, + "scope": "api", + "anchor": "databasepreparesql-options", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:sqlite" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:sqlite" + }, + "anchorSource": "exact" + }, + { + "id": "sqlite:8e700a40011c", + "chapter": "sqlite", + "kind": "method", + "name": "createTagStore", + "signature": "`database.createTagStore([maxSize])`", + "label": "database.createTagStore([maxSize])", + "apiSymbol": "database.createTagStore", + "depth": 2, + "scope": "api", + "anchor": "databasecreatetagstoremaxsize", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:sqlite" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:sqlite" + }, + "anchorSource": "exact" + }, + { + "id": "sqlite:ea5d11eb89c3", + "chapter": "sqlite", + "kind": "method", + "name": "createSession", + "signature": "`database.createSession([options])`", + "label": "database.createSession([options])", + "apiSymbol": "database.createSession", + "depth": 2, + "scope": "api", + "anchor": "databasecreatesessionoptions", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:sqlite" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:sqlite" + }, + "anchorSource": "exact" + }, + { + "id": "sqlite:1c1cf7b192cd", + "chapter": "sqlite", + "kind": "method", + "name": "applyChangeset", + "signature": "`database.applyChangeset(changeset[, options])`", + "label": "database.applyChangeset(changeset[, options])", + "apiSymbol": "database.applyChangeset", + "depth": 2, + "scope": "api", + "anchor": "databaseapplychangesetchangeset-options", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:sqlite" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:sqlite" + }, + "anchorSource": "exact" + }, + { + "id": "sqlite:3dc2e4a8707b", + "chapter": "sqlite", + "kind": "method", + "name": "[Symbol.dispose]", + "signature": "`database[Symbol.dispose]()`", + "label": "database[Symbol.dispose]()", + "apiSymbol": "database", + "depth": 2, + "scope": "api", + "anchor": "databasesymboldispose", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:sqlite" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:sqlite" + }, + "anchorSource": "exact" + }, + { + "id": "sqlite:6e154b54cdff", + "chapter": "sqlite", + "kind": "boolean", + "name": "Type", + "signature": "`isOpen` Type: {boolean} Whether the database is currently open or not.", + "label": "isOpen", + "apiSymbol": "isOpen", + "depth": 2, + "scope": "api", + "anchor": "class-databasesync", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:sqlite" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:sqlite" + }, + "anchorSource": "ancestor" + }, + { + "id": "sqlite:406106866022", + "chapter": "sqlite", + "kind": "boolean", + "name": "Type", + "signature": "`isTransaction` Type: {boolean} Whether the database is currently within a transaction. This method is a wrapper around [`sqlite3_get_autocommit()`][].", + "label": "isTransaction", + "apiSymbol": "isTransaction", + "depth": 2, + "scope": "api", + "anchor": "class-databasesync", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:sqlite" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:sqlite" + }, + "anchorSource": "ancestor" + }, + { + "id": "sqlite:c3dcacbf1225", + "chapter": "sqlite", + "kind": "Object", + "name": "Type", + "signature": "`limits` Type: {Object}", + "label": "limits", + "apiSymbol": "limits", + "depth": 2, + "scope": "api", + "anchor": "class-databasesync", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:sqlite" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:sqlite" + }, + "anchorSource": "ancestor" + }, + { + "id": "sqlite:cbf075aaf14f", + "chapter": "sqlite", + "kind": "class", + "name": "Session", + "signature": "Class: `Session`", + "label": "Session", + "apiSymbol": "Session", + "depth": 1, + "scope": "api", + "anchor": "class-session", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:sqlite" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:sqlite" + }, + "anchorSource": "exact" + }, + { + "id": "sqlite:b6a334b49c5c", + "chapter": "sqlite", + "kind": "method", + "name": "changeset", + "signature": "`session.changeset()`", + "label": "session.changeset()", + "apiSymbol": "session.changeset", + "depth": 2, + "scope": "api", + "anchor": "sessionchangeset", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:sqlite" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:sqlite" + }, + "anchorSource": "exact" + }, + { + "id": "sqlite:ac237d410857", + "chapter": "sqlite", + "kind": "method", + "name": "patchset", + "signature": "`session.patchset()`", + "label": "session.patchset()", + "apiSymbol": "session.patchset", + "depth": 2, + "scope": "api", + "anchor": "sessionpatchset", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:sqlite" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:sqlite" + }, + "anchorSource": "exact" + }, + { + "id": "sqlite:825ce8aaf712", + "chapter": "sqlite", + "kind": "method", + "name": "close", + "signature": "`session.close()`", + "label": "session.close()", + "apiSymbol": "session.close", + "depth": 2, + "scope": "api", + "anchor": "sessionclose", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:sqlite" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:sqlite" + }, + "anchorSource": "exact" + }, + { + "id": "sqlite:1b845f6b83df", + "chapter": "sqlite", + "kind": "method", + "name": "[Symbol.dispose]", + "signature": "`session[Symbol.dispose]()`", + "label": "session[Symbol.dispose]()", + "apiSymbol": "session", + "depth": 2, + "scope": "api", + "anchor": "sessionsymboldispose", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:sqlite" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:sqlite" + }, + "anchorSource": "exact" + }, + { + "id": "sqlite:23cd7cc41935", + "chapter": "sqlite", + "kind": "class", + "name": "StatementSync", + "signature": "Class: `StatementSync`", + "label": "StatementSync", + "apiSymbol": "StatementSync", + "depth": 1, + "scope": "api", + "anchor": "class-statementsync", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:sqlite" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:sqlite" + }, + "anchorSource": "exact" + }, + { + "id": "sqlite:85b1aa8ba164", + "chapter": "sqlite", + "kind": "method", + "name": "all", + "signature": "`statement.all([namedParameters][, ...anonymousParameters])`", + "label": "statement.all([namedParameters][, ...anonymousParameters])", + "apiSymbol": "statement.all", + "depth": 2, + "scope": "api", + "anchor": "statementallnamedparameters-anonymousparameters", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:sqlite" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:sqlite" + }, + "anchorSource": "exact" + }, + { + "id": "sqlite:8a2767b377e2", + "chapter": "sqlite", + "kind": "method", + "name": "columns", + "signature": "`statement.columns()`", + "label": "statement.columns()", + "apiSymbol": "statement.columns", + "depth": 2, + "scope": "api", + "anchor": "statementcolumns", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:sqlite" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:sqlite" + }, + "anchorSource": "exact" + }, + { + "id": "sqlite:feed1a095cfd", + "chapter": "sqlite", + "kind": "method", + "name": "get", + "signature": "`statement.get([namedParameters][, ...anonymousParameters])`", + "label": "statement.get([namedParameters][, ...anonymousParameters])", + "apiSymbol": "statement.get", + "depth": 2, + "scope": "api", + "anchor": "statementgetnamedparameters-anonymousparameters", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:sqlite" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:sqlite" + }, + "anchorSource": "exact" + }, + { + "id": "sqlite:29a308f7f9d8", + "chapter": "sqlite", + "kind": "method", + "name": "iterate", + "signature": "`statement.iterate([namedParameters][, ...anonymousParameters])`", + "label": "statement.iterate([namedParameters][, ...anonymousParameters])", + "apiSymbol": "statement.iterate", + "depth": 2, + "scope": "api", + "anchor": "statementiteratenamedparameters-anonymousparameters", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:sqlite" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:sqlite" + }, + "anchorSource": "exact" + }, + { + "id": "sqlite:694171d51eca", + "chapter": "sqlite", + "kind": "method", + "name": "run", + "signature": "`statement.run([namedParameters][, ...anonymousParameters])`", + "label": "statement.run([namedParameters][, ...anonymousParameters])", + "apiSymbol": "statement.run", + "depth": 2, + "scope": "api", + "anchor": "statementrunnamedparameters-anonymousparameters", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:sqlite" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:sqlite" + }, + "anchorSource": "exact" + }, + { + "id": "sqlite:b39fd3b26704", + "chapter": "sqlite", + "kind": "method", + "name": "setAllowBareNamedParameters", + "signature": "`statement.setAllowBareNamedParameters(enabled)`", + "label": "statement.setAllowBareNamedParameters(enabled)", + "apiSymbol": "statement.setAllowBareNamedParameters", + "depth": 2, + "scope": "api", + "anchor": "statementsetallowbarenamedparametersenabled", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:sqlite" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:sqlite" + }, + "anchorSource": "exact" + }, + { + "id": "sqlite:4522a10b2421", + "chapter": "sqlite", + "kind": "method", + "name": "setAllowUnknownNamedParameters", + "signature": "`statement.setAllowUnknownNamedParameters(enabled)`", + "label": "statement.setAllowUnknownNamedParameters(enabled)", + "apiSymbol": "statement.setAllowUnknownNamedParameters", + "depth": 2, + "scope": "api", + "anchor": "statementsetallowunknownnamedparametersenabled", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:sqlite" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:sqlite" + }, + "anchorSource": "exact" + }, + { + "id": "sqlite:88a382984fe9", + "chapter": "sqlite", + "kind": "method", + "name": "setReturnArrays", + "signature": "`statement.setReturnArrays(enabled)`", + "label": "statement.setReturnArrays(enabled)", + "apiSymbol": "statement.setReturnArrays", + "depth": 2, + "scope": "api", + "anchor": "statementsetreturnarraysenabled", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:sqlite" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:sqlite" + }, + "anchorSource": "exact" + }, + { + "id": "sqlite:4b6ece90e750", + "chapter": "sqlite", + "kind": "method", + "name": "setReadBigInts", + "signature": "`statement.setReadBigInts(enabled)`", + "label": "statement.setReadBigInts(enabled)", + "apiSymbol": "statement.setReadBigInts", + "depth": 2, + "scope": "api", + "anchor": "statementsetreadbigintsenabled", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:sqlite" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:sqlite" + }, + "anchorSource": "exact" + }, + { + "id": "sqlite:9f7687fa081c", + "chapter": "sqlite", + "kind": "string", + "name": "Type", + "signature": "`expandedSQL` Type: {string} The source SQL expanded to include parameter values.", + "label": "expandedSQL", + "apiSymbol": "expandedSQL", + "depth": 2, + "scope": "api", + "anchor": "class-statementsync", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:sqlite" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:sqlite" + }, + "anchorSource": "ancestor" + }, + { + "id": "sqlite:006645605649", + "chapter": "sqlite", + "kind": "string", + "name": "Type", + "signature": "`sourceSQL` Type: {string} The source SQL used to create this prepared statement.", + "label": "sourceSQL", + "apiSymbol": "sourceSQL", + "depth": 2, + "scope": "api", + "anchor": "class-statementsync", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:sqlite" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:sqlite" + }, + "anchorSource": "ancestor" + }, + { + "id": "sqlite:c0b62c6551d4", + "chapter": "sqlite", + "kind": "class", + "name": "SQLTagStore", + "signature": "Class: `SQLTagStore`", + "label": "SQLTagStore", + "apiSymbol": "SQLTagStore", + "depth": 1, + "scope": "api", + "anchor": "class-sqltagstore", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:sqlite" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:sqlite" + }, + "anchorSource": "exact" + }, + { + "id": "sqlite:89f460f74648", + "chapter": "sqlite", + "kind": "method", + "name": "all", + "signature": "`sqlTagStore.all(stringElements[, ...boundParameters])`", + "label": "sqlTagStore.all(stringElements[, ...boundParameters])", + "apiSymbol": "sqlTagStore.all", + "depth": 2, + "scope": "api", + "anchor": "sqltagstoreallstringelements-boundparameters", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:sqlite" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:sqlite" + }, + "anchorSource": "exact" + }, + { + "id": "sqlite:14343192c373", + "chapter": "sqlite", + "kind": "method", + "name": "get", + "signature": "`sqlTagStore.get(stringElements[, ...boundParameters])`", + "label": "sqlTagStore.get(stringElements[, ...boundParameters])", + "apiSymbol": "sqlTagStore.get", + "depth": 2, + "scope": "api", + "anchor": "sqltagstoregetstringelements-boundparameters", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:sqlite" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:sqlite" + }, + "anchorSource": "exact" + }, + { + "id": "sqlite:5f5771cf3fc9", + "chapter": "sqlite", + "kind": "method", + "name": "iterate", + "signature": "`sqlTagStore.iterate(stringElements[, ...boundParameters])`", + "label": "sqlTagStore.iterate(stringElements[, ...boundParameters])", + "apiSymbol": "sqlTagStore.iterate", + "depth": 2, + "scope": "api", + "anchor": "sqltagstoreiteratestringelements-boundparameters", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:sqlite" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:sqlite" + }, + "anchorSource": "exact" + }, + { + "id": "sqlite:c6379eda1fb7", + "chapter": "sqlite", + "kind": "method", + "name": "run", + "signature": "`sqlTagStore.run(stringElements[, ...boundParameters])`", + "label": "sqlTagStore.run(stringElements[, ...boundParameters])", + "apiSymbol": "sqlTagStore.run", + "depth": 2, + "scope": "api", + "anchor": "sqltagstorerunstringelements-boundparameters", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:sqlite" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:sqlite" + }, + "anchorSource": "exact" + }, + { + "id": "sqlite:7b0abbbb3e37", + "chapter": "sqlite", + "kind": "method", + "name": "clear", + "signature": "`sqlTagStore.clear()`", + "label": "sqlTagStore.clear()", + "apiSymbol": "sqlTagStore.clear", + "depth": 2, + "scope": "api", + "anchor": "sqltagstoreclear", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:sqlite" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:sqlite" + }, + "anchorSource": "exact" + }, + { + "id": "sqlite:f121de953827", + "chapter": "sqlite", + "kind": "integer", + "name": "Type", + "signature": "`size` Type: {integer}", + "label": "size", + "apiSymbol": "size", + "depth": 2, + "scope": "api", + "anchor": "class-sqltagstore", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:sqlite" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:sqlite" + }, + "anchorSource": "ancestor" + }, + { + "id": "sqlite:52f97b02d838", + "chapter": "sqlite", + "kind": "integer", + "name": "Type", + "signature": "`capacity` Type: {integer}", + "label": "capacity", + "apiSymbol": "capacity", + "depth": 2, + "scope": "api", + "anchor": "class-sqltagstore", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:sqlite" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:sqlite" + }, + "anchorSource": "ancestor" + }, + { + "id": "sqlite:f553db38de9e", + "chapter": "sqlite", + "kind": "DatabaseSync", + "name": "Type", + "signature": "`db` Type: {DatabaseSync}", + "label": "db", + "apiSymbol": "db", + "depth": 2, + "scope": "api", + "anchor": "class-sqltagstore", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:sqlite" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:sqlite" + }, + "anchorSource": "ancestor" + }, + { + "id": "sqlite:ca14dd3b8a2a", + "chapter": "sqlite", + "kind": "method", + "name": "backup", + "signature": "`sqlite.backup(sourceDb, path[, options])`", + "label": "sqlite.backup(sourceDb, path[, options])", + "apiSymbol": "sqlite.backup", + "depth": 1, + "scope": "api", + "anchor": "sqlitebackupsourcedb-path-options", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:sqlite" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:sqlite" + }, + "anchorSource": "exact" + }, + { + "id": "sqlite:1debc4ff3e3f", + "chapter": "sqlite", + "kind": "Object", + "name": "Type", + "signature": "`constants` Type: {Object}", + "label": "constants", + "apiSymbol": "constants", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:sqlite" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:sqlite" + }, + "anchorSource": "chapter" + }, + { + "id": "sqlite:cd89305aec0a", + "chapter": "sqlite", + "kind": "module", + "name": "sqlite_constants", + "signature": "SQLite constants", + "label": "SQLite constants", + "apiSymbol": "sqlite_constants", + "depth": 2, + "scope": "documentation", + "anchor": "sqlite-constants", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "sqlite:8e2396e6e497", + "chapter": "sqlite", + "kind": "module", + "name": "conflict_resolution_constants", + "signature": "Conflict resolution constants", + "label": "Conflict resolution constants", + "apiSymbol": "conflict_resolution_constants", + "depth": 3, + "scope": "documentation", + "anchor": "conflict-resolution-constants", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "sqlite:17d35e6c9f72", + "chapter": "sqlite", + "kind": "module", + "name": "authorization_constants", + "signature": "Authorization constants", + "label": "Authorization constants", + "apiSymbol": "authorization_constants", + "depth": 3, + "scope": "documentation", + "anchor": "authorization-constants", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "sqlite:e279c024677d", + "chapter": "sqlite", + "kind": "module", + "name": "authorization_result_codes", + "signature": "Authorization result codes", + "label": "Authorization result codes", + "apiSymbol": "authorization_result_codes", + "depth": 4, + "scope": "documentation", + "anchor": "authorization-result-codes", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "sqlite:39ab2f6e908c", + "chapter": "sqlite", + "kind": "module", + "name": "authorization_action_codes", + "signature": "Authorization action codes", + "label": "Authorization action codes", + "apiSymbol": "authorization_action_codes", + "depth": 4, + "scope": "documentation", + "anchor": "authorization-action-codes", + "nodeStability": { + "index": "1.2", + "level": 1, + "text": "Release candidate.", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "stream:45e1bdf3e31b", + "chapter": "stream", + "kind": "module", + "name": "stream", + "signature": "Stream", + "label": "Stream", + "apiSymbol": "stream", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "stream:0d2751c10ac9", + "chapter": "stream", + "kind": "module", + "name": "organization_of_this_document", + "signature": "Organization of this document", + "label": "Organization of this document", + "apiSymbol": "organization_of_this_document", + "depth": 1, + "scope": "documentation", + "anchor": "organization-of-this-document", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "stream:647d8d5f9ced", + "chapter": "stream", + "kind": "module", + "name": "types_of_streams", + "signature": "Types of streams", + "label": "Types of streams", + "apiSymbol": "types_of_streams", + "depth": 1, + "scope": "documentation", + "anchor": "types-of-streams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "stream:c4b10dabf577", + "chapter": "stream", + "kind": "module", + "name": "streams_promises_api", + "signature": "Streams Promises API", + "label": "Streams Promises API", + "apiSymbol": "streams_promises_api", + "depth": 2, + "scope": "documentation", + "anchor": "streams-promises-api", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "stream:ac09920b8c5c", + "chapter": "stream", + "kind": "module", + "name": "object_mode", + "signature": "Object mode", + "label": "Object mode", + "apiSymbol": "object_mode", + "depth": 2, + "scope": "documentation", + "anchor": "object-mode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "stream:407afe1fe8e6", + "chapter": "stream", + "kind": "method", + "name": "pipeline", + "signature": "`stream.pipeline(streams[, options])`", + "label": "stream.pipeline(streams[, options])", + "apiSymbol": "stream.pipeline", + "depth": 2, + "scope": "api", + "anchor": "streampipelinestreams-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:stream.pipeline", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:stream.pipeline", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "stream:21d7b6531c4a", + "chapter": "stream", + "kind": "method", + "name": "pipeline", + "signature": "`stream.pipeline(source[, ...transforms], destination[, options])`", + "label": "stream.pipeline(source[, ...transforms], destination[, options])", + "apiSymbol": "stream.pipeline", + "depth": 2, + "scope": "api", + "anchor": "streampipelinesource-transforms-destination-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:stream.pipeline", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:stream.pipeline", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "stream:f1bd2073f7db", + "chapter": "stream", + "kind": "method", + "name": "finished", + "signature": "`stream.finished(stream[, options])`", + "label": "stream.finished(stream[, options])", + "apiSymbol": "stream.finished", + "depth": 2, + "scope": "api", + "anchor": "streamfinishedstream-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:stream.finished", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:stream.finished", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "stream:3937de08337c", + "chapter": "stream", + "kind": "misc", + "name": "Buffering", + "signature": "Buffering", + "label": "Buffering", + "apiSymbol": "Buffering", + "depth": 2, + "scope": "documentation", + "anchor": "buffering", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "stream:485a6b506ddf", + "chapter": "stream", + "kind": "method", + "name": "finished", + "signature": "`stream.finished(stream[, options], callback)`", + "label": "stream.finished(stream[, options], callback)", + "apiSymbol": "stream.finished", + "depth": 1, + "scope": "api", + "anchor": "streamfinishedstream-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:stream.finished", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:stream.finished", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "stream:9b14f1783aac", + "chapter": "stream", + "kind": "method", + "name": "pipeline", + "signature": "`stream.pipeline(source[, ...transforms], destination, callback)`", + "label": "stream.pipeline(source[, ...transforms], destination, callback)", + "apiSymbol": "stream.pipeline", + "depth": 1, + "scope": "api", + "anchor": "streampipelinesource-transforms-destination-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:stream.pipeline", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:stream.pipeline", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "stream:0f4f73c0781c", + "chapter": "stream", + "kind": "method", + "name": "pipeline", + "signature": "`stream.pipeline(streams, callback)`", + "label": "stream.pipeline(streams, callback)", + "apiSymbol": "stream.pipeline", + "depth": 1, + "scope": "api", + "anchor": "streampipelinestreams-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:stream.pipeline", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:stream.pipeline", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "stream:2d17ae5de501", + "chapter": "stream", + "kind": "method", + "name": "compose", + "signature": "`stream.compose(...streams)`", + "label": "stream.compose(...streams)", + "apiSymbol": "stream.compose", + "depth": 1, + "scope": "api", + "anchor": "streamcomposestreams", + "nodeStability": { + "index": "1", + "level": 1, + "text": "`stream.compose` is experimental.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "exact" + }, + { + "id": "stream:022f59526ac3", + "chapter": "stream", + "kind": "method", + "name": "isErrored", + "signature": "`stream.isErrored(stream)`", + "label": "stream.isErrored(stream)", + "apiSymbol": "stream.isErrored", + "depth": 1, + "scope": "api", + "anchor": "streamiserroredstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:stream.isErrored", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "stream:0fcf6da4d1d3", + "chapter": "stream", + "kind": "method", + "name": "isReadable", + "signature": "`stream.isReadable(stream)`", + "label": "stream.isReadable(stream)", + "apiSymbol": "stream.isReadable", + "depth": 1, + "scope": "api", + "anchor": "streamisreadablestream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:stream.isReadable", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "stream:8a16f61859cf", + "chapter": "stream", + "kind": "method", + "name": "isWritable", + "signature": "`stream.isWritable(stream)`", + "label": "stream.isWritable(stream)", + "apiSymbol": "stream.isWritable", + "depth": 1, + "scope": "api", + "anchor": "streamiswritablestream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:stream.isWritable", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "stream:c19bc2f232cc", + "chapter": "stream", + "kind": "method", + "name": "from", + "signature": "`stream.Readable.from(iterable[, options])`", + "label": "stream.Readable.from(iterable[, options])", + "apiSymbol": "stream.Readable.from", + "depth": 1, + "scope": "api", + "anchor": "streamreadablefromiterable-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:stream.stream.Readable.from", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "stream:2a1e2d54e06f", + "chapter": "stream", + "kind": "method", + "name": "fromWeb", + "signature": "`stream.Readable.fromWeb(readableStream[, options])`", + "label": "stream.Readable.fromWeb(readableStream[, options])", + "apiSymbol": "stream.Readable.fromWeb", + "depth": 1, + "scope": "api", + "anchor": "streamreadablefromwebreadablestream-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "exact" + }, + { + "id": "stream:c732a647de90", + "chapter": "stream", + "kind": "method", + "name": "isDisturbed", + "signature": "`stream.Readable.isDisturbed(stream)`", + "label": "stream.Readable.isDisturbed(stream)", + "apiSymbol": "stream.Readable.isDisturbed", + "depth": 1, + "scope": "api", + "anchor": "streamreadableisdisturbedstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "exact" + }, + { + "id": "stream:23584927da54", + "chapter": "stream", + "kind": "method", + "name": "toWeb", + "signature": "`stream.Readable.toWeb(streamReadable[, options])`", + "label": "stream.Readable.toWeb(streamReadable[, options])", + "apiSymbol": "stream.Readable.toWeb", + "depth": 1, + "scope": "api", + "anchor": "streamreadabletowebstreamreadable-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "exact" + }, + { + "id": "stream:22ddfdf92010", + "chapter": "stream", + "kind": "method", + "name": "fromWeb", + "signature": "`stream.Writable.fromWeb(writableStream[, options])`", + "label": "stream.Writable.fromWeb(writableStream[, options])", + "apiSymbol": "stream.Writable.fromWeb", + "depth": 1, + "scope": "api", + "anchor": "streamwritablefromwebwritablestream-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "exact" + }, + { + "id": "stream:fc5b70971d13", + "chapter": "stream", + "kind": "method", + "name": "toWeb", + "signature": "`stream.Writable.toWeb(streamWritable)`", + "label": "stream.Writable.toWeb(streamWritable)", + "apiSymbol": "stream.Writable.toWeb", + "depth": 1, + "scope": "api", + "anchor": "streamwritabletowebstreamwritable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "exact" + }, + { + "id": "stream:98dd6283d3da", + "chapter": "stream", + "kind": "method", + "name": "from", + "signature": "`stream.Duplex.from(src)`", + "label": "stream.Duplex.from(src)", + "apiSymbol": "stream.Duplex.from", + "depth": 1, + "scope": "api", + "anchor": "streamduplexfromsrc", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "exact" + }, + { + "id": "stream:0aa7318990ec", + "chapter": "stream", + "kind": "method", + "name": "fromWeb", + "signature": "`stream.Duplex.fromWeb(pair[, options])`", + "label": "stream.Duplex.fromWeb(pair[, options])", + "apiSymbol": "stream.Duplex.fromWeb", + "depth": 1, + "scope": "api", + "anchor": "streamduplexfromwebpair-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "exact" + }, + { + "id": "stream:bf762361c16f", + "chapter": "stream", + "kind": "method", + "name": "toWeb", + "signature": "`stream.Duplex.toWeb(streamDuplex[, options])`", + "label": "stream.Duplex.toWeb(streamDuplex[, options])", + "apiSymbol": "stream.Duplex.toWeb", + "depth": 1, + "scope": "api", + "anchor": "streamduplextowebstreamduplex-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "exact" + }, + { + "id": "stream:0912f0a45e59", + "chapter": "stream", + "kind": "method", + "name": "addAbortSignal", + "signature": "`stream.addAbortSignal(signal, stream)`", + "label": "stream.addAbortSignal(signal, stream)", + "apiSymbol": "stream.addAbortSignal", + "depth": 1, + "scope": "api", + "anchor": "streamaddabortsignalsignal-stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:stream.addAbortSignal", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "stream:35260256bedd", + "chapter": "stream", + "kind": "method", + "name": "getDefaultHighWaterMark", + "signature": "`stream.getDefaultHighWaterMark(objectMode)`", + "label": "stream.getDefaultHighWaterMark(objectMode)", + "apiSymbol": "stream.getDefaultHighWaterMark", + "depth": 1, + "scope": "api", + "anchor": "streamgetdefaulthighwatermarkobjectmode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:stream.getDefaultHighWaterMark", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "exact" + }, + { + "id": "stream:c9100a8baecd", + "chapter": "stream", + "kind": "method", + "name": "setDefaultHighWaterMark", + "signature": "`stream.setDefaultHighWaterMark(objectMode, value)`", + "label": "stream.setDefaultHighWaterMark(objectMode, value)", + "apiSymbol": "stream.setDefaultHighWaterMark", + "depth": 1, + "scope": "api", + "anchor": "streamsetdefaulthighwatermarkobjectmode-value", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "exact" + }, + { + "id": "stream:0ac302dc974f", + "chapter": "stream", + "kind": "method", + "name": "read", + "signature": "`readable.read(0)`", + "label": "readable.read(0)", + "apiSymbol": "readable.read", + "depth": 1, + "scope": "api", + "anchor": "readableread0", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:readable.read", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:stream.readable.read", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "stream:2abe83491f17", + "chapter": "stream", + "kind": "method", + "name": "push", + "signature": "`readable.push('')`", + "label": "readable.push('')", + "apiSymbol": "readable.push", + "depth": 1, + "scope": "api", + "anchor": "readablepush", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:readable.push", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:stream.readable.push", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "stream:79f7e5bfab9c", + "chapter": "stream", + "kind": "misc", + "name": "API for stream consumers", + "signature": "API for stream consumers", + "label": "API for stream consumers", + "apiSymbol": "API for stream consumers", + "depth": 1, + "scope": "documentation", + "anchor": "api-for-stream-consumers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "stream:26c888901d4d", + "chapter": "stream", + "kind": "method", + "name": "finished", + "signature": "`stream.finished(stream[, options], callback)`", + "label": "stream.finished(stream[, options], callback)", + "apiSymbol": "stream.finished", + "depth": 2, + "scope": "api", + "anchor": "api-for-stream-consumers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:stream.finished", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:stream.finished", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "ancestor" + }, + { + "id": "stream:84ff72680b34", + "chapter": "stream", + "kind": "method", + "name": "pipeline", + "signature": "`stream.pipeline(source[, ...transforms], destination, callback)`", + "label": "stream.pipeline(source[, ...transforms], destination, callback)", + "apiSymbol": "stream.pipeline", + "depth": 2, + "scope": "api", + "anchor": "api-for-stream-consumers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:stream.pipeline", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:stream.pipeline", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "ancestor" + }, + { + "id": "stream:d3255026d4d3", + "chapter": "stream", + "kind": "method", + "name": "pipeline", + "signature": "`stream.pipeline(streams, callback)`", + "label": "stream.pipeline(streams, callback)", + "apiSymbol": "stream.pipeline", + "depth": 2, + "scope": "api", + "anchor": "api-for-stream-consumers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:stream.pipeline", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:stream.pipeline", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "ancestor" + }, + { + "id": "stream:2c72c273fc9a", + "chapter": "stream", + "kind": "method", + "name": "compose", + "signature": "`stream.compose(...streams)`", + "label": "stream.compose(...streams)", + "apiSymbol": "stream.compose", + "depth": 2, + "scope": "api", + "anchor": "api-for-stream-consumers", + "nodeStability": { + "index": "1", + "level": 1, + "text": "`stream.compose` is experimental.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "ancestor" + }, + { + "id": "stream:c3b8a10f23ec", + "chapter": "stream", + "kind": "method", + "name": "isErrored", + "signature": "`stream.isErrored(stream)`", + "label": "stream.isErrored(stream)", + "apiSymbol": "stream.isErrored", + "depth": 2, + "scope": "api", + "anchor": "api-for-stream-consumers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:stream.isErrored", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "ancestor" + }, + { + "id": "stream:f9d462228935", + "chapter": "stream", + "kind": "method", + "name": "isReadable", + "signature": "`stream.isReadable(stream)`", + "label": "stream.isReadable(stream)", + "apiSymbol": "stream.isReadable", + "depth": 2, + "scope": "api", + "anchor": "api-for-stream-consumers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:stream.isReadable", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "ancestor" + }, + { + "id": "stream:9d74f7ae093e", + "chapter": "stream", + "kind": "method", + "name": "isWritable", + "signature": "`stream.isWritable(stream)`", + "label": "stream.isWritable(stream)", + "apiSymbol": "stream.isWritable", + "depth": 2, + "scope": "api", + "anchor": "api-for-stream-consumers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:stream.isWritable", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "ancestor" + }, + { + "id": "stream:00e24c72fe1c", + "chapter": "stream", + "kind": "method", + "name": "from", + "signature": "`stream.Readable.from(iterable[, options])`", + "label": "stream.Readable.from(iterable[, options])", + "apiSymbol": "stream.Readable.from", + "depth": 2, + "scope": "api", + "anchor": "api-for-stream-consumers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:stream.stream.Readable.from", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "ancestor" + }, + { + "id": "stream:3c020795e7aa", + "chapter": "stream", + "kind": "method", + "name": "fromWeb", + "signature": "`stream.Readable.fromWeb(readableStream[, options])`", + "label": "stream.Readable.fromWeb(readableStream[, options])", + "apiSymbol": "stream.Readable.fromWeb", + "depth": 2, + "scope": "api", + "anchor": "api-for-stream-consumers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "ancestor" + }, + { + "id": "stream:0155ca859bba", + "chapter": "stream", + "kind": "method", + "name": "isDisturbed", + "signature": "`stream.Readable.isDisturbed(stream)`", + "label": "stream.Readable.isDisturbed(stream)", + "apiSymbol": "stream.Readable.isDisturbed", + "depth": 2, + "scope": "api", + "anchor": "api-for-stream-consumers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "ancestor" + }, + { + "id": "stream:c869f74e7937", + "chapter": "stream", + "kind": "method", + "name": "toWeb", + "signature": "`stream.Readable.toWeb(streamReadable[, options])`", + "label": "stream.Readable.toWeb(streamReadable[, options])", + "apiSymbol": "stream.Readable.toWeb", + "depth": 2, + "scope": "api", + "anchor": "api-for-stream-consumers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "ancestor" + }, + { + "id": "stream:ba1bd728f940", + "chapter": "stream", + "kind": "method", + "name": "fromWeb", + "signature": "`stream.Writable.fromWeb(writableStream[, options])`", + "label": "stream.Writable.fromWeb(writableStream[, options])", + "apiSymbol": "stream.Writable.fromWeb", + "depth": 2, + "scope": "api", + "anchor": "api-for-stream-consumers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "ancestor" + }, + { + "id": "stream:932946d3f1ea", + "chapter": "stream", + "kind": "method", + "name": "toWeb", + "signature": "`stream.Writable.toWeb(streamWritable)`", + "label": "stream.Writable.toWeb(streamWritable)", + "apiSymbol": "stream.Writable.toWeb", + "depth": 2, + "scope": "api", + "anchor": "api-for-stream-consumers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "ancestor" + }, + { + "id": "stream:142509c44b7f", + "chapter": "stream", + "kind": "method", + "name": "from", + "signature": "`stream.Duplex.from(src)`", + "label": "stream.Duplex.from(src)", + "apiSymbol": "stream.Duplex.from", + "depth": 2, + "scope": "api", + "anchor": "api-for-stream-consumers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "ancestor" + }, + { + "id": "stream:4b92ba10d286", + "chapter": "stream", + "kind": "method", + "name": "fromWeb", + "signature": "`stream.Duplex.fromWeb(pair[, options])`", + "label": "stream.Duplex.fromWeb(pair[, options])", + "apiSymbol": "stream.Duplex.fromWeb", + "depth": 2, + "scope": "api", + "anchor": "api-for-stream-consumers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "ancestor" + }, + { + "id": "stream:94b26135dbcf", + "chapter": "stream", + "kind": "method", + "name": "toWeb", + "signature": "`stream.Duplex.toWeb(streamDuplex[, options])`", + "label": "stream.Duplex.toWeb(streamDuplex[, options])", + "apiSymbol": "stream.Duplex.toWeb", + "depth": 2, + "scope": "api", + "anchor": "api-for-stream-consumers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "ancestor" + }, + { + "id": "stream:6368088aee30", + "chapter": "stream", + "kind": "method", + "name": "addAbortSignal", + "signature": "`stream.addAbortSignal(signal, stream)`", + "label": "stream.addAbortSignal(signal, stream)", + "apiSymbol": "stream.addAbortSignal", + "depth": 2, + "scope": "api", + "anchor": "api-for-stream-consumers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:stream.addAbortSignal", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "ancestor" + }, + { + "id": "stream:0981a1dc3664", + "chapter": "stream", + "kind": "method", + "name": "getDefaultHighWaterMark", + "signature": "`stream.getDefaultHighWaterMark(objectMode)`", + "label": "stream.getDefaultHighWaterMark(objectMode)", + "apiSymbol": "stream.getDefaultHighWaterMark", + "depth": 2, + "scope": "api", + "anchor": "api-for-stream-consumers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:stream.getDefaultHighWaterMark", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "ancestor" + }, + { + "id": "stream:631757278f80", + "chapter": "stream", + "kind": "method", + "name": "setDefaultHighWaterMark", + "signature": "`stream.setDefaultHighWaterMark(objectMode, value)`", + "label": "stream.setDefaultHighWaterMark(objectMode, value)", + "apiSymbol": "stream.setDefaultHighWaterMark", + "depth": 2, + "scope": "api", + "anchor": "api-for-stream-consumers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "ancestor" + }, + { + "id": "stream:7d02adbd5cae", + "chapter": "stream", + "kind": "misc", + "name": "writable_streams", + "signature": "Writable streams", + "label": "Writable streams", + "apiSymbol": "writable_streams", + "depth": 2, + "scope": "documentation", + "anchor": "writable-streams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "stream:fb4f2232c3ed", + "chapter": "stream", + "kind": "class", + "name": "stream.Writable", + "signature": "Class: `stream.Writable`", + "label": "stream.Writable", + "apiSymbol": "stream.Writable", + "depth": 3, + "scope": "api", + "anchor": "class-streamwritable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:stream.Writable", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "stream:c8fc702ba690", + "chapter": "stream", + "kind": "method", + "name": "cork", + "signature": "`writable.cork()`", + "label": "writable.cork()", + "apiSymbol": "writable.cork", + "depth": 4, + "scope": "api", + "anchor": "writablecork", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:writable.cork", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:stream.writable.cork", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "stream:a7056020b081", + "chapter": "stream", + "kind": "method", + "name": "destroy", + "signature": "`writable.destroy([error])`", + "label": "writable.destroy([error])", + "apiSymbol": "writable.destroy", + "depth": 4, + "scope": "api", + "anchor": "writabledestroyerror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:stream.writable.destroy", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "stream:4788f330f734", + "chapter": "stream", + "kind": "method", + "name": "end", + "signature": "`writable.end([chunk[, encoding]][, callback])`", + "label": "writable.end([chunk[, encoding]][, callback])", + "apiSymbol": "writable.end", + "depth": 4, + "scope": "api", + "anchor": "writableendchunk-encoding-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:writable.end", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:stream.writable.end", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "stream:5aa4fbf448aa", + "chapter": "stream", + "kind": "method", + "name": "setDefaultEncoding", + "signature": "`writable.setDefaultEncoding(encoding)`", + "label": "writable.setDefaultEncoding(encoding)", + "apiSymbol": "writable.setDefaultEncoding", + "depth": 4, + "scope": "api", + "anchor": "writablesetdefaultencodingencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:writable.setDefaultEncoding", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:stream.writable.setDefaultEncoding", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "stream:0adb3fbabc38", + "chapter": "stream", + "kind": "method", + "name": "uncork", + "signature": "`writable.uncork()`", + "label": "writable.uncork()", + "apiSymbol": "writable.uncork", + "depth": 4, + "scope": "api", + "anchor": "writableuncork", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:writable.uncork", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:stream.writable.uncork", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "stream:65c4a59c0dc0", + "chapter": "stream", + "kind": "method", + "name": "[Symbol.asyncDispose]", + "signature": "`writable[Symbol.asyncDispose]()`", + "label": "writable[Symbol.asyncDispose]()", + "apiSymbol": "writable", + "depth": 4, + "scope": "api", + "anchor": "writablesymbolasyncdispose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "exact" + }, + { + "id": "stream:c6e22d9965fa", + "chapter": "stream", + "kind": "method", + "name": "write", + "signature": "`writable.write(chunk[, encoding][, callback])`", + "label": "writable.write(chunk[, encoding][, callback])", + "apiSymbol": "writable.write", + "depth": 4, + "scope": "api", + "anchor": "writablewritechunk-encoding-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:writable.write", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:stream.writable.write", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "stream:5b218d298213", + "chapter": "stream", + "kind": "boolean", + "name": "Type", + "signature": "`closed` Type: {boolean}", + "label": "closed", + "apiSymbol": "closed", + "depth": 4, + "scope": "api", + "anchor": "class-streamwritable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "ancestor" + }, + { + "id": "stream:6b6d82823460", + "chapter": "stream", + "kind": "boolean", + "name": "Type", + "signature": "`destroyed` Type: {boolean}", + "label": "destroyed", + "apiSymbol": "destroyed", + "depth": 4, + "scope": "api", + "anchor": "class-streamwritable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "ancestor" + }, + { + "id": "stream:79955b0367bd", + "chapter": "stream", + "kind": "boolean", + "name": "Type", + "signature": "`writable` Type: {boolean}", + "label": "writable", + "apiSymbol": "writable", + "depth": 4, + "scope": "api", + "anchor": "class-streamwritable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "ancestor" + }, + { + "id": "stream:c2932a811dbd", + "chapter": "stream", + "kind": "boolean", + "name": "Type", + "signature": "`writableAborted` Type: {boolean}", + "label": "writableAborted", + "apiSymbol": "writableAborted", + "depth": 4, + "scope": "api", + "anchor": "class-streamwritable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "ancestor" + }, + { + "id": "stream:773a067756c8", + "chapter": "stream", + "kind": "boolean", + "name": "Type", + "signature": "`writableEnded` Type: {boolean}", + "label": "writableEnded", + "apiSymbol": "writableEnded", + "depth": 4, + "scope": "api", + "anchor": "class-streamwritable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "ancestor" + }, + { + "id": "stream:c498bc3c61ca", + "chapter": "stream", + "kind": "integer", + "name": "Type", + "signature": "`writableCorked` Type: {integer}", + "label": "writableCorked", + "apiSymbol": "writableCorked", + "depth": 4, + "scope": "api", + "anchor": "class-streamwritable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "ancestor" + }, + { + "id": "stream:21a878d50ea8", + "chapter": "stream", + "kind": "Error", + "name": "Type", + "signature": "`errored` Type: {Error}", + "label": "errored", + "apiSymbol": "errored", + "depth": 4, + "scope": "api", + "anchor": "class-streamwritable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "ancestor" + }, + { + "id": "stream:64b02fced7a9", + "chapter": "stream", + "kind": "boolean", + "name": "Type", + "signature": "`writableFinished` Type: {boolean}", + "label": "writableFinished", + "apiSymbol": "writableFinished", + "depth": 4, + "scope": "api", + "anchor": "class-streamwritable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "ancestor" + }, + { + "id": "stream:44450c81e2bc", + "chapter": "stream", + "kind": "number", + "name": "Type", + "signature": "`writableHighWaterMark` Type: {number}", + "label": "writableHighWaterMark", + "apiSymbol": "writableHighWaterMark", + "depth": 4, + "scope": "api", + "anchor": "class-streamwritable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "ancestor" + }, + { + "id": "stream:7ee590368a01", + "chapter": "stream", + "kind": "number", + "name": "Type", + "signature": "`writableLength` Type: {number}", + "label": "writableLength", + "apiSymbol": "writableLength", + "depth": 4, + "scope": "api", + "anchor": "class-streamwritable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "ancestor" + }, + { + "id": "stream:ede1d6ed13bc", + "chapter": "stream", + "kind": "boolean", + "name": "Type", + "signature": "`writableNeedDrain` Type: {boolean}", + "label": "writableNeedDrain", + "apiSymbol": "writableNeedDrain", + "depth": 4, + "scope": "api", + "anchor": "class-streamwritable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "ancestor" + }, + { + "id": "stream:c38fcac34905", + "chapter": "stream", + "kind": "boolean", + "name": "Type", + "signature": "`writableObjectMode` Type: {boolean}", + "label": "writableObjectMode", + "apiSymbol": "writableObjectMode", + "depth": 4, + "scope": "api", + "anchor": "class-streamwritable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "ancestor" + }, + { + "id": "stream:af7d709dc927", + "chapter": "stream", + "kind": "event", + "name": "close", + "signature": "Event: `'close'`", + "label": "'close'", + "apiSymbol": "'close'", + "depth": 4, + "scope": "api", + "anchor": "event-close", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "exact" + }, + { + "id": "stream:b7738a5e313c", + "chapter": "stream", + "kind": "event", + "name": "drain", + "signature": "Event: `'drain'`", + "label": "'drain'", + "apiSymbol": "'drain'", + "depth": 4, + "scope": "api", + "anchor": "event-drain", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "exact" + }, + { + "id": "stream:f8e0b55069a1", + "chapter": "stream", + "kind": "event", + "name": "error", + "signature": "Event: `'error'`", + "label": "'error'", + "apiSymbol": "'error'", + "depth": 4, + "scope": "api", + "anchor": "event-error", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "exact" + }, + { + "id": "stream:e980a8ede358", + "chapter": "stream", + "kind": "event", + "name": "finish", + "signature": "Event: `'finish'`", + "label": "'finish'", + "apiSymbol": "'finish'", + "depth": 4, + "scope": "api", + "anchor": "event-finish", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "exact" + }, + { + "id": "stream:5647dc84973a", + "chapter": "stream", + "kind": "event", + "name": "pipe", + "signature": "Event: `'pipe'`", + "label": "'pipe'", + "apiSymbol": "'pipe'", + "depth": 4, + "scope": "api", + "anchor": "event-pipe", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "exact" + }, + { + "id": "stream:20ac861c350e", + "chapter": "stream", + "kind": "event", + "name": "unpipe", + "signature": "Event: `'unpipe'`", + "label": "'unpipe'", + "apiSymbol": "'unpipe'", + "depth": 4, + "scope": "api", + "anchor": "event-unpipe", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "exact" + }, + { + "id": "stream:425c24f9486a", + "chapter": "stream", + "kind": "misc", + "name": "readable_streams", + "signature": "Readable streams", + "label": "Readable streams", + "apiSymbol": "readable_streams", + "depth": 2, + "scope": "documentation", + "anchor": "readable-streams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "stream:09f7092a1274", + "chapter": "stream", + "kind": "module", + "name": "two_reading_modes", + "signature": "Two reading modes", + "label": "Two reading modes", + "apiSymbol": "two_reading_modes", + "depth": 3, + "scope": "documentation", + "anchor": "two-reading-modes", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "stream:4a5c4e831498", + "chapter": "stream", + "kind": "module", + "name": "three_states", + "signature": "Three states", + "label": "Three states", + "apiSymbol": "three_states", + "depth": 3, + "scope": "documentation", + "anchor": "three-states", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "stream:81babf12cced", + "chapter": "stream", + "kind": "module", + "name": "choose_one_api_style", + "signature": "Choose one API style", + "label": "Choose one API style", + "apiSymbol": "choose_one_api_style", + "depth": 3, + "scope": "documentation", + "anchor": "choose-one-api-style", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "stream:beca88f04114", + "chapter": "stream", + "kind": "class", + "name": "stream.Readable", + "signature": "Class: `stream.Readable`", + "label": "stream.Readable", + "apiSymbol": "stream.Readable", + "depth": 3, + "scope": "api", + "anchor": "class-streamreadable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:stream.Readable", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "stream:fffb9a73545d", + "chapter": "stream", + "kind": "method", + "name": "destroy", + "signature": "`readable.destroy([error])`", + "label": "readable.destroy([error])", + "apiSymbol": "readable.destroy", + "depth": 4, + "scope": "api", + "anchor": "readabledestroyerror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:readable.destroy", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:stream.readable.destroy", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "stream:8c13941c2da9", + "chapter": "stream", + "kind": "method", + "name": "isPaused", + "signature": "`readable.isPaused()`", + "label": "readable.isPaused()", + "apiSymbol": "readable.isPaused", + "depth": 4, + "scope": "api", + "anchor": "readableispaused", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:readable.isPaused", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:stream.readable.isPaused", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "stream:528bca09998f", + "chapter": "stream", + "kind": "method", + "name": "pause", + "signature": "`readable.pause()`", + "label": "readable.pause()", + "apiSymbol": "readable.pause", + "depth": 4, + "scope": "api", + "anchor": "readablepause", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:readable.pause", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:stream.readable.pause", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "stream:302494fc4444", + "chapter": "stream", + "kind": "method", + "name": "pipe", + "signature": "`readable.pipe(destination[, options])`", + "label": "readable.pipe(destination[, options])", + "apiSymbol": "readable.pipe", + "depth": 4, + "scope": "api", + "anchor": "readablepipedestination-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:readable.pipe", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:stream.readable.pipe", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "stream:8e9041e06d32", + "chapter": "stream", + "kind": "method", + "name": "read", + "signature": "`readable.read([size])`", + "label": "readable.read([size])", + "apiSymbol": "readable.read", + "depth": 4, + "scope": "api", + "anchor": "readablereadsize", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:readable.read", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:stream.readable.read", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "stream:5eb9333ba580", + "chapter": "stream", + "kind": "method", + "name": "resume", + "signature": "`readable.resume()`", + "label": "readable.resume()", + "apiSymbol": "readable.resume", + "depth": 4, + "scope": "api", + "anchor": "readableresume", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:readable.resume", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:stream.readable.resume", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "stream:ac1fa8557b23", + "chapter": "stream", + "kind": "method", + "name": "setEncoding", + "signature": "`readable.setEncoding(encoding)`", + "label": "readable.setEncoding(encoding)", + "apiSymbol": "readable.setEncoding", + "depth": 4, + "scope": "api", + "anchor": "readablesetencodingencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:readable.setEncoding", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:stream.readable.setEncoding", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "stream:014a313733a9", + "chapter": "stream", + "kind": "method", + "name": "unpipe", + "signature": "`readable.unpipe([destination])`", + "label": "readable.unpipe([destination])", + "apiSymbol": "readable.unpipe", + "depth": 4, + "scope": "api", + "anchor": "readableunpipedestination", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:readable.unpipe", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:stream.readable.unpipe", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "stream:f50018135868", + "chapter": "stream", + "kind": "method", + "name": "unshift", + "signature": "`readable.unshift(chunk[, encoding])`", + "label": "readable.unshift(chunk[, encoding])", + "apiSymbol": "readable.unshift", + "depth": 4, + "scope": "api", + "anchor": "readableunshiftchunk-encoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:readable.unshift", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:stream.readable.unshift", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "stream:8480a5e636f9", + "chapter": "stream", + "kind": "method", + "name": "wrap", + "signature": "`readable.wrap(stream)`", + "label": "readable.wrap(stream)", + "apiSymbol": "readable.wrap", + "depth": 4, + "scope": "api", + "anchor": "readablewrapstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "refused", + "evidence": "island-member-stub:node:stream.readable.wrap" + }, + "anchorSource": "exact" + }, + { + "id": "stream:321a9203032e", + "chapter": "stream", + "kind": "method", + "name": "[Symbol.asyncIterator]", + "signature": "`readable[Symbol.asyncIterator]()`", + "label": "readable[Symbol.asyncIterator]()", + "apiSymbol": "readable", + "depth": 4, + "scope": "api", + "anchor": "readablesymbolasynciterator", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "exact" + }, + { + "id": "stream:5650970efd7a", + "chapter": "stream", + "kind": "method", + "name": "[Symbol.asyncDispose]", + "signature": "`readable[Symbol.asyncDispose]()`", + "label": "readable[Symbol.asyncDispose]()", + "apiSymbol": "readable", + "depth": 4, + "scope": "api", + "anchor": "readablesymbolasyncdispose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "exact" + }, + { + "id": "stream:9abbc5fab905", + "chapter": "stream", + "kind": "method", + "name": "compose", + "signature": "`readable.compose(stream[, options])`", + "label": "readable.compose(stream[, options])", + "apiSymbol": "readable.compose", + "depth": 4, + "scope": "api", + "anchor": "readablecomposestream-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "exact" + }, + { + "id": "stream:4a45af435614", + "chapter": "stream", + "kind": "method", + "name": "iterator", + "signature": "`readable.iterator([options])`", + "label": "readable.iterator([options])", + "apiSymbol": "readable.iterator", + "depth": 4, + "scope": "api", + "anchor": "readableiteratoroptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "exact" + }, + { + "id": "stream:c5b21e53295d", + "chapter": "stream", + "kind": "method", + "name": "map", + "signature": "`readable.map(fn[, options])`", + "label": "readable.map(fn[, options])", + "apiSymbol": "readable.map", + "depth": 4, + "scope": "api", + "anchor": "readablemapfn-options", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "exact" + }, + { + "id": "stream:d44f80528da5", + "chapter": "stream", + "kind": "method", + "name": "filter", + "signature": "`readable.filter(fn[, options])`", + "label": "readable.filter(fn[, options])", + "apiSymbol": "readable.filter", + "depth": 4, + "scope": "api", + "anchor": "readablefilterfn-options", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "exact" + }, + { + "id": "stream:be4de765fe92", + "chapter": "stream", + "kind": "method", + "name": "forEach", + "signature": "`readable.forEach(fn[, options])`", + "label": "readable.forEach(fn[, options])", + "apiSymbol": "readable.forEach", + "depth": 4, + "scope": "api", + "anchor": "readableforeachfn-options", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "exact" + }, + { + "id": "stream:28ca8aa1188c", + "chapter": "stream", + "kind": "method", + "name": "toArray", + "signature": "`readable.toArray([options])`", + "label": "readable.toArray([options])", + "apiSymbol": "readable.toArray", + "depth": 4, + "scope": "api", + "anchor": "readabletoarrayoptions", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "exact" + }, + { + "id": "stream:8bebdb59be85", + "chapter": "stream", + "kind": "method", + "name": "some", + "signature": "`readable.some(fn[, options])`", + "label": "readable.some(fn[, options])", + "apiSymbol": "readable.some", + "depth": 4, + "scope": "api", + "anchor": "readablesomefn-options", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "exact" + }, + { + "id": "stream:79869ae71209", + "chapter": "stream", + "kind": "method", + "name": "find", + "signature": "`readable.find(fn[, options])`", + "label": "readable.find(fn[, options])", + "apiSymbol": "readable.find", + "depth": 4, + "scope": "api", + "anchor": "readablefindfn-options", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "exact" + }, + { + "id": "stream:5f74d2a4a9e7", + "chapter": "stream", + "kind": "method", + "name": "every", + "signature": "`readable.every(fn[, options])`", + "label": "readable.every(fn[, options])", + "apiSymbol": "readable.every", + "depth": 4, + "scope": "api", + "anchor": "readableeveryfn-options", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "exact" + }, + { + "id": "stream:a90a03cf6ffa", + "chapter": "stream", + "kind": "method", + "name": "flatMap", + "signature": "`readable.flatMap(fn[, options])`", + "label": "readable.flatMap(fn[, options])", + "apiSymbol": "readable.flatMap", + "depth": 4, + "scope": "api", + "anchor": "readableflatmapfn-options", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "exact" + }, + { + "id": "stream:1f3ab741d73e", + "chapter": "stream", + "kind": "method", + "name": "drop", + "signature": "`readable.drop(limit[, options])`", + "label": "readable.drop(limit[, options])", + "apiSymbol": "readable.drop", + "depth": 4, + "scope": "api", + "anchor": "readabledroplimit-options", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "exact" + }, + { + "id": "stream:be4f4ef0a53d", + "chapter": "stream", + "kind": "method", + "name": "take", + "signature": "`readable.take(limit[, options])`", + "label": "readable.take(limit[, options])", + "apiSymbol": "readable.take", + "depth": 4, + "scope": "api", + "anchor": "readabletakelimit-options", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "exact" + }, + { + "id": "stream:18e96494c6b3", + "chapter": "stream", + "kind": "method", + "name": "reduce", + "signature": "`readable.reduce(fn[, initial[, options]])`", + "label": "readable.reduce(fn[, initial[, options]])", + "apiSymbol": "readable.reduce", + "depth": 4, + "scope": "api", + "anchor": "readablereducefn-initial-options", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "exact" + }, + { + "id": "stream:1899a7e2e522", + "chapter": "stream", + "kind": "boolean", + "name": "Type", + "signature": "`closed` Type: {boolean}", + "label": "closed", + "apiSymbol": "closed", + "depth": 4, + "scope": "api", + "anchor": "class-streamreadable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "ancestor" + }, + { + "id": "stream:04f8199c7c02", + "chapter": "stream", + "kind": "boolean", + "name": "Type", + "signature": "`destroyed` Type: {boolean}", + "label": "destroyed", + "apiSymbol": "destroyed", + "depth": 4, + "scope": "api", + "anchor": "class-streamreadable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "ancestor" + }, + { + "id": "stream:385982db6046", + "chapter": "stream", + "kind": "boolean", + "name": "Type", + "signature": "`readable` Type: {boolean}", + "label": "readable", + "apiSymbol": "readable", + "depth": 4, + "scope": "api", + "anchor": "class-streamreadable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "ancestor" + }, + { + "id": "stream:7fe9d7886609", + "chapter": "stream", + "kind": "boolean", + "name": "Type", + "signature": "`readableAborted` Type: {boolean}", + "label": "readableAborted", + "apiSymbol": "readableAborted", + "depth": 4, + "scope": "api", + "anchor": "class-streamreadable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "ancestor" + }, + { + "id": "stream:39f9b09274a2", + "chapter": "stream", + "kind": "boolean", + "name": "Type", + "signature": "`readableDidRead` Type: {boolean}", + "label": "readableDidRead", + "apiSymbol": "readableDidRead", + "depth": 4, + "scope": "api", + "anchor": "class-streamreadable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "ancestor" + }, + { + "id": "stream:14d4913fa288", + "chapter": "stream", + "kind": "null|string", + "name": "Type", + "signature": "`readableEncoding` Type: {null|string}", + "label": "readableEncoding", + "apiSymbol": "readableEncoding", + "depth": 4, + "scope": "api", + "anchor": "class-streamreadable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "ancestor" + }, + { + "id": "stream:8e34f3528220", + "chapter": "stream", + "kind": "boolean", + "name": "Type", + "signature": "`readableEnded` Type: {boolean}", + "label": "readableEnded", + "apiSymbol": "readableEnded", + "depth": 4, + "scope": "api", + "anchor": "class-streamreadable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "ancestor" + }, + { + "id": "stream:316ccdd37fe8", + "chapter": "stream", + "kind": "Error", + "name": "Type", + "signature": "`errored` Type: {Error}", + "label": "errored", + "apiSymbol": "errored", + "depth": 4, + "scope": "api", + "anchor": "class-streamreadable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "ancestor" + }, + { + "id": "stream:b8428bc85f2b", + "chapter": "stream", + "kind": "boolean", + "name": "Type", + "signature": "`readableFlowing` Type: {boolean}", + "label": "readableFlowing", + "apiSymbol": "readableFlowing", + "depth": 4, + "scope": "api", + "anchor": "class-streamreadable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "ancestor" + }, + { + "id": "stream:eafae535e183", + "chapter": "stream", + "kind": "number", + "name": "Type", + "signature": "`readableHighWaterMark` Type: {number}", + "label": "readableHighWaterMark", + "apiSymbol": "readableHighWaterMark", + "depth": 4, + "scope": "api", + "anchor": "class-streamreadable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "ancestor" + }, + { + "id": "stream:3c22489177f3", + "chapter": "stream", + "kind": "number", + "name": "Type", + "signature": "`readableLength` Type: {number}", + "label": "readableLength", + "apiSymbol": "readableLength", + "depth": 4, + "scope": "api", + "anchor": "class-streamreadable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "ancestor" + }, + { + "id": "stream:01452c5419b7", + "chapter": "stream", + "kind": "boolean", + "name": "Type", + "signature": "`readableObjectMode` Type: {boolean}", + "label": "readableObjectMode", + "apiSymbol": "readableObjectMode", + "depth": 4, + "scope": "api", + "anchor": "class-streamreadable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "ancestor" + }, + { + "id": "stream:ff46f186efa9", + "chapter": "stream", + "kind": "event", + "name": "close", + "signature": "Event: `'close'`", + "label": "'close'", + "apiSymbol": "'close'", + "depth": 4, + "scope": "api", + "anchor": "event-close_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "exact" + }, + { + "id": "stream:75031efb6530", + "chapter": "stream", + "kind": "event", + "name": "data", + "signature": "Event: `'data'`", + "label": "'data'", + "apiSymbol": "'data'", + "depth": 4, + "scope": "api", + "anchor": "event-data", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "exact" + }, + { + "id": "stream:bbd2247b82a3", + "chapter": "stream", + "kind": "event", + "name": "end", + "signature": "Event: `'end'`", + "label": "'end'", + "apiSymbol": "'end'", + "depth": 4, + "scope": "api", + "anchor": "event-end", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "exact" + }, + { + "id": "stream:3bb88fd2c3c6", + "chapter": "stream", + "kind": "event", + "name": "error", + "signature": "Event: `'error'`", + "label": "'error'", + "apiSymbol": "'error'", + "depth": 4, + "scope": "api", + "anchor": "event-error_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "exact" + }, + { + "id": "stream:63f94bff74eb", + "chapter": "stream", + "kind": "event", + "name": "pause", + "signature": "Event: `'pause'`", + "label": "'pause'", + "apiSymbol": "'pause'", + "depth": 4, + "scope": "api", + "anchor": "event-pause", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "exact" + }, + { + "id": "stream:96378dde4b52", + "chapter": "stream", + "kind": "event", + "name": "readable", + "signature": "Event: `'readable'`", + "label": "'readable'", + "apiSymbol": "'readable'", + "depth": 4, + "scope": "api", + "anchor": "event-readable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "exact" + }, + { + "id": "stream:ba3332c7128e", + "chapter": "stream", + "kind": "event", + "name": "resume", + "signature": "Event: `'resume'`", + "label": "'resume'", + "apiSymbol": "'resume'", + "depth": 4, + "scope": "api", + "anchor": "event-resume", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "exact" + }, + { + "id": "stream:b6d1cff7cd5f", + "chapter": "stream", + "kind": "misc", + "name": "duplex_and_transform_streams", + "signature": "Duplex and transform streams", + "label": "Duplex and transform streams", + "apiSymbol": "duplex_and_transform_streams", + "depth": 2, + "scope": "documentation", + "anchor": "duplex-and-transform-streams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "stream:79b8910871b9", + "chapter": "stream", + "kind": "class", + "name": "stream.Duplex", + "signature": "Class: `stream.Duplex`", + "label": "stream.Duplex", + "apiSymbol": "stream.Duplex", + "depth": 3, + "scope": "api", + "anchor": "class-streamduplex", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:stream.Duplex", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "stream:0ec8e5bc8019", + "chapter": "stream", + "kind": "boolean", + "name": "Type", + "signature": "`allowHalfOpen` Type: {boolean}", + "label": "allowHalfOpen", + "apiSymbol": "allowHalfOpen", + "depth": 4, + "scope": "api", + "anchor": "class-streamduplex", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "ancestor" + }, + { + "id": "stream:88c6d1114916", + "chapter": "stream", + "kind": "class", + "name": "stream.Transform", + "signature": "Class: `stream.Transform`", + "label": "stream.Transform", + "apiSymbol": "stream.Transform", + "depth": 3, + "scope": "api", + "anchor": "class-streamtransform", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:stream.Transform", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "stream:cab213b5c4cb", + "chapter": "stream", + "kind": "method", + "name": "destroy", + "signature": "`transform.destroy([error])`", + "label": "transform.destroy([error])", + "apiSymbol": "transform.destroy", + "depth": 4, + "scope": "api", + "anchor": "transformdestroyerror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:stream.transform.destroy", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "stream:199ea6fc2f44", + "chapter": "stream", + "kind": "method", + "name": "duplexPair", + "signature": "`stream.duplexPair([options])`", + "label": "stream.duplexPair([options])", + "apiSymbol": "stream.duplexPair", + "depth": 3, + "scope": "api", + "anchor": "streamduplexpairoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "exact" + }, + { + "id": "stream:548a375fba0b", + "chapter": "stream", + "kind": "misc", + "name": "API for stream implementers", + "signature": "API for stream implementers", + "label": "API for stream implementers", + "apiSymbol": "API for stream implementers", + "depth": 1, + "scope": "documentation", + "anchor": "api-for-stream-implementers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "stream:7a81d0113533", + "chapter": "stream", + "kind": "misc", + "name": "simplified_construction", + "signature": "Simplified construction", + "label": "Simplified construction", + "apiSymbol": "simplified_construction", + "depth": 2, + "scope": "documentation", + "anchor": "simplified-construction", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "stream:a7198085549f", + "chapter": "stream", + "kind": "misc", + "name": "implementing_a_writable_stream", + "signature": "Implementing a writable stream", + "label": "Implementing a writable stream", + "apiSymbol": "implementing_a_writable_stream", + "depth": 2, + "scope": "documentation", + "anchor": "implementing-a-writable-stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "stream:5f8c4931f63e", + "chapter": "stream", + "kind": "module", + "name": "errors_while_writing", + "signature": "Errors while writing", + "label": "Errors while writing", + "apiSymbol": "errors_while_writing", + "depth": 3, + "scope": "documentation", + "anchor": "errors-while-writing", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "stream:2df1b5f6f2c7", + "chapter": "stream", + "kind": "module", + "name": "an_example_writable_stream", + "signature": "An example writable stream", + "label": "An example writable stream", + "apiSymbol": "an_example_writable_stream", + "depth": 3, + "scope": "documentation", + "anchor": "an-example-writable-stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "stream:7acbfdc06325", + "chapter": "stream", + "kind": "module", + "name": "decoding_buffers_in_a_writable_stream", + "signature": "Decoding buffers in a writable stream", + "label": "Decoding buffers in a writable stream", + "apiSymbol": "decoding_buffers_in_a_writable_stream", + "depth": 3, + "scope": "documentation", + "anchor": "decoding-buffers-in-a-writable-stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "stream:2b994ae607f5", + "chapter": "stream", + "kind": "method", + "name": "_construct", + "signature": "`writable._construct(callback)`", + "label": "writable._construct(callback)", + "apiSymbol": "writable._construct", + "depth": 3, + "scope": "api", + "anchor": "writable_constructcallback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "exact" + }, + { + "id": "stream:a1ba8a2b3c37", + "chapter": "stream", + "kind": "method", + "name": "_write", + "signature": "`writable._write(chunk, encoding, callback)`", + "label": "writable._write(chunk, encoding, callback)", + "apiSymbol": "writable._write", + "depth": 3, + "scope": "api", + "anchor": "writable_writechunk-encoding-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "exact" + }, + { + "id": "stream:8016e282a969", + "chapter": "stream", + "kind": "method", + "name": "_writev", + "signature": "`writable._writev(chunks, callback)`", + "label": "writable._writev(chunks, callback)", + "apiSymbol": "writable._writev", + "depth": 3, + "scope": "api", + "anchor": "writable_writevchunks-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "exact" + }, + { + "id": "stream:4be779cdc8a1", + "chapter": "stream", + "kind": "method", + "name": "_destroy", + "signature": "`writable._destroy(err, callback)`", + "label": "writable._destroy(err, callback)", + "apiSymbol": "writable._destroy", + "depth": 3, + "scope": "api", + "anchor": "writable_destroyerr-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "exact" + }, + { + "id": "stream:503ff0fcafc3", + "chapter": "stream", + "kind": "method", + "name": "_final", + "signature": "`writable._final(callback)`", + "label": "writable._final(callback)", + "apiSymbol": "writable._final", + "depth": 3, + "scope": "api", + "anchor": "writable_finalcallback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "exact" + }, + { + "id": "stream:dc05d8dfc7e4", + "chapter": "stream", + "kind": "misc", + "name": "implementing_a_readable_stream", + "signature": "Implementing a readable stream", + "label": "Implementing a readable stream", + "apiSymbol": "implementing_a_readable_stream", + "depth": 2, + "scope": "documentation", + "anchor": "implementing-a-readable-stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "stream:668fd6434148", + "chapter": "stream", + "kind": "module", + "name": "errors_while_reading", + "signature": "Errors while reading", + "label": "Errors while reading", + "apiSymbol": "errors_while_reading", + "depth": 3, + "scope": "documentation", + "anchor": "errors-while-reading", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "stream:8cbf9b4cc0ef", + "chapter": "stream", + "kind": "method", + "name": "_construct", + "signature": "`readable._construct(callback)`", + "label": "readable._construct(callback)", + "apiSymbol": "readable._construct", + "depth": 3, + "scope": "api", + "anchor": "readable_constructcallback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "exact" + }, + { + "id": "stream:a623d9ed30ba", + "chapter": "stream", + "kind": "method", + "name": "_read", + "signature": "`readable._read(size)`", + "label": "readable._read(size)", + "apiSymbol": "readable._read", + "depth": 3, + "scope": "api", + "anchor": "readable_readsize", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "exact" + }, + { + "id": "stream:ef6c8b306b9a", + "chapter": "stream", + "kind": "method", + "name": "_destroy", + "signature": "`readable._destroy(err, callback)`", + "label": "readable._destroy(err, callback)", + "apiSymbol": "readable._destroy", + "depth": 3, + "scope": "api", + "anchor": "readable_destroyerr-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "exact" + }, + { + "id": "stream:e2e872c42b34", + "chapter": "stream", + "kind": "method", + "name": "push", + "signature": "`readable.push(chunk[, encoding])`", + "label": "readable.push(chunk[, encoding])", + "apiSymbol": "readable.push", + "depth": 3, + "scope": "api", + "anchor": "readablepushchunk-encoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:readable.push", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:stream.readable.push", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "stream:dc61147e3417", + "chapter": "stream", + "kind": "misc", + "name": "implementing_a_duplex_stream", + "signature": "Implementing a duplex stream", + "label": "Implementing a duplex stream", + "apiSymbol": "implementing_a_duplex_stream", + "depth": 2, + "scope": "documentation", + "anchor": "implementing-a-duplex-stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "stream:d445950dc9df", + "chapter": "stream", + "kind": "module", + "name": "an_example_duplex_stream", + "signature": "An example duplex stream", + "label": "An example duplex stream", + "apiSymbol": "an_example_duplex_stream", + "depth": 3, + "scope": "documentation", + "anchor": "an-example-duplex-stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "stream:898b0a11b449", + "chapter": "stream", + "kind": "module", + "name": "object_mode_duplex_streams", + "signature": "Object mode duplex streams", + "label": "Object mode duplex streams", + "apiSymbol": "object_mode_duplex_streams", + "depth": 3, + "scope": "documentation", + "anchor": "object-mode-duplex-streams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "stream:d96ea22210b8", + "chapter": "stream", + "kind": "misc", + "name": "implementing_a_transform_stream", + "signature": "Implementing a transform stream", + "label": "Implementing a transform stream", + "apiSymbol": "implementing_a_transform_stream", + "depth": 2, + "scope": "documentation", + "anchor": "implementing-a-transform-stream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "stream:f2270e4116a0", + "chapter": "stream", + "kind": "class", + "name": "stream.PassThrough", + "signature": "Class: `stream.PassThrough`", + "label": "stream.PassThrough", + "apiSymbol": "stream.PassThrough", + "depth": 3, + "scope": "api", + "anchor": "class-streampassthrough", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:stream.PassThrough", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "stream:4a0f92970489", + "chapter": "stream", + "kind": "method", + "name": "_flush", + "signature": "`transform._flush(callback)`", + "label": "transform._flush(callback)", + "apiSymbol": "transform._flush", + "depth": 3, + "scope": "api", + "anchor": "transform_flushcallback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "exact" + }, + { + "id": "stream:a204fde2de28", + "chapter": "stream", + "kind": "method", + "name": "_transform", + "signature": "`transform._transform(chunk, encoding, callback)`", + "label": "transform._transform(chunk, encoding, callback)", + "apiSymbol": "transform._transform", + "depth": 3, + "scope": "api", + "anchor": "transform_transformchunk-encoding-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "exact" + }, + { + "id": "stream:20ab959c0a56", + "chapter": "stream", + "kind": "event", + "name": "end", + "signature": "Event: `'end'`", + "label": "'end'", + "apiSymbol": "'end'", + "depth": 3, + "scope": "api", + "anchor": "event-end_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "exact" + }, + { + "id": "stream:5974c8e891c9", + "chapter": "stream", + "kind": "event", + "name": "finish", + "signature": "Event: `'finish'`", + "label": "'finish'", + "apiSymbol": "'finish'", + "depth": 3, + "scope": "api", + "anchor": "event-finish_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "exact" + }, + { + "id": "stream:784f93d9164b", + "chapter": "stream", + "kind": "misc", + "name": "Additional notes", + "signature": "Additional notes", + "label": "Additional notes", + "apiSymbol": "Additional notes", + "depth": 1, + "scope": "documentation", + "anchor": "additional-notes", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "stream:c13777fdc3f6", + "chapter": "stream", + "kind": "method", + "name": "read", + "signature": "`readable.read(0)`", + "label": "readable.read(0)", + "apiSymbol": "readable.read", + "depth": 2, + "scope": "api", + "anchor": "additional-notes", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:readable.read", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:stream.readable.read", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "ancestor" + }, + { + "id": "stream:9b57efcb2564", + "chapter": "stream", + "kind": "method", + "name": "push", + "signature": "`readable.push('')`", + "label": "readable.push('')", + "apiSymbol": "readable.push", + "depth": 2, + "scope": "api", + "anchor": "additional-notes", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:readable.push", + "tests": [ + "tests/corpus/1685-stream-readable-basics.ts", + "tests/corpus/1688-stream-writable-basics.ts", + "tests/corpus/1814-stream-pipeline.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:stream.readable.push", + "tests": [ + "tests/fixtures/npm/cases/stream-shims/main.ts" + ] + }, + "anchorSource": "ancestor" + }, + { + "id": "stream:fa1a6e26a87c", + "chapter": "stream", + "kind": "misc", + "name": "streams_compatibility_with_async_generators_and_async_iterators", + "signature": "Streams compatibility with async generators and async iterators", + "label": "Streams compatibility with async generators and async iterators", + "apiSymbol": "streams_compatibility_with_async_generators_and_async_iterators", + "depth": 2, + "scope": "documentation", + "anchor": "streams-compatibility-with-async-generators-and-async-iterators", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "stream:963ccb17e0a7", + "chapter": "stream", + "kind": "module", + "name": "consuming_readable_streams_with_async_iterators", + "signature": "Consuming readable streams with async iterators", + "label": "Consuming readable streams with async iterators", + "apiSymbol": "consuming_readable_streams_with_async_iterators", + "depth": 3, + "scope": "documentation", + "anchor": "consuming-readable-streams-with-async-iterators", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "stream:f95755d6b291", + "chapter": "stream", + "kind": "module", + "name": "creating_readable_streams_with_async_generators", + "signature": "Creating readable streams with async generators", + "label": "Creating readable streams with async generators", + "apiSymbol": "creating_readable_streams_with_async_generators", + "depth": 3, + "scope": "documentation", + "anchor": "creating-readable-streams-with-async-generators", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "stream:667e51bd3208", + "chapter": "stream", + "kind": "misc", + "name": "Piping to writable streams from async iterators", + "signature": "Piping to writable streams from async iterators", + "label": "Piping to writable streams from async iterators", + "apiSymbol": "Piping to writable streams from async iterators", + "depth": 3, + "scope": "documentation", + "anchor": "piping-to-writable-streams-from-async-iterators", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "stream:55ae3feead57", + "chapter": "stream", + "kind": "misc", + "name": "Compatibility with older Node.js versions", + "signature": "Compatibility with older Node.js versions", + "label": "Compatibility with older Node.js versions", + "apiSymbol": "Compatibility with older Node.js versions", + "depth": 2, + "scope": "documentation", + "anchor": "compatibility-with-older-nodejs-versions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "stream:e5af5479aa86", + "chapter": "stream", + "kind": "misc", + "name": "`highwatermark`_discrepancy_after_calling_`readable.setencoding()`", + "signature": "`highWaterMark` discrepancy after calling `readable.setEncoding()`", + "label": "highWaterMark", + "apiSymbol": "highWaterMark", + "depth": 2, + "scope": "api", + "anchor": "highwatermark-discrepancy-after-calling-readablesetencoding", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:stream" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:stream" + }, + "anchorSource": "exact" + }, + { + "id": "string_decoder:579b24e23a19", + "chapter": "string_decoder", + "kind": "module", + "name": "string_decoder", + "signature": "String decoder", + "label": "String decoder", + "apiSymbol": "string_decoder", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/corpus/1662-string-decoder-encodings.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "string_decoder:7f2068cb94ad", + "chapter": "string_decoder", + "kind": "class", + "name": "StringDecoder", + "signature": "Class: `StringDecoder`", + "label": "StringDecoder", + "apiSymbol": "StringDecoder", + "depth": 1, + "scope": "api", + "anchor": "class-stringdecoder", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:StringDecoder", + "tests": [ + "tests/corpus/1662-string-decoder-encodings.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:string_decoder.StringDecoder", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "string_decoder:c48a2ccea9d8", + "chapter": "string_decoder", + "kind": "method", + "name": "end", + "signature": "`stringDecoder.end([buffer])`", + "label": "stringDecoder.end([buffer])", + "apiSymbol": "stringDecoder.end", + "depth": 2, + "scope": "api", + "anchor": "stringdecoderendbuffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:stringDecoder.end", + "tests": [ + "tests/corpus/1662-string-decoder-encodings.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:string_decoder.stringDecoder.end", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "string_decoder:ec83045b9e62", + "chapter": "string_decoder", + "kind": "method", + "name": "write", + "signature": "`stringDecoder.write(buffer)`", + "label": "stringDecoder.write(buffer)", + "apiSymbol": "stringDecoder.write", + "depth": 2, + "scope": "api", + "anchor": "stringdecoderwritebuffer", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:stringDecoder.write", + "tests": [ + "tests/corpus/1662-string-decoder-encodings.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:string_decoder.stringDecoder.write", + "tests": [ + "tests/fixtures/npm/cases/buffer-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "test:d7913f8880b2", + "chapter": "test", + "kind": "module", + "name": "test_runner", + "signature": "Test runner", + "label": "Test runner", + "apiSymbol": "test_runner", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/corpus/1600-assert-passing.ts", + "tests/corpus/1604-assert-deep-structures.ts", + "tests/corpus/1609-assert-async.ts", + "tests/corpus/1721-assert-throws-regex-class.ts", + "tests/harness/node-test.test.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "derived:descendants" + }, + "anchorSource": "chapter" + }, + { + "id": "test:43521f66056a", + "chapter": "test", + "kind": "module", + "name": "subtests", + "signature": "Subtests", + "label": "Subtests", + "apiSymbol": "subtests", + "depth": 1, + "scope": "documentation", + "anchor": "subtests", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "test:9b203e6d1c5d", + "chapter": "test", + "kind": "module", + "name": "rerunning_failed_tests", + "signature": "Rerunning failed tests", + "label": "Rerunning failed tests", + "apiSymbol": "rerunning_failed_tests", + "depth": 1, + "scope": "documentation", + "anchor": "rerunning-failed-tests", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "test:982cdbbf1258", + "chapter": "test", + "kind": "module", + "name": "`describe()`_and_`it()`_aliases", + "signature": "`describe()` and `it()` aliases", + "label": "describe()", + "apiSymbol": "describe", + "depth": 1, + "scope": "api", + "anchor": "describe-and-it-aliases", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:describe", + "tests": [ + "tests/harness/node-test.test.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:3e091a2244e4", + "chapter": "test", + "kind": "module", + "name": "skipping_tests", + "signature": "Skipping tests", + "label": "Skipping tests", + "apiSymbol": "skipping_tests", + "depth": 1, + "scope": "documentation", + "anchor": "skipping-tests", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "test:149ed29d21e5", + "chapter": "test", + "kind": "module", + "name": "todo_tests", + "signature": "TODO tests", + "label": "TODO tests", + "apiSymbol": "todo_tests", + "depth": 1, + "scope": "documentation", + "anchor": "todo-tests", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "test:440bf110ad3a", + "chapter": "test", + "kind": "module", + "name": "expecting_tests_to_fail", + "signature": "Expecting tests to fail", + "label": "Expecting tests to fail", + "apiSymbol": "expecting_tests_to_fail", + "depth": 1, + "scope": "documentation", + "anchor": "expecting-tests-to-fail", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "test:f0e6173874e0", + "chapter": "test", + "kind": "module", + "name": "`only`_tests", + "signature": "`only` tests", + "label": "only", + "apiSymbol": "only", + "depth": 1, + "scope": "api", + "anchor": "only-tests", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:fac56e7e9f21", + "chapter": "test", + "kind": "module", + "name": "filtering_tests_by_name", + "signature": "Filtering tests by name", + "label": "Filtering tests by name", + "apiSymbol": "filtering_tests_by_name", + "depth": 1, + "scope": "documentation", + "anchor": "filtering-tests-by-name", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "test:ac7afa495086", + "chapter": "test", + "kind": "module", + "name": "extraneous_asynchronous_activity", + "signature": "Extraneous asynchronous activity", + "label": "Extraneous asynchronous activity", + "apiSymbol": "extraneous_asynchronous_activity", + "depth": 1, + "scope": "documentation", + "anchor": "extraneous-asynchronous-activity", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "test:21ce24b0842e", + "chapter": "test", + "kind": "module", + "name": "watch_mode", + "signature": "Watch mode", + "label": "Watch mode", + "apiSymbol": "watch_mode", + "depth": 1, + "scope": "documentation", + "anchor": "watch-mode", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "test:59a718f856b4", + "chapter": "test", + "kind": "module", + "name": "global_setup_and_teardown", + "signature": "Global setup and teardown", + "label": "Global setup and teardown", + "apiSymbol": "global_setup_and_teardown", + "depth": 1, + "scope": "documentation", + "anchor": "global-setup-and-teardown", + "nodeStability": { + "index": "1.0", + "level": 1, + "text": "Early development", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "test:22c6a110ccba", + "chapter": "test", + "kind": "module", + "name": "running_tests_from_the_command_line", + "signature": "Running tests from the command line", + "label": "Running tests from the command line", + "apiSymbol": "running_tests_from_the_command_line", + "depth": 1, + "scope": "documentation", + "anchor": "running-tests-from-the-command-line", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "test:8c862b89c7e0", + "chapter": "test", + "kind": "module", + "name": "test_runner_execution_model", + "signature": "Test runner execution model", + "label": "Test runner execution model", + "apiSymbol": "test_runner_execution_model", + "depth": 2, + "scope": "documentation", + "anchor": "test-runner-execution-model", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "test:f2a403f0d42b", + "chapter": "test", + "kind": "module", + "name": "child_process_option_inheritance", + "signature": "Child process option inheritance", + "label": "Child process option inheritance", + "apiSymbol": "child_process_option_inheritance", + "depth": 3, + "scope": "documentation", + "anchor": "child-process-option-inheritance", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "test:299be0ba17c5", + "chapter": "test", + "kind": "module", + "name": "collecting_code_coverage", + "signature": "Collecting code coverage", + "label": "Collecting code coverage", + "apiSymbol": "collecting_code_coverage", + "depth": 1, + "scope": "documentation", + "anchor": "collecting-code-coverage", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "test:7f5cbfdcf545", + "chapter": "test", + "kind": "module", + "name": "coverage_reporters", + "signature": "Coverage reporters", + "label": "Coverage reporters", + "apiSymbol": "coverage_reporters", + "depth": 2, + "scope": "documentation", + "anchor": "coverage-reporters", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "test:41812d14dead", + "chapter": "test", + "kind": "module", + "name": "mocking", + "signature": "Mocking", + "label": "Mocking", + "apiSymbol": "mocking", + "depth": 1, + "scope": "documentation", + "anchor": "mocking", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "test:a7738dbda8b8", + "chapter": "test", + "kind": "module", + "name": "timers", + "signature": "Timers", + "label": "Timers", + "apiSymbol": "timers", + "depth": 2, + "scope": "documentation", + "anchor": "timers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "test:0d29f3089fc0", + "chapter": "test", + "kind": "module", + "name": "dates", + "signature": "Dates", + "label": "Dates", + "apiSymbol": "dates", + "depth": 2, + "scope": "documentation", + "anchor": "dates", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "test:a99ac9b5659d", + "chapter": "test", + "kind": "module", + "name": "snapshot_testing", + "signature": "Snapshot testing", + "label": "Snapshot testing", + "apiSymbol": "snapshot_testing", + "depth": 1, + "scope": "documentation", + "anchor": "snapshot-testing", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "test:34b304a17e32", + "chapter": "test", + "kind": "module", + "name": "test_reporters", + "signature": "Test reporters", + "label": "Test reporters", + "apiSymbol": "test_reporters", + "depth": 1, + "scope": "documentation", + "anchor": "test-reporters", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "test:f49473bfc443", + "chapter": "test", + "kind": "module", + "name": "custom_reporters", + "signature": "Custom reporters", + "label": "Custom reporters", + "apiSymbol": "custom_reporters", + "depth": 2, + "scope": "documentation", + "anchor": "custom-reporters", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "test:82e0cd401f54", + "chapter": "test", + "kind": "module", + "name": "multiple_reporters", + "signature": "Multiple reporters", + "label": "Multiple reporters", + "apiSymbol": "multiple_reporters", + "depth": 2, + "scope": "documentation", + "anchor": "multiple-reporters", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "test:159a5c611fab", + "chapter": "test", + "kind": "module", + "name": "`assert`", + "signature": "`assert`", + "label": "assert", + "apiSymbol": "assert", + "depth": 1, + "scope": "api", + "anchor": "assert", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:assert", + "tests": [ + "tests/corpus/1600-assert-passing.ts", + "tests/corpus/1604-assert-deep-structures.ts", + "tests/corpus/1609-assert-async.ts", + "tests/corpus/1721-assert-throws-regex-class.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:0f565f514f2f", + "chapter": "test", + "kind": "method", + "name": "register", + "signature": "`assert.register(name, fn)`", + "label": "assert.register(name, fn)", + "apiSymbol": "assert.register", + "depth": 2, + "scope": "api", + "anchor": "assertregistername-fn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:f363f92639e6", + "chapter": "test", + "kind": "module", + "name": "`snapshot`", + "signature": "`snapshot`", + "label": "snapshot", + "apiSymbol": "snapshot", + "depth": 1, + "scope": "api", + "anchor": "snapshot", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:bda5805bc4d1", + "chapter": "test", + "kind": "method", + "name": "setDefaultSnapshotSerializers", + "signature": "`snapshot.setDefaultSnapshotSerializers(serializers)`", + "label": "snapshot.setDefaultSnapshotSerializers(serializers)", + "apiSymbol": "snapshot.setDefaultSnapshotSerializers", + "depth": 2, + "scope": "api", + "anchor": "snapshotsetdefaultsnapshotserializersserializers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:d2cec00af616", + "chapter": "test", + "kind": "method", + "name": "setResolveSnapshotPath", + "signature": "`snapshot.setResolveSnapshotPath(fn)`", + "label": "snapshot.setResolveSnapshotPath(fn)", + "apiSymbol": "snapshot.setResolveSnapshotPath", + "depth": 2, + "scope": "api", + "anchor": "snapshotsetresolvesnapshotpathfn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:94ee1fc64cba", + "chapter": "test", + "kind": "class", + "name": "MockFunctionContext", + "signature": "Class: `MockFunctionContext`", + "label": "MockFunctionContext", + "apiSymbol": "MockFunctionContext", + "depth": 1, + "scope": "api", + "anchor": "class-mockfunctioncontext", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:181607c23322", + "chapter": "test", + "kind": "method", + "name": "callCount", + "signature": "`ctx.callCount()`", + "label": "ctx.callCount()", + "apiSymbol": "ctx.callCount", + "depth": 2, + "scope": "api", + "anchor": "ctxcallcount", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:64febffd87d5", + "chapter": "test", + "kind": "method", + "name": "mockImplementation", + "signature": "`ctx.mockImplementation(implementation)`", + "label": "ctx.mockImplementation(implementation)", + "apiSymbol": "ctx.mockImplementation", + "depth": 2, + "scope": "api", + "anchor": "ctxmockimplementationimplementation", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:eff12c00a103", + "chapter": "test", + "kind": "method", + "name": "mockImplementationOnce", + "signature": "`ctx.mockImplementationOnce(implementation[, onCall])`", + "label": "ctx.mockImplementationOnce(implementation[, onCall])", + "apiSymbol": "ctx.mockImplementationOnce", + "depth": 2, + "scope": "api", + "anchor": "ctxmockimplementationonceimplementation-oncall", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:8ba72609af97", + "chapter": "test", + "kind": "method", + "name": "resetCalls", + "signature": "`ctx.resetCalls()`", + "label": "ctx.resetCalls()", + "apiSymbol": "ctx.resetCalls", + "depth": 2, + "scope": "api", + "anchor": "ctxresetcalls", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:615a33a245f7", + "chapter": "test", + "kind": "method", + "name": "restore", + "signature": "`ctx.restore()`", + "label": "ctx.restore()", + "apiSymbol": "ctx.restore", + "depth": 2, + "scope": "api", + "anchor": "ctxrestore", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:89ade21dafcc", + "chapter": "test", + "kind": "Array", + "name": "Type", + "signature": "`calls` Type: {Array}", + "label": "calls", + "apiSymbol": "calls", + "depth": 2, + "scope": "api", + "anchor": "class-mockfunctioncontext", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "ancestor" + }, + { + "id": "test:43159c6cd577", + "chapter": "test", + "kind": "class", + "name": "MockModuleContext", + "signature": "Class: `MockModuleContext`", + "label": "MockModuleContext", + "apiSymbol": "MockModuleContext", + "depth": 1, + "scope": "api", + "anchor": "class-mockmodulecontext", + "nodeStability": { + "index": "1.0", + "level": 1, + "text": "Early development", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:7dc72aff3cc3", + "chapter": "test", + "kind": "method", + "name": "restore", + "signature": "`ctx.restore()`", + "label": "ctx.restore()", + "apiSymbol": "ctx.restore", + "depth": 2, + "scope": "api", + "anchor": "ctxrestore_1", + "nodeStability": { + "index": "1.0", + "level": 1, + "text": "Early development", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:5a3d49f5484d", + "chapter": "test", + "kind": "class", + "name": "MockPropertyContext", + "signature": "Class: `MockPropertyContext`", + "label": "MockPropertyContext", + "apiSymbol": "MockPropertyContext", + "depth": 1, + "scope": "api", + "anchor": "class-mockpropertycontext", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:98c17a1fbab3", + "chapter": "test", + "kind": "method", + "name": "accessCount", + "signature": "`ctx.accessCount()`", + "label": "ctx.accessCount()", + "apiSymbol": "ctx.accessCount", + "depth": 2, + "scope": "api", + "anchor": "ctxaccesscount", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:c6cfe6b536b5", + "chapter": "test", + "kind": "method", + "name": "mockImplementation", + "signature": "`ctx.mockImplementation(value)`", + "label": "ctx.mockImplementation(value)", + "apiSymbol": "ctx.mockImplementation", + "depth": 2, + "scope": "api", + "anchor": "ctxmockimplementationvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:7056f5f1d17b", + "chapter": "test", + "kind": "method", + "name": "mockImplementationOnce", + "signature": "`ctx.mockImplementationOnce(value[, onAccess])`", + "label": "ctx.mockImplementationOnce(value[, onAccess])", + "apiSymbol": "ctx.mockImplementationOnce", + "depth": 2, + "scope": "api", + "anchor": "ctxmockimplementationoncevalue-onaccess", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:39baa942b55e", + "chapter": "test", + "kind": "module", + "name": "caveat", + "signature": "Caveat", + "label": "Caveat", + "apiSymbol": "caveat", + "depth": 3, + "scope": "documentation", + "anchor": "caveat", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "test:5a09f8bce0a7", + "chapter": "test", + "kind": "method", + "name": "resetAccesses", + "signature": "`ctx.resetAccesses()`", + "label": "ctx.resetAccesses()", + "apiSymbol": "ctx.resetAccesses", + "depth": 2, + "scope": "api", + "anchor": "ctxresetaccesses", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:82d2c411cacd", + "chapter": "test", + "kind": "method", + "name": "restore", + "signature": "`ctx.restore()`", + "label": "ctx.restore()", + "apiSymbol": "ctx.restore", + "depth": 2, + "scope": "api", + "anchor": "ctxrestore_2", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:94d901aa7e10", + "chapter": "test", + "kind": "Array", + "name": "Type", + "signature": "`accesses` Type: {Array}", + "label": "accesses", + "apiSymbol": "accesses", + "depth": 2, + "scope": "api", + "anchor": "class-mockpropertycontext", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "ancestor" + }, + { + "id": "test:cedc4c325c7d", + "chapter": "test", + "kind": "class", + "name": "MockTracker", + "signature": "Class: `MockTracker`", + "label": "MockTracker", + "apiSymbol": "MockTracker", + "depth": 1, + "scope": "api", + "anchor": "class-mocktracker", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:684b230abefc", + "chapter": "test", + "kind": "method", + "name": "fn", + "signature": "`mock.fn([original[, implementation]][, options])`", + "label": "mock.fn([original[, implementation]][, options])", + "apiSymbol": "mock.fn", + "depth": 2, + "scope": "api", + "anchor": "mockfnoriginal-implementation-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:2841bc6cfc9e", + "chapter": "test", + "kind": "method", + "name": "getter", + "signature": "`mock.getter(object, methodName[, implementation][, options])`", + "label": "mock.getter(object, methodName[, implementation][, options])", + "apiSymbol": "mock.getter", + "depth": 2, + "scope": "api", + "anchor": "mockgetterobject-methodname-implementation-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:8a1abe947206", + "chapter": "test", + "kind": "method", + "name": "method", + "signature": "`mock.method(object, methodName[, implementation][, options])`", + "label": "mock.method(object, methodName[, implementation][, options])", + "apiSymbol": "mock.method", + "depth": 2, + "scope": "api", + "anchor": "mockmethodobject-methodname-implementation-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:3c1c52a8a35e", + "chapter": "test", + "kind": "method", + "name": "module", + "signature": "`mock.module(specifier[, options])`", + "label": "mock.module(specifier[, options])", + "apiSymbol": "mock.module", + "depth": 2, + "scope": "api", + "anchor": "mockmodulespecifier-options", + "nodeStability": { + "index": "1.0", + "level": 1, + "text": "Early development", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:000e3a3beb3e", + "chapter": "test", + "kind": "method", + "name": "property", + "signature": "`mock.property(object, propertyName[, value])`", + "label": "mock.property(object, propertyName[, value])", + "apiSymbol": "mock.property", + "depth": 2, + "scope": "api", + "anchor": "mockpropertyobject-propertyname-value", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:791840fbba8d", + "chapter": "test", + "kind": "method", + "name": "reset", + "signature": "`mock.reset()`", + "label": "mock.reset()", + "apiSymbol": "mock.reset", + "depth": 2, + "scope": "api", + "anchor": "mockreset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:02e0e2c04046", + "chapter": "test", + "kind": "method", + "name": "restoreAll", + "signature": "`mock.restoreAll()`", + "label": "mock.restoreAll()", + "apiSymbol": "mock.restoreAll", + "depth": 2, + "scope": "api", + "anchor": "mockrestoreall", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:d21c825216a8", + "chapter": "test", + "kind": "method", + "name": "setter", + "signature": "`mock.setter(object, methodName[, implementation][, options])`", + "label": "mock.setter(object, methodName[, implementation][, options])", + "apiSymbol": "mock.setter", + "depth": 2, + "scope": "api", + "anchor": "mocksetterobject-methodname-implementation-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:a06caa5dac08", + "chapter": "test", + "kind": "class", + "name": "MockTimers", + "signature": "Class: `MockTimers`", + "label": "MockTimers", + "apiSymbol": "MockTimers", + "depth": 1, + "scope": "api", + "anchor": "class-mocktimers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:1b1a0633a102", + "chapter": "test", + "kind": "method", + "name": "enable", + "signature": "`timers.enable([enableOptions])`", + "label": "timers.enable([enableOptions])", + "apiSymbol": "timers.enable", + "depth": 2, + "scope": "api", + "anchor": "timersenableenableoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:6c7039135154", + "chapter": "test", + "kind": "method", + "name": "reset", + "signature": "`timers.reset()`", + "label": "timers.reset()", + "apiSymbol": "timers.reset", + "depth": 2, + "scope": "api", + "anchor": "timersreset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:9af4b9009e10", + "chapter": "test", + "kind": "method", + "name": "[Symbol.dispose]", + "signature": "`timers[Symbol.dispose]()`", + "label": "timers[Symbol.dispose]()", + "apiSymbol": "timers", + "depth": 2, + "scope": "api", + "anchor": "timerssymboldispose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:5a88274dece9", + "chapter": "test", + "kind": "method", + "name": "tick", + "signature": "`timers.tick([milliseconds])`", + "label": "timers.tick([milliseconds])", + "apiSymbol": "timers.tick", + "depth": 2, + "scope": "api", + "anchor": "timerstickmilliseconds", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:d35723bc9cbc", + "chapter": "test", + "kind": "module", + "name": "using_clear_functions", + "signature": "Using clear functions", + "label": "Using clear functions", + "apiSymbol": "using_clear_functions", + "depth": 3, + "scope": "documentation", + "anchor": "using-clear-functions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "test:2df69c543737", + "chapter": "test", + "kind": "module", + "name": "working_with_node.js_timers_modules", + "signature": "Working with Node.js timers modules", + "label": "Working with Node.js timers modules", + "apiSymbol": "working_with_node.js_timers_modules", + "depth": 3, + "scope": "documentation", + "anchor": "working-with-nodejs-timers-modules", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "test:1562cbcface8", + "chapter": "test", + "kind": "method", + "name": "runAll", + "signature": "`timers.runAll()`", + "label": "timers.runAll()", + "apiSymbol": "timers.runAll", + "depth": 2, + "scope": "api", + "anchor": "timersrunall", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:6dd81e3b1c78", + "chapter": "test", + "kind": "method", + "name": "setTime", + "signature": "`timers.setTime(milliseconds)`", + "label": "timers.setTime(milliseconds)", + "apiSymbol": "timers.setTime", + "depth": 2, + "scope": "api", + "anchor": "timerssettimemilliseconds", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:1c2b5b0a5593", + "chapter": "test", + "kind": "module", + "name": "dates_and_timers_working_together", + "signature": "Dates and Timers working together", + "label": "Dates and Timers working together", + "apiSymbol": "dates_and_timers_working_together", + "depth": 3, + "scope": "documentation", + "anchor": "dates-and-timers-working-together", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "test:21b4e331fe5f", + "chapter": "test", + "kind": "class", + "name": "TestsStream", + "signature": "Class: `TestsStream`", + "label": "TestsStream", + "apiSymbol": "TestsStream", + "depth": 1, + "scope": "api", + "anchor": "class-testsstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:5bc36a9d37e8", + "chapter": "test", + "kind": "event", + "name": "test:coverage", + "signature": "Event: `'test:coverage'`", + "label": "'test:coverage'", + "apiSymbol": "'test:coverage'", + "depth": 2, + "scope": "api", + "anchor": "event-testcoverage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:d1acf252c407", + "chapter": "test", + "kind": "event", + "name": "test:complete", + "signature": "Event: `'test:complete'`", + "label": "'test:complete'", + "apiSymbol": "'test:complete'", + "depth": 2, + "scope": "api", + "anchor": "event-testcomplete", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:9c85c9dade77", + "chapter": "test", + "kind": "event", + "name": "test:dequeue", + "signature": "Event: `'test:dequeue'`", + "label": "'test:dequeue'", + "apiSymbol": "'test:dequeue'", + "depth": 2, + "scope": "api", + "anchor": "event-testdequeue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:2c0a6babfd5c", + "chapter": "test", + "kind": "event", + "name": "test:diagnostic", + "signature": "Event: `'test:diagnostic'`", + "label": "'test:diagnostic'", + "apiSymbol": "'test:diagnostic'", + "depth": 2, + "scope": "api", + "anchor": "event-testdiagnostic", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:7f6171b2d32b", + "chapter": "test", + "kind": "event", + "name": "test:enqueue", + "signature": "Event: `'test:enqueue'`", + "label": "'test:enqueue'", + "apiSymbol": "'test:enqueue'", + "depth": 2, + "scope": "api", + "anchor": "event-testenqueue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:3b156e8ef0e7", + "chapter": "test", + "kind": "event", + "name": "test:fail", + "signature": "Event: `'test:fail'`", + "label": "'test:fail'", + "apiSymbol": "'test:fail'", + "depth": 2, + "scope": "api", + "anchor": "event-testfail", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:cafe39abfce1", + "chapter": "test", + "kind": "event", + "name": "test:interrupted", + "signature": "Event: `'test:interrupted'`", + "label": "'test:interrupted'", + "apiSymbol": "'test:interrupted'", + "depth": 2, + "scope": "api", + "anchor": "event-testinterrupted", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:89f1682d338d", + "chapter": "test", + "kind": "event", + "name": "test:pass", + "signature": "Event: `'test:pass'`", + "label": "'test:pass'", + "apiSymbol": "'test:pass'", + "depth": 2, + "scope": "api", + "anchor": "event-testpass", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:9fe44fa083bc", + "chapter": "test", + "kind": "event", + "name": "test:plan", + "signature": "Event: `'test:plan'`", + "label": "'test:plan'", + "apiSymbol": "'test:plan'", + "depth": 2, + "scope": "api", + "anchor": "event-testplan", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:04db2df552f4", + "chapter": "test", + "kind": "event", + "name": "test:start", + "signature": "Event: `'test:start'`", + "label": "'test:start'", + "apiSymbol": "'test:start'", + "depth": 2, + "scope": "api", + "anchor": "event-teststart", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:958697449aba", + "chapter": "test", + "kind": "event", + "name": "test:stderr", + "signature": "Event: `'test:stderr'`", + "label": "'test:stderr'", + "apiSymbol": "'test:stderr'", + "depth": 2, + "scope": "api", + "anchor": "event-teststderr", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:133b6fd08299", + "chapter": "test", + "kind": "event", + "name": "test:stdout", + "signature": "Event: `'test:stdout'`", + "label": "'test:stdout'", + "apiSymbol": "'test:stdout'", + "depth": 2, + "scope": "api", + "anchor": "event-teststdout", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:118ce16daf32", + "chapter": "test", + "kind": "event", + "name": "test:summary", + "signature": "Event: `'test:summary'`", + "label": "'test:summary'", + "apiSymbol": "'test:summary'", + "depth": 2, + "scope": "api", + "anchor": "event-testsummary", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:677627e9bbb0", + "chapter": "test", + "kind": "event", + "name": "test:watch:drained", + "signature": "Event: `'test:watch:drained'`", + "label": "'test:watch:drained'", + "apiSymbol": "'test:watch:drained'", + "depth": 2, + "scope": "api", + "anchor": "event-testwatchdrained", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:7cbbfee1c662", + "chapter": "test", + "kind": "event", + "name": "test:watch:restarted", + "signature": "Event: `'test:watch:restarted'`", + "label": "'test:watch:restarted'", + "apiSymbol": "'test:watch:restarted'", + "depth": 2, + "scope": "api", + "anchor": "event-testwatchrestarted", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:3a0d7a42c672", + "chapter": "test", + "kind": "class", + "name": "TestContext", + "signature": "Class: `TestContext`", + "label": "TestContext", + "apiSymbol": "TestContext", + "depth": 1, + "scope": "api", + "anchor": "class-testcontext", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:fa53d1938ffa", + "chapter": "test", + "kind": "method", + "name": "before", + "signature": "`context.before([fn][, options])`", + "label": "context.before([fn][, options])", + "apiSymbol": "context.before", + "depth": 2, + "scope": "api", + "anchor": "contextbeforefn-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:230394a0ff00", + "chapter": "test", + "kind": "method", + "name": "beforeEach", + "signature": "`context.beforeEach([fn][, options])`", + "label": "context.beforeEach([fn][, options])", + "apiSymbol": "context.beforeEach", + "depth": 2, + "scope": "api", + "anchor": "contextbeforeeachfn-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:3831e48b4408", + "chapter": "test", + "kind": "method", + "name": "after", + "signature": "`context.after([fn][, options])`", + "label": "context.after([fn][, options])", + "apiSymbol": "context.after", + "depth": 2, + "scope": "api", + "anchor": "contextafterfn-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:9fab423e49b7", + "chapter": "test", + "kind": "method", + "name": "afterEach", + "signature": "`context.afterEach([fn][, options])`", + "label": "context.afterEach([fn][, options])", + "apiSymbol": "context.afterEach", + "depth": 2, + "scope": "api", + "anchor": "contextaftereachfn-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:ceea5ddd85fa", + "chapter": "test", + "kind": "method", + "name": "diagnostic", + "signature": "`context.diagnostic(message)`", + "label": "context.diagnostic(message)", + "apiSymbol": "context.diagnostic", + "depth": 2, + "scope": "api", + "anchor": "contextdiagnosticmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:context.diagnostic", + "tests": [ + "tests/harness/node-test.test.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:d5d9833c77e2", + "chapter": "test", + "kind": "method", + "name": "plan", + "signature": "`context.plan(count[,options])`", + "label": "context.plan(count[,options])", + "apiSymbol": "context.plan", + "depth": 2, + "scope": "api", + "anchor": "contextplancountoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:ca6ef304c0f1", + "chapter": "test", + "kind": "method", + "name": "runOnly", + "signature": "`context.runOnly(shouldRunOnlyTests)`", + "label": "context.runOnly(shouldRunOnlyTests)", + "apiSymbol": "context.runOnly", + "depth": 2, + "scope": "api", + "anchor": "contextrunonlyshouldrunonlytests", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:28a82e710a72", + "chapter": "test", + "kind": "method", + "name": "skip", + "signature": "`context.skip([message])`", + "label": "context.skip([message])", + "apiSymbol": "context.skip", + "depth": 2, + "scope": "api", + "anchor": "contextskipmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:context.skip", + "tests": [ + "tests/harness/node-test.test.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:4737d855077f", + "chapter": "test", + "kind": "method", + "name": "todo", + "signature": "`context.todo([message])`", + "label": "context.todo([message])", + "apiSymbol": "context.todo", + "depth": 2, + "scope": "api", + "anchor": "contexttodomessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:context.todo", + "tests": [ + "tests/harness/node-test.test.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:cda6aaebb404", + "chapter": "test", + "kind": "method", + "name": "test", + "signature": "`context.test([name][, options][, fn])`", + "label": "context.test([name][, options][, fn])", + "apiSymbol": "context.test", + "depth": 2, + "scope": "api", + "anchor": "contexttestname-options-fn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:context.test", + "tests": [ + "tests/harness/node-test.test.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:3fb8ad029bca", + "chapter": "test", + "kind": "method", + "name": "waitFor", + "signature": "`context.waitFor(condition[, options])`", + "label": "context.waitFor(condition[, options])", + "apiSymbol": "context.waitFor", + "depth": 2, + "scope": "api", + "anchor": "contextwaitforcondition-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:c4cb9037d628", + "chapter": "test", + "kind": "section", + "name": "assert", + "signature": "`context.assert`", + "label": "context.assert", + "apiSymbol": "context.assert", + "depth": 2, + "scope": "api", + "anchor": "contextassert", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:context.assert", + "tests": [ + "tests/harness/node-test.test.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:5ea15f14844c", + "chapter": "test", + "kind": "method", + "name": "fileSnapshot", + "signature": "`context.assert.fileSnapshot(value, path[, options])`", + "label": "context.assert.fileSnapshot(value, path[, options])", + "apiSymbol": "context.assert.fileSnapshot", + "depth": 3, + "scope": "api", + "anchor": "contextassertfilesnapshotvalue-path-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:e0afaf3905f9", + "chapter": "test", + "kind": "method", + "name": "snapshot", + "signature": "`context.assert.snapshot(value[, options])`", + "label": "context.assert.snapshot(value[, options])", + "apiSymbol": "context.assert.snapshot", + "depth": 3, + "scope": "api", + "anchor": "contextassertsnapshotvalue-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:986cd116a489", + "chapter": "test", + "kind": "section", + "name": "filePath", + "signature": "`context.filePath`", + "label": "context.filePath", + "apiSymbol": "context.filePath", + "depth": 2, + "scope": "api", + "anchor": "contextfilepath", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:d5f87bc13615", + "chapter": "test", + "kind": "section", + "name": "fullName", + "signature": "`context.fullName`", + "label": "context.fullName", + "apiSymbol": "context.fullName", + "depth": 2, + "scope": "api", + "anchor": "contextfullname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:0ef85420340f", + "chapter": "test", + "kind": "section", + "name": "name", + "signature": "`context.name`", + "label": "context.name", + "apiSymbol": "context.name", + "depth": 2, + "scope": "api", + "anchor": "contextname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:context.name", + "tests": [ + "tests/harness/node-test.test.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:5f62603f5613", + "chapter": "test", + "kind": "boolean", + "name": "Type", + "signature": "`passed` Type: {boolean} `false` before the test is executed, e.g. in a `beforeEach` hook.", + "label": "passed", + "apiSymbol": "passed", + "depth": 2, + "scope": "api", + "anchor": "class-testcontext", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "ancestor" + }, + { + "id": "test:857221698402", + "chapter": "test", + "kind": "Error|null", + "name": "Type", + "signature": "`error` Type: {Error|null}", + "label": "error", + "apiSymbol": "error", + "depth": 2, + "scope": "api", + "anchor": "class-testcontext", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "ancestor" + }, + { + "id": "test:b7c520753d30", + "chapter": "test", + "kind": "number", + "name": "Type", + "signature": "`attempt` Type: {number}", + "label": "attempt", + "apiSymbol": "attempt", + "depth": 2, + "scope": "api", + "anchor": "class-testcontext", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "ancestor" + }, + { + "id": "test:0ee703f51144", + "chapter": "test", + "kind": "number|undefined", + "name": "Type", + "signature": "`workerId` Type: {number|undefined}", + "label": "workerId", + "apiSymbol": "workerId", + "depth": 2, + "scope": "api", + "anchor": "class-testcontext", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "ancestor" + }, + { + "id": "test:8abbcbc1cbf0", + "chapter": "test", + "kind": "AbortSignal", + "name": "Type", + "signature": "`signal` Type: {AbortSignal}", + "label": "signal", + "apiSymbol": "signal", + "depth": 2, + "scope": "api", + "anchor": "class-testcontext", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "ancestor" + }, + { + "id": "test:a4bd7bdd2120", + "chapter": "test", + "kind": "class", + "name": "SuiteContext", + "signature": "Class: `SuiteContext`", + "label": "SuiteContext", + "apiSymbol": "SuiteContext", + "depth": 1, + "scope": "api", + "anchor": "class-suitecontext", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:4b1cfc88fc4d", + "chapter": "test", + "kind": "section", + "name": "filePath", + "signature": "`context.filePath`", + "label": "context.filePath", + "apiSymbol": "context.filePath", + "depth": 2, + "scope": "api", + "anchor": "contextfilepath_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:eedf9a99efc9", + "chapter": "test", + "kind": "section", + "name": "fullName", + "signature": "`context.fullName`", + "label": "context.fullName", + "apiSymbol": "context.fullName", + "depth": 2, + "scope": "api", + "anchor": "contextfullname_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:9779c6dad7e6", + "chapter": "test", + "kind": "section", + "name": "name", + "signature": "`context.name`", + "label": "context.name", + "apiSymbol": "context.name", + "depth": 2, + "scope": "api", + "anchor": "contextname_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:context.name", + "tests": [ + "tests/harness/node-test.test.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:f39e576b3cc5", + "chapter": "test", + "kind": "AbortSignal", + "name": "Type", + "signature": "`signal` Type: {AbortSignal}", + "label": "signal", + "apiSymbol": "signal", + "depth": 2, + "scope": "api", + "anchor": "class-suitecontext", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "ancestor" + }, + { + "id": "test:674c7aed221a", + "chapter": "test", + "kind": "method", + "name": "run", + "signature": "`run([options])`", + "label": "run([options])", + "apiSymbol": "run", + "depth": 1, + "scope": "api", + "anchor": "runoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:63d64364235a", + "chapter": "test", + "kind": "method", + "name": "suite", + "signature": "`suite([name][, options][, fn])`", + "label": "suite([name][, options][, fn])", + "apiSymbol": "suite", + "depth": 1, + "scope": "api", + "anchor": "suitename-options-fn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:suite", + "tests": [ + "tests/harness/node-test.test.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:a504d6462625", + "chapter": "test", + "kind": "method", + "name": "skip", + "signature": "`suite.skip([name][, options][, fn])`", + "label": "suite.skip([name][, options][, fn])", + "apiSymbol": "suite.skip", + "depth": 1, + "scope": "api", + "anchor": "suiteskipname-options-fn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:a2d9fc109be5", + "chapter": "test", + "kind": "method", + "name": "todo", + "signature": "`suite.todo([name][, options][, fn])`", + "label": "suite.todo([name][, options][, fn])", + "apiSymbol": "suite.todo", + "depth": 1, + "scope": "api", + "anchor": "suitetodoname-options-fn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:3f0438fd628d", + "chapter": "test", + "kind": "method", + "name": "only", + "signature": "`suite.only([name][, options][, fn])`", + "label": "suite.only([name][, options][, fn])", + "apiSymbol": "suite.only", + "depth": 1, + "scope": "api", + "anchor": "suiteonlyname-options-fn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:9ec633ff3400", + "chapter": "test", + "kind": "method", + "name": "test", + "signature": "`test([name][, options][, fn])`", + "label": "test([name][, options][, fn])", + "apiSymbol": "test", + "depth": 1, + "scope": "api", + "anchor": "testname-options-fn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:test", + "tests": [ + "tests/harness/node-test.test.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:bb1f13c26648", + "chapter": "test", + "kind": "method", + "name": "skip", + "signature": "`test.skip([name][, options][, fn])`", + "label": "test.skip([name][, options][, fn])", + "apiSymbol": "test.skip", + "depth": 1, + "scope": "api", + "anchor": "testskipname-options-fn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:test.skip", + "tests": [ + "tests/harness/node-test.test.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:fea941a28d36", + "chapter": "test", + "kind": "method", + "name": "todo", + "signature": "`test.todo([name][, options][, fn])`", + "label": "test.todo([name][, options][, fn])", + "apiSymbol": "test.todo", + "depth": 1, + "scope": "api", + "anchor": "testtodoname-options-fn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:test.todo", + "tests": [ + "tests/harness/node-test.test.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:ac4905846ade", + "chapter": "test", + "kind": "method", + "name": "only", + "signature": "`test.only([name][, options][, fn])`", + "label": "test.only([name][, options][, fn])", + "apiSymbol": "test.only", + "depth": 1, + "scope": "api", + "anchor": "testonlyname-options-fn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:test.only", + "tests": [ + "tests/harness/node-test.test.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:e8c5038607e1", + "chapter": "test", + "kind": "method", + "name": "describe", + "signature": "`describe([name][, options][, fn])`", + "label": "describe([name][, options][, fn])", + "apiSymbol": "describe", + "depth": 1, + "scope": "api", + "anchor": "describename-options-fn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:describe", + "tests": [ + "tests/harness/node-test.test.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:9a97d70161a9", + "chapter": "test", + "kind": "method", + "name": "skip", + "signature": "`describe.skip([name][, options][, fn])`", + "label": "describe.skip([name][, options][, fn])", + "apiSymbol": "describe.skip", + "depth": 1, + "scope": "api", + "anchor": "describeskipname-options-fn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:62271d741db7", + "chapter": "test", + "kind": "method", + "name": "todo", + "signature": "`describe.todo([name][, options][, fn])`", + "label": "describe.todo([name][, options][, fn])", + "apiSymbol": "describe.todo", + "depth": 1, + "scope": "api", + "anchor": "describetodoname-options-fn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:e6e3412e8eed", + "chapter": "test", + "kind": "method", + "name": "only", + "signature": "`describe.only([name][, options][, fn])`", + "label": "describe.only([name][, options][, fn])", + "apiSymbol": "describe.only", + "depth": 1, + "scope": "api", + "anchor": "describeonlyname-options-fn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:d5d42f34cd3c", + "chapter": "test", + "kind": "method", + "name": "it", + "signature": "`it([name][, options][, fn])`", + "label": "it([name][, options][, fn])", + "apiSymbol": "it", + "depth": 1, + "scope": "api", + "anchor": "itname-options-fn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:it", + "tests": [ + "tests/harness/node-test.test.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:8b36ce453d35", + "chapter": "test", + "kind": "method", + "name": "skip", + "signature": "`it.skip([name][, options][, fn])`", + "label": "it.skip([name][, options][, fn])", + "apiSymbol": "it.skip", + "depth": 1, + "scope": "api", + "anchor": "itskipname-options-fn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:38b089c13502", + "chapter": "test", + "kind": "method", + "name": "todo", + "signature": "`it.todo([name][, options][, fn])`", + "label": "it.todo([name][, options][, fn])", + "apiSymbol": "it.todo", + "depth": 1, + "scope": "api", + "anchor": "ittodoname-options-fn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:36b9fc2957bd", + "chapter": "test", + "kind": "method", + "name": "only", + "signature": "`it.only([name][, options][, fn])`", + "label": "it.only([name][, options][, fn])", + "apiSymbol": "it.only", + "depth": 1, + "scope": "api", + "anchor": "itonlyname-options-fn", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:test" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:1dbc4649bded", + "chapter": "test", + "kind": "method", + "name": "before", + "signature": "`before([fn][, options])`", + "label": "before([fn][, options])", + "apiSymbol": "before", + "depth": 1, + "scope": "api", + "anchor": "beforefn-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:before", + "tests": [ + "tests/harness/node-test.test.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:1b76cee472d6", + "chapter": "test", + "kind": "method", + "name": "after", + "signature": "`after([fn][, options])`", + "label": "after([fn][, options])", + "apiSymbol": "after", + "depth": 1, + "scope": "api", + "anchor": "afterfn-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:after", + "tests": [ + "tests/harness/node-test.test.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:f32681c476db", + "chapter": "test", + "kind": "method", + "name": "beforeEach", + "signature": "`beforeEach([fn][, options])`", + "label": "beforeEach([fn][, options])", + "apiSymbol": "beforeEach", + "depth": 1, + "scope": "api", + "anchor": "beforeeachfn-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:beforeEach", + "tests": [ + "tests/harness/node-test.test.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "test:79ed705d34bd", + "chapter": "test", + "kind": "method", + "name": "afterEach", + "signature": "`afterEach([fn][, options])`", + "label": "afterEach([fn][, options])", + "apiSymbol": "afterEach", + "depth": 1, + "scope": "api", + "anchor": "aftereachfn-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:afterEach", + "tests": [ + "tests/harness/node-test.test.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:test" + }, + "anchorSource": "exact" + }, + { + "id": "timers:958d8284adff", + "chapter": "timers", + "kind": "module", + "name": "timers", + "signature": "Timers", + "label": "Timers", + "apiSymbol": "timers", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/1804-timers-module.ts", + "tests/corpus/1805-timer-callback-args.ts", + "tests/corpus/2093-timers-promises.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "timers:94d8e91bc7f0", + "chapter": "timers", + "kind": "module", + "name": "scheduling_timers", + "signature": "Scheduling timers", + "label": "Scheduling timers", + "apiSymbol": "scheduling_timers", + "depth": 1, + "scope": "documentation", + "anchor": "scheduling-timers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "timers:c166edf2e065", + "chapter": "timers", + "kind": "method", + "name": "setImmediate", + "signature": "`setImmediate(callback[, ...args])`", + "label": "setImmediate(callback[, ...args])", + "apiSymbol": "setImmediate", + "depth": 2, + "scope": "api", + "anchor": "setimmediatecallback-args", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:setImmediate", + "tests": [ + "tests/corpus/1804-timers-module.ts", + "tests/corpus/1805-timer-callback-args.ts", + "tests/corpus/2093-timers-promises.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:timers.setImmediate", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "timers:4b97533ba368", + "chapter": "timers", + "kind": "method", + "name": "setInterval", + "signature": "`setInterval(callback[, delay[, ...args]])`", + "label": "setInterval(callback[, delay[, ...args]])", + "apiSymbol": "setInterval", + "depth": 2, + "scope": "api", + "anchor": "setintervalcallback-delay-args", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:setInterval", + "tests": [ + "tests/corpus/1804-timers-module.ts", + "tests/corpus/1805-timer-callback-args.ts", + "tests/corpus/2093-timers-promises.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:timers.setInterval", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "timers:7ebcebd69b5c", + "chapter": "timers", + "kind": "method", + "name": "setTimeout", + "signature": "`setTimeout(callback[, delay[, ...args]])`", + "label": "setTimeout(callback[, delay[, ...args]])", + "apiSymbol": "setTimeout", + "depth": 2, + "scope": "api", + "anchor": "settimeoutcallback-delay-args", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:setTimeout", + "tests": [ + "tests/corpus/1804-timers-module.ts", + "tests/corpus/1805-timer-callback-args.ts", + "tests/corpus/2093-timers-promises.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:timers.setTimeout", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "timers:2ce2e0823262", + "chapter": "timers", + "kind": "module", + "name": "cancelling_timers", + "signature": "Cancelling timers", + "label": "Cancelling timers", + "apiSymbol": "cancelling_timers", + "depth": 1, + "scope": "documentation", + "anchor": "cancelling-timers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "timers:972e511b08d3", + "chapter": "timers", + "kind": "method", + "name": "clearImmediate", + "signature": "`clearImmediate(immediate)`", + "label": "clearImmediate(immediate)", + "apiSymbol": "clearImmediate", + "depth": 2, + "scope": "api", + "anchor": "clearimmediateimmediate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:clearImmediate", + "tests": [ + "tests/corpus/1804-timers-module.ts", + "tests/corpus/1805-timer-callback-args.ts", + "tests/corpus/2093-timers-promises.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:timers.clearImmediate", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "timers:ca99ee06891f", + "chapter": "timers", + "kind": "method", + "name": "clearInterval", + "signature": "`clearInterval(timeout)`", + "label": "clearInterval(timeout)", + "apiSymbol": "clearInterval", + "depth": 2, + "scope": "api", + "anchor": "clearintervaltimeout", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:clearInterval", + "tests": [ + "tests/corpus/1804-timers-module.ts", + "tests/corpus/1805-timer-callback-args.ts", + "tests/corpus/2093-timers-promises.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:timers.clearInterval", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "timers:4bb011c5c994", + "chapter": "timers", + "kind": "method", + "name": "clearTimeout", + "signature": "`clearTimeout(timeout)`", + "label": "clearTimeout(timeout)", + "apiSymbol": "clearTimeout", + "depth": 2, + "scope": "api", + "anchor": "cleartimeouttimeout", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:clearTimeout", + "tests": [ + "tests/corpus/1804-timers-module.ts", + "tests/corpus/1805-timer-callback-args.ts", + "tests/corpus/2093-timers-promises.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:timers.clearTimeout", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "timers:a913d38c0f84", + "chapter": "timers", + "kind": "module", + "name": "timers_promises_api", + "signature": "Timers Promises API", + "label": "Timers Promises API", + "apiSymbol": "timers_promises_api", + "depth": 1, + "scope": "documentation", + "anchor": "timers-promises-api", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "timers:e458b8e84b54", + "chapter": "timers", + "kind": "method", + "name": "setTimeout", + "signature": "`timersPromises.setTimeout([delay[, value[, options]]])`", + "label": "timersPromises.setTimeout([delay[, value[, options]]])", + "apiSymbol": "timersPromises.setTimeout", + "depth": 2, + "scope": "api", + "anchor": "timerspromisessettimeoutdelay-value-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:timersPromises.setTimeout", + "tests": [ + "tests/corpus/1804-timers-module.ts", + "tests/corpus/1805-timer-callback-args.ts", + "tests/corpus/2093-timers-promises.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:timers/promises.setTimeout", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "timers:32d97ec9dda0", + "chapter": "timers", + "kind": "method", + "name": "setImmediate", + "signature": "`timersPromises.setImmediate([value[, options]])`", + "label": "timersPromises.setImmediate([value[, options]])", + "apiSymbol": "timersPromises.setImmediate", + "depth": 2, + "scope": "api", + "anchor": "timerspromisessetimmediatevalue-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:timersPromises.setImmediate", + "tests": [ + "tests/corpus/1804-timers-module.ts", + "tests/corpus/1805-timer-callback-args.ts", + "tests/corpus/2093-timers-promises.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:timers/promises.setImmediate", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "timers:4328bf41043d", + "chapter": "timers", + "kind": "method", + "name": "setInterval", + "signature": "`timersPromises.setInterval([delay[, value[, options]]])`", + "label": "timersPromises.setInterval([delay[, value[, options]]])", + "apiSymbol": "timersPromises.setInterval", + "depth": 2, + "scope": "api", + "anchor": "timerspromisessetintervaldelay-value-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:timers" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:timers/promises.setInterval", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "timers:ef573dbd7247", + "chapter": "timers", + "kind": "method", + "name": "wait", + "signature": "`timersPromises.scheduler.wait(delay[, options])`", + "label": "timersPromises.scheduler.wait(delay[, options])", + "apiSymbol": "timersPromises.scheduler.wait", + "depth": 2, + "scope": "api", + "anchor": "timerspromisesschedulerwaitdelay-options", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:timers" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:timers" + }, + "anchorSource": "exact" + }, + { + "id": "timers:966714749eee", + "chapter": "timers", + "kind": "method", + "name": "yield", + "signature": "`timersPromises.scheduler.yield()`", + "label": "timersPromises.scheduler.yield()", + "apiSymbol": "timersPromises.scheduler.yield", + "depth": 2, + "scope": "api", + "anchor": "timerspromisesscheduleryield", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:timers" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:timers" + }, + "anchorSource": "exact" + }, + { + "id": "timers:e262cd32400a", + "chapter": "timers", + "kind": "class", + "name": "Immediate", + "signature": "Class: `Immediate`", + "label": "Immediate", + "apiSymbol": "Immediate", + "depth": 1, + "scope": "api", + "anchor": "class-immediate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:timers" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:timers" + }, + "anchorSource": "exact" + }, + { + "id": "timers:b96de8b1fa63", + "chapter": "timers", + "kind": "method", + "name": "hasRef", + "signature": "`immediate.hasRef()`", + "label": "immediate.hasRef()", + "apiSymbol": "immediate.hasRef", + "depth": 2, + "scope": "api", + "anchor": "immediatehasref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:immediate.hasRef", + "tests": [ + "tests/corpus/1804-timers-module.ts", + "tests/corpus/1805-timer-callback-args.ts", + "tests/corpus/2093-timers-promises.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:timers" + }, + "anchorSource": "exact" + }, + { + "id": "timers:11a0cd92e422", + "chapter": "timers", + "kind": "method", + "name": "ref", + "signature": "`immediate.ref()`", + "label": "immediate.ref()", + "apiSymbol": "immediate.ref", + "depth": 2, + "scope": "api", + "anchor": "immediateref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:immediate.ref", + "tests": [ + "tests/corpus/1804-timers-module.ts", + "tests/corpus/1805-timer-callback-args.ts", + "tests/corpus/2093-timers-promises.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:timers" + }, + "anchorSource": "exact" + }, + { + "id": "timers:7889f6e043df", + "chapter": "timers", + "kind": "method", + "name": "unref", + "signature": "`immediate.unref()`", + "label": "immediate.unref()", + "apiSymbol": "immediate.unref", + "depth": 2, + "scope": "api", + "anchor": "immediateunref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:immediate.unref", + "tests": [ + "tests/corpus/1804-timers-module.ts", + "tests/corpus/1805-timer-callback-args.ts", + "tests/corpus/2093-timers-promises.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:timers" + }, + "anchorSource": "exact" + }, + { + "id": "timers:98026b89a6ec", + "chapter": "timers", + "kind": "method", + "name": "[Symbol.dispose]", + "signature": "`immediate[Symbol.dispose]()`", + "label": "immediate[Symbol.dispose]()", + "apiSymbol": "immediate", + "depth": 2, + "scope": "api", + "anchor": "immediatesymboldispose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:timers" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:timers" + }, + "anchorSource": "exact" + }, + { + "id": "timers:8d90d2aa2fa0", + "chapter": "timers", + "kind": "class", + "name": "Timeout", + "signature": "Class: `Timeout`", + "label": "Timeout", + "apiSymbol": "Timeout", + "depth": 1, + "scope": "api", + "anchor": "class-timeout", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:timers" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:timers" + }, + "anchorSource": "exact" + }, + { + "id": "timers:851aab2abdf5", + "chapter": "timers", + "kind": "method", + "name": "close", + "signature": "`timeout.close()`", + "label": "timeout.close()", + "apiSymbol": "timeout.close", + "depth": 2, + "scope": "api", + "anchor": "timeoutclose", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use [`clearTimeout()`][] instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:timers" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:timers" + }, + "anchorSource": "exact" + }, + { + "id": "timers:c95897e1f55e", + "chapter": "timers", + "kind": "method", + "name": "hasRef", + "signature": "`timeout.hasRef()`", + "label": "timeout.hasRef()", + "apiSymbol": "timeout.hasRef", + "depth": 2, + "scope": "api", + "anchor": "timeouthasref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:timeout.hasRef", + "tests": [ + "tests/corpus/1804-timers-module.ts", + "tests/corpus/1805-timer-callback-args.ts", + "tests/corpus/2093-timers-promises.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:timers" + }, + "anchorSource": "exact" + }, + { + "id": "timers:cd89c647dd00", + "chapter": "timers", + "kind": "method", + "name": "ref", + "signature": "`timeout.ref()`", + "label": "timeout.ref()", + "apiSymbol": "timeout.ref", + "depth": 2, + "scope": "api", + "anchor": "timeoutref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:timeout.ref", + "tests": [ + "tests/corpus/1804-timers-module.ts", + "tests/corpus/1805-timer-callback-args.ts", + "tests/corpus/2093-timers-promises.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:timers" + }, + "anchorSource": "exact" + }, + { + "id": "timers:a8aedc320629", + "chapter": "timers", + "kind": "method", + "name": "refresh", + "signature": "`timeout.refresh()`", + "label": "timeout.refresh()", + "apiSymbol": "timeout.refresh", + "depth": 2, + "scope": "api", + "anchor": "timeoutrefresh", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:timeout.refresh", + "tests": [ + "tests/corpus/1804-timers-module.ts", + "tests/corpus/1805-timer-callback-args.ts", + "tests/corpus/2093-timers-promises.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:timers" + }, + "anchorSource": "exact" + }, + { + "id": "timers:4c972c043b3a", + "chapter": "timers", + "kind": "method", + "name": "unref", + "signature": "`timeout.unref()`", + "label": "timeout.unref()", + "apiSymbol": "timeout.unref", + "depth": 2, + "scope": "api", + "anchor": "timeoutunref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:timeout.unref", + "tests": [ + "tests/corpus/1804-timers-module.ts", + "tests/corpus/1805-timer-callback-args.ts", + "tests/corpus/2093-timers-promises.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:timers" + }, + "anchorSource": "exact" + }, + { + "id": "timers:dd4d1bd2f480", + "chapter": "timers", + "kind": "method", + "name": "[Symbol.toPrimitive]", + "signature": "`timeout[Symbol.toPrimitive]()`", + "label": "timeout[Symbol.toPrimitive]()", + "apiSymbol": "timeout", + "depth": 2, + "scope": "api", + "anchor": "timeoutsymboltoprimitive", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:timeout", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:timers" + }, + "anchorSource": "exact" + }, + { + "id": "timers:a964218d2ba9", + "chapter": "timers", + "kind": "method", + "name": "[Symbol.dispose]", + "signature": "`timeout[Symbol.dispose]()`", + "label": "timeout[Symbol.dispose]()", + "apiSymbol": "timeout", + "depth": 2, + "scope": "api", + "anchor": "timeoutsymboldispose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:timeout", + "tests": [ + "tests/corpus/1780-http-res-surface.ts", + "tests/corpus/2672-http-request-response-callback.ts", + "tests/corpus/2689-http-server-timeout-properties.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:timers" + }, + "anchorSource": "exact" + }, + { + "id": "tls:4210301a0478", + "chapter": "tls", + "kind": "module", + "name": "tls_(ssl)", + "signature": "TLS (SSL)", + "label": "TLS (SSL)", + "apiSymbol": "tls_", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/corpus/2331-tls-server-options-typed.ts", + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2557-tls-ca-store.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "tls:f3c4c5099175", + "chapter": "tls", + "kind": "module", + "name": "determining_if_crypto_support_is_unavailable", + "signature": "Determining if crypto support is unavailable", + "label": "Determining if crypto support is unavailable", + "apiSymbol": "determining_if_crypto_support_is_unavailable", + "depth": 1, + "scope": "documentation", + "anchor": "determining-if-crypto-support-is-unavailable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "tls:e271a295b8d4", + "chapter": "tls", + "kind": "module", + "name": "tls/ssl_concepts", + "signature": "TLS/SSL concepts", + "label": "TLS/SSL concepts", + "apiSymbol": "tls/ssl_concepts", + "depth": 1, + "scope": "documentation", + "anchor": "tlsssl-concepts", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "tls:fe20054b7ff5", + "chapter": "tls", + "kind": "module", + "name": "session_resumption", + "signature": "Session resumption", + "label": "Session resumption", + "apiSymbol": "session_resumption", + "depth": 2, + "scope": "documentation", + "anchor": "session-resumption", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "tls:135324af8ba6", + "chapter": "tls", + "kind": "module", + "name": "session_identifiers", + "signature": "Session identifiers", + "label": "Session identifiers", + "apiSymbol": "session_identifiers", + "depth": 3, + "scope": "documentation", + "anchor": "session-identifiers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "tls:45d703259773", + "chapter": "tls", + "kind": "module", + "name": "session_tickets", + "signature": "Session tickets", + "label": "Session tickets", + "apiSymbol": "session_tickets", + "depth": 3, + "scope": "documentation", + "anchor": "session-tickets", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "tls:5abf2c47a741", + "chapter": "tls", + "kind": "misc", + "name": "Perfect forward secrecy", + "signature": "Perfect forward secrecy", + "label": "Perfect forward secrecy", + "apiSymbol": "Perfect forward secrecy", + "depth": 2, + "scope": "documentation", + "anchor": "perfect-forward-secrecy", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "tls:063fea0c2902", + "chapter": "tls", + "kind": "misc", + "name": "ALPN and SNI", + "signature": "ALPN and SNI", + "label": "ALPN and SNI", + "apiSymbol": "ALPN and SNI", + "depth": 2, + "scope": "documentation", + "anchor": "alpn-and-sni", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "tls:f1fac44eba2a", + "chapter": "tls", + "kind": "misc", + "name": "Pre-shared keys", + "signature": "Pre-shared keys", + "label": "Pre-shared keys", + "apiSymbol": "Pre-shared keys", + "depth": 2, + "scope": "documentation", + "anchor": "pre-shared-keys", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "tls:8ee31e740726", + "chapter": "tls", + "kind": "misc", + "name": "Client-initiated renegotiation attack mitigation", + "signature": "Client-initiated renegotiation attack mitigation", + "label": "Client-initiated renegotiation attack mitigation", + "apiSymbol": "Client-initiated renegotiation attack mitigation", + "depth": 2, + "scope": "documentation", + "anchor": "client-initiated-renegotiation-attack-mitigation", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "tls:e728f45aeba6", + "chapter": "tls", + "kind": "module", + "name": "modifying_the_default_tls_cipher_suite", + "signature": "Modifying the default TLS cipher suite", + "label": "Modifying the default TLS cipher suite", + "apiSymbol": "modifying_the_default_tls_cipher_suite", + "depth": 1, + "scope": "documentation", + "anchor": "modifying-the-default-tls-cipher-suite", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "tls:eceda332bfbf", + "chapter": "tls", + "kind": "module", + "name": "openssl_security_level", + "signature": "OpenSSL security level", + "label": "OpenSSL security level", + "apiSymbol": "openssl_security_level", + "depth": 1, + "scope": "documentation", + "anchor": "openssl-security-level", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "tls:79f927b92f6c", + "chapter": "tls", + "kind": "module", + "name": "setting_security_levels", + "signature": "Setting security levels", + "label": "Setting security levels", + "apiSymbol": "setting_security_levels", + "depth": 2, + "scope": "documentation", + "anchor": "setting-security-levels", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "tls:d4473afb34fc", + "chapter": "tls", + "kind": "module", + "name": "using_[`--tls-cipher-list`][]", + "signature": "Using [`--tls-cipher-list`][]", + "label": "Using [--tls-cipher-list][]", + "apiSymbol": "--tls-cipher-list", + "depth": 2, + "scope": "configuration", + "anchor": "using---tls-cipher-list", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "configuration" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "configuration" + }, + "anchorSource": "exact" + }, + { + "id": "tls:bf9623598975", + "chapter": "tls", + "kind": "module", + "name": "x509_certificate_error_codes", + "signature": "X509 certificate error codes", + "label": "X509 certificate error codes", + "apiSymbol": "x509_certificate_error_codes", + "depth": 1, + "scope": "documentation", + "anchor": "x509-certificate-error-codes", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "tls:c3ad0419b399", + "chapter": "tls", + "kind": "class", + "name": "tls.Server", + "signature": "Class: `tls.Server`", + "label": "tls.Server", + "apiSymbol": "tls.Server", + "depth": 1, + "scope": "api", + "anchor": "class-tlsserver", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tls" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tls" + }, + "anchorSource": "exact" + }, + { + "id": "tls:98045aabf6b9", + "chapter": "tls", + "kind": "method", + "name": "addContext", + "signature": "`server.addContext(hostname, context)`", + "label": "server.addContext(hostname, context)", + "apiSymbol": "server.addContext", + "depth": 2, + "scope": "api", + "anchor": "serveraddcontexthostname-context", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tls" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tls" + }, + "anchorSource": "exact" + }, + { + "id": "tls:d06318d25de5", + "chapter": "tls", + "kind": "method", + "name": "address", + "signature": "`server.address()`", + "label": "server.address()", + "apiSymbol": "server.address", + "depth": 2, + "scope": "api", + "anchor": "serveraddress", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:server.address", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tls" + }, + "anchorSource": "exact" + }, + { + "id": "tls:6a375b08e1d0", + "chapter": "tls", + "kind": "method", + "name": "close", + "signature": "`server.close([callback])`", + "label": "server.close([callback])", + "apiSymbol": "server.close", + "depth": 2, + "scope": "api", + "anchor": "serverclosecallback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:server.close", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tls" + }, + "anchorSource": "exact" + }, + { + "id": "tls:eaada573edd5", + "chapter": "tls", + "kind": "method", + "name": "getTicketKeys", + "signature": "`server.getTicketKeys()`", + "label": "server.getTicketKeys()", + "apiSymbol": "server.getTicketKeys", + "depth": 2, + "scope": "api", + "anchor": "servergetticketkeys", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tls" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tls" + }, + "anchorSource": "exact" + }, + { + "id": "tls:8de42e69fb0c", + "chapter": "tls", + "kind": "method", + "name": "listen", + "signature": "`server.listen()`", + "label": "server.listen()", + "apiSymbol": "server.listen", + "depth": 2, + "scope": "api", + "anchor": "serverlisten", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:server.listen", + "tests": [ + "tests/corpus/2500-net-autosel-timeout.ts", + "tests/corpus/2596-net-arg-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tls" + }, + "anchorSource": "exact" + }, + { + "id": "tls:b1402867ab7e", + "chapter": "tls", + "kind": "method", + "name": "setSecureContext", + "signature": "`server.setSecureContext(options)`", + "label": "server.setSecureContext(options)", + "apiSymbol": "server.setSecureContext", + "depth": 2, + "scope": "api", + "anchor": "serversetsecurecontextoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tls" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tls" + }, + "anchorSource": "exact" + }, + { + "id": "tls:aa2998d8b7fd", + "chapter": "tls", + "kind": "method", + "name": "setTicketKeys", + "signature": "`server.setTicketKeys(keys)`", + "label": "server.setTicketKeys(keys)", + "apiSymbol": "server.setTicketKeys", + "depth": 2, + "scope": "api", + "anchor": "serversetticketkeyskeys", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tls" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tls" + }, + "anchorSource": "exact" + }, + { + "id": "tls:16895bc02291", + "chapter": "tls", + "kind": "event", + "name": "connection", + "signature": "Event: `'connection'`", + "label": "'connection'", + "apiSymbol": "'connection'", + "depth": 2, + "scope": "api", + "anchor": "event-connection", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tls" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tls" + }, + "anchorSource": "exact" + }, + { + "id": "tls:d561de69d475", + "chapter": "tls", + "kind": "event", + "name": "keylog", + "signature": "Event: `'keylog'`", + "label": "'keylog'", + "apiSymbol": "'keylog'", + "depth": 2, + "scope": "api", + "anchor": "event-keylog", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tls" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tls" + }, + "anchorSource": "exact" + }, + { + "id": "tls:ab52864eff41", + "chapter": "tls", + "kind": "event", + "name": "newSession", + "signature": "Event: `'newSession'`", + "label": "'newSession'", + "apiSymbol": "'newSession'", + "depth": 2, + "scope": "api", + "anchor": "event-newsession", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tls" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tls" + }, + "anchorSource": "exact" + }, + { + "id": "tls:b2eb1b1d994c", + "chapter": "tls", + "kind": "event", + "name": "OCSPRequest", + "signature": "Event: `'OCSPRequest'`", + "label": "'OCSPRequest'", + "apiSymbol": "'OCSPRequest'", + "depth": 2, + "scope": "api", + "anchor": "event-ocsprequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tls" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tls" + }, + "anchorSource": "exact" + }, + { + "id": "tls:020344a5d9c8", + "chapter": "tls", + "kind": "event", + "name": "resumeSession", + "signature": "Event: `'resumeSession'`", + "label": "'resumeSession'", + "apiSymbol": "'resumeSession'", + "depth": 2, + "scope": "api", + "anchor": "event-resumesession", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tls" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tls" + }, + "anchorSource": "exact" + }, + { + "id": "tls:dcb1e0fd7134", + "chapter": "tls", + "kind": "event", + "name": "secureConnection", + "signature": "Event: `'secureConnection'`", + "label": "'secureConnection'", + "apiSymbol": "'secureConnection'", + "depth": 2, + "scope": "api", + "anchor": "event-secureconnection", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tls" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tls" + }, + "anchorSource": "exact" + }, + { + "id": "tls:6ced90286e05", + "chapter": "tls", + "kind": "event", + "name": "tlsClientError", + "signature": "Event: `'tlsClientError'`", + "label": "'tlsClientError'", + "apiSymbol": "'tlsClientError'", + "depth": 2, + "scope": "api", + "anchor": "event-tlsclienterror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tls" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tls" + }, + "anchorSource": "exact" + }, + { + "id": "tls:a7f3e47a8238", + "chapter": "tls", + "kind": "class", + "name": "tls.TLSSocket", + "signature": "Class: `tls.TLSSocket`", + "label": "tls.TLSSocket", + "apiSymbol": "tls.TLSSocket", + "depth": 1, + "scope": "api", + "anchor": "class-tlstlssocket", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tls" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:tls.TLSSocket" + }, + "anchorSource": "exact" + }, + { + "id": "tls:85e3ff2688c8", + "chapter": "tls", + "kind": "method", + "name": "address", + "signature": "`tlsSocket.address()`", + "label": "tlsSocket.address()", + "apiSymbol": "tlsSocket.address", + "depth": 2, + "scope": "api", + "anchor": "tlssocketaddress", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tls" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tls" + }, + "anchorSource": "exact" + }, + { + "id": "tls:0b5306646668", + "chapter": "tls", + "kind": "method", + "name": "disableRenegotiation", + "signature": "`tlsSocket.disableRenegotiation()`", + "label": "tlsSocket.disableRenegotiation()", + "apiSymbol": "tlsSocket.disableRenegotiation", + "depth": 2, + "scope": "api", + "anchor": "tlssocketdisablerenegotiation", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tls" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tls" + }, + "anchorSource": "exact" + }, + { + "id": "tls:e2e80f42b8af", + "chapter": "tls", + "kind": "method", + "name": "enableTrace", + "signature": "`tlsSocket.enableTrace()`", + "label": "tlsSocket.enableTrace()", + "apiSymbol": "tlsSocket.enableTrace", + "depth": 2, + "scope": "api", + "anchor": "tlssocketenabletrace", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tls" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tls" + }, + "anchorSource": "exact" + }, + { + "id": "tls:99c0aa73bd31", + "chapter": "tls", + "kind": "method", + "name": "exportKeyingMaterial", + "signature": "`tlsSocket.exportKeyingMaterial(length, label[, context])`", + "label": "tlsSocket.exportKeyingMaterial(length, label[, context])", + "apiSymbol": "tlsSocket.exportKeyingMaterial", + "depth": 2, + "scope": "api", + "anchor": "tlssocketexportkeyingmateriallength-label-context", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tls" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tls" + }, + "anchorSource": "exact" + }, + { + "id": "tls:7a6f0877f28f", + "chapter": "tls", + "kind": "method", + "name": "getCertificate", + "signature": "`tlsSocket.getCertificate()`", + "label": "tlsSocket.getCertificate()", + "apiSymbol": "tlsSocket.getCertificate", + "depth": 2, + "scope": "api", + "anchor": "tlssocketgetcertificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tls" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tls" + }, + "anchorSource": "exact" + }, + { + "id": "tls:eae1cb4d445c", + "chapter": "tls", + "kind": "method", + "name": "getCipher", + "signature": "`tlsSocket.getCipher()`", + "label": "tlsSocket.getCipher()", + "apiSymbol": "tlsSocket.getCipher", + "depth": 2, + "scope": "api", + "anchor": "tlssocketgetcipher", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tls" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tls" + }, + "anchorSource": "exact" + }, + { + "id": "tls:72bc7859b7aa", + "chapter": "tls", + "kind": "method", + "name": "getEphemeralKeyInfo", + "signature": "`tlsSocket.getEphemeralKeyInfo()`", + "label": "tlsSocket.getEphemeralKeyInfo()", + "apiSymbol": "tlsSocket.getEphemeralKeyInfo", + "depth": 2, + "scope": "api", + "anchor": "tlssocketgetephemeralkeyinfo", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tls" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tls" + }, + "anchorSource": "exact" + }, + { + "id": "tls:117f47e191c2", + "chapter": "tls", + "kind": "method", + "name": "getFinished", + "signature": "`tlsSocket.getFinished()`", + "label": "tlsSocket.getFinished()", + "apiSymbol": "tlsSocket.getFinished", + "depth": 2, + "scope": "api", + "anchor": "tlssocketgetfinished", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tls" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tls" + }, + "anchorSource": "exact" + }, + { + "id": "tls:eed448ff16bd", + "chapter": "tls", + "kind": "method", + "name": "getPeerCertificate", + "signature": "`tlsSocket.getPeerCertificate([detailed])`", + "label": "tlsSocket.getPeerCertificate([detailed])", + "apiSymbol": "tlsSocket.getPeerCertificate", + "depth": 2, + "scope": "api", + "anchor": "tlssocketgetpeercertificatedetailed", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tls" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tls" + }, + "anchorSource": "exact" + }, + { + "id": "tls:9cf5595e514f", + "chapter": "tls", + "kind": "module", + "name": "certificate_object", + "signature": "Certificate object", + "label": "Certificate object", + "apiSymbol": "certificate_object", + "depth": 3, + "scope": "documentation", + "anchor": "certificate-object", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "tls:d9f63506b1fb", + "chapter": "tls", + "kind": "method", + "name": "getPeerFinished", + "signature": "`tlsSocket.getPeerFinished()`", + "label": "tlsSocket.getPeerFinished()", + "apiSymbol": "tlsSocket.getPeerFinished", + "depth": 2, + "scope": "api", + "anchor": "tlssocketgetpeerfinished", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tls" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tls" + }, + "anchorSource": "exact" + }, + { + "id": "tls:d91f92458f65", + "chapter": "tls", + "kind": "method", + "name": "getPeerX509Certificate", + "signature": "`tlsSocket.getPeerX509Certificate()`", + "label": "tlsSocket.getPeerX509Certificate()", + "apiSymbol": "tlsSocket.getPeerX509Certificate", + "depth": 2, + "scope": "api", + "anchor": "tlssocketgetpeerx509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tls" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tls" + }, + "anchorSource": "exact" + }, + { + "id": "tls:26a4baaa1dd4", + "chapter": "tls", + "kind": "method", + "name": "getProtocol", + "signature": "`tlsSocket.getProtocol()`", + "label": "tlsSocket.getProtocol()", + "apiSymbol": "tlsSocket.getProtocol", + "depth": 2, + "scope": "api", + "anchor": "tlssocketgetprotocol", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tls" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tls" + }, + "anchorSource": "exact" + }, + { + "id": "tls:2d68e799fd57", + "chapter": "tls", + "kind": "method", + "name": "getSession", + "signature": "`tlsSocket.getSession()`", + "label": "tlsSocket.getSession()", + "apiSymbol": "tlsSocket.getSession", + "depth": 2, + "scope": "api", + "anchor": "tlssocketgetsession", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tls" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tls" + }, + "anchorSource": "exact" + }, + { + "id": "tls:37b4ae5bd331", + "chapter": "tls", + "kind": "method", + "name": "getSharedSigalgs", + "signature": "`tlsSocket.getSharedSigalgs()`", + "label": "tlsSocket.getSharedSigalgs()", + "apiSymbol": "tlsSocket.getSharedSigalgs", + "depth": 2, + "scope": "api", + "anchor": "tlssocketgetsharedsigalgs", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tls" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tls" + }, + "anchorSource": "exact" + }, + { + "id": "tls:ce1db7bb3d08", + "chapter": "tls", + "kind": "method", + "name": "getTLSTicket", + "signature": "`tlsSocket.getTLSTicket()`", + "label": "tlsSocket.getTLSTicket()", + "apiSymbol": "tlsSocket.getTLSTicket", + "depth": 2, + "scope": "api", + "anchor": "tlssocketgettlsticket", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tls" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tls" + }, + "anchorSource": "exact" + }, + { + "id": "tls:fbeede8315de", + "chapter": "tls", + "kind": "method", + "name": "getX509Certificate", + "signature": "`tlsSocket.getX509Certificate()`", + "label": "tlsSocket.getX509Certificate()", + "apiSymbol": "tlsSocket.getX509Certificate", + "depth": 2, + "scope": "api", + "anchor": "tlssocketgetx509certificate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tls" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tls" + }, + "anchorSource": "exact" + }, + { + "id": "tls:e2bfee0b6367", + "chapter": "tls", + "kind": "method", + "name": "isSessionReused", + "signature": "`tlsSocket.isSessionReused()`", + "label": "tlsSocket.isSessionReused()", + "apiSymbol": "tlsSocket.isSessionReused", + "depth": 2, + "scope": "api", + "anchor": "tlssocketissessionreused", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tls" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tls" + }, + "anchorSource": "exact" + }, + { + "id": "tls:302bbec29984", + "chapter": "tls", + "kind": "method", + "name": "renegotiate", + "signature": "`tlsSocket.renegotiate(options, callback)`", + "label": "tlsSocket.renegotiate(options, callback)", + "apiSymbol": "tlsSocket.renegotiate", + "depth": 2, + "scope": "api", + "anchor": "tlssocketrenegotiateoptions-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tls" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tls" + }, + "anchorSource": "exact" + }, + { + "id": "tls:f6a9c9dece84", + "chapter": "tls", + "kind": "method", + "name": "setKeyCert", + "signature": "`tlsSocket.setKeyCert(context)`", + "label": "tlsSocket.setKeyCert(context)", + "apiSymbol": "tlsSocket.setKeyCert", + "depth": 2, + "scope": "api", + "anchor": "tlssocketsetkeycertcontext", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tls" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tls" + }, + "anchorSource": "exact" + }, + { + "id": "tls:50b330710f9b", + "chapter": "tls", + "kind": "method", + "name": "setMaxSendFragment", + "signature": "`tlsSocket.setMaxSendFragment(size)`", + "label": "tlsSocket.setMaxSendFragment(size)", + "apiSymbol": "tlsSocket.setMaxSendFragment", + "depth": 2, + "scope": "api", + "anchor": "tlssocketsetmaxsendfragmentsize", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tls" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tls" + }, + "anchorSource": "exact" + }, + { + "id": "tls:f2e0cdec5975", + "chapter": "tls", + "kind": "section", + "name": "authorizationError", + "signature": "`tlsSocket.authorizationError`", + "label": "tlsSocket.authorizationError", + "apiSymbol": "tlsSocket.authorizationError", + "depth": 2, + "scope": "api", + "anchor": "tlssocketauthorizationerror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tls" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tls" + }, + "anchorSource": "exact" + }, + { + "id": "tls:c52e5a0dfbcf", + "chapter": "tls", + "kind": "boolean", + "name": "Type", + "signature": "`authorized` Type: {boolean}", + "label": "authorized", + "apiSymbol": "authorized", + "depth": 2, + "scope": "api", + "anchor": "class-tlstlssocket", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tls" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tls" + }, + "anchorSource": "ancestor" + }, + { + "id": "tls:a45e792111f0", + "chapter": "tls", + "kind": "section", + "name": "encrypted", + "signature": "`tlsSocket.encrypted`", + "label": "tlsSocket.encrypted", + "apiSymbol": "tlsSocket.encrypted", + "depth": 2, + "scope": "api", + "anchor": "tlssocketencrypted", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tls" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tls" + }, + "anchorSource": "exact" + }, + { + "id": "tls:60dcc1886fa1", + "chapter": "tls", + "kind": "string", + "name": "Type", + "signature": "`localAddress` Type: {string}", + "label": "localAddress", + "apiSymbol": "localAddress", + "depth": 2, + "scope": "api", + "anchor": "class-tlstlssocket", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tls" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tls" + }, + "anchorSource": "ancestor" + }, + { + "id": "tls:787e156cfa3b", + "chapter": "tls", + "kind": "integer", + "name": "Type", + "signature": "`localPort` Type: {integer}", + "label": "localPort", + "apiSymbol": "localPort", + "depth": 2, + "scope": "api", + "anchor": "class-tlstlssocket", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tls" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tls" + }, + "anchorSource": "ancestor" + }, + { + "id": "tls:66e443aeac7c", + "chapter": "tls", + "kind": "string", + "name": "Type", + "signature": "`remoteAddress` Type: {string}", + "label": "remoteAddress", + "apiSymbol": "remoteAddress", + "depth": 2, + "scope": "api", + "anchor": "class-tlstlssocket", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tls" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tls" + }, + "anchorSource": "ancestor" + }, + { + "id": "tls:1f90bb780303", + "chapter": "tls", + "kind": "string", + "name": "Type", + "signature": "`remoteFamily` Type: {string}", + "label": "remoteFamily", + "apiSymbol": "remoteFamily", + "depth": 2, + "scope": "api", + "anchor": "class-tlstlssocket", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tls" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tls" + }, + "anchorSource": "ancestor" + }, + { + "id": "tls:a3755ad291a6", + "chapter": "tls", + "kind": "integer", + "name": "Type", + "signature": "`remotePort` Type: {integer}", + "label": "remotePort", + "apiSymbol": "remotePort", + "depth": 2, + "scope": "api", + "anchor": "class-tlstlssocket", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tls" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tls" + }, + "anchorSource": "ancestor" + }, + { + "id": "tls:c5970763c4f8", + "chapter": "tls", + "kind": "event", + "name": "keylog", + "signature": "Event: `'keylog'`", + "label": "'keylog'", + "apiSymbol": "'keylog'", + "depth": 2, + "scope": "api", + "anchor": "event-keylog_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tls" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tls" + }, + "anchorSource": "exact" + }, + { + "id": "tls:a8befc33127e", + "chapter": "tls", + "kind": "event", + "name": "OCSPResponse", + "signature": "Event: `'OCSPResponse'`", + "label": "'OCSPResponse'", + "apiSymbol": "'OCSPResponse'", + "depth": 2, + "scope": "api", + "anchor": "event-ocspresponse", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tls" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tls" + }, + "anchorSource": "exact" + }, + { + "id": "tls:446a052576c2", + "chapter": "tls", + "kind": "event", + "name": "secure", + "signature": "Event: `'secure'`", + "label": "'secure'", + "apiSymbol": "'secure'", + "depth": 2, + "scope": "api", + "anchor": "event-secure", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tls" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tls" + }, + "anchorSource": "exact" + }, + { + "id": "tls:3efd8f841639", + "chapter": "tls", + "kind": "event", + "name": "secureConnect", + "signature": "Event: `'secureConnect'`", + "label": "'secureConnect'", + "apiSymbol": "'secureConnect'", + "depth": 2, + "scope": "api", + "anchor": "event-secureconnect", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tls" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tls" + }, + "anchorSource": "exact" + }, + { + "id": "tls:1954a7112a82", + "chapter": "tls", + "kind": "event", + "name": "session", + "signature": "Event: `'session'`", + "label": "'session'", + "apiSymbol": "'session'", + "depth": 2, + "scope": "api", + "anchor": "event-session", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tls" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tls" + }, + "anchorSource": "exact" + }, + { + "id": "tls:d2efd8bfb28c", + "chapter": "tls", + "kind": "method", + "name": "checkServerIdentity", + "signature": "`tls.checkServerIdentity(hostname, cert)`", + "label": "tls.checkServerIdentity(hostname, cert)", + "apiSymbol": "tls.checkServerIdentity", + "depth": 1, + "scope": "api", + "anchor": "tlscheckserveridentityhostname-cert", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tls" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tls" + }, + "anchorSource": "exact" + }, + { + "id": "tls:702d2d8bf862", + "chapter": "tls", + "kind": "method", + "name": "connect", + "signature": "`tls.connect(options[, callback])`", + "label": "tls.connect(options[, callback])", + "apiSymbol": "tls.connect", + "depth": 1, + "scope": "api", + "anchor": "tlsconnectoptions-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.tls.connect" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:tls.connect" + }, + "anchorSource": "exact" + }, + { + "id": "tls:34b3563433b2", + "chapter": "tls", + "kind": "method", + "name": "connect", + "signature": "`tls.connect(path[, options][, callback])`", + "label": "tls.connect(path[, options][, callback])", + "apiSymbol": "tls.connect", + "depth": 1, + "scope": "api", + "anchor": "tlsconnectpath-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.tls.connect" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:tls.connect" + }, + "anchorSource": "exact" + }, + { + "id": "tls:afd15ddeeaeb", + "chapter": "tls", + "kind": "method", + "name": "connect", + "signature": "`tls.connect(port[, host][, options][, callback])`", + "label": "tls.connect(port[, host][, options][, callback])", + "apiSymbol": "tls.connect", + "depth": 1, + "scope": "api", + "anchor": "tlsconnectport-host-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.tls.connect" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:tls.connect" + }, + "anchorSource": "exact" + }, + { + "id": "tls:26fef81aa33d", + "chapter": "tls", + "kind": "method", + "name": "createSecureContext", + "signature": "`tls.createSecureContext([options])`", + "label": "tls.createSecureContext([options])", + "apiSymbol": "tls.createSecureContext", + "depth": 1, + "scope": "api", + "anchor": "tlscreatesecurecontextoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.tls.createSecureContext" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:tls.createSecureContext" + }, + "anchorSource": "exact" + }, + { + "id": "tls:c675d0350d38", + "chapter": "tls", + "kind": "method", + "name": "createServer", + "signature": "`tls.createServer([options][, secureConnectionListener])`", + "label": "tls.createServer([options][, secureConnectionListener])", + "apiSymbol": "tls.createServer", + "depth": 1, + "scope": "api", + "anchor": "tlscreateserveroptions-secureconnectionlistener", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tls" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:tls.createServer" + }, + "anchorSource": "exact" + }, + { + "id": "tls:8bd344e3d670", + "chapter": "tls", + "kind": "method", + "name": "setDefaultCACertificates", + "signature": "`tls.setDefaultCACertificates(certs)`", + "label": "tls.setDefaultCACertificates(certs)", + "apiSymbol": "tls.setDefaultCACertificates", + "depth": 1, + "scope": "api", + "anchor": "tlssetdefaultcacertificatescerts", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.tls.setDefaultCACertificates", + "tests": [ + "tests/corpus/2331-tls-server-options-typed.ts", + "tests/corpus/2557-tls-ca-store.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tls" + }, + "anchorSource": "exact" + }, + { + "id": "tls:b4b36e5c5dc5", + "chapter": "tls", + "kind": "method", + "name": "getCACertificates", + "signature": "`tls.getCACertificates([type])`", + "label": "tls.getCACertificates([type])", + "apiSymbol": "tls.getCACertificates", + "depth": 1, + "scope": "api", + "anchor": "tlsgetcacertificatestype", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.tls.getCACertificates", + "tests": [ + "tests/corpus/2331-tls-server-options-typed.ts", + "tests/corpus/2557-tls-ca-store.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tls" + }, + "anchorSource": "exact" + }, + { + "id": "tls:4939f0b62ade", + "chapter": "tls", + "kind": "method", + "name": "getCiphers", + "signature": "`tls.getCiphers()`", + "label": "tls.getCiphers()", + "apiSymbol": "tls.getCiphers", + "depth": 1, + "scope": "api", + "anchor": "tlsgetciphers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tls" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tls" + }, + "anchorSource": "exact" + }, + { + "id": "tls:df163bf0e931", + "chapter": "tls", + "kind": "string\\[]", + "name": "Type", + "signature": "`rootCertificates` Type: {string\\[]}", + "label": "rootCertificates", + "apiSymbol": "rootCertificates", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.tls.rootCertificates", + "tests": [ + "tests/corpus/2331-tls-server-options-typed.ts", + "tests/corpus/2557-tls-ca-store.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:tls.rootCertificates", + "tests": [ + "tests/fixtures/fetch/cases/island-http/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "tls:c13858461177", + "chapter": "tls", + "kind": "section", + "name": "DEFAULT_ECDH_CURVE", + "signature": "`tls.DEFAULT_ECDH_CURVE`", + "label": "tls.DEFAULT_ECDH_CURVE", + "apiSymbol": "tls.DEFAULT_ECDH_CURVE", + "depth": 1, + "scope": "api", + "anchor": "tlsdefault_ecdh_curve", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tls" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tls" + }, + "anchorSource": "exact" + }, + { + "id": "tls:413eb502cb29", + "chapter": "tls", + "kind": "string", + "name": "Type", + "signature": "`DEFAULT_MAX_VERSION` Type: {string} The default value of the `maxVersion` option of [`tls.createSecureContext()`][]. It can be assigned any of the supported TLS protocol versions, `'TLSv1.3'`, `'TLSv1.2'`, `'TLSv1.1'`, or `'TLSv1'`. **Default:** `'TLSv1.3'`, unless changed using CLI options. Using `--tls-max-v1.2` sets the default to `'TLSv1.2'`. Using `--tls-max-v1.3` sets the default to `'TLSv1.3'`. If multiple of the options are provided, the highest maximum is used.", + "label": "DEFAULT_MAX_VERSION", + "apiSymbol": "DEFAULT_MAX_VERSION", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tls" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tls" + }, + "anchorSource": "chapter" + }, + { + "id": "tls:0bbe9d7cd1b2", + "chapter": "tls", + "kind": "string", + "name": "Type", + "signature": "`DEFAULT_MIN_VERSION` Type: {string} The default value of the `minVersion` option of [`tls.createSecureContext()`][]. It can be assigned any of the supported TLS protocol versions, `'TLSv1.3'`, `'TLSv1.2'`, `'TLSv1.1'`, or `'TLSv1'`. Versions before TLSv1.2 may require downgrading the [OpenSSL Security Level][]. **Default:** `'TLSv1.2'`, unless changed using CLI options. Using `--tls-min-v1.0` sets the default to `'TLSv1'`. Using `--tls-min-v1.1` sets the default to `'TLSv1.1'`. Using `--tls-min-v1.3` sets the default to `'TLSv1.3'`. If multiple of the options are provided, the lowest minimum is used.", + "label": "DEFAULT_MIN_VERSION", + "apiSymbol": "DEFAULT_MIN_VERSION", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tls" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tls" + }, + "anchorSource": "chapter" + }, + { + "id": "tls:e8919206b881", + "chapter": "tls", + "kind": "string", + "name": "Type", + "signature": "`DEFAULT_CIPHERS` Type: {string} The default value of the `ciphers` option of [`tls.createSecureContext()`][]. It can be assigned any of the supported OpenSSL ciphers. Defaults to the content of `crypto.constants.defaultCoreCipherList`, unless changed using CLI options using `--tls-default-ciphers`.", + "label": "DEFAULT_CIPHERS", + "apiSymbol": "DEFAULT_CIPHERS", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tls" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tls" + }, + "anchorSource": "chapter" + }, + { + "id": "tracing:c9a14eca038f", + "chapter": "tracing", + "kind": "module", + "name": "trace_events", + "signature": "Trace events", + "label": "Trace events", + "apiSymbol": "trace_events", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "derived:descendants" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "derived:descendants" + }, + "anchorSource": "chapter" + }, + { + "id": "tracing:577c8490aded", + "chapter": "tracing", + "kind": "module", + "name": "the_`node:trace_events`_module", + "signature": "The `node:trace_events` module", + "label": "The node:trace_events module", + "apiSymbol": "node:trace_events", + "depth": 1, + "scope": "api", + "anchor": "the-nodetrace_events-module", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:tracing" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:tracing" + }, + "anchorSource": "exact" + }, + { + "id": "tracing:abd75c9e5853", + "chapter": "tracing", + "kind": "module", + "name": "`tracing`_object", + "signature": "`Tracing` object", + "label": "Tracing", + "apiSymbol": "Tracing", + "depth": 2, + "scope": "api", + "anchor": "tracing-object", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:tracing" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:tracing" + }, + "anchorSource": "exact" + }, + { + "id": "tracing:760510fab0f4", + "chapter": "tracing", + "kind": "method", + "name": "disable", + "signature": "`tracing.disable()`", + "label": "tracing.disable()", + "apiSymbol": "tracing.disable", + "depth": 3, + "scope": "api", + "anchor": "tracingdisable", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:tracing" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:tracing" + }, + "anchorSource": "exact" + }, + { + "id": "tracing:edc2bccabfc5", + "chapter": "tracing", + "kind": "method", + "name": "enable", + "signature": "`tracing.enable()`", + "label": "tracing.enable()", + "apiSymbol": "tracing.enable", + "depth": 3, + "scope": "api", + "anchor": "tracingenable", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:tracing" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:tracing" + }, + "anchorSource": "exact" + }, + { + "id": "tracing:3d7738623691", + "chapter": "tracing", + "kind": "string", + "name": "Type", + "signature": "`categories` Type: {string}", + "label": "categories", + "apiSymbol": "categories", + "depth": 3, + "scope": "api", + "anchor": "tracing-object", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:tracing" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:tracing" + }, + "anchorSource": "ancestor" + }, + { + "id": "tracing:8345f6c9bd8b", + "chapter": "tracing", + "kind": "boolean", + "name": "Type", + "signature": "`enabled` Type: {boolean} `true` only if the `Tracing` object has been enabled.", + "label": "enabled", + "apiSymbol": "enabled", + "depth": 3, + "scope": "api", + "anchor": "tracing-object", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:tracing" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:tracing" + }, + "anchorSource": "ancestor" + }, + { + "id": "tracing:41a0d16f3ace", + "chapter": "tracing", + "kind": "module", + "name": "collect_trace_events_data_by_inspector", + "signature": "Collect trace events data by inspector", + "label": "Collect trace events data by inspector", + "apiSymbol": "collect_trace_events_data_by_inspector", + "depth": 2, + "scope": "documentation", + "anchor": "collect-trace-events-data-by-inspector", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "tracing:bb6574cf59bf", + "chapter": "tracing", + "kind": "method", + "name": "createTracing", + "signature": "`trace_events.createTracing(options)`", + "label": "trace_events.createTracing(options)", + "apiSymbol": "trace_events.createTracing", + "depth": 2, + "scope": "api", + "anchor": "trace_eventscreatetracingoptions", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:tracing" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:tracing" + }, + "anchorSource": "exact" + }, + { + "id": "tracing:656f852d60b7", + "chapter": "tracing", + "kind": "method", + "name": "getEnabledCategories", + "signature": "`trace_events.getEnabledCategories()`", + "label": "trace_events.getEnabledCategories()", + "apiSymbol": "trace_events.getEnabledCategories", + "depth": 2, + "scope": "api", + "anchor": "trace_eventsgetenabledcategories", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-chapter-policy:tracing" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-chapter-policy:tracing" + }, + "anchorSource": "exact" + }, + { + "id": "tty:b0fff389dccc", + "chapter": "tty", + "kind": "module", + "name": "tty", + "signature": "TTY", + "label": "TTY", + "apiSymbol": "tty", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "derived:descendants" + }, + "dynamic": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "tty:369dcb137397", + "chapter": "tty", + "kind": "class", + "name": "tty.ReadStream", + "signature": "Class: `tty.ReadStream`", + "label": "tty.ReadStream", + "apiSymbol": "tty.ReadStream", + "depth": 1, + "scope": "api", + "anchor": "class-ttyreadstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tty" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:tty.ReadStream", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "tty:6cabcad8e8f5", + "chapter": "tty", + "kind": "method", + "name": "setRawMode", + "signature": "`readStream.setRawMode(mode)`", + "label": "readStream.setRawMode(mode)", + "apiSymbol": "readStream.setRawMode", + "depth": 2, + "scope": "api", + "anchor": "readstreamsetrawmodemode", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tty" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tty" + }, + "anchorSource": "exact" + }, + { + "id": "tty:a6a0c03c5c7b", + "chapter": "tty", + "kind": "section", + "name": "isRaw", + "signature": "`readStream.isRaw`", + "label": "readStream.isRaw", + "apiSymbol": "readStream.isRaw", + "depth": 2, + "scope": "api", + "anchor": "readstreamisraw", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tty" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tty" + }, + "anchorSource": "exact" + }, + { + "id": "tty:3bd71118068a", + "chapter": "tty", + "kind": "section", + "name": "isTTY", + "signature": "`readStream.isTTY`", + "label": "readStream.isTTY", + "apiSymbol": "readStream.isTTY", + "depth": 2, + "scope": "api", + "anchor": "readstreamistty", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tty" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tty" + }, + "anchorSource": "exact" + }, + { + "id": "tty:cdef680b84c7", + "chapter": "tty", + "kind": "class", + "name": "tty.WriteStream", + "signature": "Class: `tty.WriteStream`", + "label": "tty.WriteStream", + "apiSymbol": "tty.WriteStream", + "depth": 1, + "scope": "api", + "anchor": "class-ttywritestream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tty" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:tty.WriteStream", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "tty:2c9353067e16", + "chapter": "tty", + "kind": "method", + "name": "clearLine", + "signature": "`writeStream.clearLine(dir[, callback])`", + "label": "writeStream.clearLine(dir[, callback])", + "apiSymbol": "writeStream.clearLine", + "depth": 2, + "scope": "api", + "anchor": "writestreamclearlinedir-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tty" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tty" + }, + "anchorSource": "exact" + }, + { + "id": "tty:6ac9fe254030", + "chapter": "tty", + "kind": "method", + "name": "clearScreenDown", + "signature": "`writeStream.clearScreenDown([callback])`", + "label": "writeStream.clearScreenDown([callback])", + "apiSymbol": "writeStream.clearScreenDown", + "depth": 2, + "scope": "api", + "anchor": "writestreamclearscreendowncallback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tty" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tty" + }, + "anchorSource": "exact" + }, + { + "id": "tty:6d3569552d47", + "chapter": "tty", + "kind": "method", + "name": "cursorTo", + "signature": "`writeStream.cursorTo(x[, y][, callback])`", + "label": "writeStream.cursorTo(x[, y][, callback])", + "apiSymbol": "writeStream.cursorTo", + "depth": 2, + "scope": "api", + "anchor": "writestreamcursortox-y-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tty" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tty" + }, + "anchorSource": "exact" + }, + { + "id": "tty:6b26448ebbb8", + "chapter": "tty", + "kind": "method", + "name": "getColorDepth", + "signature": "`writeStream.getColorDepth([env])`", + "label": "writeStream.getColorDepth([env])", + "apiSymbol": "writeStream.getColorDepth", + "depth": 2, + "scope": "api", + "anchor": "writestreamgetcolordepthenv", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tty" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tty" + }, + "anchorSource": "exact" + }, + { + "id": "tty:8de54b7228ad", + "chapter": "tty", + "kind": "method", + "name": "getWindowSize", + "signature": "`writeStream.getWindowSize()`", + "label": "writeStream.getWindowSize()", + "apiSymbol": "writeStream.getWindowSize", + "depth": 2, + "scope": "api", + "anchor": "writestreamgetwindowsize", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tty" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tty" + }, + "anchorSource": "exact" + }, + { + "id": "tty:ef91fa4cf2c5", + "chapter": "tty", + "kind": "method", + "name": "hasColors", + "signature": "`writeStream.hasColors([count][, env])`", + "label": "writeStream.hasColors([count][, env])", + "apiSymbol": "writeStream.hasColors", + "depth": 2, + "scope": "api", + "anchor": "writestreamhascolorscount-env", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tty" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tty" + }, + "anchorSource": "exact" + }, + { + "id": "tty:4b6a018abd03", + "chapter": "tty", + "kind": "method", + "name": "moveCursor", + "signature": "`writeStream.moveCursor(dx, dy[, callback])`", + "label": "writeStream.moveCursor(dx, dy[, callback])", + "apiSymbol": "writeStream.moveCursor", + "depth": 2, + "scope": "api", + "anchor": "writestreammovecursordx-dy-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tty" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tty" + }, + "anchorSource": "exact" + }, + { + "id": "tty:fa657719d5b5", + "chapter": "tty", + "kind": "section", + "name": "columns", + "signature": "`writeStream.columns`", + "label": "writeStream.columns", + "apiSymbol": "writeStream.columns", + "depth": 2, + "scope": "api", + "anchor": "writestreamcolumns", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tty" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tty" + }, + "anchorSource": "exact" + }, + { + "id": "tty:85304573dac3", + "chapter": "tty", + "kind": "section", + "name": "isTTY", + "signature": "`writeStream.isTTY`", + "label": "writeStream.isTTY", + "apiSymbol": "writeStream.isTTY", + "depth": 2, + "scope": "api", + "anchor": "writestreamistty", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tty" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tty" + }, + "anchorSource": "exact" + }, + { + "id": "tty:7695a1178c0c", + "chapter": "tty", + "kind": "section", + "name": "rows", + "signature": "`writeStream.rows`", + "label": "writeStream.rows", + "apiSymbol": "writeStream.rows", + "depth": 2, + "scope": "api", + "anchor": "writestreamrows", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tty" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tty" + }, + "anchorSource": "exact" + }, + { + "id": "tty:de21e113bf2c", + "chapter": "tty", + "kind": "event", + "name": "resize", + "signature": "Event: `'resize'`", + "label": "'resize'", + "apiSymbol": "'resize'", + "depth": 2, + "scope": "api", + "anchor": "event-resize", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tty" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:tty" + }, + "anchorSource": "exact" + }, + { + "id": "tty:bf52fdd65f09", + "chapter": "tty", + "kind": "method", + "name": "isatty", + "signature": "`tty.isatty(fd)`", + "label": "tty.isatty(fd)", + "apiSymbol": "tty.isatty", + "depth": 1, + "scope": "api", + "anchor": "ttyisattyfd", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:tty" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:tty.isatty", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "dgram:b2849f7caa1f", + "chapter": "dgram", + "kind": "module", + "name": "dgram", + "signature": "UDP/datagram sockets", + "label": "UDP/datagram sockets", + "apiSymbol": "dgram", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/corpus/2597-dgram-send-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "derived:descendants" + }, + "anchorSource": "chapter" + }, + { + "id": "dgram:83a4eb5a1cfe", + "chapter": "dgram", + "kind": "module", + "name": "`node:dgram`_module_functions", + "signature": "`node:dgram` module functions", + "label": "node:dgram", + "apiSymbol": "node:dgram", + "depth": 1, + "scope": "api", + "anchor": "nodedgram-module-functions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dgram" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:dgram" + }, + "anchorSource": "exact" + }, + { + "id": "dgram:e29b48fbffa6", + "chapter": "dgram", + "kind": "method", + "name": "createSocket", + "signature": "`dgram.createSocket(options[, callback])`", + "label": "dgram.createSocket(options[, callback])", + "apiSymbol": "dgram.createSocket", + "depth": 2, + "scope": "api", + "anchor": "dgramcreatesocketoptions-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:dgram.createSocket", + "tests": [ + "tests/corpus/2597-dgram-send-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:dgram" + }, + "anchorSource": "exact" + }, + { + "id": "dgram:ac076b212635", + "chapter": "dgram", + "kind": "method", + "name": "createSocket", + "signature": "`dgram.createSocket(type[, callback])`", + "label": "dgram.createSocket(type[, callback])", + "apiSymbol": "dgram.createSocket", + "depth": 2, + "scope": "api", + "anchor": "dgramcreatesockettype-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:dgram.createSocket", + "tests": [ + "tests/corpus/2597-dgram-send-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:dgram" + }, + "anchorSource": "exact" + }, + { + "id": "dgram:fb3031867b1a", + "chapter": "dgram", + "kind": "class", + "name": "dgram.Socket", + "signature": "Class: `dgram.Socket`", + "label": "dgram.Socket", + "apiSymbol": "dgram.Socket", + "depth": 1, + "scope": "api", + "anchor": "class-dgramsocket", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dgram" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:dgram" + }, + "anchorSource": "exact" + }, + { + "id": "dgram:2d302ec49e6c", + "chapter": "dgram", + "kind": "method", + "name": "addMembership", + "signature": "`socket.addMembership(multicastAddress[, multicastInterface])`", + "label": "socket.addMembership(multicastAddress[, multicastInterface])", + "apiSymbol": "socket.addMembership", + "depth": 2, + "scope": "api", + "anchor": "socketaddmembershipmulticastaddress-multicastinterface", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dgram" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:dgram" + }, + "anchorSource": "exact" + }, + { + "id": "dgram:fcc95297bd53", + "chapter": "dgram", + "kind": "method", + "name": "addSourceSpecificMembership", + "signature": "`socket.addSourceSpecificMembership(sourceAddress, groupAddress[, multicastInterface])`", + "label": "socket.addSourceSpecificMembership(sourceAddress, groupAddress[, multicastInterface])", + "apiSymbol": "socket.addSourceSpecificMembership", + "depth": 2, + "scope": "api", + "anchor": "socketaddsourcespecificmembershipsourceaddress-groupaddress-multicastinterface", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dgram" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:dgram" + }, + "anchorSource": "exact" + }, + { + "id": "dgram:4e4ba5962821", + "chapter": "dgram", + "kind": "method", + "name": "address", + "signature": "`socket.address()`", + "label": "socket.address()", + "apiSymbol": "socket.address", + "depth": 2, + "scope": "api", + "anchor": "socketaddress", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:socket.address", + "tests": [ + "tests/corpus/2597-dgram-send-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:dgram" + }, + "anchorSource": "exact" + }, + { + "id": "dgram:bd89cc2357f5", + "chapter": "dgram", + "kind": "method", + "name": "bind", + "signature": "`socket.bind([port][, address][, callback])`", + "label": "socket.bind([port][, address][, callback])", + "apiSymbol": "socket.bind", + "depth": 2, + "scope": "api", + "anchor": "socketbindport-address-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:socket.bind", + "tests": [ + "tests/corpus/2597-dgram-send-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:dgram" + }, + "anchorSource": "exact" + }, + { + "id": "dgram:d0d49a16d0e3", + "chapter": "dgram", + "kind": "method", + "name": "bind", + "signature": "`socket.bind(options[, callback])`", + "label": "socket.bind(options[, callback])", + "apiSymbol": "socket.bind", + "depth": 2, + "scope": "api", + "anchor": "socketbindoptions-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:socket.bind", + "tests": [ + "tests/corpus/2597-dgram-send-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:dgram" + }, + "anchorSource": "exact" + }, + { + "id": "dgram:40eeb2e82c2b", + "chapter": "dgram", + "kind": "method", + "name": "close", + "signature": "`socket.close([callback])`", + "label": "socket.close([callback])", + "apiSymbol": "socket.close", + "depth": 2, + "scope": "api", + "anchor": "socketclosecallback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:socket.close", + "tests": [ + "tests/corpus/2597-dgram-send-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:dgram" + }, + "anchorSource": "exact" + }, + { + "id": "dgram:02c12ecd62b7", + "chapter": "dgram", + "kind": "method", + "name": "[Symbol.asyncDispose]", + "signature": "`socket[Symbol.asyncDispose]()`", + "label": "socket[Symbol.asyncDispose]()", + "apiSymbol": "socket", + "depth": 2, + "scope": "api", + "anchor": "socketsymbolasyncdispose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dgram" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:dgram" + }, + "anchorSource": "exact" + }, + { + "id": "dgram:50ff3e61d94f", + "chapter": "dgram", + "kind": "method", + "name": "connect", + "signature": "`socket.connect(port[, address][, callback])`", + "label": "socket.connect(port[, address][, callback])", + "apiSymbol": "socket.connect", + "depth": 2, + "scope": "api", + "anchor": "socketconnectport-address-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:socket.connect", + "tests": [ + "tests/corpus/2597-dgram-send-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:dgram" + }, + "anchorSource": "exact" + }, + { + "id": "dgram:c2008af7f485", + "chapter": "dgram", + "kind": "method", + "name": "disconnect", + "signature": "`socket.disconnect()`", + "label": "socket.disconnect()", + "apiSymbol": "socket.disconnect", + "depth": 2, + "scope": "api", + "anchor": "socketdisconnect", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dgram" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:dgram" + }, + "anchorSource": "exact" + }, + { + "id": "dgram:340ffacd9326", + "chapter": "dgram", + "kind": "method", + "name": "dropMembership", + "signature": "`socket.dropMembership(multicastAddress[, multicastInterface])`", + "label": "socket.dropMembership(multicastAddress[, multicastInterface])", + "apiSymbol": "socket.dropMembership", + "depth": 2, + "scope": "api", + "anchor": "socketdropmembershipmulticastaddress-multicastinterface", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dgram" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:dgram" + }, + "anchorSource": "exact" + }, + { + "id": "dgram:fccc4a98c831", + "chapter": "dgram", + "kind": "method", + "name": "dropSourceSpecificMembership", + "signature": "`socket.dropSourceSpecificMembership(sourceAddress, groupAddress[, multicastInterface])`", + "label": "socket.dropSourceSpecificMembership(sourceAddress, groupAddress[, multicastInterface])", + "apiSymbol": "socket.dropSourceSpecificMembership", + "depth": 2, + "scope": "api", + "anchor": "socketdropsourcespecificmembershipsourceaddress-groupaddress-multicastinterface", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dgram" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:dgram" + }, + "anchorSource": "exact" + }, + { + "id": "dgram:d48431cf741a", + "chapter": "dgram", + "kind": "method", + "name": "getRecvBufferSize", + "signature": "`socket.getRecvBufferSize()`", + "label": "socket.getRecvBufferSize()", + "apiSymbol": "socket.getRecvBufferSize", + "depth": 2, + "scope": "api", + "anchor": "socketgetrecvbuffersize", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dgram" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:dgram" + }, + "anchorSource": "exact" + }, + { + "id": "dgram:aed3f4131054", + "chapter": "dgram", + "kind": "method", + "name": "getSendBufferSize", + "signature": "`socket.getSendBufferSize()`", + "label": "socket.getSendBufferSize()", + "apiSymbol": "socket.getSendBufferSize", + "depth": 2, + "scope": "api", + "anchor": "socketgetsendbuffersize", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dgram" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:dgram" + }, + "anchorSource": "exact" + }, + { + "id": "dgram:36bc109f71f0", + "chapter": "dgram", + "kind": "method", + "name": "getSendQueueSize", + "signature": "`socket.getSendQueueSize()`", + "label": "socket.getSendQueueSize()", + "apiSymbol": "socket.getSendQueueSize", + "depth": 2, + "scope": "api", + "anchor": "socketgetsendqueuesize", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dgram" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:dgram" + }, + "anchorSource": "exact" + }, + { + "id": "dgram:a6ed57af26d0", + "chapter": "dgram", + "kind": "method", + "name": "getSendQueueCount", + "signature": "`socket.getSendQueueCount()`", + "label": "socket.getSendQueueCount()", + "apiSymbol": "socket.getSendQueueCount", + "depth": 2, + "scope": "api", + "anchor": "socketgetsendqueuecount", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dgram" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:dgram" + }, + "anchorSource": "exact" + }, + { + "id": "dgram:d6a4eab82d31", + "chapter": "dgram", + "kind": "method", + "name": "ref", + "signature": "`socket.ref()`", + "label": "socket.ref()", + "apiSymbol": "socket.ref", + "depth": 2, + "scope": "api", + "anchor": "socketref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:socket.ref", + "tests": [ + "tests/corpus/2597-dgram-send-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:dgram" + }, + "anchorSource": "exact" + }, + { + "id": "dgram:9bc55c5339d7", + "chapter": "dgram", + "kind": "method", + "name": "remoteAddress", + "signature": "`socket.remoteAddress()`", + "label": "socket.remoteAddress()", + "apiSymbol": "socket.remoteAddress", + "depth": 2, + "scope": "api", + "anchor": "socketremoteaddress", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:socket.remoteAddress", + "tests": [ + "tests/corpus/2597-dgram-send-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:dgram" + }, + "anchorSource": "exact" + }, + { + "id": "dgram:f2a8535a19a1", + "chapter": "dgram", + "kind": "method", + "name": "send", + "signature": "`socket.send(msg[, offset, length][, port][, address][, callback])`", + "label": "socket.send(msg[, offset, length][, port][, address][, callback])", + "apiSymbol": "socket.send", + "depth": 2, + "scope": "api", + "anchor": "socketsendmsg-offset-length-port-address-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:socket.send", + "tests": [ + "tests/corpus/2597-dgram-send-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:dgram" + }, + "anchorSource": "exact" + }, + { + "id": "dgram:878aba27b5e1", + "chapter": "dgram", + "kind": "module", + "name": "note_about_udp_datagram_size", + "signature": "Note about UDP datagram size", + "label": "Note about UDP datagram size", + "apiSymbol": "note_about_udp_datagram_size", + "depth": 3, + "scope": "documentation", + "anchor": "note-about-udp-datagram-size", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "dgram:bf7a641c2707", + "chapter": "dgram", + "kind": "method", + "name": "setBroadcast", + "signature": "`socket.setBroadcast(flag)`", + "label": "socket.setBroadcast(flag)", + "apiSymbol": "socket.setBroadcast", + "depth": 2, + "scope": "api", + "anchor": "socketsetbroadcastflag", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dgram" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:dgram" + }, + "anchorSource": "exact" + }, + { + "id": "dgram:2272f998d2c8", + "chapter": "dgram", + "kind": "method", + "name": "setMulticastInterface", + "signature": "`socket.setMulticastInterface(multicastInterface)`", + "label": "socket.setMulticastInterface(multicastInterface)", + "apiSymbol": "socket.setMulticastInterface", + "depth": 2, + "scope": "api", + "anchor": "socketsetmulticastinterfacemulticastinterface", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dgram" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:dgram" + }, + "anchorSource": "exact" + }, + { + "id": "dgram:c285a683ffb2", + "chapter": "dgram", + "kind": "module", + "name": "call_results", + "signature": "Call results", + "label": "Call results", + "apiSymbol": "call_results", + "depth": 3, + "scope": "documentation", + "anchor": "call-results", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "dgram:c5c314a5ad19", + "chapter": "dgram", + "kind": "method", + "name": "setMulticastLoopback", + "signature": "`socket.setMulticastLoopback(flag)`", + "label": "socket.setMulticastLoopback(flag)", + "apiSymbol": "socket.setMulticastLoopback", + "depth": 2, + "scope": "api", + "anchor": "socketsetmulticastloopbackflag", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dgram" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:dgram" + }, + "anchorSource": "exact" + }, + { + "id": "dgram:ca26f65c8caa", + "chapter": "dgram", + "kind": "method", + "name": "setMulticastTTL", + "signature": "`socket.setMulticastTTL(ttl)`", + "label": "socket.setMulticastTTL(ttl)", + "apiSymbol": "socket.setMulticastTTL", + "depth": 2, + "scope": "api", + "anchor": "socketsetmulticastttlttl", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dgram" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:dgram" + }, + "anchorSource": "exact" + }, + { + "id": "dgram:913912dcb4f5", + "chapter": "dgram", + "kind": "method", + "name": "setRecvBufferSize", + "signature": "`socket.setRecvBufferSize(size)`", + "label": "socket.setRecvBufferSize(size)", + "apiSymbol": "socket.setRecvBufferSize", + "depth": 2, + "scope": "api", + "anchor": "socketsetrecvbuffersizesize", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dgram" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:dgram" + }, + "anchorSource": "exact" + }, + { + "id": "dgram:a38ce73e1906", + "chapter": "dgram", + "kind": "method", + "name": "setSendBufferSize", + "signature": "`socket.setSendBufferSize(size)`", + "label": "socket.setSendBufferSize(size)", + "apiSymbol": "socket.setSendBufferSize", + "depth": 2, + "scope": "api", + "anchor": "socketsetsendbuffersizesize", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dgram" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:dgram" + }, + "anchorSource": "exact" + }, + { + "id": "dgram:b7d9a76bd446", + "chapter": "dgram", + "kind": "method", + "name": "setTTL", + "signature": "`socket.setTTL(ttl)`", + "label": "socket.setTTL(ttl)", + "apiSymbol": "socket.setTTL", + "depth": 2, + "scope": "api", + "anchor": "socketsetttlttl", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dgram" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:dgram" + }, + "anchorSource": "exact" + }, + { + "id": "dgram:cb951bc742ac", + "chapter": "dgram", + "kind": "method", + "name": "unref", + "signature": "`socket.unref()`", + "label": "socket.unref()", + "apiSymbol": "socket.unref", + "depth": 2, + "scope": "api", + "anchor": "socketunref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:socket.unref", + "tests": [ + "tests/corpus/2597-dgram-send-ladders.cjs" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:dgram" + }, + "anchorSource": "exact" + }, + { + "id": "dgram:3d3e1f62991e", + "chapter": "dgram", + "kind": "event", + "name": "close", + "signature": "Event: `'close'`", + "label": "'close'", + "apiSymbol": "'close'", + "depth": 2, + "scope": "api", + "anchor": "event-close", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dgram" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:dgram" + }, + "anchorSource": "exact" + }, + { + "id": "dgram:ea3af6bd7da8", + "chapter": "dgram", + "kind": "event", + "name": "connect", + "signature": "Event: `'connect'`", + "label": "'connect'", + "apiSymbol": "'connect'", + "depth": 2, + "scope": "api", + "anchor": "event-connect", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dgram" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:dgram" + }, + "anchorSource": "exact" + }, + { + "id": "dgram:3c2833e21411", + "chapter": "dgram", + "kind": "event", + "name": "error", + "signature": "Event: `'error'`", + "label": "'error'", + "apiSymbol": "'error'", + "depth": 2, + "scope": "api", + "anchor": "event-error", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dgram" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:dgram" + }, + "anchorSource": "exact" + }, + { + "id": "dgram:78f6d82f4589", + "chapter": "dgram", + "kind": "event", + "name": "listening", + "signature": "Event: `'listening'`", + "label": "'listening'", + "apiSymbol": "'listening'", + "depth": 2, + "scope": "api", + "anchor": "event-listening", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dgram" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:dgram" + }, + "anchorSource": "exact" + }, + { + "id": "dgram:ceeddc966ef8", + "chapter": "dgram", + "kind": "event", + "name": "message", + "signature": "Event: `'message'`", + "label": "'message'", + "apiSymbol": "'message'", + "depth": 2, + "scope": "api", + "anchor": "event-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:dgram" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "unshimmed:node:dgram" + }, + "anchorSource": "exact" + }, + { + "id": "url:cf74284aae70", + "chapter": "url", + "kind": "module", + "name": "url", + "signature": "URL", + "label": "URL", + "apiSymbol": "url", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/corpus/1794-searchparams-url-live.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts", + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "url:1784e280defc", + "chapter": "url", + "kind": "module", + "name": "url_strings_and_url_objects", + "signature": "URL strings and URL objects", + "label": "URL strings and URL objects", + "apiSymbol": "url_strings_and_url_objects", + "depth": 1, + "scope": "documentation", + "anchor": "url-strings-and-url-objects", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "url:a7f47a221ea9", + "chapter": "url", + "kind": "module", + "name": "constructing_a_url_from_component_parts_and_getting_the_constructed_string", + "signature": "Constructing a URL from component parts and getting the constructed string", + "label": "Constructing a URL from component parts and getting the constructed string", + "apiSymbol": "constructing_a_url_from_component_parts_and_getting_the_constructed_string", + "depth": 2, + "scope": "documentation", + "anchor": "constructing-a-url-from-component-parts-and-getting-the-constructed-string", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "url:380961257d10", + "chapter": "url", + "kind": "module", + "name": "the_whatwg_url_api", + "signature": "The WHATWG URL API", + "label": "The WHATWG URL API", + "apiSymbol": "the_whatwg_url_api", + "depth": 1, + "scope": "documentation", + "anchor": "the-whatwg-url-api", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "url:8f4bdbc993a2", + "chapter": "url", + "kind": "class", + "name": "URL", + "signature": "Class: `URL`", + "label": "URL", + "apiSymbol": "URL", + "depth": 2, + "scope": "api", + "anchor": "class-url", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:url.URL", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "url:ca852cc7fae2", + "chapter": "url", + "kind": "method", + "name": "toString", + "signature": "`url.toString()`", + "label": "url.toString()", + "apiSymbol": "url.toString", + "depth": 3, + "scope": "api", + "anchor": "urltostring", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:url.url.toString", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "url:ce3826342140", + "chapter": "url", + "kind": "method", + "name": "toJSON", + "signature": "`url.toJSON()`", + "label": "url.toJSON()", + "apiSymbol": "url.toJSON", + "depth": 3, + "scope": "api", + "anchor": "urltojson", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:url.url.toJSON", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "url:3d825e17dd4d", + "chapter": "url", + "kind": "method", + "name": "createObjectURL", + "signature": "`URL.createObjectURL(blob)`", + "label": "URL.createObjectURL(blob)", + "apiSymbol": "URL.createObjectURL", + "depth": 3, + "scope": "api", + "anchor": "urlcreateobjecturlblob", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:url" + }, + "anchorSource": "exact" + }, + { + "id": "url:7fb3f247c6d7", + "chapter": "url", + "kind": "method", + "name": "revokeObjectURL", + "signature": "`URL.revokeObjectURL(id)`", + "label": "URL.revokeObjectURL(id)", + "apiSymbol": "URL.revokeObjectURL", + "depth": 3, + "scope": "api", + "anchor": "urlrevokeobjecturlid", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:url" + }, + "anchorSource": "exact" + }, + { + "id": "url:504e9a4a0cfd", + "chapter": "url", + "kind": "method", + "name": "canParse", + "signature": "`URL.canParse(input[, base])`", + "label": "URL.canParse(input[, base])", + "apiSymbol": "URL.canParse", + "depth": 3, + "scope": "api", + "anchor": "urlcanparseinput-base", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:url.URL.canParse", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "url:59d273bab3f3", + "chapter": "url", + "kind": "method", + "name": "parse", + "signature": "`URL.parse(input[, base])`", + "label": "URL.parse(input[, base])", + "apiSymbol": "URL.parse", + "depth": 3, + "scope": "api", + "anchor": "urlparseinput-base", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:url.URL.parse", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "url:c1e3b748497e", + "chapter": "url", + "kind": "string", + "name": "Type", + "signature": "`hash` Type: {string}", + "label": "hash", + "apiSymbol": "hash", + "depth": 3, + "scope": "api", + "anchor": "class-url", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:url" + }, + "anchorSource": "ancestor" + }, + { + "id": "url:ac7491f15347", + "chapter": "url", + "kind": "string", + "name": "Type", + "signature": "`host` Type: {string}", + "label": "host", + "apiSymbol": "host", + "depth": 3, + "scope": "api", + "anchor": "class-url", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:url" + }, + "anchorSource": "ancestor" + }, + { + "id": "url:3040963053f6", + "chapter": "url", + "kind": "string", + "name": "Type", + "signature": "`hostname` Type: {string}", + "label": "hostname", + "apiSymbol": "hostname", + "depth": 3, + "scope": "api", + "anchor": "class-url", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:url" + }, + "anchorSource": "ancestor" + }, + { + "id": "url:86bdbbbdb2e1", + "chapter": "url", + "kind": "string", + "name": "Type", + "signature": "`href` Type: {string}", + "label": "href", + "apiSymbol": "href", + "depth": 3, + "scope": "api", + "anchor": "class-url", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:url" + }, + "anchorSource": "ancestor" + }, + { + "id": "url:66a259bce471", + "chapter": "url", + "kind": "string", + "name": "Type", + "signature": "`origin` Type: {string}", + "label": "origin", + "apiSymbol": "origin", + "depth": 3, + "scope": "api", + "anchor": "class-url", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:url" + }, + "anchorSource": "ancestor" + }, + { + "id": "url:a510df3fea7c", + "chapter": "url", + "kind": "string", + "name": "Type", + "signature": "`password` Type: {string}", + "label": "password", + "apiSymbol": "password", + "depth": 3, + "scope": "api", + "anchor": "class-url", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:url" + }, + "anchorSource": "ancestor" + }, + { + "id": "url:0f9a38d10877", + "chapter": "url", + "kind": "string", + "name": "Type", + "signature": "`pathname` Type: {string}", + "label": "pathname", + "apiSymbol": "pathname", + "depth": 3, + "scope": "api", + "anchor": "class-url", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:url" + }, + "anchorSource": "ancestor" + }, + { + "id": "url:02f621e64a44", + "chapter": "url", + "kind": "string", + "name": "Type", + "signature": "`port` Type: {string}", + "label": "port", + "apiSymbol": "port", + "depth": 3, + "scope": "api", + "anchor": "class-url", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:url" + }, + "anchorSource": "ancestor" + }, + { + "id": "url:c006c906a5f7", + "chapter": "url", + "kind": "string", + "name": "Type", + "signature": "`protocol` Type: {string}", + "label": "protocol", + "apiSymbol": "protocol", + "depth": 3, + "scope": "api", + "anchor": "class-url", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:url" + }, + "anchorSource": "ancestor" + }, + { + "id": "url:58944c7528db", + "chapter": "url", + "kind": "module", + "name": "special_schemes", + "signature": "Special schemes", + "label": "Special schemes", + "apiSymbol": "special_schemes", + "depth": 4, + "scope": "documentation", + "anchor": "special-schemes", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "url:5d3d05e8fa46", + "chapter": "url", + "kind": "string", + "name": "Type", + "signature": "`search` Type: {string}", + "label": "search", + "apiSymbol": "search", + "depth": 3, + "scope": "api", + "anchor": "class-url", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:url" + }, + "anchorSource": "ancestor" + }, + { + "id": "url:d6711847f88e", + "chapter": "url", + "kind": "URLSearchParams", + "name": "Type", + "signature": "`searchParams` Type: {URLSearchParams}", + "label": "searchParams", + "apiSymbol": "searchParams", + "depth": 3, + "scope": "api", + "anchor": "class-url", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:url" + }, + "anchorSource": "ancestor" + }, + { + "id": "url:b90cacdc7467", + "chapter": "url", + "kind": "string", + "name": "Type", + "signature": "`username` Type: {string}", + "label": "username", + "apiSymbol": "username", + "depth": 3, + "scope": "api", + "anchor": "class-url", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:url" + }, + "anchorSource": "ancestor" + }, + { + "id": "url:379a4af5877c", + "chapter": "url", + "kind": "class", + "name": "URLPattern", + "signature": "Class: `URLPattern`", + "label": "URLPattern", + "apiSymbol": "URLPattern", + "depth": 2, + "scope": "api", + "anchor": "class-urlpattern", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:url" + }, + "anchorSource": "exact" + }, + { + "id": "url:7caf609cfbc2", + "chapter": "url", + "kind": "method", + "name": "exec", + "signature": "`urlPattern.exec(input[, baseURL])`", + "label": "urlPattern.exec(input[, baseURL])", + "apiSymbol": "urlPattern.exec", + "depth": 3, + "scope": "api", + "anchor": "urlpatternexecinput-baseurl", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:url" + }, + "anchorSource": "exact" + }, + { + "id": "url:c6150bc59262", + "chapter": "url", + "kind": "method", + "name": "test", + "signature": "`urlPattern.test(input[, baseURL])`", + "label": "urlPattern.test(input[, baseURL])", + "apiSymbol": "urlPattern.test", + "depth": 3, + "scope": "api", + "anchor": "urlpatterntestinput-baseurl", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:url" + }, + "anchorSource": "exact" + }, + { + "id": "url:efe9b56ddf72", + "chapter": "url", + "kind": "class", + "name": "URLSearchParams", + "signature": "Class: `URLSearchParams`", + "label": "URLSearchParams", + "apiSymbol": "URLSearchParams", + "depth": 2, + "scope": "api", + "anchor": "class-urlsearchparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:url.URLSearchParams", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "url:6599a7e81cd6", + "chapter": "url", + "kind": "method", + "name": "append", + "signature": "`urlSearchParams.append(name, value)`", + "label": "urlSearchParams.append(name, value)", + "apiSymbol": "urlSearchParams.append", + "depth": 3, + "scope": "api", + "anchor": "urlsearchparamsappendname-value", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:url.urlSearchParams.append", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "url:238d65c61584", + "chapter": "url", + "kind": "method", + "name": "delete", + "signature": "`urlSearchParams.delete(name[, value])`", + "label": "urlSearchParams.delete(name[, value])", + "apiSymbol": "urlSearchParams.delete", + "depth": 3, + "scope": "api", + "anchor": "urlsearchparamsdeletename-value", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:url.urlSearchParams.delete", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "url:1540e330c724", + "chapter": "url", + "kind": "method", + "name": "entries", + "signature": "`urlSearchParams.entries()`", + "label": "urlSearchParams.entries()", + "apiSymbol": "urlSearchParams.entries", + "depth": 3, + "scope": "api", + "anchor": "urlsearchparamsentries", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:url.urlSearchParams.entries", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "url:5ff6c1417db8", + "chapter": "url", + "kind": "method", + "name": "forEach", + "signature": "`urlSearchParams.forEach(fn[, thisArg])`", + "label": "urlSearchParams.forEach(fn[, thisArg])", + "apiSymbol": "urlSearchParams.forEach", + "depth": 3, + "scope": "api", + "anchor": "urlsearchparamsforeachfn-thisarg", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:url.urlSearchParams.forEach", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "url:47fc2ebdac43", + "chapter": "url", + "kind": "method", + "name": "get", + "signature": "`urlSearchParams.get(name)`", + "label": "urlSearchParams.get(name)", + "apiSymbol": "urlSearchParams.get", + "depth": 3, + "scope": "api", + "anchor": "urlsearchparamsgetname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:url.urlSearchParams.get", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "url:1886d3fe6bc4", + "chapter": "url", + "kind": "method", + "name": "getAll", + "signature": "`urlSearchParams.getAll(name)`", + "label": "urlSearchParams.getAll(name)", + "apiSymbol": "urlSearchParams.getAll", + "depth": 3, + "scope": "api", + "anchor": "urlsearchparamsgetallname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:url.urlSearchParams.getAll", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "url:ba36aa1f6d16", + "chapter": "url", + "kind": "method", + "name": "has", + "signature": "`urlSearchParams.has(name[, value])`", + "label": "urlSearchParams.has(name[, value])", + "apiSymbol": "urlSearchParams.has", + "depth": 3, + "scope": "api", + "anchor": "urlsearchparamshasname-value", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:url.urlSearchParams.has", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "url:eaf2d8555575", + "chapter": "url", + "kind": "method", + "name": "keys", + "signature": "`urlSearchParams.keys()`", + "label": "urlSearchParams.keys()", + "apiSymbol": "urlSearchParams.keys", + "depth": 3, + "scope": "api", + "anchor": "urlsearchparamskeys", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:url.urlSearchParams.keys", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "url:38e92e7464fb", + "chapter": "url", + "kind": "method", + "name": "set", + "signature": "`urlSearchParams.set(name, value)`", + "label": "urlSearchParams.set(name, value)", + "apiSymbol": "urlSearchParams.set", + "depth": 3, + "scope": "api", + "anchor": "urlsearchparamssetname-value", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:url.urlSearchParams.set", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "url:0eb44ad10012", + "chapter": "url", + "kind": "method", + "name": "sort", + "signature": "`urlSearchParams.sort()`", + "label": "urlSearchParams.sort()", + "apiSymbol": "urlSearchParams.sort", + "depth": 3, + "scope": "api", + "anchor": "urlsearchparamssort", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:url.urlSearchParams.sort", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "url:4cbeace8bd8b", + "chapter": "url", + "kind": "method", + "name": "toString", + "signature": "`urlSearchParams.toString()`", + "label": "urlSearchParams.toString()", + "apiSymbol": "urlSearchParams.toString", + "depth": 3, + "scope": "api", + "anchor": "urlsearchparamstostring", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:url.urlSearchParams.toString", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "url:05b8820a87cf", + "chapter": "url", + "kind": "method", + "name": "values", + "signature": "`urlSearchParams.values()`", + "label": "urlSearchParams.values()", + "apiSymbol": "urlSearchParams.values", + "depth": 3, + "scope": "api", + "anchor": "urlsearchparamsvalues", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:url.urlSearchParams.values", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "url:bef59544966e", + "chapter": "url", + "kind": "method", + "name": "[Symbol.iterator]", + "signature": "`urlSearchParams[Symbol.iterator]()`", + "label": "urlSearchParams[Symbol.iterator]()", + "apiSymbol": "urlSearchParams", + "depth": 3, + "scope": "api", + "anchor": "urlsearchparamssymboliterator", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:url" + }, + "anchorSource": "exact" + }, + { + "id": "url:250a28b843c4", + "chapter": "url", + "kind": "section", + "name": "size", + "signature": "`urlSearchParams.size`", + "label": "urlSearchParams.size", + "apiSymbol": "urlSearchParams.size", + "depth": 3, + "scope": "api", + "anchor": "urlsearchparamssize", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:url.urlSearchParams.size", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "url:61654533497c", + "chapter": "url", + "kind": "method", + "name": "domainToASCII", + "signature": "`url.domainToASCII(domain)`", + "label": "url.domainToASCII(domain)", + "apiSymbol": "url.domainToASCII", + "depth": 2, + "scope": "api", + "anchor": "urldomaintoasciidomain", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:url.domainToASCII", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "url:2fe3d9bf8826", + "chapter": "url", + "kind": "method", + "name": "domainToUnicode", + "signature": "`url.domainToUnicode(domain)`", + "label": "url.domainToUnicode(domain)", + "apiSymbol": "url.domainToUnicode", + "depth": 2, + "scope": "api", + "anchor": "urldomaintounicodedomain", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:url.domainToUnicode", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "url:8358aff572c7", + "chapter": "url", + "kind": "method", + "name": "fileURLToPath", + "signature": "`url.fileURLToPath(url[, options])`", + "label": "url.fileURLToPath(url[, options])", + "apiSymbol": "url.fileURLToPath", + "depth": 2, + "scope": "api", + "anchor": "urlfileurltopathurl-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.url.fileURLToPath", + "tests": [ + "tests/corpus/1794-searchparams-url-live.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:url.fileURLToPath", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "url:d6ca7d761e7b", + "chapter": "url", + "kind": "method", + "name": "fileURLToPathBuffer", + "signature": "`url.fileURLToPathBuffer(url[, options])`", + "label": "url.fileURLToPathBuffer(url[, options])", + "apiSymbol": "url.fileURLToPathBuffer", + "depth": 2, + "scope": "api", + "anchor": "urlfileurltopathbufferurl-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:url" + }, + "anchorSource": "exact" + }, + { + "id": "url:202b01d4a9f5", + "chapter": "url", + "kind": "method", + "name": "format", + "signature": "`url.format(URL[, options])`", + "label": "url.format(URL[, options])", + "apiSymbol": "url.format", + "depth": 2, + "scope": "api", + "anchor": "urlformaturl-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:url.format", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "url:50f0ecfb7986", + "chapter": "url", + "kind": "method", + "name": "pathToFileURL", + "signature": "`url.pathToFileURL(path[, options])`", + "label": "url.pathToFileURL(path[, options])", + "apiSymbol": "url.pathToFileURL", + "depth": 2, + "scope": "api", + "anchor": "urlpathtofileurlpath-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.url.pathToFileURL", + "tests": [ + "tests/corpus/1794-searchparams-url-live.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:url.pathToFileURL", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "url:2454a9d74f45", + "chapter": "url", + "kind": "method", + "name": "urlToHttpOptions", + "signature": "`url.urlToHttpOptions(url)`", + "label": "url.urlToHttpOptions(url)", + "apiSymbol": "url.urlToHttpOptions", + "depth": 2, + "scope": "api", + "anchor": "urlurltohttpoptionsurl", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:url.urlToHttpOptions", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "url:1098bbb6447c", + "chapter": "url", + "kind": "module", + "name": "legacy_url_api", + "signature": "Legacy URL API", + "label": "Legacy URL API", + "apiSymbol": "legacy_url_api", + "depth": 1, + "scope": "documentation", + "anchor": "legacy-url-api", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use the WHATWG URL API instead.", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "url:26174deb7132", + "chapter": "url", + "kind": "module", + "name": "legacy_`urlobject`", + "signature": "Legacy `urlObject`", + "label": "Legacy urlObject", + "apiSymbol": "urlObject", + "depth": 2, + "scope": "api", + "anchor": "legacy-urlobject", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use the WHATWG URL API instead.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:url" + }, + "anchorSource": "exact" + }, + { + "id": "url:0795bb0b86f8", + "chapter": "url", + "kind": "section", + "name": "auth", + "signature": "`urlObject.auth`", + "label": "urlObject.auth", + "apiSymbol": "urlObject.auth", + "depth": 3, + "scope": "api", + "anchor": "urlobjectauth", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use the WHATWG URL API instead.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:url" + }, + "anchorSource": "exact" + }, + { + "id": "url:42947b964de1", + "chapter": "url", + "kind": "section", + "name": "hash", + "signature": "`urlObject.hash`", + "label": "urlObject.hash", + "apiSymbol": "urlObject.hash", + "depth": 3, + "scope": "api", + "anchor": "urlobjecthash", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use the WHATWG URL API instead.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:url" + }, + "anchorSource": "exact" + }, + { + "id": "url:ba55dcb7989a", + "chapter": "url", + "kind": "section", + "name": "host", + "signature": "`urlObject.host`", + "label": "urlObject.host", + "apiSymbol": "urlObject.host", + "depth": 3, + "scope": "api", + "anchor": "urlobjecthost", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use the WHATWG URL API instead.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:url" + }, + "anchorSource": "exact" + }, + { + "id": "url:682b8c062cac", + "chapter": "url", + "kind": "section", + "name": "hostname", + "signature": "`urlObject.hostname`", + "label": "urlObject.hostname", + "apiSymbol": "urlObject.hostname", + "depth": 3, + "scope": "api", + "anchor": "urlobjecthostname", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use the WHATWG URL API instead.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:url" + }, + "anchorSource": "exact" + }, + { + "id": "url:71c4ee356a60", + "chapter": "url", + "kind": "section", + "name": "href", + "signature": "`urlObject.href`", + "label": "urlObject.href", + "apiSymbol": "urlObject.href", + "depth": 3, + "scope": "api", + "anchor": "urlobjecthref", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use the WHATWG URL API instead.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:url" + }, + "anchorSource": "exact" + }, + { + "id": "url:bfd3114b68a4", + "chapter": "url", + "kind": "section", + "name": "path", + "signature": "`urlObject.path`", + "label": "urlObject.path", + "apiSymbol": "urlObject.path", + "depth": 3, + "scope": "api", + "anchor": "urlobjectpath", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use the WHATWG URL API instead.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:url" + }, + "anchorSource": "exact" + }, + { + "id": "url:c16e787bfc1f", + "chapter": "url", + "kind": "section", + "name": "pathname", + "signature": "`urlObject.pathname`", + "label": "urlObject.pathname", + "apiSymbol": "urlObject.pathname", + "depth": 3, + "scope": "api", + "anchor": "urlobjectpathname", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use the WHATWG URL API instead.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:url" + }, + "anchorSource": "exact" + }, + { + "id": "url:6917c5d9a33c", + "chapter": "url", + "kind": "section", + "name": "port", + "signature": "`urlObject.port`", + "label": "urlObject.port", + "apiSymbol": "urlObject.port", + "depth": 3, + "scope": "api", + "anchor": "urlobjectport", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use the WHATWG URL API instead.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:url" + }, + "anchorSource": "exact" + }, + { + "id": "url:d6797ec5d5d6", + "chapter": "url", + "kind": "section", + "name": "protocol", + "signature": "`urlObject.protocol`", + "label": "urlObject.protocol", + "apiSymbol": "urlObject.protocol", + "depth": 3, + "scope": "api", + "anchor": "urlobjectprotocol", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use the WHATWG URL API instead.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:url" + }, + "anchorSource": "exact" + }, + { + "id": "url:c768b0333159", + "chapter": "url", + "kind": "section", + "name": "query", + "signature": "`urlObject.query`", + "label": "urlObject.query", + "apiSymbol": "urlObject.query", + "depth": 3, + "scope": "api", + "anchor": "urlobjectquery", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use the WHATWG URL API instead.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:url" + }, + "anchorSource": "exact" + }, + { + "id": "url:cbe598404ed4", + "chapter": "url", + "kind": "section", + "name": "search", + "signature": "`urlObject.search`", + "label": "urlObject.search", + "apiSymbol": "urlObject.search", + "depth": 3, + "scope": "api", + "anchor": "urlobjectsearch", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use the WHATWG URL API instead.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:url" + }, + "anchorSource": "exact" + }, + { + "id": "url:cc812c2fdb4e", + "chapter": "url", + "kind": "section", + "name": "slashes", + "signature": "`urlObject.slashes`", + "label": "urlObject.slashes", + "apiSymbol": "urlObject.slashes", + "depth": 3, + "scope": "api", + "anchor": "urlobjectslashes", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use the WHATWG URL API instead.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:url" + }, + "anchorSource": "exact" + }, + { + "id": "url:36d80c164de3", + "chapter": "url", + "kind": "method", + "name": "format", + "signature": "`url.format(urlObject)`", + "label": "url.format(urlObject)", + "apiSymbol": "url.format", + "depth": 2, + "scope": "api", + "anchor": "urlformaturlobject", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use the WHATWG URL API instead.", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:url.format", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "url:94fd551f27a0", + "chapter": "url", + "kind": "method", + "name": "format", + "signature": "`url.format(urlString)`", + "label": "url.format(urlString)", + "apiSymbol": "url.format", + "depth": 2, + "scope": "api", + "anchor": "urlformaturlstring", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Use the WHATWG URL API instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:url.format", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "url:1fa787da66df", + "chapter": "url", + "kind": "method", + "name": "parse", + "signature": "`url.parse(urlString[, parseQueryString[, slashesDenoteHost]])`", + "label": "url.parse(urlString[, parseQueryString[, slashesDenoteHost]])", + "apiSymbol": "url.parse", + "depth": 2, + "scope": "api", + "anchor": "urlparseurlstring-parsequerystring-slashesdenotehost", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Use the WHATWG URL API instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:url.parse", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "url:b1daf529bd41", + "chapter": "url", + "kind": "method", + "name": "resolve", + "signature": "`url.resolve(from, to)`", + "label": "url.resolve(from, to)", + "apiSymbol": "url.resolve", + "depth": 2, + "scope": "api", + "anchor": "urlresolvefrom-to", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Use the WHATWG URL API instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:url" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:url.resolve", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts", + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "url:a45cdd96685e", + "chapter": "url", + "kind": "module", + "name": "percent-encoding_in_urls", + "signature": "Percent-encoding in URLs", + "label": "Percent-encoding in URLs", + "apiSymbol": "percent-encoding_in_urls", + "depth": 1, + "scope": "documentation", + "anchor": "percent-encoding-in-urls", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "url:05b5461e6531", + "chapter": "url", + "kind": "module", + "name": "legacy_api", + "signature": "Legacy API", + "label": "Legacy API", + "apiSymbol": "legacy_api", + "depth": 2, + "scope": "documentation", + "anchor": "legacy-api", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "url:5a50b2bd3530", + "chapter": "url", + "kind": "module", + "name": "whatwg_api", + "signature": "WHATWG API", + "label": "WHATWG API", + "apiSymbol": "whatwg_api", + "depth": 2, + "scope": "documentation", + "anchor": "whatwg-api", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "util:777bfbadfbc0", + "chapter": "util", + "kind": "module", + "name": "util", + "signature": "Util", + "label": "Util", + "apiSymbol": "util", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/corpus/2440-console-inspect-args.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "util:2f5c8a9b7afd", + "chapter": "util", + "kind": "module", + "name": "deprecated_apis", + "signature": "Deprecated APIs", + "label": "Deprecated APIs", + "apiSymbol": "deprecated_apis", + "depth": 1, + "scope": "documentation", + "anchor": "deprecated-apis", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "util:3fb9af4b0066", + "chapter": "util", + "kind": "method", + "name": "_extend", + "signature": "`util._extend(target, source)`", + "label": "util._extend(target, source)", + "apiSymbol": "util._extend", + "depth": 2, + "scope": "api", + "anchor": "util_extendtarget-source", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Use [`Object.assign()`][] instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util._extend", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:6bc435eec9d3", + "chapter": "util", + "kind": "method", + "name": "isArray", + "signature": "`util.isArray(object)`", + "label": "util.isArray(object)", + "apiSymbol": "util.isArray", + "depth": 2, + "scope": "api", + "anchor": "utilisarrayobject", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Use [`Array.isArray()`][] instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util.isArray", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:afeb5c5bb1b0", + "chapter": "util", + "kind": "class", + "name": "util.MIMEType", + "signature": "Class: `util.MIMEType`", + "label": "util.MIMEType", + "apiSymbol": "util.MIMEType", + "depth": 1, + "scope": "api", + "anchor": "class-utilmimetype", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:util" + }, + "anchorSource": "exact" + }, + { + "id": "util:812c70be1945", + "chapter": "util", + "kind": "method", + "name": "toString", + "signature": "`mime.toString()`", + "label": "mime.toString()", + "apiSymbol": "mime.toString", + "depth": 2, + "scope": "api", + "anchor": "mimetostring", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:util" + }, + "anchorSource": "exact" + }, + { + "id": "util:585fc9c89e11", + "chapter": "util", + "kind": "method", + "name": "toJSON", + "signature": "`mime.toJSON()`", + "label": "mime.toJSON()", + "apiSymbol": "mime.toJSON", + "depth": 2, + "scope": "api", + "anchor": "mimetojson", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:util" + }, + "anchorSource": "exact" + }, + { + "id": "util:f1c74a06ab01", + "chapter": "util", + "kind": "string", + "name": "Type", + "signature": "`type` Type: {string}", + "label": "type", + "apiSymbol": "type", + "depth": 2, + "scope": "api", + "anchor": "class-utilmimetype", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:util" + }, + "anchorSource": "ancestor" + }, + { + "id": "util:1f22f2be8b32", + "chapter": "util", + "kind": "string", + "name": "Type", + "signature": "`subtype` Type: {string}", + "label": "subtype", + "apiSymbol": "subtype", + "depth": 2, + "scope": "api", + "anchor": "class-utilmimetype", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:util" + }, + "anchorSource": "ancestor" + }, + { + "id": "util:9f467ff2dfaf", + "chapter": "util", + "kind": "string", + "name": "Type", + "signature": "`essence` Type: {string}", + "label": "essence", + "apiSymbol": "essence", + "depth": 2, + "scope": "api", + "anchor": "class-utilmimetype", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:util" + }, + "anchorSource": "ancestor" + }, + { + "id": "util:ed51b78d20e6", + "chapter": "util", + "kind": "MIMEParams", + "name": "Type", + "signature": "`params` Type: {MIMEParams}", + "label": "params", + "apiSymbol": "params", + "depth": 2, + "scope": "api", + "anchor": "class-utilmimetype", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:util" + }, + "anchorSource": "ancestor" + }, + { + "id": "util:44c967ce036a", + "chapter": "util", + "kind": "class", + "name": "util.MIMEParams", + "signature": "Class: `util.MIMEParams`", + "label": "util.MIMEParams", + "apiSymbol": "util.MIMEParams", + "depth": 1, + "scope": "api", + "anchor": "class-utilmimeparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:util" + }, + "anchorSource": "exact" + }, + { + "id": "util:a442658ea079", + "chapter": "util", + "kind": "method", + "name": "delete", + "signature": "`mimeParams.delete(name)`", + "label": "mimeParams.delete(name)", + "apiSymbol": "mimeParams.delete", + "depth": 2, + "scope": "api", + "anchor": "mimeparamsdeletename", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:util" + }, + "anchorSource": "exact" + }, + { + "id": "util:5d7e725b4a8b", + "chapter": "util", + "kind": "method", + "name": "entries", + "signature": "`mimeParams.entries()`", + "label": "mimeParams.entries()", + "apiSymbol": "mimeParams.entries", + "depth": 2, + "scope": "api", + "anchor": "mimeparamsentries", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:util" + }, + "anchorSource": "exact" + }, + { + "id": "util:a14428f20886", + "chapter": "util", + "kind": "method", + "name": "get", + "signature": "`mimeParams.get(name)`", + "label": "mimeParams.get(name)", + "apiSymbol": "mimeParams.get", + "depth": 2, + "scope": "api", + "anchor": "mimeparamsgetname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:util" + }, + "anchorSource": "exact" + }, + { + "id": "util:24824e980158", + "chapter": "util", + "kind": "method", + "name": "has", + "signature": "`mimeParams.has(name)`", + "label": "mimeParams.has(name)", + "apiSymbol": "mimeParams.has", + "depth": 2, + "scope": "api", + "anchor": "mimeparamshasname", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:util" + }, + "anchorSource": "exact" + }, + { + "id": "util:1fa1ab473220", + "chapter": "util", + "kind": "method", + "name": "keys", + "signature": "`mimeParams.keys()`", + "label": "mimeParams.keys()", + "apiSymbol": "mimeParams.keys", + "depth": 2, + "scope": "api", + "anchor": "mimeparamskeys", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:util" + }, + "anchorSource": "exact" + }, + { + "id": "util:14facfdcac1e", + "chapter": "util", + "kind": "method", + "name": "set", + "signature": "`mimeParams.set(name, value)`", + "label": "mimeParams.set(name, value)", + "apiSymbol": "mimeParams.set", + "depth": 2, + "scope": "api", + "anchor": "mimeparamssetname-value", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:util" + }, + "anchorSource": "exact" + }, + { + "id": "util:8e5d5d0e1779", + "chapter": "util", + "kind": "method", + "name": "values", + "signature": "`mimeParams.values()`", + "label": "mimeParams.values()", + "apiSymbol": "mimeParams.values", + "depth": 2, + "scope": "api", + "anchor": "mimeparamsvalues", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:util" + }, + "anchorSource": "exact" + }, + { + "id": "util:27be831bd43e", + "chapter": "util", + "kind": "method", + "name": "[Symbol.iterator]", + "signature": "`mimeParams[Symbol.iterator]()`", + "label": "mimeParams[Symbol.iterator]()", + "apiSymbol": "mimeParams", + "depth": 2, + "scope": "api", + "anchor": "mimeparamssymboliterator", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:util" + }, + "anchorSource": "exact" + }, + { + "id": "util:8797e76ba09e", + "chapter": "util", + "kind": "class", + "name": "util.TextDecoder", + "signature": "Class: `util.TextDecoder`", + "label": "util.TextDecoder", + "apiSymbol": "util.TextDecoder", + "depth": 1, + "scope": "api", + "anchor": "class-utiltextdecoder", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util.TextDecoder", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:17e3e5c0f8d8", + "chapter": "util", + "kind": "module", + "name": "whatwg_supported_encodings", + "signature": "WHATWG supported encodings", + "label": "WHATWG supported encodings", + "apiSymbol": "whatwg_supported_encodings", + "depth": 2, + "scope": "documentation", + "anchor": "whatwg-supported-encodings", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "util:cd233493223d", + "chapter": "util", + "kind": "module", + "name": "encodings_supported_by_default_(with_full_icu_data)", + "signature": "Encodings supported by default (with full ICU data)", + "label": "Encodings supported by default (with full ICU data)", + "apiSymbol": "encodings_supported_by_default_", + "depth": 3, + "scope": "documentation", + "anchor": "encodings-supported-by-default-with-full-icu-data", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "util:e5a1f0a694aa", + "chapter": "util", + "kind": "module", + "name": "encodings_supported_when_node.js_is_built_with_the_`small-icu`_option", + "signature": "Encodings supported when Node.js is built with the `small-icu` option", + "label": "Encodings supported when Node.js is built with the small-icu option", + "apiSymbol": "small-icu", + "depth": 3, + "scope": "api", + "anchor": "encodings-supported-when-nodejs-is-built-with-the-small-icu-option", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:util" + }, + "anchorSource": "exact" + }, + { + "id": "util:85bc21765fcb", + "chapter": "util", + "kind": "module", + "name": "encodings_supported_when_icu_is_disabled", + "signature": "Encodings supported when ICU is disabled", + "label": "Encodings supported when ICU is disabled", + "apiSymbol": "encodings_supported_when_icu_is_disabled", + "depth": 3, + "scope": "documentation", + "anchor": "encodings-supported-when-icu-is-disabled", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "util:fb2316caa0b2", + "chapter": "util", + "kind": "method", + "name": "decode", + "signature": "`textDecoder.decode([input[, options]])`", + "label": "textDecoder.decode([input[, options]])", + "apiSymbol": "textDecoder.decode", + "depth": 2, + "scope": "api", + "anchor": "textdecoderdecodeinput-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:util" + }, + "anchorSource": "exact" + }, + { + "id": "util:02928ef627a6", + "chapter": "util", + "kind": "string", + "name": "Type", + "signature": "`encoding` Type: {string}", + "label": "encoding", + "apiSymbol": "encoding", + "depth": 2, + "scope": "api", + "anchor": "class-utiltextdecoder", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:util" + }, + "anchorSource": "ancestor" + }, + { + "id": "util:13625dfa7779", + "chapter": "util", + "kind": "boolean", + "name": "Type", + "signature": "`fatal` Type: {boolean}", + "label": "fatal", + "apiSymbol": "fatal", + "depth": 2, + "scope": "api", + "anchor": "class-utiltextdecoder", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:util" + }, + "anchorSource": "ancestor" + }, + { + "id": "util:620a54a0ca69", + "chapter": "util", + "kind": "boolean", + "name": "Type", + "signature": "`ignoreBOM` Type: {boolean}", + "label": "ignoreBOM", + "apiSymbol": "ignoreBOM", + "depth": 2, + "scope": "api", + "anchor": "class-utiltextdecoder", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:util" + }, + "anchorSource": "ancestor" + }, + { + "id": "util:12242840838d", + "chapter": "util", + "kind": "class", + "name": "util.TextEncoder", + "signature": "Class: `util.TextEncoder`", + "label": "util.TextEncoder", + "apiSymbol": "util.TextEncoder", + "depth": 1, + "scope": "api", + "anchor": "class-utiltextencoder", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util.TextEncoder", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:f4fe667b1026", + "chapter": "util", + "kind": "method", + "name": "encode", + "signature": "`textEncoder.encode([input])`", + "label": "textEncoder.encode([input])", + "apiSymbol": "textEncoder.encode", + "depth": 2, + "scope": "api", + "anchor": "textencoderencodeinput", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:util" + }, + "anchorSource": "exact" + }, + { + "id": "util:bb06cf39f1f9", + "chapter": "util", + "kind": "method", + "name": "encodeInto", + "signature": "`textEncoder.encodeInto(src, dest)`", + "label": "textEncoder.encodeInto(src, dest)", + "apiSymbol": "textEncoder.encodeInto", + "depth": 2, + "scope": "api", + "anchor": "textencoderencodeintosrc-dest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:util" + }, + "anchorSource": "exact" + }, + { + "id": "util:081af354f8ab", + "chapter": "util", + "kind": "string", + "name": "Type", + "signature": "`encoding` Type: {string}", + "label": "encoding", + "apiSymbol": "encoding", + "depth": 2, + "scope": "api", + "anchor": "class-utiltextencoder", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:util" + }, + "anchorSource": "ancestor" + }, + { + "id": "util:3a3381b30603", + "chapter": "util", + "kind": "method", + "name": "callbackify", + "signature": "`util.callbackify(original)`", + "label": "util.callbackify(original)", + "apiSymbol": "util.callbackify", + "depth": 1, + "scope": "api", + "anchor": "utilcallbackifyoriginal", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util.callbackify", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:89bb8cea7ec9", + "chapter": "util", + "kind": "method", + "name": "convertProcessSignalToExitCode", + "signature": "`util.convertProcessSignalToExitCode(signal)`", + "label": "util.convertProcessSignalToExitCode(signal)", + "apiSymbol": "util.convertProcessSignalToExitCode", + "depth": 1, + "scope": "api", + "anchor": "utilconvertprocesssignaltoexitcodesignal", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:util" + }, + "anchorSource": "exact" + }, + { + "id": "util:ceef34105431", + "chapter": "util", + "kind": "method", + "name": "debuglog", + "signature": "`util.debuglog(section[, callback])`", + "label": "util.debuglog(section[, callback])", + "apiSymbol": "util.debuglog", + "depth": 1, + "scope": "api", + "anchor": "utildebuglogsection-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util.debuglog", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:e0845fa96e9e", + "chapter": "util", + "kind": "module", + "name": "`debuglog().enabled`", + "signature": "`debuglog().enabled`", + "label": "debuglog().enabled", + "apiSymbol": "debuglog", + "depth": 2, + "scope": "api", + "anchor": "debuglogenabled", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util.debuglog", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:f7c6a70dfb85", + "chapter": "util", + "kind": "method", + "name": "debug", + "signature": "`util.debug(section)`", + "label": "util.debug(section)", + "apiSymbol": "util.debug", + "depth": 1, + "scope": "api", + "anchor": "utildebugsection", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util.debug", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:d35deb7f6f00", + "chapter": "util", + "kind": "method", + "name": "deprecate", + "signature": "`util.deprecate(fn, msg[, code[, options]])`", + "label": "util.deprecate(fn, msg[, code[, options]])", + "apiSymbol": "util.deprecate", + "depth": 1, + "scope": "api", + "anchor": "utildeprecatefn-msg-code-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util.deprecate", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:dd79eb4f9e99", + "chapter": "util", + "kind": "method", + "name": "diff", + "signature": "`util.diff(actual, expected)`", + "label": "util.diff(actual, expected)", + "apiSymbol": "util.diff", + "depth": 1, + "scope": "api", + "anchor": "utildiffactual-expected", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:util" + }, + "anchorSource": "exact" + }, + { + "id": "util:13d12ae0e1eb", + "chapter": "util", + "kind": "method", + "name": "format", + "signature": "`util.format(format[, ...args])`", + "label": "util.format(format[, ...args])", + "apiSymbol": "util.format", + "depth": 1, + "scope": "api", + "anchor": "utilformatformat-args", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util.format", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:b6c6427e394d", + "chapter": "util", + "kind": "method", + "name": "formatWithOptions", + "signature": "`util.formatWithOptions(inspectOptions, format[, ...args])`", + "label": "util.formatWithOptions(inspectOptions, format[, ...args])", + "apiSymbol": "util.formatWithOptions", + "depth": 1, + "scope": "api", + "anchor": "utilformatwithoptionsinspectoptions-format-args", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util.formatWithOptions", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:ea80c1d9c78b", + "chapter": "util", + "kind": "method", + "name": "getCallSites", + "signature": "`util.getCallSites([frameCount][, options])`", + "label": "util.getCallSites([frameCount][, options])", + "apiSymbol": "util.getCallSites", + "depth": 1, + "scope": "api", + "anchor": "utilgetcallsitesframecount-options", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:util" + }, + "anchorSource": "exact" + }, + { + "id": "util:4a91f0566121", + "chapter": "util", + "kind": "method", + "name": "getSystemErrorName", + "signature": "`util.getSystemErrorName(err)`", + "label": "util.getSystemErrorName(err)", + "apiSymbol": "util.getSystemErrorName", + "depth": 1, + "scope": "api", + "anchor": "utilgetsystemerrornameerr", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:util" + }, + "anchorSource": "exact" + }, + { + "id": "util:deaa994f859c", + "chapter": "util", + "kind": "method", + "name": "getSystemErrorMap", + "signature": "`util.getSystemErrorMap()`", + "label": "util.getSystemErrorMap()", + "apiSymbol": "util.getSystemErrorMap", + "depth": 1, + "scope": "api", + "anchor": "utilgetsystemerrormap", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:util" + }, + "anchorSource": "exact" + }, + { + "id": "util:7d1c9f5fa091", + "chapter": "util", + "kind": "method", + "name": "getSystemErrorMessage", + "signature": "`util.getSystemErrorMessage(err)`", + "label": "util.getSystemErrorMessage(err)", + "apiSymbol": "util.getSystemErrorMessage", + "depth": 1, + "scope": "api", + "anchor": "utilgetsystemerrormessageerr", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:util" + }, + "anchorSource": "exact" + }, + { + "id": "util:9ff176c649da", + "chapter": "util", + "kind": "method", + "name": "setTraceSigInt", + "signature": "`util.setTraceSigInt(enable)`", + "label": "util.setTraceSigInt(enable)", + "apiSymbol": "util.setTraceSigInt", + "depth": 1, + "scope": "api", + "anchor": "utilsettracesigintenable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:util" + }, + "anchorSource": "exact" + }, + { + "id": "util:62ed396c647b", + "chapter": "util", + "kind": "method", + "name": "inherits", + "signature": "`util.inherits(constructor, superConstructor)`", + "label": "util.inherits(constructor, superConstructor)", + "apiSymbol": "util.inherits", + "depth": 1, + "scope": "api", + "anchor": "utilinheritsconstructor-superconstructor", + "nodeStability": { + "index": "3", + "level": 3, + "text": "Legacy: Use ES2015 class syntax and `extends` keyword instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util.inherits", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:95fabe29a9eb", + "chapter": "util", + "kind": "method", + "name": "inspect", + "signature": "`util.inspect(object[, options])`", + "label": "util.inspect(object[, options])", + "apiSymbol": "util.inspect", + "depth": 1, + "scope": "api", + "anchor": "utilinspectobject-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util.inspect", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:fbf91870e747", + "chapter": "util", + "kind": "method", + "name": "inspect", + "signature": "`util.inspect(object[, showHidden[, depth[, colors]]])`", + "label": "util.inspect(object[, showHidden[, depth[, colors]]])", + "apiSymbol": "util.inspect", + "depth": 1, + "scope": "api", + "anchor": "utilinspectobject-showhidden-depth-colors", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util.inspect", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:50611f54c063", + "chapter": "util", + "kind": "symbol", + "name": "Type", + "signature": "`custom` Type: {symbol} that can be used to declare custom inspect functions.", + "label": "custom", + "apiSymbol": "custom", + "depth": 2, + "scope": "api", + "anchor": "utilinspectobject-showhidden-depth-colors", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:util" + }, + "anchorSource": "ancestor" + }, + { + "id": "util:6e953992adfc", + "chapter": "util", + "kind": "section", + "name": "defaultOptions", + "signature": "`util.inspect.defaultOptions`", + "label": "util.inspect.defaultOptions", + "apiSymbol": "util.inspect.defaultOptions", + "depth": 2, + "scope": "api", + "anchor": "utilinspectdefaultoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:util" + }, + "anchorSource": "exact" + }, + { + "id": "util:e76877581907", + "chapter": "util", + "kind": "misc", + "name": "Customizing `util.inspect` colors", + "signature": "Customizing `util.inspect` colors", + "label": "Customizing util.inspect colors", + "apiSymbol": "util.inspect", + "depth": 2, + "scope": "api", + "anchor": "customizing-utilinspect-colors", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util.inspect", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:193b75c65e1b", + "chapter": "util", + "kind": "misc", + "name": "modifiers", + "signature": "Modifiers", + "label": "Modifiers", + "apiSymbol": "modifiers", + "depth": 3, + "scope": "documentation", + "anchor": "modifiers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "util:d56c88160346", + "chapter": "util", + "kind": "misc", + "name": "foreground_colors", + "signature": "Foreground colors", + "label": "Foreground colors", + "apiSymbol": "foreground_colors", + "depth": 3, + "scope": "documentation", + "anchor": "foreground-colors", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "util:5ebb97b4f6a4", + "chapter": "util", + "kind": "misc", + "name": "background_colors", + "signature": "Background colors", + "label": "Background colors", + "apiSymbol": "background_colors", + "depth": 3, + "scope": "documentation", + "anchor": "background-colors", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "util:1af9ca7528cd", + "chapter": "util", + "kind": "misc", + "name": "Custom inspection functions on objects", + "signature": "Custom inspection functions on objects", + "label": "Custom inspection functions on objects", + "apiSymbol": "Custom inspection functions on objects", + "depth": 2, + "scope": "documentation", + "anchor": "custom-inspection-functions-on-objects", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "util:253ef05b7f13", + "chapter": "util", + "kind": "method", + "name": "isDeepStrictEqual", + "signature": "`util.isDeepStrictEqual(val1, val2[, options])`", + "label": "util.isDeepStrictEqual(val1, val2[, options])", + "apiSymbol": "util.isDeepStrictEqual", + "depth": 1, + "scope": "api", + "anchor": "utilisdeepstrictequalval1-val2-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util.isDeepStrictEqual", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:96bd98b2e0c0", + "chapter": "util", + "kind": "method", + "name": "parseArgs", + "signature": "`util.parseArgs([config])`", + "label": "util.parseArgs([config])", + "apiSymbol": "util.parseArgs", + "depth": 1, + "scope": "api", + "anchor": "utilparseargsconfig", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.util.parseArgs", + "tests": [ + "tests/corpus/2440-console-inspect-args.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util.parseArgs", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:9378934c3f20", + "chapter": "util", + "kind": "module", + "name": "`parseargs`_`tokens`", + "signature": "`parseArgs` `tokens`", + "label": "parseArgs", + "apiSymbol": "parseArgs", + "depth": 2, + "scope": "api", + "anchor": "parseargs-tokens", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.util.parseArgs", + "tests": [ + "tests/corpus/2440-console-inspect-args.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util.parseArgs", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:fa1168ae93da", + "chapter": "util", + "kind": "method", + "name": "parseEnv", + "signature": "`util.parseEnv(content)`", + "label": "util.parseEnv(content)", + "apiSymbol": "util.parseEnv", + "depth": 1, + "scope": "api", + "anchor": "utilparseenvcontent", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:util" + }, + "anchorSource": "exact" + }, + { + "id": "util:20336c706a45", + "chapter": "util", + "kind": "method", + "name": "promisify", + "signature": "`util.promisify(original)`", + "label": "util.promisify(original)", + "apiSymbol": "util.promisify", + "depth": 1, + "scope": "api", + "anchor": "utilpromisifyoriginal", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.util.promisify" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util.promisify", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:33ce94e3b1ba", + "chapter": "util", + "kind": "module", + "name": "custom_promisified_functions", + "signature": "Custom promisified functions", + "label": "Custom promisified functions", + "apiSymbol": "custom_promisified_functions", + "depth": 2, + "scope": "documentation", + "anchor": "custom-promisified-functions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "util:ba31ff012ecb", + "chapter": "util", + "kind": "symbol", + "name": "Type", + "signature": "`custom` Type: {symbol} that can be used to declare custom promisified variants of functions, see [Custom promisified functions][].", + "label": "custom", + "apiSymbol": "custom", + "depth": 2, + "scope": "api", + "anchor": "utilpromisifyoriginal", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:util" + }, + "anchorSource": "ancestor" + }, + { + "id": "util:68de05f1ea3f", + "chapter": "util", + "kind": "method", + "name": "stripVTControlCharacters", + "signature": "`util.stripVTControlCharacters(str)`", + "label": "util.stripVTControlCharacters(str)", + "apiSymbol": "util.stripVTControlCharacters", + "depth": 1, + "scope": "api", + "anchor": "utilstripvtcontrolcharactersstr", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util.stripVTControlCharacters", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:f40c6577c367", + "chapter": "util", + "kind": "method", + "name": "styleText", + "signature": "`util.styleText(format, text[, options])`", + "label": "util.styleText(format, text[, options])", + "apiSymbol": "util.styleText", + "depth": 1, + "scope": "api", + "anchor": "utilstyletextformat-text-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util.styleText", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:44d86ef713d0", + "chapter": "util", + "kind": "method", + "name": "toUSVString", + "signature": "`util.toUSVString(string)`", + "label": "util.toUSVString(string)", + "apiSymbol": "util.toUSVString", + "depth": 1, + "scope": "api", + "anchor": "utiltousvstringstring", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util.toUSVString", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:2658297d94ef", + "chapter": "util", + "kind": "method", + "name": "transferableAbortController", + "signature": "`util.transferableAbortController()`", + "label": "util.transferableAbortController()", + "apiSymbol": "util.transferableAbortController", + "depth": 1, + "scope": "api", + "anchor": "utiltransferableabortcontroller", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:util" + }, + "anchorSource": "exact" + }, + { + "id": "util:971b69b7898f", + "chapter": "util", + "kind": "method", + "name": "transferableAbortSignal", + "signature": "`util.transferableAbortSignal(signal)`", + "label": "util.transferableAbortSignal(signal)", + "apiSymbol": "util.transferableAbortSignal", + "depth": 1, + "scope": "api", + "anchor": "utiltransferableabortsignalsignal", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:util" + }, + "anchorSource": "exact" + }, + { + "id": "util:99a0b30c19e8", + "chapter": "util", + "kind": "method", + "name": "aborted", + "signature": "`util.aborted(signal, resource)`", + "label": "util.aborted(signal, resource)", + "apiSymbol": "util.aborted", + "depth": 1, + "scope": "api", + "anchor": "utilabortedsignal-resource", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:util" + }, + "anchorSource": "exact" + }, + { + "id": "util:b8c5646d62e9", + "chapter": "util", + "kind": "section", + "name": "types", + "signature": "`util.types`", + "label": "util.types", + "apiSymbol": "util.types", + "depth": 1, + "scope": "api", + "anchor": "utiltypes", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.util.types", + "tests": [ + "tests/corpus/2440-console-inspect-args.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util.types", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:5f818919cfd2", + "chapter": "util", + "kind": "method", + "name": "isAnyArrayBuffer", + "signature": "`util.types.isAnyArrayBuffer(value)`", + "label": "util.types.isAnyArrayBuffer(value)", + "apiSymbol": "util.types.isAnyArrayBuffer", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisanyarraybuffervalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util/types.isAnyArrayBuffer", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:f7462d53b5cf", + "chapter": "util", + "kind": "method", + "name": "isArrayBufferView", + "signature": "`util.types.isArrayBufferView(value)`", + "label": "util.types.isArrayBufferView(value)", + "apiSymbol": "util.types.isArrayBufferView", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisarraybufferviewvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util/types.isArrayBufferView", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:b7e4cca84f2c", + "chapter": "util", + "kind": "method", + "name": "isArgumentsObject", + "signature": "`util.types.isArgumentsObject(value)`", + "label": "util.types.isArgumentsObject(value)", + "apiSymbol": "util.types.isArgumentsObject", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisargumentsobjectvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util/types.isArgumentsObject", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:80257baacc13", + "chapter": "util", + "kind": "method", + "name": "isArrayBuffer", + "signature": "`util.types.isArrayBuffer(value)`", + "label": "util.types.isArrayBuffer(value)", + "apiSymbol": "util.types.isArrayBuffer", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisarraybuffervalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util/types.isArrayBuffer", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:4588a99a750b", + "chapter": "util", + "kind": "method", + "name": "isAsyncFunction", + "signature": "`util.types.isAsyncFunction(value)`", + "label": "util.types.isAsyncFunction(value)", + "apiSymbol": "util.types.isAsyncFunction", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisasyncfunctionvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util/types.isAsyncFunction", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:1a1391f825a8", + "chapter": "util", + "kind": "method", + "name": "isBigInt64Array", + "signature": "`util.types.isBigInt64Array(value)`", + "label": "util.types.isBigInt64Array(value)", + "apiSymbol": "util.types.isBigInt64Array", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisbigint64arrayvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util/types.isBigInt64Array", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:2215dddfe3e9", + "chapter": "util", + "kind": "method", + "name": "isBigIntObject", + "signature": "`util.types.isBigIntObject(value)`", + "label": "util.types.isBigIntObject(value)", + "apiSymbol": "util.types.isBigIntObject", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisbigintobjectvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util/types.isBigIntObject", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:58ef9630da34", + "chapter": "util", + "kind": "method", + "name": "isBigUint64Array", + "signature": "`util.types.isBigUint64Array(value)`", + "label": "util.types.isBigUint64Array(value)", + "apiSymbol": "util.types.isBigUint64Array", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisbiguint64arrayvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util/types.isBigUint64Array", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:944072530679", + "chapter": "util", + "kind": "method", + "name": "isBooleanObject", + "signature": "`util.types.isBooleanObject(value)`", + "label": "util.types.isBooleanObject(value)", + "apiSymbol": "util.types.isBooleanObject", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisbooleanobjectvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util/types.isBooleanObject", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:97162ce3f89d", + "chapter": "util", + "kind": "method", + "name": "isBoxedPrimitive", + "signature": "`util.types.isBoxedPrimitive(value)`", + "label": "util.types.isBoxedPrimitive(value)", + "apiSymbol": "util.types.isBoxedPrimitive", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisboxedprimitivevalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util/types.isBoxedPrimitive", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:0ddaab7593c6", + "chapter": "util", + "kind": "method", + "name": "isCryptoKey", + "signature": "`util.types.isCryptoKey(value)`", + "label": "util.types.isCryptoKey(value)", + "apiSymbol": "util.types.isCryptoKey", + "depth": 2, + "scope": "api", + "anchor": "utiltypesiscryptokeyvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util/types.isCryptoKey", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:f826e5149272", + "chapter": "util", + "kind": "method", + "name": "isDataView", + "signature": "`util.types.isDataView(value)`", + "label": "util.types.isDataView(value)", + "apiSymbol": "util.types.isDataView", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisdataviewvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util/types.isDataView", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:e0f4ce425093", + "chapter": "util", + "kind": "method", + "name": "isDate", + "signature": "`util.types.isDate(value)`", + "label": "util.types.isDate(value)", + "apiSymbol": "util.types.isDate", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisdatevalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util/types.isDate", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:059278fd9e52", + "chapter": "util", + "kind": "method", + "name": "isExternal", + "signature": "`util.types.isExternal(value)`", + "label": "util.types.isExternal(value)", + "apiSymbol": "util.types.isExternal", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisexternalvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util/types.isExternal", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:4c74e45417c9", + "chapter": "util", + "kind": "method", + "name": "isFloat16Array", + "signature": "`util.types.isFloat16Array(value)`", + "label": "util.types.isFloat16Array(value)", + "apiSymbol": "util.types.isFloat16Array", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisfloat16arrayvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util/types.isFloat16Array", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:7b68e7e5edee", + "chapter": "util", + "kind": "method", + "name": "isFloat32Array", + "signature": "`util.types.isFloat32Array(value)`", + "label": "util.types.isFloat32Array(value)", + "apiSymbol": "util.types.isFloat32Array", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisfloat32arrayvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util/types.isFloat32Array", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:67a564791906", + "chapter": "util", + "kind": "method", + "name": "isFloat64Array", + "signature": "`util.types.isFloat64Array(value)`", + "label": "util.types.isFloat64Array(value)", + "apiSymbol": "util.types.isFloat64Array", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisfloat64arrayvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util/types.isFloat64Array", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:2c261e88374c", + "chapter": "util", + "kind": "method", + "name": "isGeneratorFunction", + "signature": "`util.types.isGeneratorFunction(value)`", + "label": "util.types.isGeneratorFunction(value)", + "apiSymbol": "util.types.isGeneratorFunction", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisgeneratorfunctionvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util/types.isGeneratorFunction", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:42cee0435307", + "chapter": "util", + "kind": "method", + "name": "isGeneratorObject", + "signature": "`util.types.isGeneratorObject(value)`", + "label": "util.types.isGeneratorObject(value)", + "apiSymbol": "util.types.isGeneratorObject", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisgeneratorobjectvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util/types.isGeneratorObject", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:bd9ee0c3eff8", + "chapter": "util", + "kind": "method", + "name": "isInt8Array", + "signature": "`util.types.isInt8Array(value)`", + "label": "util.types.isInt8Array(value)", + "apiSymbol": "util.types.isInt8Array", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisint8arrayvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util/types.isInt8Array", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:f04083052a6a", + "chapter": "util", + "kind": "method", + "name": "isInt16Array", + "signature": "`util.types.isInt16Array(value)`", + "label": "util.types.isInt16Array(value)", + "apiSymbol": "util.types.isInt16Array", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisint16arrayvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util/types.isInt16Array", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:a17cf34f6269", + "chapter": "util", + "kind": "method", + "name": "isInt32Array", + "signature": "`util.types.isInt32Array(value)`", + "label": "util.types.isInt32Array(value)", + "apiSymbol": "util.types.isInt32Array", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisint32arrayvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util/types.isInt32Array", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:53776684739c", + "chapter": "util", + "kind": "method", + "name": "isKeyObject", + "signature": "`util.types.isKeyObject(value)`", + "label": "util.types.isKeyObject(value)", + "apiSymbol": "util.types.isKeyObject", + "depth": 2, + "scope": "api", + "anchor": "utiltypesiskeyobjectvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util/types.isKeyObject", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:ffaaa4222589", + "chapter": "util", + "kind": "method", + "name": "isMap", + "signature": "`util.types.isMap(value)`", + "label": "util.types.isMap(value)", + "apiSymbol": "util.types.isMap", + "depth": 2, + "scope": "api", + "anchor": "utiltypesismapvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util/types.isMap", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:2b28df049cb8", + "chapter": "util", + "kind": "method", + "name": "isMapIterator", + "signature": "`util.types.isMapIterator(value)`", + "label": "util.types.isMapIterator(value)", + "apiSymbol": "util.types.isMapIterator", + "depth": 2, + "scope": "api", + "anchor": "utiltypesismapiteratorvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util/types.isMapIterator", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:1a05c59a2acc", + "chapter": "util", + "kind": "method", + "name": "isModuleNamespaceObject", + "signature": "`util.types.isModuleNamespaceObject(value)`", + "label": "util.types.isModuleNamespaceObject(value)", + "apiSymbol": "util.types.isModuleNamespaceObject", + "depth": 2, + "scope": "api", + "anchor": "utiltypesismodulenamespaceobjectvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util/types.isModuleNamespaceObject", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:dc4424e98782", + "chapter": "util", + "kind": "method", + "name": "isNativeError", + "signature": "`util.types.isNativeError(value)`", + "label": "util.types.isNativeError(value)", + "apiSymbol": "util.types.isNativeError", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisnativeerrorvalue", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Use [`Error.isError`][] instead.", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util/types.isNativeError", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:c68f98fdc84d", + "chapter": "util", + "kind": "method", + "name": "isNumberObject", + "signature": "`util.types.isNumberObject(value)`", + "label": "util.types.isNumberObject(value)", + "apiSymbol": "util.types.isNumberObject", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisnumberobjectvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util/types.isNumberObject", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:5c801a05c712", + "chapter": "util", + "kind": "method", + "name": "isPromise", + "signature": "`util.types.isPromise(value)`", + "label": "util.types.isPromise(value)", + "apiSymbol": "util.types.isPromise", + "depth": 2, + "scope": "api", + "anchor": "utiltypesispromisevalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util/types.isPromise", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:9206eadc2af9", + "chapter": "util", + "kind": "method", + "name": "isProxy", + "signature": "`util.types.isProxy(value)`", + "label": "util.types.isProxy(value)", + "apiSymbol": "util.types.isProxy", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisproxyvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util/types.isProxy", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:b5bab42e0f57", + "chapter": "util", + "kind": "method", + "name": "isRegExp", + "signature": "`util.types.isRegExp(value)`", + "label": "util.types.isRegExp(value)", + "apiSymbol": "util.types.isRegExp", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisregexpvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util/types.isRegExp", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:5a9d79d8e96a", + "chapter": "util", + "kind": "method", + "name": "isSet", + "signature": "`util.types.isSet(value)`", + "label": "util.types.isSet(value)", + "apiSymbol": "util.types.isSet", + "depth": 2, + "scope": "api", + "anchor": "utiltypesissetvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util/types.isSet", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:8d7968ea553d", + "chapter": "util", + "kind": "method", + "name": "isSetIterator", + "signature": "`util.types.isSetIterator(value)`", + "label": "util.types.isSetIterator(value)", + "apiSymbol": "util.types.isSetIterator", + "depth": 2, + "scope": "api", + "anchor": "utiltypesissetiteratorvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util/types.isSetIterator", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:621f115c4d8c", + "chapter": "util", + "kind": "method", + "name": "isSharedArrayBuffer", + "signature": "`util.types.isSharedArrayBuffer(value)`", + "label": "util.types.isSharedArrayBuffer(value)", + "apiSymbol": "util.types.isSharedArrayBuffer", + "depth": 2, + "scope": "api", + "anchor": "utiltypesissharedarraybuffervalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util/types.isSharedArrayBuffer", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:af2bae35355e", + "chapter": "util", + "kind": "method", + "name": "isStringObject", + "signature": "`util.types.isStringObject(value)`", + "label": "util.types.isStringObject(value)", + "apiSymbol": "util.types.isStringObject", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisstringobjectvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util/types.isStringObject", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:bd1401ec94ca", + "chapter": "util", + "kind": "method", + "name": "isSymbolObject", + "signature": "`util.types.isSymbolObject(value)`", + "label": "util.types.isSymbolObject(value)", + "apiSymbol": "util.types.isSymbolObject", + "depth": 2, + "scope": "api", + "anchor": "utiltypesissymbolobjectvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util/types.isSymbolObject", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:2fbd77d0441e", + "chapter": "util", + "kind": "method", + "name": "isTypedArray", + "signature": "`util.types.isTypedArray(value)`", + "label": "util.types.isTypedArray(value)", + "apiSymbol": "util.types.isTypedArray", + "depth": 2, + "scope": "api", + "anchor": "utiltypesistypedarrayvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util/types.isTypedArray", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:d5064fec568b", + "chapter": "util", + "kind": "method", + "name": "isUint8Array", + "signature": "`util.types.isUint8Array(value)`", + "label": "util.types.isUint8Array(value)", + "apiSymbol": "util.types.isUint8Array", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisuint8arrayvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util/types.isUint8Array", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:da34ad808940", + "chapter": "util", + "kind": "method", + "name": "isUint8ClampedArray", + "signature": "`util.types.isUint8ClampedArray(value)`", + "label": "util.types.isUint8ClampedArray(value)", + "apiSymbol": "util.types.isUint8ClampedArray", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisuint8clampedarrayvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util/types.isUint8ClampedArray", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:6365536b8e03", + "chapter": "util", + "kind": "method", + "name": "isUint16Array", + "signature": "`util.types.isUint16Array(value)`", + "label": "util.types.isUint16Array(value)", + "apiSymbol": "util.types.isUint16Array", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisuint16arrayvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util/types.isUint16Array", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:e204c2cc61e7", + "chapter": "util", + "kind": "method", + "name": "isUint32Array", + "signature": "`util.types.isUint32Array(value)`", + "label": "util.types.isUint32Array(value)", + "apiSymbol": "util.types.isUint32Array", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisuint32arrayvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util/types.isUint32Array", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:a3da7a9547e8", + "chapter": "util", + "kind": "method", + "name": "isWeakMap", + "signature": "`util.types.isWeakMap(value)`", + "label": "util.types.isWeakMap(value)", + "apiSymbol": "util.types.isWeakMap", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisweakmapvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util/types.isWeakMap", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "util:7882c2e6f505", + "chapter": "util", + "kind": "method", + "name": "isWeakSet", + "signature": "`util.types.isWeakSet(value)`", + "label": "util.types.isWeakSet(value)", + "apiSymbol": "util.types.isWeakSet", + "depth": 2, + "scope": "api", + "anchor": "utiltypesisweaksetvalue", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:util" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:util/types.isWeakSet", + "tests": [ + "tests/fixtures/npm/cases/util-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "v8:3694690d8f37", + "chapter": "v8", + "kind": "module", + "name": "v8", + "signature": "V8", + "label": "V8", + "apiSymbol": "v8", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/harness/node-test.test.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "v8:d28a1bf64cbf", + "chapter": "v8", + "kind": "module", + "name": "serialization_api", + "signature": "Serialization API", + "label": "Serialization API", + "apiSymbol": "serialization_api", + "depth": 1, + "scope": "documentation", + "anchor": "serialization-api", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "v8:08165517e173", + "chapter": "v8", + "kind": "class", + "name": "v8.Serializer", + "signature": "Class: `v8.Serializer`", + "label": "v8.Serializer", + "apiSymbol": "v8.Serializer", + "depth": 2, + "scope": "api", + "anchor": "class-v8serializer", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:v8.Serializer" + }, + "anchorSource": "exact" + }, + { + "id": "v8:be3c50e16904", + "chapter": "v8", + "kind": "method", + "name": "writeHeader", + "signature": "`serializer.writeHeader()`", + "label": "serializer.writeHeader()", + "apiSymbol": "serializer.writeHeader", + "depth": 3, + "scope": "api", + "anchor": "serializerwriteheader", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:v8" + }, + "anchorSource": "exact" + }, + { + "id": "v8:e83e447b3793", + "chapter": "v8", + "kind": "method", + "name": "writeValue", + "signature": "`serializer.writeValue(value)`", + "label": "serializer.writeValue(value)", + "apiSymbol": "serializer.writeValue", + "depth": 3, + "scope": "api", + "anchor": "serializerwritevaluevalue", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:v8" + }, + "anchorSource": "exact" + }, + { + "id": "v8:9b7b89a006eb", + "chapter": "v8", + "kind": "method", + "name": "releaseBuffer", + "signature": "`serializer.releaseBuffer()`", + "label": "serializer.releaseBuffer()", + "apiSymbol": "serializer.releaseBuffer", + "depth": 3, + "scope": "api", + "anchor": "serializerreleasebuffer", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:v8" + }, + "anchorSource": "exact" + }, + { + "id": "v8:1aa4a4cf4830", + "chapter": "v8", + "kind": "method", + "name": "transferArrayBuffer", + "signature": "`serializer.transferArrayBuffer(id, arrayBuffer)`", + "label": "serializer.transferArrayBuffer(id, arrayBuffer)", + "apiSymbol": "serializer.transferArrayBuffer", + "depth": 3, + "scope": "api", + "anchor": "serializertransferarraybufferid-arraybuffer", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:v8" + }, + "anchorSource": "exact" + }, + { + "id": "v8:8d8d18401d8c", + "chapter": "v8", + "kind": "method", + "name": "writeUint32", + "signature": "`serializer.writeUint32(value)`", + "label": "serializer.writeUint32(value)", + "apiSymbol": "serializer.writeUint32", + "depth": 3, + "scope": "api", + "anchor": "serializerwriteuint32value", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:v8" + }, + "anchorSource": "exact" + }, + { + "id": "v8:777dc44901f3", + "chapter": "v8", + "kind": "method", + "name": "writeUint64", + "signature": "`serializer.writeUint64(hi, lo)`", + "label": "serializer.writeUint64(hi, lo)", + "apiSymbol": "serializer.writeUint64", + "depth": 3, + "scope": "api", + "anchor": "serializerwriteuint64hi-lo", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:v8" + }, + "anchorSource": "exact" + }, + { + "id": "v8:257b111bd961", + "chapter": "v8", + "kind": "method", + "name": "writeDouble", + "signature": "`serializer.writeDouble(value)`", + "label": "serializer.writeDouble(value)", + "apiSymbol": "serializer.writeDouble", + "depth": 3, + "scope": "api", + "anchor": "serializerwritedoublevalue", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:v8" + }, + "anchorSource": "exact" + }, + { + "id": "v8:233b3d4fa84b", + "chapter": "v8", + "kind": "method", + "name": "writeRawBytes", + "signature": "`serializer.writeRawBytes(buffer)`", + "label": "serializer.writeRawBytes(buffer)", + "apiSymbol": "serializer.writeRawBytes", + "depth": 3, + "scope": "api", + "anchor": "serializerwriterawbytesbuffer", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:v8" + }, + "anchorSource": "exact" + }, + { + "id": "v8:fa0025599d00", + "chapter": "v8", + "kind": "method", + "name": "_writeHostObject", + "signature": "`serializer._writeHostObject(object)`", + "label": "serializer._writeHostObject(object)", + "apiSymbol": "serializer._writeHostObject", + "depth": 3, + "scope": "api", + "anchor": "serializer_writehostobjectobject", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:v8" + }, + "anchorSource": "exact" + }, + { + "id": "v8:72e4ab697f8e", + "chapter": "v8", + "kind": "method", + "name": "_getDataCloneError", + "signature": "`serializer._getDataCloneError(message)`", + "label": "serializer._getDataCloneError(message)", + "apiSymbol": "serializer._getDataCloneError", + "depth": 3, + "scope": "api", + "anchor": "serializer_getdatacloneerrormessage", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:v8" + }, + "anchorSource": "exact" + }, + { + "id": "v8:440c5e4f9662", + "chapter": "v8", + "kind": "method", + "name": "_getSharedArrayBufferId", + "signature": "`serializer._getSharedArrayBufferId(sharedArrayBuffer)`", + "label": "serializer._getSharedArrayBufferId(sharedArrayBuffer)", + "apiSymbol": "serializer._getSharedArrayBufferId", + "depth": 3, + "scope": "api", + "anchor": "serializer_getsharedarraybufferidsharedarraybuffer", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:v8" + }, + "anchorSource": "exact" + }, + { + "id": "v8:22924147a44d", + "chapter": "v8", + "kind": "method", + "name": "_setTreatArrayBufferViewsAsHostObjects", + "signature": "`serializer._setTreatArrayBufferViewsAsHostObjects(flag)`", + "label": "serializer._setTreatArrayBufferViewsAsHostObjects(flag)", + "apiSymbol": "serializer._setTreatArrayBufferViewsAsHostObjects", + "depth": 3, + "scope": "api", + "anchor": "serializer_settreatarraybufferviewsashostobjectsflag", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:v8" + }, + "anchorSource": "exact" + }, + { + "id": "v8:c27acaea5ad5", + "chapter": "v8", + "kind": "class", + "name": "v8.Deserializer", + "signature": "Class: `v8.Deserializer`", + "label": "v8.Deserializer", + "apiSymbol": "v8.Deserializer", + "depth": 2, + "scope": "api", + "anchor": "class-v8deserializer", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:v8.Deserializer" + }, + "anchorSource": "exact" + }, + { + "id": "v8:327881d87485", + "chapter": "v8", + "kind": "method", + "name": "readHeader", + "signature": "`deserializer.readHeader()`", + "label": "deserializer.readHeader()", + "apiSymbol": "deserializer.readHeader", + "depth": 3, + "scope": "api", + "anchor": "deserializerreadheader", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:v8" + }, + "anchorSource": "exact" + }, + { + "id": "v8:46cc71c5745f", + "chapter": "v8", + "kind": "method", + "name": "readValue", + "signature": "`deserializer.readValue()`", + "label": "deserializer.readValue()", + "apiSymbol": "deserializer.readValue", + "depth": 3, + "scope": "api", + "anchor": "deserializerreadvalue", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:v8" + }, + "anchorSource": "exact" + }, + { + "id": "v8:6146c1a43932", + "chapter": "v8", + "kind": "method", + "name": "transferArrayBuffer", + "signature": "`deserializer.transferArrayBuffer(id, arrayBuffer)`", + "label": "deserializer.transferArrayBuffer(id, arrayBuffer)", + "apiSymbol": "deserializer.transferArrayBuffer", + "depth": 3, + "scope": "api", + "anchor": "deserializertransferarraybufferid-arraybuffer", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:v8" + }, + "anchorSource": "exact" + }, + { + "id": "v8:a0904e28ffb3", + "chapter": "v8", + "kind": "method", + "name": "getWireFormatVersion", + "signature": "`deserializer.getWireFormatVersion()`", + "label": "deserializer.getWireFormatVersion()", + "apiSymbol": "deserializer.getWireFormatVersion", + "depth": 3, + "scope": "api", + "anchor": "deserializergetwireformatversion", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:v8" + }, + "anchorSource": "exact" + }, + { + "id": "v8:70dda0b073d0", + "chapter": "v8", + "kind": "method", + "name": "readUint32", + "signature": "`deserializer.readUint32()`", + "label": "deserializer.readUint32()", + "apiSymbol": "deserializer.readUint32", + "depth": 3, + "scope": "api", + "anchor": "deserializerreaduint32", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:v8" + }, + "anchorSource": "exact" + }, + { + "id": "v8:a12c0c06fca5", + "chapter": "v8", + "kind": "method", + "name": "readUint64", + "signature": "`deserializer.readUint64()`", + "label": "deserializer.readUint64()", + "apiSymbol": "deserializer.readUint64", + "depth": 3, + "scope": "api", + "anchor": "deserializerreaduint64", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:v8" + }, + "anchorSource": "exact" + }, + { + "id": "v8:9d73521d5703", + "chapter": "v8", + "kind": "method", + "name": "readDouble", + "signature": "`deserializer.readDouble()`", + "label": "deserializer.readDouble()", + "apiSymbol": "deserializer.readDouble", + "depth": 3, + "scope": "api", + "anchor": "deserializerreaddouble", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:v8" + }, + "anchorSource": "exact" + }, + { + "id": "v8:e96dcb87cc28", + "chapter": "v8", + "kind": "method", + "name": "readRawBytes", + "signature": "`deserializer.readRawBytes(length)`", + "label": "deserializer.readRawBytes(length)", + "apiSymbol": "deserializer.readRawBytes", + "depth": 3, + "scope": "api", + "anchor": "deserializerreadrawbyteslength", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:v8" + }, + "anchorSource": "exact" + }, + { + "id": "v8:4d9a79662cd3", + "chapter": "v8", + "kind": "method", + "name": "_readHostObject", + "signature": "`deserializer._readHostObject()`", + "label": "deserializer._readHostObject()", + "apiSymbol": "deserializer._readHostObject", + "depth": 3, + "scope": "api", + "anchor": "deserializer_readhostobject", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:v8" + }, + "anchorSource": "exact" + }, + { + "id": "v8:4de0cb167b88", + "chapter": "v8", + "kind": "class", + "name": "v8.DefaultSerializer", + "signature": "Class: `v8.DefaultSerializer`", + "label": "v8.DefaultSerializer", + "apiSymbol": "v8.DefaultSerializer", + "depth": 2, + "scope": "api", + "anchor": "class-v8defaultserializer", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:v8.DefaultSerializer" + }, + "anchorSource": "exact" + }, + { + "id": "v8:dabaa0ff5816", + "chapter": "v8", + "kind": "class", + "name": "v8.DefaultDeserializer", + "signature": "Class: `v8.DefaultDeserializer`", + "label": "v8.DefaultDeserializer", + "apiSymbol": "v8.DefaultDeserializer", + "depth": 2, + "scope": "api", + "anchor": "class-v8defaultdeserializer", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:v8.DefaultDeserializer" + }, + "anchorSource": "exact" + }, + { + "id": "v8:874a94dcddd3", + "chapter": "v8", + "kind": "method", + "name": "serialize", + "signature": "`v8.serialize(value)`", + "label": "v8.serialize(value)", + "apiSymbol": "v8.serialize", + "depth": 2, + "scope": "api", + "anchor": "v8serializevalue", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:v8.serialize" + }, + "anchorSource": "exact" + }, + { + "id": "v8:9a2b32a9ff44", + "chapter": "v8", + "kind": "method", + "name": "deserialize", + "signature": "`v8.deserialize(buffer)`", + "label": "v8.deserialize(buffer)", + "apiSymbol": "v8.deserialize", + "depth": 2, + "scope": "api", + "anchor": "v8deserializebuffer", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:v8.deserialize" + }, + "anchorSource": "exact" + }, + { + "id": "v8:a2af6a87cc6e", + "chapter": "v8", + "kind": "module", + "name": "promise_hooks", + "signature": "Promise hooks", + "label": "Promise hooks", + "apiSymbol": "promise_hooks", + "depth": 1, + "scope": "documentation", + "anchor": "promise-hooks", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "v8:f64bea95023e", + "chapter": "v8", + "kind": "module", + "name": "hook_callbacks", + "signature": "Hook callbacks", + "label": "Hook callbacks", + "apiSymbol": "hook_callbacks", + "depth": 2, + "scope": "documentation", + "anchor": "hook-callbacks", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "v8:7db5baf46842", + "chapter": "v8", + "kind": "method", + "name": "init", + "signature": "`init(promise, parent)`", + "label": "init(promise, parent)", + "apiSymbol": "init", + "depth": 3, + "scope": "api", + "anchor": "initpromise-parent", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:v8" + }, + "anchorSource": "exact" + }, + { + "id": "v8:0934b2fc357d", + "chapter": "v8", + "kind": "method", + "name": "before", + "signature": "`before(promise)`", + "label": "before(promise)", + "apiSymbol": "before", + "depth": 3, + "scope": "api", + "anchor": "beforepromise", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:before", + "tests": [ + "tests/harness/node-test.test.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:v8" + }, + "anchorSource": "exact" + }, + { + "id": "v8:4af986a35174", + "chapter": "v8", + "kind": "method", + "name": "after", + "signature": "`after(promise)`", + "label": "after(promise)", + "apiSymbol": "after", + "depth": 3, + "scope": "api", + "anchor": "afterpromise", + "nodeStability": null, + "static": { + "status": "partial", + "evidence": "compiler-dedicated:after", + "tests": [ + "tests/harness/node-test.test.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:v8" + }, + "anchorSource": "exact" + }, + { + "id": "v8:f2ada5cff228", + "chapter": "v8", + "kind": "method", + "name": "settled", + "signature": "`settled(promise)`", + "label": "settled(promise)", + "apiSymbol": "settled", + "depth": 3, + "scope": "api", + "anchor": "settledpromise", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:v8" + }, + "anchorSource": "exact" + }, + { + "id": "v8:a171bf064efc", + "chapter": "v8", + "kind": "method", + "name": "onInit", + "signature": "`promiseHooks.onInit(init)`", + "label": "promiseHooks.onInit(init)", + "apiSymbol": "promiseHooks.onInit", + "depth": 2, + "scope": "api", + "anchor": "promisehooksoninitinit", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:v8" + }, + "anchorSource": "exact" + }, + { + "id": "v8:6a3e3598e903", + "chapter": "v8", + "kind": "method", + "name": "onSettled", + "signature": "`promiseHooks.onSettled(settled)`", + "label": "promiseHooks.onSettled(settled)", + "apiSymbol": "promiseHooks.onSettled", + "depth": 2, + "scope": "api", + "anchor": "promisehooksonsettledsettled", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:v8" + }, + "anchorSource": "exact" + }, + { + "id": "v8:808ed425935d", + "chapter": "v8", + "kind": "method", + "name": "onBefore", + "signature": "`promiseHooks.onBefore(before)`", + "label": "promiseHooks.onBefore(before)", + "apiSymbol": "promiseHooks.onBefore", + "depth": 2, + "scope": "api", + "anchor": "promisehooksonbeforebefore", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:v8" + }, + "anchorSource": "exact" + }, + { + "id": "v8:67105b6f273d", + "chapter": "v8", + "kind": "method", + "name": "onAfter", + "signature": "`promiseHooks.onAfter(after)`", + "label": "promiseHooks.onAfter(after)", + "apiSymbol": "promiseHooks.onAfter", + "depth": 2, + "scope": "api", + "anchor": "promisehooksonafterafter", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:v8" + }, + "anchorSource": "exact" + }, + { + "id": "v8:edc4a34c3f4a", + "chapter": "v8", + "kind": "method", + "name": "createHook", + "signature": "`promiseHooks.createHook(callbacks)`", + "label": "promiseHooks.createHook(callbacks)", + "apiSymbol": "promiseHooks.createHook", + "depth": 2, + "scope": "api", + "anchor": "promisehookscreatehookcallbacks", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:v8" + }, + "anchorSource": "exact" + }, + { + "id": "v8:ba4f29fe0f8a", + "chapter": "v8", + "kind": "module", + "name": "startup_snapshot_api", + "signature": "Startup Snapshot API", + "label": "Startup Snapshot API", + "apiSymbol": "startup_snapshot_api", + "depth": 1, + "scope": "documentation", + "anchor": "startup-snapshot-api", + "nodeStability": null, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "v8:c63bdf0a4f00", + "chapter": "v8", + "kind": "method", + "name": "addSerializeCallback", + "signature": "`v8.startupSnapshot.addSerializeCallback(callback[, data])`", + "label": "v8.startupSnapshot.addSerializeCallback(callback[, data])", + "apiSymbol": "v8.startupSnapshot.addSerializeCallback", + "depth": 2, + "scope": "api", + "anchor": "v8startupsnapshotaddserializecallbackcallback-data", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:v8" + }, + "anchorSource": "exact" + }, + { + "id": "v8:f98660318efb", + "chapter": "v8", + "kind": "method", + "name": "addDeserializeCallback", + "signature": "`v8.startupSnapshot.addDeserializeCallback(callback[, data])`", + "label": "v8.startupSnapshot.addDeserializeCallback(callback[, data])", + "apiSymbol": "v8.startupSnapshot.addDeserializeCallback", + "depth": 2, + "scope": "api", + "anchor": "v8startupsnapshotadddeserializecallbackcallback-data", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:v8" + }, + "anchorSource": "exact" + }, + { + "id": "v8:f77fb1c01d1c", + "chapter": "v8", + "kind": "method", + "name": "setDeserializeMainFunction", + "signature": "`v8.startupSnapshot.setDeserializeMainFunction(callback[, data])`", + "label": "v8.startupSnapshot.setDeserializeMainFunction(callback[, data])", + "apiSymbol": "v8.startupSnapshot.setDeserializeMainFunction", + "depth": 2, + "scope": "api", + "anchor": "v8startupsnapshotsetdeserializemainfunctioncallback-data", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:v8" + }, + "anchorSource": "exact" + }, + { + "id": "v8:40e4e62a4579", + "chapter": "v8", + "kind": "method", + "name": "isBuildingSnapshot", + "signature": "`v8.startupSnapshot.isBuildingSnapshot()`", + "label": "v8.startupSnapshot.isBuildingSnapshot()", + "apiSymbol": "v8.startupSnapshot.isBuildingSnapshot", + "depth": 2, + "scope": "api", + "anchor": "v8startupsnapshotisbuildingsnapshot", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:v8" + }, + "anchorSource": "exact" + }, + { + "id": "v8:8e779fd7ced3", + "chapter": "v8", + "kind": "class", + "name": "v8.GCProfiler", + "signature": "Class: `v8.GCProfiler`", + "label": "v8.GCProfiler", + "apiSymbol": "v8.GCProfiler", + "depth": 1, + "scope": "api", + "anchor": "class-v8gcprofiler", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:v8.GCProfiler" + }, + "anchorSource": "exact" + }, + { + "id": "v8:f3a5ad68d220", + "chapter": "v8", + "kind": "method", + "name": "start", + "signature": "`profiler.start()`", + "label": "profiler.start()", + "apiSymbol": "profiler.start", + "depth": 2, + "scope": "api", + "anchor": "profilerstart", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:v8" + }, + "anchorSource": "exact" + }, + { + "id": "v8:ada5ab4b0279", + "chapter": "v8", + "kind": "method", + "name": "stop", + "signature": "`profiler.stop()`", + "label": "profiler.stop()", + "apiSymbol": "profiler.stop", + "depth": 2, + "scope": "api", + "anchor": "profilerstop", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:v8" + }, + "anchorSource": "exact" + }, + { + "id": "v8:502f365c722d", + "chapter": "v8", + "kind": "method", + "name": "[Symbol.dispose]", + "signature": "`profiler[Symbol.dispose]()`", + "label": "profiler[Symbol.dispose]()", + "apiSymbol": "profiler", + "depth": 2, + "scope": "api", + "anchor": "profilersymboldispose", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:v8" + }, + "anchorSource": "exact" + }, + { + "id": "v8:546aaef1cfca", + "chapter": "v8", + "kind": "class", + "name": "SyncCPUProfileHandle", + "signature": "Class: `SyncCPUProfileHandle`", + "label": "SyncCPUProfileHandle", + "apiSymbol": "SyncCPUProfileHandle", + "depth": 1, + "scope": "api", + "anchor": "class-synccpuprofilehandle", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:v8" + }, + "anchorSource": "exact" + }, + { + "id": "v8:09427b420c94", + "chapter": "v8", + "kind": "method", + "name": "stop", + "signature": "`syncCpuProfileHandle.stop()`", + "label": "syncCpuProfileHandle.stop()", + "apiSymbol": "syncCpuProfileHandle.stop", + "depth": 2, + "scope": "api", + "anchor": "synccpuprofilehandlestop", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:v8" + }, + "anchorSource": "exact" + }, + { + "id": "v8:27e7bdd56e06", + "chapter": "v8", + "kind": "method", + "name": "[Symbol.dispose]", + "signature": "`syncCpuProfileHandle[Symbol.dispose]()`", + "label": "syncCpuProfileHandle[Symbol.dispose]()", + "apiSymbol": "syncCpuProfileHandle", + "depth": 2, + "scope": "api", + "anchor": "synccpuprofilehandlesymboldispose", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:v8" + }, + "anchorSource": "exact" + }, + { + "id": "v8:2bc72f743fb7", + "chapter": "v8", + "kind": "class", + "name": "CPUProfileHandle", + "signature": "Class: `CPUProfileHandle`", + "label": "CPUProfileHandle", + "apiSymbol": "CPUProfileHandle", + "depth": 1, + "scope": "api", + "anchor": "class-cpuprofilehandle", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:v8" + }, + "anchorSource": "exact" + }, + { + "id": "v8:209dae35fe48", + "chapter": "v8", + "kind": "method", + "name": "stop", + "signature": "`cpuProfileHandle.stop()`", + "label": "cpuProfileHandle.stop()", + "apiSymbol": "cpuProfileHandle.stop", + "depth": 2, + "scope": "api", + "anchor": "cpuprofilehandlestop", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:v8" + }, + "anchorSource": "exact" + }, + { + "id": "v8:82d5d47161c2", + "chapter": "v8", + "kind": "method", + "name": "[Symbol.asyncDispose]", + "signature": "`cpuProfileHandle[Symbol.asyncDispose]()`", + "label": "cpuProfileHandle[Symbol.asyncDispose]()", + "apiSymbol": "cpuProfileHandle", + "depth": 2, + "scope": "api", + "anchor": "cpuprofilehandlesymbolasyncdispose", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:v8" + }, + "anchorSource": "exact" + }, + { + "id": "v8:27a59816a32b", + "chapter": "v8", + "kind": "class", + "name": "HeapProfileHandle", + "signature": "Class: `HeapProfileHandle`", + "label": "HeapProfileHandle", + "apiSymbol": "HeapProfileHandle", + "depth": 1, + "scope": "api", + "anchor": "class-heapprofilehandle", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:v8" + }, + "anchorSource": "exact" + }, + { + "id": "v8:1cb2fac526b6", + "chapter": "v8", + "kind": "method", + "name": "stop", + "signature": "`heapProfileHandle.stop()`", + "label": "heapProfileHandle.stop()", + "apiSymbol": "heapProfileHandle.stop", + "depth": 2, + "scope": "api", + "anchor": "heapprofilehandlestop", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:v8" + }, + "anchorSource": "exact" + }, + { + "id": "v8:5ec7010fd6f4", + "chapter": "v8", + "kind": "method", + "name": "[Symbol.asyncDispose]", + "signature": "`heapProfileHandle[Symbol.asyncDispose]()`", + "label": "heapProfileHandle[Symbol.asyncDispose]()", + "apiSymbol": "heapProfileHandle", + "depth": 2, + "scope": "api", + "anchor": "heapprofilehandlesymbolasyncdispose", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:v8" + }, + "anchorSource": "exact" + }, + { + "id": "v8:d94fda515345", + "chapter": "v8", + "kind": "method", + "name": "cachedDataVersionTag", + "signature": "`v8.cachedDataVersionTag()`", + "label": "v8.cachedDataVersionTag()", + "apiSymbol": "v8.cachedDataVersionTag", + "depth": 1, + "scope": "api", + "anchor": "v8cacheddataversiontag", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:v8.cachedDataVersionTag", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "v8:8fe0f6defa40", + "chapter": "v8", + "kind": "method", + "name": "getHeapCodeStatistics", + "signature": "`v8.getHeapCodeStatistics()`", + "label": "v8.getHeapCodeStatistics()", + "apiSymbol": "v8.getHeapCodeStatistics", + "depth": 1, + "scope": "api", + "anchor": "v8getheapcodestatistics", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:v8.getHeapCodeStatistics", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "v8:fb1c9af2dace", + "chapter": "v8", + "kind": "method", + "name": "getHeapSnapshot", + "signature": "`v8.getHeapSnapshot([options])`", + "label": "v8.getHeapSnapshot([options])", + "apiSymbol": "v8.getHeapSnapshot", + "depth": 1, + "scope": "api", + "anchor": "v8getheapsnapshotoptions", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:v8.getHeapSnapshot" + }, + "anchorSource": "exact" + }, + { + "id": "v8:6b8bee67a167", + "chapter": "v8", + "kind": "method", + "name": "getHeapSpaceStatistics", + "signature": "`v8.getHeapSpaceStatistics()`", + "label": "v8.getHeapSpaceStatistics()", + "apiSymbol": "v8.getHeapSpaceStatistics", + "depth": 1, + "scope": "api", + "anchor": "v8getheapspacestatistics", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:v8.getHeapSpaceStatistics", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "v8:cefde4a8297c", + "chapter": "v8", + "kind": "method", + "name": "getHeapStatistics", + "signature": "`v8.getHeapStatistics()`", + "label": "v8.getHeapStatistics()", + "apiSymbol": "v8.getHeapStatistics", + "depth": 1, + "scope": "api", + "anchor": "v8getheapstatistics", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:v8.getHeapStatistics", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "v8:1c4ee81cc630", + "chapter": "v8", + "kind": "method", + "name": "getCppHeapStatistics", + "signature": "`v8.getCppHeapStatistics([detailLevel])`", + "label": "v8.getCppHeapStatistics([detailLevel])", + "apiSymbol": "v8.getCppHeapStatistics", + "depth": 1, + "scope": "api", + "anchor": "v8getcppheapstatisticsdetaillevel", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:v8.getCppHeapStatistics", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "v8:3bc7c8e3907e", + "chapter": "v8", + "kind": "method", + "name": "queryObjects", + "signature": "`v8.queryObjects(ctor[, options])`", + "label": "v8.queryObjects(ctor[, options])", + "apiSymbol": "v8.queryObjects", + "depth": 1, + "scope": "api", + "anchor": "v8queryobjectsctor-options", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:v8.queryObjects" + }, + "anchorSource": "exact" + }, + { + "id": "v8:bf333a0a413f", + "chapter": "v8", + "kind": "method", + "name": "setFlagsFromString", + "signature": "`v8.setFlagsFromString(flags)`", + "label": "v8.setFlagsFromString(flags)", + "apiSymbol": "v8.setFlagsFromString", + "depth": 1, + "scope": "api", + "anchor": "v8setflagsfromstringflags", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:v8.setFlagsFromString", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "v8:25869b6020c1", + "chapter": "v8", + "kind": "method", + "name": "stopCoverage", + "signature": "`v8.stopCoverage()`", + "label": "v8.stopCoverage()", + "apiSymbol": "v8.stopCoverage", + "depth": 1, + "scope": "api", + "anchor": "v8stopcoverage", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:v8.stopCoverage", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "v8:938d404a4307", + "chapter": "v8", + "kind": "method", + "name": "takeCoverage", + "signature": "`v8.takeCoverage()`", + "label": "v8.takeCoverage()", + "apiSymbol": "v8.takeCoverage", + "depth": 1, + "scope": "api", + "anchor": "v8takecoverage", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:v8.takeCoverage", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "v8:8ea497243f60", + "chapter": "v8", + "kind": "method", + "name": "writeHeapSnapshot", + "signature": "`v8.writeHeapSnapshot([filename[,options]])`", + "label": "v8.writeHeapSnapshot([filename[,options]])", + "apiSymbol": "v8.writeHeapSnapshot", + "depth": 1, + "scope": "api", + "anchor": "v8writeheapsnapshotfilenameoptions", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:v8.writeHeapSnapshot" + }, + "anchorSource": "exact" + }, + { + "id": "v8:a53c96b58d52", + "chapter": "v8", + "kind": "method", + "name": "setHeapSnapshotNearHeapLimit", + "signature": "`v8.setHeapSnapshotNearHeapLimit(limit)`", + "label": "v8.setHeapSnapshotNearHeapLimit(limit)", + "apiSymbol": "v8.setHeapSnapshotNearHeapLimit", + "depth": 1, + "scope": "api", + "anchor": "v8setheapsnapshotnearheaplimitlimit", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:v8.setHeapSnapshotNearHeapLimit", + "tests": [ + "tests/fixtures/npm/cases/misc-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "v8:4696ce9fd4f6", + "chapter": "v8", + "kind": "method", + "name": "isStringOneByteRepresentation", + "signature": "`v8.isStringOneByteRepresentation(content)`", + "label": "v8.isStringOneByteRepresentation(content)", + "apiSymbol": "v8.isStringOneByteRepresentation", + "depth": 1, + "scope": "api", + "anchor": "v8isstringonebyterepresentationcontent", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:v8.isStringOneByteRepresentation" + }, + "anchorSource": "exact" + }, + { + "id": "v8:d6acc1d6c6bf", + "chapter": "v8", + "kind": "method", + "name": "startCpuProfile", + "signature": "`v8.startCpuProfile()`", + "label": "v8.startCpuProfile()", + "apiSymbol": "v8.startCpuProfile", + "depth": 1, + "scope": "api", + "anchor": "v8startcpuprofile", + "nodeStability": null, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:v8" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:v8.startCpuProfile" + }, + "anchorSource": "exact" + }, + { + "id": "vm:21030825d13d", + "chapter": "vm", + "kind": "module", + "name": "vm", + "signature": "VM (executing JavaScript)", + "label": "VM (executing JavaScript)", + "apiSymbol": "vm", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "by-design", + "evidence": "derived:descendants" + }, + "dynamic": { + "status": "by-design", + "evidence": "derived:descendants" + }, + "anchorSource": "chapter" + }, + { + "id": "vm:1862470c5f93", + "chapter": "vm", + "kind": "module", + "name": "type:_`modulerequest`", + "signature": "Type: `ModuleRequest`", + "label": "Type: ModuleRequest", + "apiSymbol": "ModuleRequest", + "depth": 1, + "scope": "api", + "anchor": "type-modulerequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:vm" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:vm" + }, + "anchorSource": "exact" + }, + { + "id": "vm:51d194a1b4a7", + "chapter": "vm", + "kind": "module", + "name": "what_does_it_mean_to_\"contextify\"_an_object?", + "signature": "What does it mean to \"contextify\" an object?", + "label": "What does it mean to \"contextify\" an object?", + "apiSymbol": "what_does_it_mean_to_\"contextify\"_an_object?", + "depth": 1, + "scope": "documentation", + "anchor": "what-does-it-mean-to-contextify-an-object", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "vm:038111beaa8d", + "chapter": "vm", + "kind": "section", + "name": "DONT_CONTEXTIFY", + "signature": "`vm.constants.DONT_CONTEXTIFY`", + "label": "vm.constants.DONT_CONTEXTIFY", + "apiSymbol": "vm.constants.DONT_CONTEXTIFY", + "depth": 2, + "scope": "api", + "anchor": "vmconstantsdont_contextify", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:vm" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:vm" + }, + "anchorSource": "exact" + }, + { + "id": "vm:01ac590f0ecd", + "chapter": "vm", + "kind": "module", + "name": "timeout_interactions_with_asynchronous_tasks_and_promises", + "signature": "Timeout interactions with asynchronous tasks and Promises", + "label": "Timeout interactions with asynchronous tasks and Promises", + "apiSymbol": "timeout_interactions_with_asynchronous_tasks_and_promises", + "depth": 1, + "scope": "documentation", + "anchor": "timeout-interactions-with-asynchronous-tasks-and-promises", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "vm:e6c6f0125533", + "chapter": "vm", + "kind": "module", + "name": "when_`microtaskmode`_is_`'afterevaluate'`,_beware_sharing_promises_between_contexts", + "signature": "When `microtaskMode` is `'afterEvaluate'`, beware sharing Promises between Contexts", + "label": "When microtaskMode is 'afterEvaluate', beware sharing Promises between Contexts", + "apiSymbol": "microtaskMode", + "depth": 2, + "scope": "api", + "anchor": "when-microtaskmode-is-afterevaluate-beware-sharing-promises-between-contexts", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:vm" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:vm" + }, + "anchorSource": "exact" + }, + { + "id": "vm:4fa119560369", + "chapter": "vm", + "kind": "module", + "name": "support_of_dynamic_`import()`_in_compilation_apis", + "signature": "Support of dynamic `import()` in compilation APIs", + "label": "Support of dynamic import() in compilation APIs", + "apiSymbol": "import", + "depth": 1, + "scope": "api", + "anchor": "support-of-dynamic-import-in-compilation-apis", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:vm" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:vm" + }, + "anchorSource": "exact" + }, + { + "id": "vm:7a607b1b99b7", + "chapter": "vm", + "kind": "module", + "name": "when_the_`importmoduledynamically`_option_is_not_specified_or_undefined", + "signature": "When the `importModuleDynamically` option is not specified or undefined", + "label": "When the importModuleDynamically option is not specified or undefined", + "apiSymbol": "importModuleDynamically", + "depth": 2, + "scope": "api", + "anchor": "when-the-importmoduledynamically-option-is-not-specified-or-undefined", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:vm" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:vm" + }, + "anchorSource": "exact" + }, + { + "id": "vm:13b25b062c69", + "chapter": "vm", + "kind": "module", + "name": "when_`importmoduledynamically`_is_`vm.constants.use_main_context_default_loader`", + "signature": "When `importModuleDynamically` is `vm.constants.USE_MAIN_CONTEXT_DEFAULT_LOADER`", + "label": "When importModuleDynamically is vm.constants.USE_MAIN_CONTEXT_DEFAULT_LOADER", + "apiSymbol": "importModuleDynamically", + "depth": 2, + "scope": "api", + "anchor": "when-importmoduledynamically-is-vmconstantsuse_main_context_default_loader", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:vm" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:vm" + }, + "anchorSource": "exact" + }, + { + "id": "vm:1c76cb3e2d91", + "chapter": "vm", + "kind": "module", + "name": "when_`importmoduledynamically`_is_a_function", + "signature": "When `importModuleDynamically` is a function", + "label": "When importModuleDynamically is a function", + "apiSymbol": "importModuleDynamically", + "depth": 2, + "scope": "api", + "anchor": "when-importmoduledynamically-is-a-function", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:vm" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:vm" + }, + "anchorSource": "exact" + }, + { + "id": "vm:f5537f89ca5d", + "chapter": "vm", + "kind": "class", + "name": "vm.Script", + "signature": "Class: `vm.Script`", + "label": "vm.Script", + "apiSymbol": "vm.Script", + "depth": 1, + "scope": "api", + "anchor": "class-vmscript", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:vm" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:vm" + }, + "anchorSource": "exact" + }, + { + "id": "vm:57fea7657344", + "chapter": "vm", + "kind": "method", + "name": "createCachedData", + "signature": "`script.createCachedData()`", + "label": "script.createCachedData()", + "apiSymbol": "script.createCachedData", + "depth": 2, + "scope": "api", + "anchor": "scriptcreatecacheddata", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:vm" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:vm" + }, + "anchorSource": "exact" + }, + { + "id": "vm:1be031568bf5", + "chapter": "vm", + "kind": "method", + "name": "runInContext", + "signature": "`script.runInContext(contextifiedObject[, options])`", + "label": "script.runInContext(contextifiedObject[, options])", + "apiSymbol": "script.runInContext", + "depth": 2, + "scope": "api", + "anchor": "scriptrunincontextcontextifiedobject-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:vm" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:vm" + }, + "anchorSource": "exact" + }, + { + "id": "vm:2211d570e4e9", + "chapter": "vm", + "kind": "method", + "name": "runInNewContext", + "signature": "`script.runInNewContext([contextObject[, options]])`", + "label": "script.runInNewContext([contextObject[, options]])", + "apiSymbol": "script.runInNewContext", + "depth": 2, + "scope": "api", + "anchor": "scriptruninnewcontextcontextobject-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:vm" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:vm" + }, + "anchorSource": "exact" + }, + { + "id": "vm:8c2bd9e2b4e1", + "chapter": "vm", + "kind": "method", + "name": "runInThisContext", + "signature": "`script.runInThisContext([options])`", + "label": "script.runInThisContext([options])", + "apiSymbol": "script.runInThisContext", + "depth": 2, + "scope": "api", + "anchor": "scriptruninthiscontextoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:vm" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:vm" + }, + "anchorSource": "exact" + }, + { + "id": "vm:c873d77247ad", + "chapter": "vm", + "kind": "boolean|undefined", + "name": "Type", + "signature": "`cachedDataRejected` Type: {boolean|undefined}", + "label": "cachedDataRejected", + "apiSymbol": "cachedDataRejected", + "depth": 2, + "scope": "api", + "anchor": "class-vmscript", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:vm" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:vm" + }, + "anchorSource": "ancestor" + }, + { + "id": "vm:a8d128653baa", + "chapter": "vm", + "kind": "string|undefined", + "name": "Type", + "signature": "`sourceMapURL` Type: {string|undefined}", + "label": "sourceMapURL", + "apiSymbol": "sourceMapURL", + "depth": 2, + "scope": "api", + "anchor": "class-vmscript", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:vm" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:vm" + }, + "anchorSource": "ancestor" + }, + { + "id": "vm:aa49d2ca62b1", + "chapter": "vm", + "kind": "class", + "name": "vm.Module", + "signature": "Class: `vm.Module`", + "label": "vm.Module", + "apiSymbol": "vm.Module", + "depth": 1, + "scope": "api", + "anchor": "class-vmmodule", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:vm" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:vm" + }, + "anchorSource": "exact" + }, + { + "id": "vm:a181bf63cb8c", + "chapter": "vm", + "kind": "method", + "name": "evaluate", + "signature": "`module.evaluate([options])`", + "label": "module.evaluate([options])", + "apiSymbol": "module.evaluate", + "depth": 2, + "scope": "api", + "anchor": "moduleevaluateoptions", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:vm" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:vm" + }, + "anchorSource": "exact" + }, + { + "id": "vm:4becbb2c35c8", + "chapter": "vm", + "kind": "method", + "name": "link", + "signature": "`module.link(linker)`", + "label": "module.link(linker)", + "apiSymbol": "module.link", + "depth": 2, + "scope": "api", + "anchor": "modulelinklinker", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:vm" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:vm" + }, + "anchorSource": "exact" + }, + { + "id": "vm:823e00cb8f08", + "chapter": "vm", + "kind": "any", + "name": "Type", + "signature": "`error` Type: {any}", + "label": "error", + "apiSymbol": "error", + "depth": 2, + "scope": "api", + "anchor": "class-vmmodule", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:vm" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:vm" + }, + "anchorSource": "ancestor" + }, + { + "id": "vm:6ba38534e97e", + "chapter": "vm", + "kind": "string", + "name": "Type", + "signature": "`identifier` Type: {string}", + "label": "identifier", + "apiSymbol": "identifier", + "depth": 2, + "scope": "api", + "anchor": "class-vmmodule", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:vm" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:vm" + }, + "anchorSource": "ancestor" + }, + { + "id": "vm:af416a8de67f", + "chapter": "vm", + "kind": "Object", + "name": "Type", + "signature": "`namespace` Type: {Object}", + "label": "namespace", + "apiSymbol": "namespace", + "depth": 2, + "scope": "api", + "anchor": "class-vmmodule", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:vm" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:vm" + }, + "anchorSource": "ancestor" + }, + { + "id": "vm:a510ce849c1f", + "chapter": "vm", + "kind": "string", + "name": "Type", + "signature": "`status` Type: {string}", + "label": "status", + "apiSymbol": "status", + "depth": 2, + "scope": "api", + "anchor": "class-vmmodule", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:vm" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:vm" + }, + "anchorSource": "ancestor" + }, + { + "id": "vm:bce3e5f959b3", + "chapter": "vm", + "kind": "class", + "name": "vm.SourceTextModule", + "signature": "Class: `vm.SourceTextModule`", + "label": "vm.SourceTextModule", + "apiSymbol": "vm.SourceTextModule", + "depth": 1, + "scope": "api", + "anchor": "class-vmsourcetextmodule", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:vm" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:vm" + }, + "anchorSource": "exact" + }, + { + "id": "vm:76cef81f974b", + "chapter": "vm", + "kind": "method", + "name": "createCachedData", + "signature": "`sourceTextModule.createCachedData()`", + "label": "sourceTextModule.createCachedData()", + "apiSymbol": "sourceTextModule.createCachedData", + "depth": 2, + "scope": "api", + "anchor": "sourcetextmodulecreatecacheddata", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:vm" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:vm" + }, + "anchorSource": "exact" + }, + { + "id": "vm:b5e8d1840438", + "chapter": "vm", + "kind": "method", + "name": "hasAsyncGraph", + "signature": "`sourceTextModule.hasAsyncGraph()`", + "label": "sourceTextModule.hasAsyncGraph()", + "apiSymbol": "sourceTextModule.hasAsyncGraph", + "depth": 2, + "scope": "api", + "anchor": "sourcetextmodulehasasyncgraph", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:vm" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:vm" + }, + "anchorSource": "exact" + }, + { + "id": "vm:e347b65d18e9", + "chapter": "vm", + "kind": "method", + "name": "hasTopLevelAwait", + "signature": "`sourceTextModule.hasTopLevelAwait()`", + "label": "sourceTextModule.hasTopLevelAwait()", + "apiSymbol": "sourceTextModule.hasTopLevelAwait", + "depth": 2, + "scope": "api", + "anchor": "sourcetextmodulehastoplevelawait", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:vm" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:vm" + }, + "anchorSource": "exact" + }, + { + "id": "vm:84a90e04720a", + "chapter": "vm", + "kind": "method", + "name": "instantiate", + "signature": "`sourceTextModule.instantiate()`", + "label": "sourceTextModule.instantiate()", + "apiSymbol": "sourceTextModule.instantiate", + "depth": 2, + "scope": "api", + "anchor": "sourcetextmoduleinstantiate", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:vm" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:vm" + }, + "anchorSource": "exact" + }, + { + "id": "vm:4f3aeb9f86d6", + "chapter": "vm", + "kind": "method", + "name": "linkRequests", + "signature": "`sourceTextModule.linkRequests(modules)`", + "label": "sourceTextModule.linkRequests(modules)", + "apiSymbol": "sourceTextModule.linkRequests", + "depth": 2, + "scope": "api", + "anchor": "sourcetextmodulelinkrequestsmodules", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:vm" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:vm" + }, + "anchorSource": "exact" + }, + { + "id": "vm:af3fc23f4359", + "chapter": "vm", + "kind": "string\\[]", + "name": "Type", + "signature": "`dependencySpecifiers` Type: {string\\[]}", + "label": "dependencySpecifiers", + "apiSymbol": "dependencySpecifiers", + "depth": 2, + "scope": "api", + "anchor": "class-vmsourcetextmodule", + "nodeStability": { + "index": "0", + "level": 0, + "text": "Deprecated: Use [`sourceTextModule.moduleRequests`][] instead.", + "inherited": false + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:vm" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:vm" + }, + "anchorSource": "ancestor" + }, + { + "id": "vm:f2c881bced07", + "chapter": "vm", + "kind": "ModuleRequest\\[]", + "name": "Type", + "signature": "`moduleRequests` Type: {ModuleRequest\\[]} Dependencies of this module.", + "label": "moduleRequests", + "apiSymbol": "moduleRequests", + "depth": 2, + "scope": "api", + "anchor": "class-vmsourcetextmodule", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:vm" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:vm" + }, + "anchorSource": "ancestor" + }, + { + "id": "vm:8a246e82560c", + "chapter": "vm", + "kind": "class", + "name": "vm.SyntheticModule", + "signature": "Class: `vm.SyntheticModule`", + "label": "vm.SyntheticModule", + "apiSymbol": "vm.SyntheticModule", + "depth": 1, + "scope": "api", + "anchor": "class-vmsyntheticmodule", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:vm" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:vm" + }, + "anchorSource": "exact" + }, + { + "id": "vm:b3702af8962e", + "chapter": "vm", + "kind": "method", + "name": "setExport", + "signature": "`syntheticModule.setExport(name, value)`", + "label": "syntheticModule.setExport(name, value)", + "apiSymbol": "syntheticModule.setExport", + "depth": 2, + "scope": "api", + "anchor": "syntheticmodulesetexportname-value", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:vm" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:vm" + }, + "anchorSource": "exact" + }, + { + "id": "vm:d7ba81057fcb", + "chapter": "vm", + "kind": "method", + "name": "compileFunction", + "signature": "`vm.compileFunction(code[, params[, options]])`", + "label": "vm.compileFunction(code[, params[, options]])", + "apiSymbol": "vm.compileFunction", + "depth": 1, + "scope": "api", + "anchor": "vmcompilefunctioncode-params-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:vm" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:vm" + }, + "anchorSource": "exact" + }, + { + "id": "vm:f968871196ae", + "chapter": "vm", + "kind": "method", + "name": "createContext", + "signature": "`vm.createContext([contextObject[, options]])`", + "label": "vm.createContext([contextObject[, options]])", + "apiSymbol": "vm.createContext", + "depth": 1, + "scope": "api", + "anchor": "vmcreatecontextcontextobject-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:vm" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:vm" + }, + "anchorSource": "exact" + }, + { + "id": "vm:73db661d7d57", + "chapter": "vm", + "kind": "method", + "name": "isContext", + "signature": "`vm.isContext(object)`", + "label": "vm.isContext(object)", + "apiSymbol": "vm.isContext", + "depth": 1, + "scope": "api", + "anchor": "vmiscontextobject", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:vm" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:vm" + }, + "anchorSource": "exact" + }, + { + "id": "vm:cccd834c008c", + "chapter": "vm", + "kind": "method", + "name": "measureMemory", + "signature": "`vm.measureMemory([options])`", + "label": "vm.measureMemory([options])", + "apiSymbol": "vm.measureMemory", + "depth": 1, + "scope": "api", + "anchor": "vmmeasurememoryoptions", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:vm" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:vm" + }, + "anchorSource": "exact" + }, + { + "id": "vm:e45455011f5c", + "chapter": "vm", + "kind": "method", + "name": "runInContext", + "signature": "`vm.runInContext(code, contextifiedObject[, options])`", + "label": "vm.runInContext(code, contextifiedObject[, options])", + "apiSymbol": "vm.runInContext", + "depth": 1, + "scope": "api", + "anchor": "vmrunincontextcode-contextifiedobject-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:vm" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:vm" + }, + "anchorSource": "exact" + }, + { + "id": "vm:011df9e1b07d", + "chapter": "vm", + "kind": "method", + "name": "runInNewContext", + "signature": "`vm.runInNewContext(code[, contextObject[, options]])`", + "label": "vm.runInNewContext(code[, contextObject[, options]])", + "apiSymbol": "vm.runInNewContext", + "depth": 1, + "scope": "api", + "anchor": "vmruninnewcontextcode-contextobject-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:vm" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:vm" + }, + "anchorSource": "exact" + }, + { + "id": "vm:e4341b528e9c", + "chapter": "vm", + "kind": "method", + "name": "runInThisContext", + "signature": "`vm.runInThisContext(code[, options])`", + "label": "vm.runInThisContext(code[, options])", + "apiSymbol": "vm.runInThisContext", + "depth": 1, + "scope": "api", + "anchor": "vmruninthiscontextcode-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:vm" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:vm" + }, + "anchorSource": "exact" + }, + { + "id": "vm:794530770de9", + "chapter": "vm", + "kind": "Object", + "name": "Type", + "signature": "`constants` Type: {Object}", + "label": "constants", + "apiSymbol": "constants", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:vm" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:vm" + }, + "anchorSource": "chapter" + }, + { + "id": "vm:3ecdd146683d", + "chapter": "vm", + "kind": "section", + "name": "USE_MAIN_CONTEXT_DEFAULT_LOADER", + "signature": "`vm.constants.USE_MAIN_CONTEXT_DEFAULT_LOADER`", + "label": "vm.constants.USE_MAIN_CONTEXT_DEFAULT_LOADER", + "apiSymbol": "vm.constants.USE_MAIN_CONTEXT_DEFAULT_LOADER", + "depth": 2, + "scope": "api", + "anchor": "vmconstantsuse_main_context_default_loader", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": false + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:vm" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:vm" + }, + "anchorSource": "exact" + }, + { + "id": "wasi:bc75ebd36bdb", + "chapter": "wasi", + "kind": "module", + "name": "webassembly_system_interface_(wasi)", + "signature": "WebAssembly System Interface (WASI)", + "label": "WebAssembly System Interface (WASI)", + "apiSymbol": "webassembly_system_interface_", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "by-design", + "evidence": "derived:descendants" + }, + "dynamic": { + "status": "by-design", + "evidence": "derived:descendants" + }, + "anchorSource": "chapter" + }, + { + "id": "wasi:036910d80ff6", + "chapter": "wasi", + "kind": "module", + "name": "security", + "signature": "Security", + "label": "Security", + "apiSymbol": "security", + "depth": 1, + "scope": "documentation", + "anchor": "security", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "wasi:89dc8350ee57", + "chapter": "wasi", + "kind": "class", + "name": "WASI", + "signature": "Class: `WASI`", + "label": "WASI", + "apiSymbol": "WASI", + "depth": 1, + "scope": "api", + "anchor": "class-wasi", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:wasi" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:wasi" + }, + "anchorSource": "exact" + }, + { + "id": "wasi:8481e3035155", + "chapter": "wasi", + "kind": "method", + "name": "getImportObject", + "signature": "`wasi.getImportObject()`", + "label": "wasi.getImportObject()", + "apiSymbol": "wasi.getImportObject", + "depth": 2, + "scope": "api", + "anchor": "wasigetimportobject", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:wasi" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:wasi" + }, + "anchorSource": "exact" + }, + { + "id": "wasi:323fb04ba27f", + "chapter": "wasi", + "kind": "method", + "name": "start", + "signature": "`wasi.start(instance)`", + "label": "wasi.start(instance)", + "apiSymbol": "wasi.start", + "depth": 2, + "scope": "api", + "anchor": "wasistartinstance", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:wasi" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:wasi" + }, + "anchorSource": "exact" + }, + { + "id": "wasi:bf58c0a5b4f4", + "chapter": "wasi", + "kind": "method", + "name": "initialize", + "signature": "`wasi.initialize(instance)`", + "label": "wasi.initialize(instance)", + "apiSymbol": "wasi.initialize", + "depth": 2, + "scope": "api", + "anchor": "wasiinitializeinstance", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:wasi" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:wasi" + }, + "anchorSource": "exact" + }, + { + "id": "wasi:f7ad94458be8", + "chapter": "wasi", + "kind": "method", + "name": "finalizeBindings", + "signature": "`wasi.finalizeBindings(instance[, options])`", + "label": "wasi.finalizeBindings(instance[, options])", + "apiSymbol": "wasi.finalizeBindings", + "depth": 2, + "scope": "api", + "anchor": "wasifinalizebindingsinstance-options", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:wasi" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:wasi" + }, + "anchorSource": "exact" + }, + { + "id": "wasi:e7cb3e5f51fc", + "chapter": "wasi", + "kind": "Object", + "name": "Type", + "signature": "`wasiImport` Type: {Object}", + "label": "wasiImport", + "apiSymbol": "wasiImport", + "depth": 2, + "scope": "api", + "anchor": "class-wasi", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "by-design", + "evidence": "compiler-chapter-policy:wasi" + }, + "dynamic": { + "status": "by-design", + "evidence": "island-chapter-policy:wasi" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:751ea25f3132", + "chapter": "webcrypto", + "kind": "module", + "name": "web_crypto_api", + "signature": "Web Crypto API", + "label": "Web Crypto API", + "apiSymbol": "web_crypto_api", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/corpus/1358-crypto-random.ts", + "tests/corpus/1534-crypto-hash-chain.ts", + "tests/corpus/2556-crypto-introspection.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "webcrypto:d87630d8699e", + "chapter": "webcrypto", + "kind": "module", + "name": "modern_algorithms_in_the_web_cryptography_api", + "signature": "Modern Algorithms in the Web Cryptography API", + "label": "Modern Algorithms in the Web Cryptography API", + "apiSymbol": "modern_algorithms_in_the_web_cryptography_api", + "depth": 1, + "scope": "documentation", + "anchor": "modern-algorithms-in-the-web-cryptography-api", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:060de933ee6a", + "chapter": "webcrypto", + "kind": "module", + "name": "secure_curves_in_the_web_cryptography_api", + "signature": "Secure Curves in the Web Cryptography API", + "label": "Secure Curves in the Web Cryptography API", + "apiSymbol": "secure_curves_in_the_web_cryptography_api", + "depth": 1, + "scope": "documentation", + "anchor": "secure-curves-in-the-web-cryptography-api", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:70efb6fc7048", + "chapter": "webcrypto", + "kind": "module", + "name": "generating_keys", + "signature": "Generating keys", + "label": "Generating keys", + "apiSymbol": "generating_keys", + "depth": 2, + "scope": "documentation", + "anchor": "generating-keys", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:6747f7f79011", + "chapter": "webcrypto", + "kind": "module", + "name": "aes_keys", + "signature": "AES keys", + "label": "AES keys", + "apiSymbol": "aes_keys", + "depth": 3, + "scope": "documentation", + "anchor": "aes-keys", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:011eb337a887", + "chapter": "webcrypto", + "kind": "module", + "name": "ecdsa_key_pairs", + "signature": "ECDSA key pairs", + "label": "ECDSA key pairs", + "apiSymbol": "ecdsa_key_pairs", + "depth": 3, + "scope": "documentation", + "anchor": "ecdsa-key-pairs", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:1ece008d88ca", + "chapter": "webcrypto", + "kind": "module", + "name": "ed25519/x25519_key_pairs", + "signature": "Ed25519/X25519 key pairs", + "label": "Ed25519/X25519 key pairs", + "apiSymbol": "ed25519/x25519_key_pairs", + "depth": 3, + "scope": "documentation", + "anchor": "ed25519x25519-key-pairs", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:46eb94ece3a1", + "chapter": "webcrypto", + "kind": "module", + "name": "hmac_keys", + "signature": "HMAC keys", + "label": "HMAC keys", + "apiSymbol": "hmac_keys", + "depth": 3, + "scope": "documentation", + "anchor": "hmac-keys", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:f13f5c090748", + "chapter": "webcrypto", + "kind": "module", + "name": "rsa_key_pairs", + "signature": "RSA key pairs", + "label": "RSA key pairs", + "apiSymbol": "rsa_key_pairs", + "depth": 3, + "scope": "documentation", + "anchor": "rsa-key-pairs", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:d284829a6366", + "chapter": "webcrypto", + "kind": "module", + "name": "encryption_and_decryption", + "signature": "Encryption and decryption", + "label": "Encryption and decryption", + "apiSymbol": "encryption_and_decryption", + "depth": 2, + "scope": "documentation", + "anchor": "encryption-and-decryption", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:813f1142a543", + "chapter": "webcrypto", + "kind": "module", + "name": "exporting_and_importing_keys", + "signature": "Exporting and importing keys", + "label": "Exporting and importing keys", + "apiSymbol": "exporting_and_importing_keys", + "depth": 2, + "scope": "documentation", + "anchor": "exporting-and-importing-keys", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:d127bc6879c5", + "chapter": "webcrypto", + "kind": "module", + "name": "wrapping_and_unwrapping_keys", + "signature": "Wrapping and unwrapping keys", + "label": "Wrapping and unwrapping keys", + "apiSymbol": "wrapping_and_unwrapping_keys", + "depth": 2, + "scope": "documentation", + "anchor": "wrapping-and-unwrapping-keys", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:d051e3d94a6a", + "chapter": "webcrypto", + "kind": "module", + "name": "sign_and_verify", + "signature": "Sign and verify", + "label": "Sign and verify", + "apiSymbol": "sign_and_verify", + "depth": 2, + "scope": "documentation", + "anchor": "sign-and-verify", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:07de36b72401", + "chapter": "webcrypto", + "kind": "module", + "name": "deriving_bits_and_keys", + "signature": "Deriving bits and keys", + "label": "Deriving bits and keys", + "apiSymbol": "deriving_bits_and_keys", + "depth": 2, + "scope": "documentation", + "anchor": "deriving-bits-and-keys", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:8f601554591b", + "chapter": "webcrypto", + "kind": "module", + "name": "digest", + "signature": "Digest", + "label": "Digest", + "apiSymbol": "digest", + "depth": 2, + "scope": "documentation", + "anchor": "digest", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:7966323b5712", + "chapter": "webcrypto", + "kind": "module", + "name": "checking_for_runtime_algorithm_support", + "signature": "Checking for runtime algorithm support", + "label": "Checking for runtime algorithm support", + "apiSymbol": "checking_for_runtime_algorithm_support", + "depth": 2, + "scope": "documentation", + "anchor": "checking-for-runtime-algorithm-support", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:b34b2a6fe4f9", + "chapter": "webcrypto", + "kind": "module", + "name": "algorithm_matrix", + "signature": "Algorithm matrix", + "label": "Algorithm matrix", + "apiSymbol": "algorithm_matrix", + "depth": 1, + "scope": "documentation", + "anchor": "algorithm-matrix", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:2917f860df84", + "chapter": "webcrypto", + "kind": "module", + "name": "key_management_apis", + "signature": "Key Management APIs", + "label": "Key Management APIs", + "apiSymbol": "key_management_apis", + "depth": 2, + "scope": "documentation", + "anchor": "key-management-apis", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:bbae106c5fe6", + "chapter": "webcrypto", + "kind": "module", + "name": "crypto_operation_apis", + "signature": "Crypto Operation APIs", + "label": "Crypto Operation APIs", + "apiSymbol": "crypto_operation_apis", + "depth": 2, + "scope": "documentation", + "anchor": "crypto-operation-apis", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:14503f1ca3b6", + "chapter": "webcrypto", + "kind": "module", + "name": "algorithm_parameters", + "signature": "Algorithm parameters", + "label": "Algorithm parameters", + "apiSymbol": "algorithm_parameters", + "depth": 1, + "scope": "documentation", + "anchor": "algorithm-parameters", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:22408f834c48", + "chapter": "webcrypto", + "kind": "class", + "name": "Algorithm", + "signature": "Class: `Algorithm`", + "label": "Algorithm", + "apiSymbol": "Algorithm", + "depth": 2, + "scope": "api", + "anchor": "class-algorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:7eadae89e743", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string}", + "label": "name", + "apiSymbol": "name", + "depth": 3, + "scope": "api", + "anchor": "class-algorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:0838047675cb", + "chapter": "webcrypto", + "kind": "class", + "name": "AeadParams", + "signature": "Class: `AeadParams`", + "label": "AeadParams", + "apiSymbol": "AeadParams", + "depth": 2, + "scope": "api", + "anchor": "class-aeadparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:50702da22ffd", + "chapter": "webcrypto", + "kind": "ArrayBuffer|TypedArray|DataView|Buffer|undefined", + "name": "Type", + "signature": "`additionalData` Type: {ArrayBuffer|TypedArray|DataView|Buffer|undefined}", + "label": "additionalData", + "apiSymbol": "additionalData", + "depth": 3, + "scope": "api", + "anchor": "class-aeadparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:e75aab58d6c8", + "chapter": "webcrypto", + "kind": "ArrayBuffer|TypedArray|DataView|Buffer", + "name": "Type", + "signature": "`iv` Type: {ArrayBuffer|TypedArray|DataView|Buffer}", + "label": "iv", + "apiSymbol": "iv", + "depth": 3, + "scope": "api", + "anchor": "class-aeadparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:0333a8dda5d1", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string} Must be `'AES-GCM'`, `'AES-OCB'`, or `'ChaCha20-Poly1305'`.", + "label": "name", + "apiSymbol": "name", + "depth": 3, + "scope": "api", + "anchor": "class-aeadparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:b3e75c3019ba", + "chapter": "webcrypto", + "kind": "number", + "name": "Type", + "signature": "`tagLength` Type: {number} The size in bits of the generated authentication tag.", + "label": "tagLength", + "apiSymbol": "tagLength", + "depth": 3, + "scope": "api", + "anchor": "class-aeadparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:48811cf17cfa", + "chapter": "webcrypto", + "kind": "class", + "name": "AesDerivedKeyParams", + "signature": "Class: `AesDerivedKeyParams`", + "label": "AesDerivedKeyParams", + "apiSymbol": "AesDerivedKeyParams", + "depth": 2, + "scope": "api", + "anchor": "class-aesderivedkeyparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:b193e8d32c23", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string} Must be one of `'AES-CBC'`, `'AES-CTR'`, `'AES-GCM'`, `'AES-OCB'`, or `'AES-KW'`", + "label": "name", + "apiSymbol": "name", + "depth": 3, + "scope": "api", + "anchor": "class-aesderivedkeyparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:69e1a5a7db43", + "chapter": "webcrypto", + "kind": "number", + "name": "Type", + "signature": "`length` Type: {number}", + "label": "length", + "apiSymbol": "length", + "depth": 3, + "scope": "api", + "anchor": "class-aesderivedkeyparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:eaef86826519", + "chapter": "webcrypto", + "kind": "class", + "name": "AesCbcParams", + "signature": "Class: `AesCbcParams`", + "label": "AesCbcParams", + "apiSymbol": "AesCbcParams", + "depth": 2, + "scope": "api", + "anchor": "class-aescbcparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:138cbab42828", + "chapter": "webcrypto", + "kind": "ArrayBuffer|TypedArray|DataView|Buffer", + "name": "Type", + "signature": "`iv` Type: {ArrayBuffer|TypedArray|DataView|Buffer}", + "label": "iv", + "apiSymbol": "iv", + "depth": 3, + "scope": "api", + "anchor": "class-aescbcparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:c69773570396", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string} Must be `'AES-CBC'`.", + "label": "name", + "apiSymbol": "name", + "depth": 3, + "scope": "api", + "anchor": "class-aescbcparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:e7027d8028f4", + "chapter": "webcrypto", + "kind": "class", + "name": "AesCtrParams", + "signature": "Class: `AesCtrParams`", + "label": "AesCtrParams", + "apiSymbol": "AesCtrParams", + "depth": 2, + "scope": "api", + "anchor": "class-aesctrparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:8bebfb11721e", + "chapter": "webcrypto", + "kind": "ArrayBuffer|TypedArray|DataView|Buffer", + "name": "Type", + "signature": "`counter` Type: {ArrayBuffer|TypedArray|DataView|Buffer}", + "label": "counter", + "apiSymbol": "counter", + "depth": 3, + "scope": "api", + "anchor": "class-aesctrparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:77f064717864", + "chapter": "webcrypto", + "kind": "number", + "name": "Type", + "signature": "`length` Type: {number} The number of bits in the `aesCtrParams.counter` that are to be used as the counter.", + "label": "length", + "apiSymbol": "length", + "depth": 3, + "scope": "api", + "anchor": "class-aesctrparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:e6832733595a", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string} Must be `'AES-CTR'`.", + "label": "name", + "apiSymbol": "name", + "depth": 3, + "scope": "api", + "anchor": "class-aesctrparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:45b2ac15b614", + "chapter": "webcrypto", + "kind": "class", + "name": "AesKeyAlgorithm", + "signature": "Class: `AesKeyAlgorithm`", + "label": "AesKeyAlgorithm", + "apiSymbol": "AesKeyAlgorithm", + "depth": 2, + "scope": "api", + "anchor": "class-aeskeyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:63fff0b82f63", + "chapter": "webcrypto", + "kind": "number", + "name": "Type", + "signature": "`length` Type: {number}", + "label": "length", + "apiSymbol": "length", + "depth": 3, + "scope": "api", + "anchor": "class-aeskeyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:348d95ce69f6", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string}", + "label": "name", + "apiSymbol": "name", + "depth": 3, + "scope": "api", + "anchor": "class-aeskeyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:807d27037729", + "chapter": "webcrypto", + "kind": "class", + "name": "AesKeyGenParams", + "signature": "Class: `AesKeyGenParams`", + "label": "AesKeyGenParams", + "apiSymbol": "AesKeyGenParams", + "depth": 2, + "scope": "api", + "anchor": "class-aeskeygenparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:b202617b42b7", + "chapter": "webcrypto", + "kind": "number", + "name": "Type", + "signature": "`length` Type: {number}", + "label": "length", + "apiSymbol": "length", + "depth": 3, + "scope": "api", + "anchor": "class-aeskeygenparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:39c15478d272", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string} Must be one of `'AES-CBC'`, `'AES-CTR'`, `'AES-GCM'`, or `'AES-KW'`", + "label": "name", + "apiSymbol": "name", + "depth": 3, + "scope": "api", + "anchor": "class-aeskeygenparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:f773f19f63d3", + "chapter": "webcrypto", + "kind": "class", + "name": "Argon2Params", + "signature": "Class: `Argon2Params`", + "label": "Argon2Params", + "apiSymbol": "Argon2Params", + "depth": 2, + "scope": "api", + "anchor": "class-argon2params", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:61a8dbee60c6", + "chapter": "webcrypto", + "kind": "ArrayBuffer|TypedArray|DataView|Buffer", + "name": "Type", + "signature": "`associatedData` Type: {ArrayBuffer|TypedArray|DataView|Buffer}", + "label": "associatedData", + "apiSymbol": "associatedData", + "depth": 3, + "scope": "api", + "anchor": "class-argon2params", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:335fe3f84ab1", + "chapter": "webcrypto", + "kind": "number", + "name": "Type", + "signature": "`memory` Type: {number}", + "label": "memory", + "apiSymbol": "memory", + "depth": 3, + "scope": "api", + "anchor": "class-argon2params", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:99bfa63e81fa", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string} Must be one of `'Argon2d'`, `'Argon2i'`, or `'Argon2id'`.", + "label": "name", + "apiSymbol": "name", + "depth": 3, + "scope": "api", + "anchor": "class-argon2params", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:3cbc73658fc9", + "chapter": "webcrypto", + "kind": "ArrayBuffer|TypedArray|DataView|Buffer", + "name": "Type", + "signature": "`nonce` Type: {ArrayBuffer|TypedArray|DataView|Buffer}", + "label": "nonce", + "apiSymbol": "nonce", + "depth": 3, + "scope": "api", + "anchor": "class-argon2params", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:3ac95db0f61d", + "chapter": "webcrypto", + "kind": "number", + "name": "Type", + "signature": "`parallelism` Type: {number}", + "label": "parallelism", + "apiSymbol": "parallelism", + "depth": 3, + "scope": "api", + "anchor": "class-argon2params", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:b44e7befb0d2", + "chapter": "webcrypto", + "kind": "number", + "name": "Type", + "signature": "`passes` Type: {number}", + "label": "passes", + "apiSymbol": "passes", + "depth": 3, + "scope": "api", + "anchor": "class-argon2params", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:df18d96404e2", + "chapter": "webcrypto", + "kind": "ArrayBuffer|TypedArray|DataView|Buffer", + "name": "Type", + "signature": "`secretValue` Type: {ArrayBuffer|TypedArray|DataView|Buffer}", + "label": "secretValue", + "apiSymbol": "secretValue", + "depth": 3, + "scope": "api", + "anchor": "class-argon2params", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:c51c271a37d1", + "chapter": "webcrypto", + "kind": "number", + "name": "Type", + "signature": "`version` Type: {number}", + "label": "version", + "apiSymbol": "version", + "depth": 3, + "scope": "api", + "anchor": "class-argon2params", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:5ae61ae36acb", + "chapter": "webcrypto", + "kind": "class", + "name": "ContextParams", + "signature": "Class: `ContextParams`", + "label": "ContextParams", + "apiSymbol": "ContextParams", + "depth": 2, + "scope": "api", + "anchor": "class-contextparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:348599f69c92", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string} Must be `Ed448`[^secure-curves], `'ML-DSA-44'`[^modern-algos], `'ML-DSA-65'`[^modern-algos], or `'ML-DSA-87'`[^modern-algos].", + "label": "name", + "apiSymbol": "name", + "depth": 3, + "scope": "api", + "anchor": "class-contextparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:523c55e40c6c", + "chapter": "webcrypto", + "kind": "ArrayBuffer|TypedArray|DataView|Buffer|undefined", + "name": "Type", + "signature": "`context` Type: {ArrayBuffer|TypedArray|DataView|Buffer|undefined}", + "label": "context", + "apiSymbol": "context", + "depth": 3, + "scope": "api", + "anchor": "class-contextparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:5bd580037f8a", + "chapter": "webcrypto", + "kind": "class", + "name": "CShakeParams", + "signature": "Class: `CShakeParams`", + "label": "CShakeParams", + "apiSymbol": "CShakeParams", + "depth": 2, + "scope": "api", + "anchor": "class-cshakeparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:e97ed4559769", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string} Must be `'cSHAKE128'`[^modern-algos] or `'cSHAKE256'`[^modern-algos]", + "label": "name", + "apiSymbol": "name", + "depth": 3, + "scope": "api", + "anchor": "class-cshakeparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:9eeb331c7228", + "chapter": "webcrypto", + "kind": "number", + "name": "Type", + "signature": "`outputLength` Type: {number} represents the requested output length in bits.", + "label": "outputLength", + "apiSymbol": "outputLength", + "depth": 3, + "scope": "api", + "anchor": "class-cshakeparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:a1e675d9f4ab", + "chapter": "webcrypto", + "kind": "ArrayBuffer|TypedArray|DataView|Buffer|undefined", + "name": "Type", + "signature": "`functionName` Type: {ArrayBuffer|TypedArray|DataView|Buffer|undefined}", + "label": "functionName", + "apiSymbol": "functionName", + "depth": 3, + "scope": "api", + "anchor": "class-cshakeparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:8f366eb6399d", + "chapter": "webcrypto", + "kind": "ArrayBuffer|TypedArray|DataView|Buffer|undefined", + "name": "Type", + "signature": "`customization` Type: {ArrayBuffer|TypedArray|DataView|Buffer|undefined}", + "label": "customization", + "apiSymbol": "customization", + "depth": 3, + "scope": "api", + "anchor": "class-cshakeparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:50a50402140c", + "chapter": "webcrypto", + "kind": "class", + "name": "EcdhKeyDeriveParams", + "signature": "Class: `EcdhKeyDeriveParams`", + "label": "EcdhKeyDeriveParams", + "apiSymbol": "EcdhKeyDeriveParams", + "depth": 2, + "scope": "api", + "anchor": "class-ecdhkeyderiveparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:2db66a4350e1", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string} Must be `'ECDH'`, `'X25519'`, or `'X448'`[^secure-curves].", + "label": "name", + "apiSymbol": "name", + "depth": 3, + "scope": "api", + "anchor": "class-ecdhkeyderiveparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:edc888ed5611", + "chapter": "webcrypto", + "kind": "CryptoKey", + "name": "Type", + "signature": "`public` Type: {CryptoKey}", + "label": "public", + "apiSymbol": "public", + "depth": 3, + "scope": "api", + "anchor": "class-ecdhkeyderiveparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:e4d4304bdc1a", + "chapter": "webcrypto", + "kind": "class", + "name": "EcdsaParams", + "signature": "Class: `EcdsaParams`", + "label": "EcdsaParams", + "apiSymbol": "EcdsaParams", + "depth": 2, + "scope": "api", + "anchor": "class-ecdsaparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:df2d5f40d092", + "chapter": "webcrypto", + "kind": "string|Algorithm", + "name": "Type", + "signature": "`hash` Type: {string|Algorithm}", + "label": "hash", + "apiSymbol": "hash", + "depth": 3, + "scope": "api", + "anchor": "class-ecdsaparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.crypto.hash" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:crypto.hash", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:4944a160092e", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string} Must be `'ECDSA'`.", + "label": "name", + "apiSymbol": "name", + "depth": 3, + "scope": "api", + "anchor": "class-ecdsaparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:c1b95c7fa392", + "chapter": "webcrypto", + "kind": "class", + "name": "EcKeyAlgorithm", + "signature": "Class: `EcKeyAlgorithm`", + "label": "EcKeyAlgorithm", + "apiSymbol": "EcKeyAlgorithm", + "depth": 2, + "scope": "api", + "anchor": "class-eckeyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:fff4023e69d0", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string}", + "label": "name", + "apiSymbol": "name", + "depth": 3, + "scope": "api", + "anchor": "class-eckeyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:b9a97598a9e6", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`namedCurve` Type: {string}", + "label": "namedCurve", + "apiSymbol": "namedCurve", + "depth": 3, + "scope": "api", + "anchor": "class-eckeyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:7febcc526494", + "chapter": "webcrypto", + "kind": "class", + "name": "EcKeyGenParams", + "signature": "Class: `EcKeyGenParams`", + "label": "EcKeyGenParams", + "apiSymbol": "EcKeyGenParams", + "depth": 2, + "scope": "api", + "anchor": "class-eckeygenparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:d97f7cfb4905", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string} Must be one of `'ECDSA'` or `'ECDH'`.", + "label": "name", + "apiSymbol": "name", + "depth": 3, + "scope": "api", + "anchor": "class-eckeygenparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:ff601e861741", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`namedCurve` Type: {string} Must be one of `'P-256'`, `'P-384'`, `'P-521'`.", + "label": "namedCurve", + "apiSymbol": "namedCurve", + "depth": 3, + "scope": "api", + "anchor": "class-eckeygenparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:b652472193a8", + "chapter": "webcrypto", + "kind": "class", + "name": "EcKeyImportParams", + "signature": "Class: `EcKeyImportParams`", + "label": "EcKeyImportParams", + "apiSymbol": "EcKeyImportParams", + "depth": 2, + "scope": "api", + "anchor": "class-eckeyimportparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:ff27302b6c60", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string} Must be one of `'ECDSA'` or `'ECDH'`.", + "label": "name", + "apiSymbol": "name", + "depth": 3, + "scope": "api", + "anchor": "class-eckeyimportparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:ae8f851e9778", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`namedCurve` Type: {string} Must be one of `'P-256'`, `'P-384'`, `'P-521'`.", + "label": "namedCurve", + "apiSymbol": "namedCurve", + "depth": 3, + "scope": "api", + "anchor": "class-eckeyimportparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:2d22a4d22d97", + "chapter": "webcrypto", + "kind": "class", + "name": "EncapsulatedBits", + "signature": "Class: `EncapsulatedBits`", + "label": "EncapsulatedBits", + "apiSymbol": "EncapsulatedBits", + "depth": 2, + "scope": "api", + "anchor": "class-encapsulatedbits", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:73e49fc03082", + "chapter": "webcrypto", + "kind": "ArrayBuffer", + "name": "Type", + "signature": "`ciphertext` Type: {ArrayBuffer}", + "label": "ciphertext", + "apiSymbol": "ciphertext", + "depth": 3, + "scope": "api", + "anchor": "class-encapsulatedbits", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:0f48c646ae11", + "chapter": "webcrypto", + "kind": "ArrayBuffer", + "name": "Type", + "signature": "`sharedKey` Type: {ArrayBuffer}", + "label": "sharedKey", + "apiSymbol": "sharedKey", + "depth": 3, + "scope": "api", + "anchor": "class-encapsulatedbits", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:8d1384ed7e4e", + "chapter": "webcrypto", + "kind": "class", + "name": "EncapsulatedKey", + "signature": "Class: `EncapsulatedKey`", + "label": "EncapsulatedKey", + "apiSymbol": "EncapsulatedKey", + "depth": 2, + "scope": "api", + "anchor": "class-encapsulatedkey", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:1e3b9c935c99", + "chapter": "webcrypto", + "kind": "ArrayBuffer", + "name": "Type", + "signature": "`ciphertext` Type: {ArrayBuffer}", + "label": "ciphertext", + "apiSymbol": "ciphertext", + "depth": 3, + "scope": "api", + "anchor": "class-encapsulatedkey", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:61dd816cbafb", + "chapter": "webcrypto", + "kind": "CryptoKey", + "name": "Type", + "signature": "`sharedKey` Type: {CryptoKey}", + "label": "sharedKey", + "apiSymbol": "sharedKey", + "depth": 3, + "scope": "api", + "anchor": "class-encapsulatedkey", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:1954c2f5855a", + "chapter": "webcrypto", + "kind": "class", + "name": "HkdfParams", + "signature": "Class: `HkdfParams`", + "label": "HkdfParams", + "apiSymbol": "HkdfParams", + "depth": 2, + "scope": "api", + "anchor": "class-hkdfparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:4e5f36081fb9", + "chapter": "webcrypto", + "kind": "string|Algorithm", + "name": "Type", + "signature": "`hash` Type: {string|Algorithm}", + "label": "hash", + "apiSymbol": "hash", + "depth": 3, + "scope": "api", + "anchor": "class-hkdfparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.crypto.hash" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:crypto.hash", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:a8e569964fa0", + "chapter": "webcrypto", + "kind": "ArrayBuffer|TypedArray|DataView|Buffer", + "name": "Type", + "signature": "`info` Type: {ArrayBuffer|TypedArray|DataView|Buffer}", + "label": "info", + "apiSymbol": "info", + "depth": 3, + "scope": "api", + "anchor": "class-hkdfparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:3d78b0f2f97b", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string} Must be `'HKDF'`.", + "label": "name", + "apiSymbol": "name", + "depth": 3, + "scope": "api", + "anchor": "class-hkdfparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:3d2054aec77f", + "chapter": "webcrypto", + "kind": "ArrayBuffer|TypedArray|DataView|Buffer", + "name": "Type", + "signature": "`salt` Type: {ArrayBuffer|TypedArray|DataView|Buffer}", + "label": "salt", + "apiSymbol": "salt", + "depth": 3, + "scope": "api", + "anchor": "class-hkdfparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:9587f4a3e035", + "chapter": "webcrypto", + "kind": "class", + "name": "HmacImportParams", + "signature": "Class: `HmacImportParams`", + "label": "HmacImportParams", + "apiSymbol": "HmacImportParams", + "depth": 2, + "scope": "api", + "anchor": "class-hmacimportparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:23dcd527bbf6", + "chapter": "webcrypto", + "kind": "string|Algorithm", + "name": "Type", + "signature": "`hash` Type: {string|Algorithm}", + "label": "hash", + "apiSymbol": "hash", + "depth": 3, + "scope": "api", + "anchor": "class-hmacimportparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.crypto.hash" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:crypto.hash", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:46b3be570f6c", + "chapter": "webcrypto", + "kind": "number", + "name": "Type", + "signature": "`length` Type: {number}", + "label": "length", + "apiSymbol": "length", + "depth": 3, + "scope": "api", + "anchor": "class-hmacimportparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:952a60eed01e", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string} Must be `'HMAC'`.", + "label": "name", + "apiSymbol": "name", + "depth": 3, + "scope": "api", + "anchor": "class-hmacimportparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:cd65fdc1893e", + "chapter": "webcrypto", + "kind": "class", + "name": "HmacKeyAlgorithm", + "signature": "Class: `HmacKeyAlgorithm`", + "label": "HmacKeyAlgorithm", + "apiSymbol": "HmacKeyAlgorithm", + "depth": 2, + "scope": "api", + "anchor": "class-hmackeyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:a2986253c75b", + "chapter": "webcrypto", + "kind": "Algorithm", + "name": "Type", + "signature": "`hash` Type: {Algorithm}", + "label": "hash", + "apiSymbol": "hash", + "depth": 3, + "scope": "api", + "anchor": "class-hmackeyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.crypto.hash" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:crypto.hash", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:1e5b1ef67279", + "chapter": "webcrypto", + "kind": "number", + "name": "Type", + "signature": "`length` Type: {number}", + "label": "length", + "apiSymbol": "length", + "depth": 3, + "scope": "api", + "anchor": "class-hmackeyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:a352d153f456", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string}", + "label": "name", + "apiSymbol": "name", + "depth": 3, + "scope": "api", + "anchor": "class-hmackeyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:8818bd91bd7e", + "chapter": "webcrypto", + "kind": "class", + "name": "HmacKeyGenParams", + "signature": "Class: `HmacKeyGenParams`", + "label": "HmacKeyGenParams", + "apiSymbol": "HmacKeyGenParams", + "depth": 2, + "scope": "api", + "anchor": "class-hmackeygenparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:72e61962dfef", + "chapter": "webcrypto", + "kind": "string|Algorithm", + "name": "Type", + "signature": "`hash` Type: {string|Algorithm}", + "label": "hash", + "apiSymbol": "hash", + "depth": 3, + "scope": "api", + "anchor": "class-hmackeygenparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.crypto.hash" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:crypto.hash", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:894c2ecdb640", + "chapter": "webcrypto", + "kind": "number", + "name": "Type", + "signature": "`length` Type: {number}", + "label": "length", + "apiSymbol": "length", + "depth": 3, + "scope": "api", + "anchor": "class-hmackeygenparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:1bd415494954", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string} Must be `'HMAC'`.", + "label": "name", + "apiSymbol": "name", + "depth": 3, + "scope": "api", + "anchor": "class-hmackeygenparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:149380635f5c", + "chapter": "webcrypto", + "kind": "class", + "name": "KeyAlgorithm", + "signature": "Class: `KeyAlgorithm`", + "label": "KeyAlgorithm", + "apiSymbol": "KeyAlgorithm", + "depth": 2, + "scope": "api", + "anchor": "class-keyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:539d4f40a15a", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string}", + "label": "name", + "apiSymbol": "name", + "depth": 3, + "scope": "api", + "anchor": "class-keyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:fd89bc275372", + "chapter": "webcrypto", + "kind": "class", + "name": "KmacImportParams", + "signature": "Class: `KmacImportParams`", + "label": "KmacImportParams", + "apiSymbol": "KmacImportParams", + "depth": 2, + "scope": "api", + "anchor": "class-kmacimportparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:a12c9591e138", + "chapter": "webcrypto", + "kind": "number", + "name": "Type", + "signature": "`length` Type: {number}", + "label": "length", + "apiSymbol": "length", + "depth": 3, + "scope": "api", + "anchor": "class-kmacimportparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:d1c3cc414709", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string} Must be `'KMAC128'` or `'KMAC256'`.", + "label": "name", + "apiSymbol": "name", + "depth": 3, + "scope": "api", + "anchor": "class-kmacimportparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:d2590bef46f5", + "chapter": "webcrypto", + "kind": "class", + "name": "KmacKeyAlgorithm", + "signature": "Class: `KmacKeyAlgorithm`", + "label": "KmacKeyAlgorithm", + "apiSymbol": "KmacKeyAlgorithm", + "depth": 2, + "scope": "api", + "anchor": "class-kmackeyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:71b7195a2253", + "chapter": "webcrypto", + "kind": "number", + "name": "Type", + "signature": "`length` Type: {number}", + "label": "length", + "apiSymbol": "length", + "depth": 3, + "scope": "api", + "anchor": "class-kmackeyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:a1519f0084eb", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string}", + "label": "name", + "apiSymbol": "name", + "depth": 3, + "scope": "api", + "anchor": "class-kmackeyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:bb8a4e1d72f0", + "chapter": "webcrypto", + "kind": "class", + "name": "KmacKeyGenParams", + "signature": "Class: `KmacKeyGenParams`", + "label": "KmacKeyGenParams", + "apiSymbol": "KmacKeyGenParams", + "depth": 2, + "scope": "api", + "anchor": "class-kmackeygenparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:865129de3ee7", + "chapter": "webcrypto", + "kind": "number", + "name": "Type", + "signature": "`length` Type: {number}", + "label": "length", + "apiSymbol": "length", + "depth": 3, + "scope": "api", + "anchor": "class-kmackeygenparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:11431de8b7ea", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string} Must be `'KMAC128'` or `'KMAC256'`.", + "label": "name", + "apiSymbol": "name", + "depth": 3, + "scope": "api", + "anchor": "class-kmackeygenparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:6c7119d44e0a", + "chapter": "webcrypto", + "kind": "class", + "name": "KmacParams", + "signature": "Class: `KmacParams`", + "label": "KmacParams", + "apiSymbol": "KmacParams", + "depth": 2, + "scope": "api", + "anchor": "class-kmacparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:f65755eba1a1", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`algorithm` Type: {string} Must be `'KMAC128'` or `'KMAC256'`.", + "label": "algorithm", + "apiSymbol": "algorithm", + "depth": 3, + "scope": "api", + "anchor": "class-kmacparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:82fe1baefa90", + "chapter": "webcrypto", + "kind": "number", + "name": "Type", + "signature": "`outputLength` Type: {number}", + "label": "outputLength", + "apiSymbol": "outputLength", + "depth": 3, + "scope": "api", + "anchor": "class-kmacparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:2f5fdc6ab0c1", + "chapter": "webcrypto", + "kind": "ArrayBuffer|TypedArray|DataView|Buffer|undefined", + "name": "Type", + "signature": "`customization` Type: {ArrayBuffer|TypedArray|DataView|Buffer|undefined}", + "label": "customization", + "apiSymbol": "customization", + "depth": 3, + "scope": "api", + "anchor": "class-kmacparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:1954a05b0dcd", + "chapter": "webcrypto", + "kind": "class", + "name": "Pbkdf2Params", + "signature": "Class: `Pbkdf2Params`", + "label": "Pbkdf2Params", + "apiSymbol": "Pbkdf2Params", + "depth": 2, + "scope": "api", + "anchor": "class-pbkdf2params", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:90172990b40c", + "chapter": "webcrypto", + "kind": "string|Algorithm", + "name": "Type", + "signature": "`hash` Type: {string|Algorithm}", + "label": "hash", + "apiSymbol": "hash", + "depth": 3, + "scope": "api", + "anchor": "class-pbkdf2params", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.crypto.hash" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:crypto.hash", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:89d55eb491e6", + "chapter": "webcrypto", + "kind": "number", + "name": "Type", + "signature": "`iterations` Type: {number}", + "label": "iterations", + "apiSymbol": "iterations", + "depth": 3, + "scope": "api", + "anchor": "class-pbkdf2params", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:b784b5670237", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string} Must be `'PBKDF2'`.", + "label": "name", + "apiSymbol": "name", + "depth": 3, + "scope": "api", + "anchor": "class-pbkdf2params", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:c106ffde1c27", + "chapter": "webcrypto", + "kind": "ArrayBuffer|TypedArray|DataView|Buffer", + "name": "Type", + "signature": "`salt` Type: {ArrayBuffer|TypedArray|DataView|Buffer}", + "label": "salt", + "apiSymbol": "salt", + "depth": 3, + "scope": "api", + "anchor": "class-pbkdf2params", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:51a363016360", + "chapter": "webcrypto", + "kind": "class", + "name": "RsaHashedImportParams", + "signature": "Class: `RsaHashedImportParams`", + "label": "RsaHashedImportParams", + "apiSymbol": "RsaHashedImportParams", + "depth": 2, + "scope": "api", + "anchor": "class-rsahashedimportparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:f2ea19036c87", + "chapter": "webcrypto", + "kind": "string|Algorithm", + "name": "Type", + "signature": "`hash` Type: {string|Algorithm}", + "label": "hash", + "apiSymbol": "hash", + "depth": 3, + "scope": "api", + "anchor": "class-rsahashedimportparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.crypto.hash" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:crypto.hash", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:7f0f6c402d57", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string} Must be one of `'RSASSA-PKCS1-v1_5'`, `'RSA-PSS'`, or `'RSA-OAEP'`.", + "label": "name", + "apiSymbol": "name", + "depth": 3, + "scope": "api", + "anchor": "class-rsahashedimportparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:d32ae0ad2cfc", + "chapter": "webcrypto", + "kind": "class", + "name": "RsaHashedKeyAlgorithm", + "signature": "Class: `RsaHashedKeyAlgorithm`", + "label": "RsaHashedKeyAlgorithm", + "apiSymbol": "RsaHashedKeyAlgorithm", + "depth": 2, + "scope": "api", + "anchor": "class-rsahashedkeyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:285e4defde05", + "chapter": "webcrypto", + "kind": "Algorithm", + "name": "Type", + "signature": "`hash` Type: {Algorithm}", + "label": "hash", + "apiSymbol": "hash", + "depth": 3, + "scope": "api", + "anchor": "class-rsahashedkeyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.crypto.hash" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:crypto.hash", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:199f935161c9", + "chapter": "webcrypto", + "kind": "number", + "name": "Type", + "signature": "`modulusLength` Type: {number}", + "label": "modulusLength", + "apiSymbol": "modulusLength", + "depth": 3, + "scope": "api", + "anchor": "class-rsahashedkeyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:2afff59b5ec9", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string}", + "label": "name", + "apiSymbol": "name", + "depth": 3, + "scope": "api", + "anchor": "class-rsahashedkeyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:01a7d8f25140", + "chapter": "webcrypto", + "kind": "Uint8Array", + "name": "Type", + "signature": "`publicExponent` Type: {Uint8Array}", + "label": "publicExponent", + "apiSymbol": "publicExponent", + "depth": 3, + "scope": "api", + "anchor": "class-rsahashedkeyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:5ad6e661be1f", + "chapter": "webcrypto", + "kind": "class", + "name": "RsaHashedKeyGenParams", + "signature": "Class: `RsaHashedKeyGenParams`", + "label": "RsaHashedKeyGenParams", + "apiSymbol": "RsaHashedKeyGenParams", + "depth": 2, + "scope": "api", + "anchor": "class-rsahashedkeygenparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:48e265876023", + "chapter": "webcrypto", + "kind": "string|Algorithm", + "name": "Type", + "signature": "`hash` Type: {string|Algorithm}", + "label": "hash", + "apiSymbol": "hash", + "depth": 3, + "scope": "api", + "anchor": "class-rsahashedkeygenparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.crypto.hash" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:crypto.hash", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:7a3c6c28260d", + "chapter": "webcrypto", + "kind": "number", + "name": "Type", + "signature": "`modulusLength` Type: {number}", + "label": "modulusLength", + "apiSymbol": "modulusLength", + "depth": 3, + "scope": "api", + "anchor": "class-rsahashedkeygenparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:e2fe42d18365", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string} Must be one of `'RSASSA-PKCS1-v1_5'`, `'RSA-PSS'`, or `'RSA-OAEP'`.", + "label": "name", + "apiSymbol": "name", + "depth": 3, + "scope": "api", + "anchor": "class-rsahashedkeygenparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:eee791955790", + "chapter": "webcrypto", + "kind": "Uint8Array", + "name": "Type", + "signature": "`publicExponent` Type: {Uint8Array}", + "label": "publicExponent", + "apiSymbol": "publicExponent", + "depth": 3, + "scope": "api", + "anchor": "class-rsahashedkeygenparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:32b6a2fa2369", + "chapter": "webcrypto", + "kind": "class", + "name": "RsaOaepParams", + "signature": "Class: `RsaOaepParams`", + "label": "RsaOaepParams", + "apiSymbol": "RsaOaepParams", + "depth": 2, + "scope": "api", + "anchor": "class-rsaoaepparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:e7eb643f042b", + "chapter": "webcrypto", + "kind": "ArrayBuffer|TypedArray|DataView|Buffer", + "name": "Type", + "signature": "`label` Type: {ArrayBuffer|TypedArray|DataView|Buffer}", + "label": "label", + "apiSymbol": "label", + "depth": 3, + "scope": "api", + "anchor": "class-rsaoaepparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:1937cc2aa87b", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string} must be `'RSA-OAEP'`.", + "label": "name", + "apiSymbol": "name", + "depth": 3, + "scope": "api", + "anchor": "class-rsaoaepparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:9ee8f6b8658b", + "chapter": "webcrypto", + "kind": "class", + "name": "RsaPssParams", + "signature": "Class: `RsaPssParams`", + "label": "RsaPssParams", + "apiSymbol": "RsaPssParams", + "depth": 2, + "scope": "api", + "anchor": "class-rsapssparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:1b596465e1de", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`name` Type: {string} Must be `'RSA-PSS'`.", + "label": "name", + "apiSymbol": "name", + "depth": 3, + "scope": "api", + "anchor": "class-rsapssparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:ab8289473829", + "chapter": "webcrypto", + "kind": "number", + "name": "Type", + "signature": "`saltLength` Type: {number}", + "label": "saltLength", + "apiSymbol": "saltLength", + "depth": 3, + "scope": "api", + "anchor": "class-rsapssparams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:92a3a1223e3b", + "chapter": "webcrypto", + "kind": "class", + "name": "Crypto", + "signature": "Class: `Crypto`", + "label": "Crypto", + "apiSymbol": "Crypto", + "depth": 1, + "scope": "api", + "anchor": "class-crypto", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:dcc24f369f43", + "chapter": "webcrypto", + "kind": "method", + "name": "getRandomValues", + "signature": "`crypto.getRandomValues(typedArray)`", + "label": "crypto.getRandomValues(typedArray)", + "apiSymbol": "crypto.getRandomValues", + "depth": 2, + "scope": "api", + "anchor": "cryptogetrandomvaluestypedarray", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:crypto.getRandomValues", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:35fd8cce482a", + "chapter": "webcrypto", + "kind": "method", + "name": "randomUUID", + "signature": "`crypto.randomUUID()`", + "label": "crypto.randomUUID()", + "apiSymbol": "crypto.randomUUID", + "depth": 2, + "scope": "api", + "anchor": "cryptorandomuuid", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.crypto.randomUUID", + "tests": [ + "tests/corpus/1358-crypto-random.ts", + "tests/corpus/1534-crypto-hash-chain.ts", + "tests/corpus/2556-crypto-introspection.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:crypto.randomUUID", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:8c570ec75666", + "chapter": "webcrypto", + "kind": "SubtleCrypto", + "name": "Type", + "signature": "`subtle` Type: {SubtleCrypto}", + "label": "subtle", + "apiSymbol": "subtle", + "depth": 2, + "scope": "api", + "anchor": "class-crypto", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:crypto.subtle", + "tests": [ + "tests/fixtures/npm/cases/crypto-shims/main.ts" + ] + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:68e61427b871", + "chapter": "webcrypto", + "kind": "class", + "name": "CryptoKey", + "signature": "Class: `CryptoKey`", + "label": "CryptoKey", + "apiSymbol": "CryptoKey", + "depth": 1, + "scope": "api", + "anchor": "class-cryptokey", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:37e3b4aba98c", + "chapter": "webcrypto", + "kind": "section", + "name": "algorithm", + "signature": "`cryptoKey.algorithm`", + "label": "cryptoKey.algorithm", + "apiSymbol": "cryptoKey.algorithm", + "depth": 2, + "scope": "api", + "anchor": "cryptokeyalgorithm", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:0156e05ff68d", + "chapter": "webcrypto", + "kind": "boolean", + "name": "Type", + "signature": "`extractable` Type: {boolean}", + "label": "extractable", + "apiSymbol": "extractable", + "depth": 2, + "scope": "api", + "anchor": "class-cryptokey", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:5c7e32152dcc", + "chapter": "webcrypto", + "kind": "string", + "name": "Type", + "signature": "`type` Type: {string} One of `'secret'`, `'private'`, or `'public'`.", + "label": "type", + "apiSymbol": "type", + "depth": 2, + "scope": "api", + "anchor": "class-cryptokey", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:03f1bca47b2e", + "chapter": "webcrypto", + "kind": "string\\[]", + "name": "Type", + "signature": "`usages` Type: {string\\[]}", + "label": "usages", + "apiSymbol": "usages", + "depth": 2, + "scope": "api", + "anchor": "class-cryptokey", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:753cdf0ffee2", + "chapter": "webcrypto", + "kind": "class", + "name": "CryptoKeyPair", + "signature": "Class: `CryptoKeyPair`", + "label": "CryptoKeyPair", + "apiSymbol": "CryptoKeyPair", + "depth": 1, + "scope": "api", + "anchor": "class-cryptokeypair", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:6a02593ce03d", + "chapter": "webcrypto", + "kind": "CryptoKey", + "name": "Type", + "signature": "`privateKey` Type: {CryptoKey} A {CryptoKey} whose `type` will be `'private'`.", + "label": "privateKey", + "apiSymbol": "privateKey", + "depth": 2, + "scope": "api", + "anchor": "class-cryptokeypair", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:13b1f10bf801", + "chapter": "webcrypto", + "kind": "CryptoKey", + "name": "Type", + "signature": "`publicKey` Type: {CryptoKey} A {CryptoKey} whose `type` will be `'public'`.", + "label": "publicKey", + "apiSymbol": "publicKey", + "depth": 2, + "scope": "api", + "anchor": "class-cryptokeypair", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "ancestor" + }, + { + "id": "webcrypto:f293a8743eee", + "chapter": "webcrypto", + "kind": "class", + "name": "SubtleCrypto", + "signature": "Class: `SubtleCrypto`", + "label": "SubtleCrypto", + "apiSymbol": "SubtleCrypto", + "depth": 1, + "scope": "api", + "anchor": "class-subtlecrypto", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:7cd42dcf9151", + "chapter": "webcrypto", + "kind": "method", + "name": "decapsulateBits", + "signature": "`subtle.decapsulateBits(decapsulationAlgorithm, decapsulationKey, ciphertext)`", + "label": "subtle.decapsulateBits(decapsulationAlgorithm, decapsulationKey, ciphertext)", + "apiSymbol": "subtle.decapsulateBits", + "depth": 2, + "scope": "api", + "anchor": "subtledecapsulatebitsdecapsulationalgorithm-decapsulationkey-ciphertext", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:d8f38474b5e5", + "chapter": "webcrypto", + "kind": "method", + "name": "decapsulateKey", + "signature": "`subtle.decapsulateKey(decapsulationAlgorithm, decapsulationKey, ciphertext, sharedKeyAlgorithm, extractable, usages)`", + "label": "subtle.decapsulateKey(decapsulationAlgorithm, decapsulationKey, ciphertext, sharedKeyAlgorithm, extractable, usages)", + "apiSymbol": "subtle.decapsulateKey", + "depth": 2, + "scope": "api", + "anchor": "subtledecapsulatekeydecapsulationalgorithm-decapsulationkey-ciphertext-sharedkeyalgorithm-extractable-usages", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:b11c8366ee0c", + "chapter": "webcrypto", + "kind": "method", + "name": "decrypt", + "signature": "`subtle.decrypt(algorithm, key, data)`", + "label": "subtle.decrypt(algorithm, key, data)", + "apiSymbol": "subtle.decrypt", + "depth": 2, + "scope": "api", + "anchor": "subtledecryptalgorithm-key-data", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:2074c3a9faae", + "chapter": "webcrypto", + "kind": "method", + "name": "deriveBits", + "signature": "`subtle.deriveBits(algorithm, baseKey[, length])`", + "label": "subtle.deriveBits(algorithm, baseKey[, length])", + "apiSymbol": "subtle.deriveBits", + "depth": 2, + "scope": "api", + "anchor": "subtlederivebitsalgorithm-basekey-length", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:8618a4716426", + "chapter": "webcrypto", + "kind": "method", + "name": "deriveKey", + "signature": "`subtle.deriveKey(algorithm, baseKey, derivedKeyAlgorithm, extractable, keyUsages)`", + "label": "subtle.deriveKey(algorithm, baseKey, derivedKeyAlgorithm, extractable, keyUsages)", + "apiSymbol": "subtle.deriveKey", + "depth": 2, + "scope": "api", + "anchor": "subtlederivekeyalgorithm-basekey-derivedkeyalgorithm-extractable-keyusages", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:609a0a8add1e", + "chapter": "webcrypto", + "kind": "method", + "name": "digest", + "signature": "`subtle.digest(algorithm, data)`", + "label": "subtle.digest(algorithm, data)", + "apiSymbol": "subtle.digest", + "depth": 2, + "scope": "api", + "anchor": "subtledigestalgorithm-data", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:549d41ea5d88", + "chapter": "webcrypto", + "kind": "method", + "name": "encapsulateBits", + "signature": "`subtle.encapsulateBits(encapsulationAlgorithm, encapsulationKey)`", + "label": "subtle.encapsulateBits(encapsulationAlgorithm, encapsulationKey)", + "apiSymbol": "subtle.encapsulateBits", + "depth": 2, + "scope": "api", + "anchor": "subtleencapsulatebitsencapsulationalgorithm-encapsulationkey", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:5e146a8a6347", + "chapter": "webcrypto", + "kind": "method", + "name": "encapsulateKey", + "signature": "`subtle.encapsulateKey(encapsulationAlgorithm, encapsulationKey, sharedKeyAlgorithm, extractable, usages)`", + "label": "subtle.encapsulateKey(encapsulationAlgorithm, encapsulationKey, sharedKeyAlgorithm, extractable, usages)", + "apiSymbol": "subtle.encapsulateKey", + "depth": 2, + "scope": "api", + "anchor": "subtleencapsulatekeyencapsulationalgorithm-encapsulationkey-sharedkeyalgorithm-extractable-usages", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:71ae6092934c", + "chapter": "webcrypto", + "kind": "method", + "name": "encrypt", + "signature": "`subtle.encrypt(algorithm, key, data)`", + "label": "subtle.encrypt(algorithm, key, data)", + "apiSymbol": "subtle.encrypt", + "depth": 2, + "scope": "api", + "anchor": "subtleencryptalgorithm-key-data", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:234e8c17f16e", + "chapter": "webcrypto", + "kind": "method", + "name": "exportKey", + "signature": "`subtle.exportKey(format, key)`", + "label": "subtle.exportKey(format, key)", + "apiSymbol": "subtle.exportKey", + "depth": 2, + "scope": "api", + "anchor": "subtleexportkeyformat-key", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:4c2759443aed", + "chapter": "webcrypto", + "kind": "method", + "name": "getPublicKey", + "signature": "`subtle.getPublicKey(key, keyUsages)`", + "label": "subtle.getPublicKey(key, keyUsages)", + "apiSymbol": "subtle.getPublicKey", + "depth": 2, + "scope": "api", + "anchor": "subtlegetpublickeykey-keyusages", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:9efd347f3ac9", + "chapter": "webcrypto", + "kind": "method", + "name": "generateKey", + "signature": "`subtle.generateKey(algorithm, extractable, keyUsages)`", + "label": "subtle.generateKey(algorithm, extractable, keyUsages)", + "apiSymbol": "subtle.generateKey", + "depth": 2, + "scope": "api", + "anchor": "subtlegeneratekeyalgorithm-extractable-keyusages", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:48597e41090f", + "chapter": "webcrypto", + "kind": "method", + "name": "importKey", + "signature": "`subtle.importKey(format, keyData, algorithm, extractable, keyUsages)`", + "label": "subtle.importKey(format, keyData, algorithm, extractable, keyUsages)", + "apiSymbol": "subtle.importKey", + "depth": 2, + "scope": "api", + "anchor": "subtleimportkeyformat-keydata-algorithm-extractable-keyusages", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:0504b64c6286", + "chapter": "webcrypto", + "kind": "method", + "name": "sign", + "signature": "`subtle.sign(algorithm, key, data)`", + "label": "subtle.sign(algorithm, key, data)", + "apiSymbol": "subtle.sign", + "depth": 2, + "scope": "api", + "anchor": "subtlesignalgorithm-key-data", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:67f9b9466d2c", + "chapter": "webcrypto", + "kind": "method", + "name": "unwrapKey", + "signature": "`subtle.unwrapKey(format, wrappedKey, unwrappingKey, unwrapAlgo, unwrappedKeyAlgo, extractable, keyUsages)`", + "label": "subtle.unwrapKey(format, wrappedKey, unwrappingKey, unwrapAlgo, unwrappedKeyAlgo, extractable, keyUsages)", + "apiSymbol": "subtle.unwrapKey", + "depth": 2, + "scope": "api", + "anchor": "subtleunwrapkeyformat-wrappedkey-unwrappingkey-unwrapalgo-unwrappedkeyalgo-extractable-keyusages", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:2471cc57bfa3", + "chapter": "webcrypto", + "kind": "method", + "name": "verify", + "signature": "`subtle.verify(algorithm, key, signature, data)`", + "label": "subtle.verify(algorithm, key, signature, data)", + "apiSymbol": "subtle.verify", + "depth": 2, + "scope": "api", + "anchor": "subtleverifyalgorithm-key-signature-data", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "exact" + }, + { + "id": "webcrypto:62ec6d9ec96a", + "chapter": "webcrypto", + "kind": "method", + "name": "wrapKey", + "signature": "`subtle.wrapKey(format, key, wrappingKey, wrapAlgo)`", + "label": "subtle.wrapKey(format, key, wrappingKey, wrapAlgo)", + "apiSymbol": "subtle.wrapKey", + "depth": 2, + "scope": "api", + "anchor": "subtlewrapkeyformat-key-wrappingkey-wrapalgo", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webcrypto" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webcrypto" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:2e18af6371a8", + "chapter": "webstreams", + "kind": "module", + "name": "web_streams_api", + "signature": "Web Streams API", + "label": "Web Streams API", + "apiSymbol": "web_streams_api", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/harness/fetch-conformance.test.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/fixtures/npm/cases/web-streams/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "webstreams:5d0d01a75b0b", + "chapter": "webstreams", + "kind": "module", + "name": "overview", + "signature": "Overview", + "label": "Overview", + "apiSymbol": "overview", + "depth": 1, + "scope": "documentation", + "anchor": "overview", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:c2a093353c36", + "chapter": "webstreams", + "kind": "module", + "name": "node.js_streams_interoperability", + "signature": "Node.js streams interoperability", + "label": "Node.js streams interoperability", + "apiSymbol": "node.js_streams_interoperability", + "depth": 2, + "scope": "documentation", + "anchor": "nodejs-streams-interoperability", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:2cd92d33ea86", + "chapter": "webstreams", + "kind": "module", + "name": "api", + "signature": "API", + "label": "API", + "apiSymbol": "api", + "depth": 1, + "scope": "documentation", + "anchor": "api", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:17cce0c76f0b", + "chapter": "webstreams", + "kind": "module", + "name": "utility_consumers", + "signature": "Utility Consumers", + "label": "Utility Consumers", + "apiSymbol": "utility_consumers", + "depth": 2, + "scope": "documentation", + "anchor": "utility-consumers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:a0aa7f7603de", + "chapter": "webstreams", + "kind": "method", + "name": "arrayBuffer", + "signature": "`streamConsumers.arrayBuffer(stream)`", + "label": "streamConsumers.arrayBuffer(stream)", + "apiSymbol": "streamConsumers.arrayBuffer", + "depth": 3, + "scope": "api", + "anchor": "streamconsumersarraybufferstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.stream.consumers.arrayBuffer" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:d39eca07e53e", + "chapter": "webstreams", + "kind": "method", + "name": "blob", + "signature": "`streamConsumers.blob(stream)`", + "label": "streamConsumers.blob(stream)", + "apiSymbol": "streamConsumers.blob", + "depth": 3, + "scope": "api", + "anchor": "streamconsumersblobstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.stream.consumers.blob" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:21ae10f1891a", + "chapter": "webstreams", + "kind": "method", + "name": "buffer", + "signature": "`streamConsumers.buffer(stream)`", + "label": "streamConsumers.buffer(stream)", + "apiSymbol": "streamConsumers.buffer", + "depth": 3, + "scope": "api", + "anchor": "streamconsumersbufferstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:5d8f059c0df0", + "chapter": "webstreams", + "kind": "method", + "name": "bytes", + "signature": "`streamConsumers.bytes(stream)`", + "label": "streamConsumers.bytes(stream)", + "apiSymbol": "streamConsumers.bytes", + "depth": 3, + "scope": "api", + "anchor": "streamconsumersbytesstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:653a4c9233ad", + "chapter": "webstreams", + "kind": "method", + "name": "json", + "signature": "`streamConsumers.json(stream)`", + "label": "streamConsumers.json(stream)", + "apiSymbol": "streamConsumers.json", + "depth": 3, + "scope": "api", + "anchor": "streamconsumersjsonstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:0e1bc54ba771", + "chapter": "webstreams", + "kind": "method", + "name": "text", + "signature": "`streamConsumers.text(stream)`", + "label": "streamConsumers.text(stream)", + "apiSymbol": "streamConsumers.text", + "depth": 3, + "scope": "api", + "anchor": "streamconsumerstextstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:6ae7ec5a740c", + "chapter": "webstreams", + "kind": "class", + "name": "ReadableStream", + "signature": "Class: `ReadableStream`", + "label": "ReadableStream", + "apiSymbol": "ReadableStream", + "depth": 2, + "scope": "api", + "anchor": "class-readablestream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:stream/web.ReadableStream", + "tests": [ + "tests/fixtures/npm/cases/web-streams/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:0a6a6fd0e811", + "chapter": "webstreams", + "kind": "module", + "name": "async_iteration", + "signature": "Async Iteration", + "label": "Async Iteration", + "apiSymbol": "async_iteration", + "depth": 3, + "scope": "documentation", + "anchor": "async-iteration", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:e1344c6274af", + "chapter": "webstreams", + "kind": "module", + "name": "transferring_with_`postmessage()`", + "signature": "Transferring with `postMessage()`", + "label": "Transferring with postMessage()", + "apiSymbol": "postMessage", + "depth": 3, + "scope": "api", + "anchor": "transferring-with-postmessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:07874a3f716e", + "chapter": "webstreams", + "kind": "method", + "name": "cancel", + "signature": "`readableStream.cancel([reason])`", + "label": "readableStream.cancel([reason])", + "apiSymbol": "readableStream.cancel", + "depth": 3, + "scope": "api", + "anchor": "readablestreamcancelreason", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:e16de5c53eb4", + "chapter": "webstreams", + "kind": "method", + "name": "getReader", + "signature": "`readableStream.getReader([options])`", + "label": "readableStream.getReader([options])", + "apiSymbol": "readableStream.getReader", + "depth": 3, + "scope": "api", + "anchor": "readablestreamgetreaderoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:63b2d89c6c00", + "chapter": "webstreams", + "kind": "method", + "name": "pipeThrough", + "signature": "`readableStream.pipeThrough(transform[, options])`", + "label": "readableStream.pipeThrough(transform[, options])", + "apiSymbol": "readableStream.pipeThrough", + "depth": 3, + "scope": "api", + "anchor": "readablestreampipethroughtransform-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:0a27945017c9", + "chapter": "webstreams", + "kind": "method", + "name": "pipeTo", + "signature": "`readableStream.pipeTo(destination[, options])`", + "label": "readableStream.pipeTo(destination[, options])", + "apiSymbol": "readableStream.pipeTo", + "depth": 3, + "scope": "api", + "anchor": "readablestreampipetodestination-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:37ce77efec40", + "chapter": "webstreams", + "kind": "method", + "name": "tee", + "signature": "`readableStream.tee()`", + "label": "readableStream.tee()", + "apiSymbol": "readableStream.tee", + "depth": 3, + "scope": "api", + "anchor": "readablestreamtee", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:59af1c97ad6c", + "chapter": "webstreams", + "kind": "method", + "name": "values", + "signature": "`readableStream.values([options])`", + "label": "readableStream.values([options])", + "apiSymbol": "readableStream.values", + "depth": 3, + "scope": "api", + "anchor": "readablestreamvaluesoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:22e4c5cb6e21", + "chapter": "webstreams", + "kind": "boolean", + "name": "Type", + "signature": "`locked` Type: {boolean} Set to `true` if there is an active reader for this {ReadableStream}.", + "label": "locked", + "apiSymbol": "locked", + "depth": 3, + "scope": "api", + "anchor": "class-readablestream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "ancestor" + }, + { + "id": "webstreams:59cd7b8edaca", + "chapter": "webstreams", + "kind": "class", + "name": "ReadableStreamDefaultReader", + "signature": "Class: `ReadableStreamDefaultReader`", + "label": "ReadableStreamDefaultReader", + "apiSymbol": "ReadableStreamDefaultReader", + "depth": 2, + "scope": "api", + "anchor": "class-readablestreamdefaultreader", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:a22fabc014a7", + "chapter": "webstreams", + "kind": "method", + "name": "cancel", + "signature": "`readableStreamDefaultReader.cancel([reason])`", + "label": "readableStreamDefaultReader.cancel([reason])", + "apiSymbol": "readableStreamDefaultReader.cancel", + "depth": 3, + "scope": "api", + "anchor": "readablestreamdefaultreadercancelreason", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:e83c6546e3e6", + "chapter": "webstreams", + "kind": "method", + "name": "read", + "signature": "`readableStreamDefaultReader.read()`", + "label": "readableStreamDefaultReader.read()", + "apiSymbol": "readableStreamDefaultReader.read", + "depth": 3, + "scope": "api", + "anchor": "readablestreamdefaultreaderread", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:c8b676670e1b", + "chapter": "webstreams", + "kind": "method", + "name": "releaseLock", + "signature": "`readableStreamDefaultReader.releaseLock()`", + "label": "readableStreamDefaultReader.releaseLock()", + "apiSymbol": "readableStreamDefaultReader.releaseLock", + "depth": 3, + "scope": "api", + "anchor": "readablestreamdefaultreaderreleaselock", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:31610192c3bb", + "chapter": "webstreams", + "kind": "Promise", + "name": "Type", + "signature": "`closed` Type: {Promise} Fulfilled with `undefined` when the associated {ReadableStream} is closed or rejected if the stream errors or the reader's lock is released before the stream finishes closing.", + "label": "closed", + "apiSymbol": "closed", + "depth": 3, + "scope": "api", + "anchor": "class-readablestreamdefaultreader", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "ancestor" + }, + { + "id": "webstreams:7d5990cd5487", + "chapter": "webstreams", + "kind": "class", + "name": "ReadableStreamBYOBReader", + "signature": "Class: `ReadableStreamBYOBReader`", + "label": "ReadableStreamBYOBReader", + "apiSymbol": "ReadableStreamBYOBReader", + "depth": 2, + "scope": "api", + "anchor": "class-readablestreambyobreader", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:f090647268e8", + "chapter": "webstreams", + "kind": "method", + "name": "cancel", + "signature": "`readableStreamBYOBReader.cancel([reason])`", + "label": "readableStreamBYOBReader.cancel([reason])", + "apiSymbol": "readableStreamBYOBReader.cancel", + "depth": 3, + "scope": "api", + "anchor": "readablestreambyobreadercancelreason", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:ad6d78bc9fb9", + "chapter": "webstreams", + "kind": "method", + "name": "read", + "signature": "`readableStreamBYOBReader.read(view[, options])`", + "label": "readableStreamBYOBReader.read(view[, options])", + "apiSymbol": "readableStreamBYOBReader.read", + "depth": 3, + "scope": "api", + "anchor": "readablestreambyobreaderreadview-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:3c38808260c5", + "chapter": "webstreams", + "kind": "method", + "name": "releaseLock", + "signature": "`readableStreamBYOBReader.releaseLock()`", + "label": "readableStreamBYOBReader.releaseLock()", + "apiSymbol": "readableStreamBYOBReader.releaseLock", + "depth": 3, + "scope": "api", + "anchor": "readablestreambyobreaderreleaselock", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:bde92078dc9c", + "chapter": "webstreams", + "kind": "Promise", + "name": "Type", + "signature": "`closed` Type: {Promise} Fulfilled with `undefined` when the associated {ReadableStream} is closed or rejected if the stream errors or the reader's lock is released before the stream finishes closing.", + "label": "closed", + "apiSymbol": "closed", + "depth": 3, + "scope": "api", + "anchor": "class-readablestreambyobreader", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "ancestor" + }, + { + "id": "webstreams:6790e97eee62", + "chapter": "webstreams", + "kind": "class", + "name": "ReadableStreamDefaultController", + "signature": "Class: `ReadableStreamDefaultController`", + "label": "ReadableStreamDefaultController", + "apiSymbol": "ReadableStreamDefaultController", + "depth": 2, + "scope": "api", + "anchor": "class-readablestreamdefaultcontroller", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:ad8c1f29c51c", + "chapter": "webstreams", + "kind": "method", + "name": "close", + "signature": "`readableStreamDefaultController.close()`", + "label": "readableStreamDefaultController.close()", + "apiSymbol": "readableStreamDefaultController.close", + "depth": 3, + "scope": "api", + "anchor": "readablestreamdefaultcontrollerclose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:4896adba6cde", + "chapter": "webstreams", + "kind": "method", + "name": "enqueue", + "signature": "`readableStreamDefaultController.enqueue([chunk])`", + "label": "readableStreamDefaultController.enqueue([chunk])", + "apiSymbol": "readableStreamDefaultController.enqueue", + "depth": 3, + "scope": "api", + "anchor": "readablestreamdefaultcontrollerenqueuechunk", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:446e7767814c", + "chapter": "webstreams", + "kind": "method", + "name": "error", + "signature": "`readableStreamDefaultController.error([error])`", + "label": "readableStreamDefaultController.error([error])", + "apiSymbol": "readableStreamDefaultController.error", + "depth": 3, + "scope": "api", + "anchor": "readablestreamdefaultcontrollererrorerror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:7a1f0cee4c0a", + "chapter": "webstreams", + "kind": "number", + "name": "Type", + "signature": "`desiredSize` Type: {number}", + "label": "desiredSize", + "apiSymbol": "desiredSize", + "depth": 3, + "scope": "api", + "anchor": "class-readablestreamdefaultcontroller", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "ancestor" + }, + { + "id": "webstreams:976b099cb870", + "chapter": "webstreams", + "kind": "class", + "name": "ReadableByteStreamController", + "signature": "Class: `ReadableByteStreamController`", + "label": "ReadableByteStreamController", + "apiSymbol": "ReadableByteStreamController", + "depth": 2, + "scope": "api", + "anchor": "class-readablebytestreamcontroller", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:fc086187e19a", + "chapter": "webstreams", + "kind": "method", + "name": "close", + "signature": "`readableByteStreamController.close()`", + "label": "readableByteStreamController.close()", + "apiSymbol": "readableByteStreamController.close", + "depth": 3, + "scope": "api", + "anchor": "readablebytestreamcontrollerclose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:b12dec2fbd1d", + "chapter": "webstreams", + "kind": "method", + "name": "enqueue", + "signature": "`readableByteStreamController.enqueue(chunk)`", + "label": "readableByteStreamController.enqueue(chunk)", + "apiSymbol": "readableByteStreamController.enqueue", + "depth": 3, + "scope": "api", + "anchor": "readablebytestreamcontrollerenqueuechunk", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:6fb37f5a196a", + "chapter": "webstreams", + "kind": "method", + "name": "error", + "signature": "`readableByteStreamController.error([error])`", + "label": "readableByteStreamController.error([error])", + "apiSymbol": "readableByteStreamController.error", + "depth": 3, + "scope": "api", + "anchor": "readablebytestreamcontrollererrorerror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:0df1635cf34d", + "chapter": "webstreams", + "kind": "ReadableStreamBYOBRequest", + "name": "Type", + "signature": "`byobRequest` Type: {ReadableStreamBYOBRequest}", + "label": "byobRequest", + "apiSymbol": "byobRequest", + "depth": 3, + "scope": "api", + "anchor": "class-readablebytestreamcontroller", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "ancestor" + }, + { + "id": "webstreams:086b3d6c7506", + "chapter": "webstreams", + "kind": "number", + "name": "Type", + "signature": "`desiredSize` Type: {number}", + "label": "desiredSize", + "apiSymbol": "desiredSize", + "depth": 3, + "scope": "api", + "anchor": "class-readablebytestreamcontroller", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "ancestor" + }, + { + "id": "webstreams:e5184ac8185b", + "chapter": "webstreams", + "kind": "class", + "name": "ReadableStreamBYOBRequest", + "signature": "Class: `ReadableStreamBYOBRequest`", + "label": "ReadableStreamBYOBRequest", + "apiSymbol": "ReadableStreamBYOBRequest", + "depth": 2, + "scope": "api", + "anchor": "class-readablestreambyobrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:5cec36fdad53", + "chapter": "webstreams", + "kind": "method", + "name": "respond", + "signature": "`readableStreamBYOBRequest.respond(bytesWritten)`", + "label": "readableStreamBYOBRequest.respond(bytesWritten)", + "apiSymbol": "readableStreamBYOBRequest.respond", + "depth": 3, + "scope": "api", + "anchor": "readablestreambyobrequestrespondbyteswritten", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:ae613e5feafc", + "chapter": "webstreams", + "kind": "method", + "name": "respondWithNewView", + "signature": "`readableStreamBYOBRequest.respondWithNewView(view)`", + "label": "readableStreamBYOBRequest.respondWithNewView(view)", + "apiSymbol": "readableStreamBYOBRequest.respondWithNewView", + "depth": 3, + "scope": "api", + "anchor": "readablestreambyobrequestrespondwithnewviewview", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:4817ef9308dd", + "chapter": "webstreams", + "kind": "Buffer|TypedArray|DataView", + "name": "Type", + "signature": "`view` Type: {Buffer|TypedArray|DataView}", + "label": "view", + "apiSymbol": "view", + "depth": 3, + "scope": "api", + "anchor": "class-readablestreambyobrequest", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "ancestor" + }, + { + "id": "webstreams:9a218933fb72", + "chapter": "webstreams", + "kind": "class", + "name": "WritableStream", + "signature": "Class: `WritableStream`", + "label": "WritableStream", + "apiSymbol": "WritableStream", + "depth": 2, + "scope": "api", + "anchor": "class-writablestream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:30f22f852153", + "chapter": "webstreams", + "kind": "module", + "name": "transferring_with_postmessage()", + "signature": "Transferring with postMessage()", + "label": "Transferring with postMessage()", + "apiSymbol": "transferring_with_postmessage", + "depth": 3, + "scope": "documentation", + "anchor": "transferring-with-postmessage_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:9a2ccc527c47", + "chapter": "webstreams", + "kind": "method", + "name": "abort", + "signature": "`writableStream.abort([reason])`", + "label": "writableStream.abort([reason])", + "apiSymbol": "writableStream.abort", + "depth": 3, + "scope": "api", + "anchor": "writablestreamabortreason", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:b1ff78629efd", + "chapter": "webstreams", + "kind": "method", + "name": "close", + "signature": "`writableStream.close()`", + "label": "writableStream.close()", + "apiSymbol": "writableStream.close", + "depth": 3, + "scope": "api", + "anchor": "writablestreamclose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:3a22c62e3afa", + "chapter": "webstreams", + "kind": "method", + "name": "getWriter", + "signature": "`writableStream.getWriter()`", + "label": "writableStream.getWriter()", + "apiSymbol": "writableStream.getWriter", + "depth": 3, + "scope": "api", + "anchor": "writablestreamgetwriter", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:e0783a4df74d", + "chapter": "webstreams", + "kind": "boolean", + "name": "Type", + "signature": "`locked` Type: {boolean}", + "label": "locked", + "apiSymbol": "locked", + "depth": 3, + "scope": "api", + "anchor": "class-writablestream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "ancestor" + }, + { + "id": "webstreams:224d0f8d84a2", + "chapter": "webstreams", + "kind": "class", + "name": "WritableStreamDefaultWriter", + "signature": "Class: `WritableStreamDefaultWriter`", + "label": "WritableStreamDefaultWriter", + "apiSymbol": "WritableStreamDefaultWriter", + "depth": 2, + "scope": "api", + "anchor": "class-writablestreamdefaultwriter", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:326716928d08", + "chapter": "webstreams", + "kind": "method", + "name": "abort", + "signature": "`writableStreamDefaultWriter.abort([reason])`", + "label": "writableStreamDefaultWriter.abort([reason])", + "apiSymbol": "writableStreamDefaultWriter.abort", + "depth": 3, + "scope": "api", + "anchor": "writablestreamdefaultwriterabortreason", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:692468144121", + "chapter": "webstreams", + "kind": "method", + "name": "close", + "signature": "`writableStreamDefaultWriter.close()`", + "label": "writableStreamDefaultWriter.close()", + "apiSymbol": "writableStreamDefaultWriter.close", + "depth": 3, + "scope": "api", + "anchor": "writablestreamdefaultwriterclose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:a6c1f3872dd6", + "chapter": "webstreams", + "kind": "method", + "name": "releaseLock", + "signature": "`writableStreamDefaultWriter.releaseLock()`", + "label": "writableStreamDefaultWriter.releaseLock()", + "apiSymbol": "writableStreamDefaultWriter.releaseLock", + "depth": 3, + "scope": "api", + "anchor": "writablestreamdefaultwriterreleaselock", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:6587d1ca2758", + "chapter": "webstreams", + "kind": "method", + "name": "write", + "signature": "`writableStreamDefaultWriter.write([chunk])`", + "label": "writableStreamDefaultWriter.write([chunk])", + "apiSymbol": "writableStreamDefaultWriter.write", + "depth": 3, + "scope": "api", + "anchor": "writablestreamdefaultwriterwritechunk", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:b33d7f544115", + "chapter": "webstreams", + "kind": "Promise", + "name": "Type", + "signature": "`closed` Type: {Promise} Fulfilled with `undefined` when the associated {WritableStream} is closed or rejected if the stream errors or the writer's lock is released before the stream finishes closing.", + "label": "closed", + "apiSymbol": "closed", + "depth": 3, + "scope": "api", + "anchor": "class-writablestreamdefaultwriter", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "ancestor" + }, + { + "id": "webstreams:39e0df6f571b", + "chapter": "webstreams", + "kind": "number", + "name": "Type", + "signature": "`desiredSize` Type: {number}", + "label": "desiredSize", + "apiSymbol": "desiredSize", + "depth": 3, + "scope": "api", + "anchor": "class-writablestreamdefaultwriter", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "ancestor" + }, + { + "id": "webstreams:24f064d91fda", + "chapter": "webstreams", + "kind": "Promise", + "name": "Type", + "signature": "`ready` Type: {Promise} Fulfilled with `undefined` when the writer is ready to be used.", + "label": "ready", + "apiSymbol": "ready", + "depth": 3, + "scope": "api", + "anchor": "class-writablestreamdefaultwriter", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "ancestor" + }, + { + "id": "webstreams:03e865d0551b", + "chapter": "webstreams", + "kind": "class", + "name": "WritableStreamDefaultController", + "signature": "Class: `WritableStreamDefaultController`", + "label": "WritableStreamDefaultController", + "apiSymbol": "WritableStreamDefaultController", + "depth": 2, + "scope": "api", + "anchor": "class-writablestreamdefaultcontroller", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:0874c6edcae4", + "chapter": "webstreams", + "kind": "method", + "name": "error", + "signature": "`writableStreamDefaultController.error([error])`", + "label": "writableStreamDefaultController.error([error])", + "apiSymbol": "writableStreamDefaultController.error", + "depth": 3, + "scope": "api", + "anchor": "writablestreamdefaultcontrollererrorerror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:955007abea66", + "chapter": "webstreams", + "kind": "AbortSignal", + "name": "Type", + "signature": "`signal` Type: {AbortSignal} An `AbortSignal` that can be used to cancel pending write or close operations when a {WritableStream} is aborted.", + "label": "signal", + "apiSymbol": "signal", + "depth": 3, + "scope": "api", + "anchor": "class-writablestreamdefaultcontroller", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "ancestor" + }, + { + "id": "webstreams:c25d842fc815", + "chapter": "webstreams", + "kind": "class", + "name": "TransformStream", + "signature": "Class: `TransformStream`", + "label": "TransformStream", + "apiSymbol": "TransformStream", + "depth": 2, + "scope": "api", + "anchor": "class-transformstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:stream/web.TransformStream", + "tests": [ + "tests/fixtures/npm/cases/web-streams/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:92bf4ae37510", + "chapter": "webstreams", + "kind": "module", + "name": "transferring_with_postmessage()", + "signature": "Transferring with postMessage()", + "label": "Transferring with postMessage()", + "apiSymbol": "transferring_with_postmessage", + "depth": 3, + "scope": "documentation", + "anchor": "transferring-with-postmessage_2", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:ddbc268aec5a", + "chapter": "webstreams", + "kind": "ReadableStream", + "name": "Type", + "signature": "`readable` Type: {ReadableStream}", + "label": "readable", + "apiSymbol": "readable", + "depth": 3, + "scope": "api", + "anchor": "class-transformstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "ancestor" + }, + { + "id": "webstreams:231398d14977", + "chapter": "webstreams", + "kind": "WritableStream", + "name": "Type", + "signature": "`writable` Type: {WritableStream}", + "label": "writable", + "apiSymbol": "writable", + "depth": 3, + "scope": "api", + "anchor": "class-transformstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "ancestor" + }, + { + "id": "webstreams:e788e15a2bf2", + "chapter": "webstreams", + "kind": "class", + "name": "TransformStreamDefaultController", + "signature": "Class: `TransformStreamDefaultController`", + "label": "TransformStreamDefaultController", + "apiSymbol": "TransformStreamDefaultController", + "depth": 2, + "scope": "api", + "anchor": "class-transformstreamdefaultcontroller", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:3bb8ad83b1ae", + "chapter": "webstreams", + "kind": "method", + "name": "enqueue", + "signature": "`transformStreamDefaultController.enqueue([chunk])`", + "label": "transformStreamDefaultController.enqueue([chunk])", + "apiSymbol": "transformStreamDefaultController.enqueue", + "depth": 3, + "scope": "api", + "anchor": "transformstreamdefaultcontrollerenqueuechunk", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:ecfa06a848f1", + "chapter": "webstreams", + "kind": "method", + "name": "error", + "signature": "`transformStreamDefaultController.error([reason])`", + "label": "transformStreamDefaultController.error([reason])", + "apiSymbol": "transformStreamDefaultController.error", + "depth": 3, + "scope": "api", + "anchor": "transformstreamdefaultcontrollererrorreason", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:700f054c0b67", + "chapter": "webstreams", + "kind": "method", + "name": "terminate", + "signature": "`transformStreamDefaultController.terminate()`", + "label": "transformStreamDefaultController.terminate()", + "apiSymbol": "transformStreamDefaultController.terminate", + "depth": 3, + "scope": "api", + "anchor": "transformstreamdefaultcontrollerterminate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:0866431a6cd4", + "chapter": "webstreams", + "kind": "number", + "name": "Type", + "signature": "`desiredSize` Type: {number}", + "label": "desiredSize", + "apiSymbol": "desiredSize", + "depth": 3, + "scope": "api", + "anchor": "class-transformstreamdefaultcontroller", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "ancestor" + }, + { + "id": "webstreams:09f83fd95a39", + "chapter": "webstreams", + "kind": "class", + "name": "ByteLengthQueuingStrategy", + "signature": "Class: `ByteLengthQueuingStrategy`", + "label": "ByteLengthQueuingStrategy", + "apiSymbol": "ByteLengthQueuingStrategy", + "depth": 2, + "scope": "api", + "anchor": "class-bytelengthqueuingstrategy", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:5acb1d2e7442", + "chapter": "webstreams", + "kind": "number", + "name": "Type", + "signature": "`highWaterMark` Type: {number}", + "label": "highWaterMark", + "apiSymbol": "highWaterMark", + "depth": 3, + "scope": "api", + "anchor": "class-bytelengthqueuingstrategy", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "ancestor" + }, + { + "id": "webstreams:748354473b33", + "chapter": "webstreams", + "kind": "Function", + "name": "Type", + "signature": "`size` Type: {Function}", + "label": "size", + "apiSymbol": "size", + "depth": 3, + "scope": "api", + "anchor": "class-bytelengthqueuingstrategy", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "ancestor" + }, + { + "id": "webstreams:6c617f750992", + "chapter": "webstreams", + "kind": "class", + "name": "CountQueuingStrategy", + "signature": "Class: `CountQueuingStrategy`", + "label": "CountQueuingStrategy", + "apiSymbol": "CountQueuingStrategy", + "depth": 2, + "scope": "api", + "anchor": "class-countqueuingstrategy", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:1a7b6068e2b1", + "chapter": "webstreams", + "kind": "number", + "name": "Type", + "signature": "`highWaterMark` Type: {number}", + "label": "highWaterMark", + "apiSymbol": "highWaterMark", + "depth": 3, + "scope": "api", + "anchor": "class-countqueuingstrategy", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "ancestor" + }, + { + "id": "webstreams:396854b8c5c4", + "chapter": "webstreams", + "kind": "Function", + "name": "Type", + "signature": "`size` Type: {Function}", + "label": "size", + "apiSymbol": "size", + "depth": 3, + "scope": "api", + "anchor": "class-countqueuingstrategy", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "ancestor" + }, + { + "id": "webstreams:ed6d58f31fcf", + "chapter": "webstreams", + "kind": "class", + "name": "TextEncoderStream", + "signature": "Class: `TextEncoderStream`", + "label": "TextEncoderStream", + "apiSymbol": "TextEncoderStream", + "depth": 2, + "scope": "api", + "anchor": "class-textencoderstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:de77458dd9f4", + "chapter": "webstreams", + "kind": "string", + "name": "Type", + "signature": "`encoding` Type: {string}", + "label": "encoding", + "apiSymbol": "encoding", + "depth": 3, + "scope": "api", + "anchor": "class-textencoderstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "ancestor" + }, + { + "id": "webstreams:f678b73a1fca", + "chapter": "webstreams", + "kind": "ReadableStream", + "name": "Type", + "signature": "`readable` Type: {ReadableStream}", + "label": "readable", + "apiSymbol": "readable", + "depth": 3, + "scope": "api", + "anchor": "class-textencoderstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "ancestor" + }, + { + "id": "webstreams:7dcfefd655cf", + "chapter": "webstreams", + "kind": "WritableStream", + "name": "Type", + "signature": "`writable` Type: {WritableStream}", + "label": "writable", + "apiSymbol": "writable", + "depth": 3, + "scope": "api", + "anchor": "class-textencoderstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "ancestor" + }, + { + "id": "webstreams:6673c095131b", + "chapter": "webstreams", + "kind": "class", + "name": "TextDecoderStream", + "signature": "Class: `TextDecoderStream`", + "label": "TextDecoderStream", + "apiSymbol": "TextDecoderStream", + "depth": 2, + "scope": "api", + "anchor": "class-textdecoderstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:stream/web.TextDecoderStream", + "tests": [ + "tests/fixtures/npm/cases/web-streams/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:16933dc8a5bd", + "chapter": "webstreams", + "kind": "string", + "name": "Type", + "signature": "`encoding` Type: {string}", + "label": "encoding", + "apiSymbol": "encoding", + "depth": 3, + "scope": "api", + "anchor": "class-textdecoderstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "ancestor" + }, + { + "id": "webstreams:be485e9fc7e2", + "chapter": "webstreams", + "kind": "boolean", + "name": "Type", + "signature": "`fatal` Type: {boolean}", + "label": "fatal", + "apiSymbol": "fatal", + "depth": 3, + "scope": "api", + "anchor": "class-textdecoderstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "ancestor" + }, + { + "id": "webstreams:d9855511b7a8", + "chapter": "webstreams", + "kind": "boolean", + "name": "Type", + "signature": "`ignoreBOM` Type: {boolean}", + "label": "ignoreBOM", + "apiSymbol": "ignoreBOM", + "depth": 3, + "scope": "api", + "anchor": "class-textdecoderstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "ancestor" + }, + { + "id": "webstreams:95c66ef359ad", + "chapter": "webstreams", + "kind": "ReadableStream", + "name": "Type", + "signature": "`readable` Type: {ReadableStream}", + "label": "readable", + "apiSymbol": "readable", + "depth": 3, + "scope": "api", + "anchor": "class-textdecoderstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "ancestor" + }, + { + "id": "webstreams:ab6a95f11bda", + "chapter": "webstreams", + "kind": "WritableStream", + "name": "Type", + "signature": "`writable` Type: {WritableStream}", + "label": "writable", + "apiSymbol": "writable", + "depth": 3, + "scope": "api", + "anchor": "class-textdecoderstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "ancestor" + }, + { + "id": "webstreams:ada28bc23554", + "chapter": "webstreams", + "kind": "class", + "name": "CompressionStream", + "signature": "Class: `CompressionStream`", + "label": "CompressionStream", + "apiSymbol": "CompressionStream", + "depth": 2, + "scope": "api", + "anchor": "class-compressionstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:1d0708fcb59d", + "chapter": "webstreams", + "kind": "ReadableStream", + "name": "Type", + "signature": "`readable` Type: {ReadableStream}", + "label": "readable", + "apiSymbol": "readable", + "depth": 3, + "scope": "api", + "anchor": "class-compressionstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "ancestor" + }, + { + "id": "webstreams:d6e6a45a6022", + "chapter": "webstreams", + "kind": "WritableStream", + "name": "Type", + "signature": "`writable` Type: {WritableStream}", + "label": "writable", + "apiSymbol": "writable", + "depth": 3, + "scope": "api", + "anchor": "class-compressionstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "ancestor" + }, + { + "id": "webstreams:4ece75e1a260", + "chapter": "webstreams", + "kind": "class", + "name": "DecompressionStream", + "signature": "Class: `DecompressionStream`", + "label": "DecompressionStream", + "apiSymbol": "DecompressionStream", + "depth": 2, + "scope": "api", + "anchor": "class-decompressionstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "exact" + }, + { + "id": "webstreams:978c5c982f0f", + "chapter": "webstreams", + "kind": "ReadableStream", + "name": "Type", + "signature": "`readable` Type: {ReadableStream}", + "label": "readable", + "apiSymbol": "readable", + "depth": 3, + "scope": "api", + "anchor": "class-decompressionstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "ancestor" + }, + { + "id": "webstreams:eb4f2ec77ada", + "chapter": "webstreams", + "kind": "WritableStream", + "name": "Type", + "signature": "`writable` Type: {WritableStream}", + "label": "writable", + "apiSymbol": "writable", + "depth": 3, + "scope": "api", + "anchor": "class-decompressionstream", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:webstreams" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "ancestor" + }, + { + "id": "webstreams:4c7d9f984091", + "chapter": "webstreams", + "kind": "method", + "name": "from", + "signature": "`ReadableStream.from(iterable)`", + "label": "ReadableStream.from(iterable)", + "apiSymbol": "ReadableStream.from", + "depth": 2, + "scope": "api", + "anchor": "readablestreamfromiterable", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:stdlib.readable-stream.from", + "tests": [ + "tests/harness/fetch-conformance.test.ts" + ] + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:webstreams" + }, + "anchorSource": "exact" + }, + { + "id": "worker_threads:33a47fc8e33a", + "chapter": "worker_threads", + "kind": "module", + "name": "worker_threads", + "signature": "Worker threads", + "label": "Worker threads", + "apiSymbol": "worker_threads", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/corpus/957-builtins-namespace.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "worker_threads:70b49927488e", + "chapter": "worker_threads", + "kind": "module", + "name": "notes", + "signature": "Notes", + "label": "Notes", + "apiSymbol": "notes", + "depth": 1, + "scope": "documentation", + "anchor": "notes", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "worker_threads:98cdc5593477", + "chapter": "worker_threads", + "kind": "module", + "name": "synchronous_blocking_of_stdio", + "signature": "Synchronous blocking of stdio", + "label": "Synchronous blocking of stdio", + "apiSymbol": "synchronous_blocking_of_stdio", + "depth": 2, + "scope": "documentation", + "anchor": "synchronous-blocking-of-stdio", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "worker_threads:d6b35fdc825a", + "chapter": "worker_threads", + "kind": "module", + "name": "launching_worker_threads_from_preload_scripts", + "signature": "Launching worker threads from preload scripts", + "label": "Launching worker threads from preload scripts", + "apiSymbol": "launching_worker_threads_from_preload_scripts", + "depth": 2, + "scope": "documentation", + "anchor": "launching-worker-threads-from-preload-scripts", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "worker_threads:cf4424f7a1cf", + "chapter": "worker_threads", + "kind": "class", + "name": "BroadcastChannel", + "signature": "Class: `BroadcastChannel extends EventTarget`", + "label": "BroadcastChannel extends EventTarget", + "apiSymbol": "BroadcastChannel extends EventTarget", + "depth": 1, + "scope": "api", + "anchor": "class-broadcastchannel-extends-eventtarget", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:worker_threads" + }, + "anchorSource": "exact" + }, + { + "id": "worker_threads:c42a42df81f9", + "chapter": "worker_threads", + "kind": "method", + "name": "close", + "signature": "`broadcastChannel.close()`", + "label": "broadcastChannel.close()", + "apiSymbol": "broadcastChannel.close", + "depth": 2, + "scope": "api", + "anchor": "broadcastchannelclose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:worker_threads" + }, + "anchorSource": "exact" + }, + { + "id": "worker_threads:168fe279d66f", + "chapter": "worker_threads", + "kind": "method", + "name": "postMessage", + "signature": "`broadcastChannel.postMessage(message)`", + "label": "broadcastChannel.postMessage(message)", + "apiSymbol": "broadcastChannel.postMessage", + "depth": 2, + "scope": "api", + "anchor": "broadcastchannelpostmessagemessage", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:worker_threads" + }, + "anchorSource": "exact" + }, + { + "id": "worker_threads:f07157246319", + "chapter": "worker_threads", + "kind": "method", + "name": "ref", + "signature": "`broadcastChannel.ref()`", + "label": "broadcastChannel.ref()", + "apiSymbol": "broadcastChannel.ref", + "depth": 2, + "scope": "api", + "anchor": "broadcastchannelref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:worker_threads" + }, + "anchorSource": "exact" + }, + { + "id": "worker_threads:56e73d657971", + "chapter": "worker_threads", + "kind": "method", + "name": "unref", + "signature": "`broadcastChannel.unref()`", + "label": "broadcastChannel.unref()", + "apiSymbol": "broadcastChannel.unref", + "depth": 2, + "scope": "api", + "anchor": "broadcastchannelunref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:worker_threads" + }, + "anchorSource": "exact" + }, + { + "id": "worker_threads:63e1b1ffd63c", + "chapter": "worker_threads", + "kind": "Function", + "name": "Type", + "signature": "`onmessage` Type: {Function} Invoked with a single `MessageEvent` argument when a message is received.", + "label": "onmessage", + "apiSymbol": "onmessage", + "depth": 2, + "scope": "api", + "anchor": "class-broadcastchannel-extends-eventtarget", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:worker_threads" + }, + "anchorSource": "ancestor" + }, + { + "id": "worker_threads:de776bc75234", + "chapter": "worker_threads", + "kind": "Function", + "name": "Type", + "signature": "`onmessageerror` Type: {Function} Invoked with a received message cannot be deserialized.", + "label": "onmessageerror", + "apiSymbol": "onmessageerror", + "depth": 2, + "scope": "api", + "anchor": "class-broadcastchannel-extends-eventtarget", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:worker_threads" + }, + "anchorSource": "ancestor" + }, + { + "id": "worker_threads:8f86db7bdcdb", + "chapter": "worker_threads", + "kind": "class", + "name": "MessageChannel", + "signature": "Class: `MessageChannel`", + "label": "MessageChannel", + "apiSymbol": "MessageChannel", + "depth": 1, + "scope": "api", + "anchor": "class-messagechannel", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:worker_threads.MessageChannel", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "worker_threads:608a944a6593", + "chapter": "worker_threads", + "kind": "class", + "name": "MessagePort", + "signature": "Class: `MessagePort`", + "label": "MessagePort", + "apiSymbol": "MessagePort", + "depth": 1, + "scope": "api", + "anchor": "class-messageport", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:worker_threads.MessagePort", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "worker_threads:9bca0cdecd41", + "chapter": "worker_threads", + "kind": "method", + "name": "close", + "signature": "`port.close()`", + "label": "port.close()", + "apiSymbol": "port.close", + "depth": 2, + "scope": "api", + "anchor": "portclose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:worker_threads.port.close", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "worker_threads:389633d880fc", + "chapter": "worker_threads", + "kind": "method", + "name": "postMessage", + "signature": "`port.postMessage(value[, transferList])`", + "label": "port.postMessage(value[, transferList])", + "apiSymbol": "port.postMessage", + "depth": 2, + "scope": "api", + "anchor": "portpostmessagevalue-transferlist", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:worker_threads.port.postMessage", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "worker_threads:16841ca24282", + "chapter": "worker_threads", + "kind": "module", + "name": "considerations_when_transferring_typedarrays_and_buffers", + "signature": "Considerations when transferring TypedArrays and Buffers", + "label": "Considerations when transferring TypedArrays and Buffers", + "apiSymbol": "considerations_when_transferring_typedarrays_and_buffers", + "depth": 3, + "scope": "documentation", + "anchor": "considerations-when-transferring-typedarrays-and-buffers", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "worker_threads:08d03ec7f646", + "chapter": "worker_threads", + "kind": "module", + "name": "considerations_when_cloning_objects_with_prototypes,_classes,_and_accessors", + "signature": "Considerations when cloning objects with prototypes, classes, and accessors", + "label": "Considerations when cloning objects with prototypes, classes, and accessors", + "apiSymbol": "considerations_when_cloning_objects_with_prototypes,_classes,_and_accessors", + "depth": 3, + "scope": "documentation", + "anchor": "considerations-when-cloning-objects-with-prototypes-classes-and-accessors", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "worker_threads:c2323b965d93", + "chapter": "worker_threads", + "kind": "method", + "name": "hasRef", + "signature": "`port.hasRef()`", + "label": "port.hasRef()", + "apiSymbol": "port.hasRef", + "depth": 2, + "scope": "api", + "anchor": "porthasref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:worker_threads.port.hasRef", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "worker_threads:169b0d7c758d", + "chapter": "worker_threads", + "kind": "method", + "name": "ref", + "signature": "`port.ref()`", + "label": "port.ref()", + "apiSymbol": "port.ref", + "depth": 2, + "scope": "api", + "anchor": "portref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:worker_threads.port.ref", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "worker_threads:fedc0425972a", + "chapter": "worker_threads", + "kind": "method", + "name": "start", + "signature": "`port.start()`", + "label": "port.start()", + "apiSymbol": "port.start", + "depth": 2, + "scope": "api", + "anchor": "portstart", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:worker_threads.port.start", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "worker_threads:797508159c6e", + "chapter": "worker_threads", + "kind": "method", + "name": "unref", + "signature": "`port.unref()`", + "label": "port.unref()", + "apiSymbol": "port.unref", + "depth": 2, + "scope": "api", + "anchor": "portunref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:worker_threads.port.unref", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "worker_threads:85ef506d03ee", + "chapter": "worker_threads", + "kind": "event", + "name": "close", + "signature": "Event: `'close'`", + "label": "'close'", + "apiSymbol": "'close'", + "depth": 2, + "scope": "api", + "anchor": "event-close", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:worker_threads" + }, + "anchorSource": "exact" + }, + { + "id": "worker_threads:c64febb107f3", + "chapter": "worker_threads", + "kind": "event", + "name": "message", + "signature": "Event: `'message'`", + "label": "'message'", + "apiSymbol": "'message'", + "depth": 2, + "scope": "api", + "anchor": "event-message", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:worker_threads" + }, + "anchorSource": "exact" + }, + { + "id": "worker_threads:4529c484aac5", + "chapter": "worker_threads", + "kind": "event", + "name": "messageerror", + "signature": "Event: `'messageerror'`", + "label": "'messageerror'", + "apiSymbol": "'messageerror'", + "depth": 2, + "scope": "api", + "anchor": "event-messageerror", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:worker_threads" + }, + "anchorSource": "exact" + }, + { + "id": "worker_threads:7536dde91c9c", + "chapter": "worker_threads", + "kind": "class", + "name": "Worker", + "signature": "Class: `Worker`", + "label": "Worker", + "apiSymbol": "Worker", + "depth": 1, + "scope": "api", + "anchor": "class-worker", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "refused", + "evidence": "island-stub:node:worker_threads.Worker" + }, + "anchorSource": "exact" + }, + { + "id": "worker_threads:99f9a94d5919", + "chapter": "worker_threads", + "kind": "method", + "name": "cpuUsage", + "signature": "`worker.cpuUsage([prev])`", + "label": "worker.cpuUsage([prev])", + "apiSymbol": "worker.cpuUsage", + "depth": 2, + "scope": "api", + "anchor": "workercpuusageprev", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:worker_threads" + }, + "anchorSource": "exact" + }, + { + "id": "worker_threads:8361370bb2bc", + "chapter": "worker_threads", + "kind": "method", + "name": "getHeapSnapshot", + "signature": "`worker.getHeapSnapshot([options])`", + "label": "worker.getHeapSnapshot([options])", + "apiSymbol": "worker.getHeapSnapshot", + "depth": 2, + "scope": "api", + "anchor": "workergetheapsnapshotoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:worker_threads" + }, + "anchorSource": "exact" + }, + { + "id": "worker_threads:09479350e62f", + "chapter": "worker_threads", + "kind": "method", + "name": "getHeapStatistics", + "signature": "`worker.getHeapStatistics()`", + "label": "worker.getHeapStatistics()", + "apiSymbol": "worker.getHeapStatistics", + "depth": 2, + "scope": "api", + "anchor": "workergetheapstatistics", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:worker_threads" + }, + "anchorSource": "exact" + }, + { + "id": "worker_threads:8d404e152648", + "chapter": "worker_threads", + "kind": "method", + "name": "postMessage", + "signature": "`worker.postMessage(value[, transferList])`", + "label": "worker.postMessage(value[, transferList])", + "apiSymbol": "worker.postMessage", + "depth": 2, + "scope": "api", + "anchor": "workerpostmessagevalue-transferlist", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:worker_threads" + }, + "anchorSource": "exact" + }, + { + "id": "worker_threads:be349c881c74", + "chapter": "worker_threads", + "kind": "method", + "name": "ref", + "signature": "`worker.ref()`", + "label": "worker.ref()", + "apiSymbol": "worker.ref", + "depth": 2, + "scope": "api", + "anchor": "workerref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:worker_threads" + }, + "anchorSource": "exact" + }, + { + "id": "worker_threads:d7443ee2bb71", + "chapter": "worker_threads", + "kind": "method", + "name": "startCpuProfile", + "signature": "`worker.startCpuProfile()`", + "label": "worker.startCpuProfile()", + "apiSymbol": "worker.startCpuProfile", + "depth": 2, + "scope": "api", + "anchor": "workerstartcpuprofile", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:worker_threads" + }, + "anchorSource": "exact" + }, + { + "id": "worker_threads:a4e0ad92946d", + "chapter": "worker_threads", + "kind": "method", + "name": "startHeapProfile", + "signature": "`worker.startHeapProfile()`", + "label": "worker.startHeapProfile()", + "apiSymbol": "worker.startHeapProfile", + "depth": 2, + "scope": "api", + "anchor": "workerstartheapprofile", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:worker_threads" + }, + "anchorSource": "exact" + }, + { + "id": "worker_threads:fcf587df6a0a", + "chapter": "worker_threads", + "kind": "method", + "name": "terminate", + "signature": "`worker.terminate()`", + "label": "worker.terminate()", + "apiSymbol": "worker.terminate", + "depth": 2, + "scope": "api", + "anchor": "workerterminate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:worker_threads" + }, + "anchorSource": "exact" + }, + { + "id": "worker_threads:bcafd270d5a4", + "chapter": "worker_threads", + "kind": "method", + "name": "unref", + "signature": "`worker.unref()`", + "label": "worker.unref()", + "apiSymbol": "worker.unref", + "depth": 2, + "scope": "api", + "anchor": "workerunref", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:worker_threads" + }, + "anchorSource": "exact" + }, + { + "id": "worker_threads:8502ade0dfc3", + "chapter": "worker_threads", + "kind": "method", + "name": "[Symbol.asyncDispose]", + "signature": "`worker[Symbol.asyncDispose]()`", + "label": "worker[Symbol.asyncDispose]()", + "apiSymbol": "worker", + "depth": 2, + "scope": "api", + "anchor": "workersymbolasyncdispose", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:worker_threads" + }, + "anchorSource": "exact" + }, + { + "id": "worker_threads:b499a5daed50", + "chapter": "worker_threads", + "kind": "section", + "name": "performance", + "signature": "`worker.performance`", + "label": "worker.performance", + "apiSymbol": "worker.performance", + "depth": 2, + "scope": "api", + "anchor": "workerperformance", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:worker_threads" + }, + "anchorSource": "exact" + }, + { + "id": "worker_threads:f665e4fe7d26", + "chapter": "worker_threads", + "kind": "method", + "name": "eventLoopUtilization", + "signature": "`performance.eventLoopUtilization([utilization1[, utilization2]])`", + "label": "performance.eventLoopUtilization([utilization1[, utilization2]])", + "apiSymbol": "performance.eventLoopUtilization", + "depth": 3, + "scope": "api", + "anchor": "performanceeventlooputilizationutilization1-utilization2", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:worker_threads" + }, + "anchorSource": "exact" + }, + { + "id": "worker_threads:a9b70ec46e67", + "chapter": "worker_threads", + "kind": "Object", + "name": "Type", + "signature": "`resourceLimits` Type: {Object}", + "label": "resourceLimits", + "apiSymbol": "resourceLimits", + "depth": 2, + "scope": "api", + "anchor": "class-worker", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:worker_threads.resourceLimits", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "ancestor" + }, + { + "id": "worker_threads:efa929d81b46", + "chapter": "worker_threads", + "kind": "stream.Readable", + "name": "Type", + "signature": "`stderr` Type: {stream.Readable}", + "label": "stderr", + "apiSymbol": "stderr", + "depth": 2, + "scope": "api", + "anchor": "class-worker", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:worker_threads" + }, + "anchorSource": "ancestor" + }, + { + "id": "worker_threads:cae35208baa5", + "chapter": "worker_threads", + "kind": "null|stream.Writable", + "name": "Type", + "signature": "`stdin` Type: {null|stream.Writable}", + "label": "stdin", + "apiSymbol": "stdin", + "depth": 2, + "scope": "api", + "anchor": "class-worker", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:worker_threads" + }, + "anchorSource": "ancestor" + }, + { + "id": "worker_threads:58e72446eda6", + "chapter": "worker_threads", + "kind": "stream.Readable", + "name": "Type", + "signature": "`stdout` Type: {stream.Readable}", + "label": "stdout", + "apiSymbol": "stdout", + "depth": 2, + "scope": "api", + "anchor": "class-worker", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:worker_threads" + }, + "anchorSource": "ancestor" + }, + { + "id": "worker_threads:e44f6340458d", + "chapter": "worker_threads", + "kind": "integer", + "name": "Type", + "signature": "`threadId` Type: {integer}", + "label": "threadId", + "apiSymbol": "threadId", + "depth": 2, + "scope": "api", + "anchor": "class-worker", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.worker_threads.threadId", + "tests": [ + "tests/corpus/957-builtins-namespace.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:worker_threads.threadId", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "ancestor" + }, + { + "id": "worker_threads:4f475e9f95bd", + "chapter": "worker_threads", + "kind": "string|null", + "name": "threadName", + "signature": "`threadName` {string|null}", + "label": "threadName", + "apiSymbol": "threadName", + "depth": 2, + "scope": "api", + "anchor": "class-worker", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:worker_threads" + }, + "anchorSource": "ancestor" + }, + { + "id": "worker_threads:8d3a7dcfa968", + "chapter": "worker_threads", + "kind": "event", + "name": "error", + "signature": "Event: `'error'`", + "label": "'error'", + "apiSymbol": "'error'", + "depth": 2, + "scope": "api", + "anchor": "event-error", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:worker_threads" + }, + "anchorSource": "exact" + }, + { + "id": "worker_threads:7fa7816fa878", + "chapter": "worker_threads", + "kind": "event", + "name": "exit", + "signature": "Event: `'exit'`", + "label": "'exit'", + "apiSymbol": "'exit'", + "depth": 2, + "scope": "api", + "anchor": "event-exit", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:worker_threads" + }, + "anchorSource": "exact" + }, + { + "id": "worker_threads:18389d4c2d81", + "chapter": "worker_threads", + "kind": "event", + "name": "message", + "signature": "Event: `'message'`", + "label": "'message'", + "apiSymbol": "'message'", + "depth": 2, + "scope": "api", + "anchor": "event-message_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:worker_threads" + }, + "anchorSource": "exact" + }, + { + "id": "worker_threads:af0c1725084e", + "chapter": "worker_threads", + "kind": "event", + "name": "messageerror", + "signature": "Event: `'messageerror'`", + "label": "'messageerror'", + "apiSymbol": "'messageerror'", + "depth": 2, + "scope": "api", + "anchor": "event-messageerror_1", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:worker_threads" + }, + "anchorSource": "exact" + }, + { + "id": "worker_threads:9c5a8d6e723d", + "chapter": "worker_threads", + "kind": "event", + "name": "online", + "signature": "Event: `'online'`", + "label": "'online'", + "apiSymbol": "'online'", + "depth": 2, + "scope": "api", + "anchor": "event-online", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:worker_threads" + }, + "anchorSource": "exact" + }, + { + "id": "worker_threads:c8c1e9f553f9", + "chapter": "worker_threads", + "kind": "method", + "name": "getEnvironmentData", + "signature": "`worker_threads.getEnvironmentData(key)`", + "label": "worker_threads.getEnvironmentData(key)", + "apiSymbol": "worker_threads.getEnvironmentData", + "depth": 1, + "scope": "api", + "anchor": "worker_threadsgetenvironmentdatakey", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:worker_threads.getEnvironmentData", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "worker_threads:3d8d04215ee7", + "chapter": "worker_threads", + "kind": "method", + "name": "markAsUntransferable", + "signature": "`worker_threads.markAsUntransferable(object)`", + "label": "worker_threads.markAsUntransferable(object)", + "apiSymbol": "worker_threads.markAsUntransferable", + "depth": 1, + "scope": "api", + "anchor": "worker_threadsmarkasuntransferableobject", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:worker_threads.markAsUntransferable", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "worker_threads:9a73a9191b81", + "chapter": "worker_threads", + "kind": "method", + "name": "isMarkedAsUntransferable", + "signature": "`worker_threads.isMarkedAsUntransferable(object)`", + "label": "worker_threads.isMarkedAsUntransferable(object)", + "apiSymbol": "worker_threads.isMarkedAsUntransferable", + "depth": 1, + "scope": "api", + "anchor": "worker_threadsismarkedasuntransferableobject", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:worker_threads" + }, + "anchorSource": "exact" + }, + { + "id": "worker_threads:323635b01e95", + "chapter": "worker_threads", + "kind": "method", + "name": "markAsUncloneable", + "signature": "`worker_threads.markAsUncloneable(object)`", + "label": "worker_threads.markAsUncloneable(object)", + "apiSymbol": "worker_threads.markAsUncloneable", + "depth": 1, + "scope": "api", + "anchor": "worker_threadsmarkasuncloneableobject", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:worker_threads" + }, + "anchorSource": "exact" + }, + { + "id": "worker_threads:6e322a3abb2a", + "chapter": "worker_threads", + "kind": "method", + "name": "moveMessagePortToContext", + "signature": "`worker_threads.moveMessagePortToContext(port, contextifiedSandbox)`", + "label": "worker_threads.moveMessagePortToContext(port, contextifiedSandbox)", + "apiSymbol": "worker_threads.moveMessagePortToContext", + "depth": 1, + "scope": "api", + "anchor": "worker_threadsmovemessageporttocontextport-contextifiedsandbox", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:worker_threads" + }, + "anchorSource": "exact" + }, + { + "id": "worker_threads:b353e1b0cd58", + "chapter": "worker_threads", + "kind": "method", + "name": "postMessageToThread", + "signature": "`worker_threads.postMessageToThread(threadId, value[, transferList][, timeout])`", + "label": "worker_threads.postMessageToThread(threadId, value[, transferList][, timeout])", + "apiSymbol": "worker_threads.postMessageToThread", + "depth": 1, + "scope": "api", + "anchor": "worker_threadspostmessagetothreadthreadid-value-transferlist-timeout", + "nodeStability": { + "index": "1.1", + "level": 1, + "text": "Active development", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:worker_threads" + }, + "anchorSource": "exact" + }, + { + "id": "worker_threads:c809b5d89f8d", + "chapter": "worker_threads", + "kind": "method", + "name": "receiveMessageOnPort", + "signature": "`worker_threads.receiveMessageOnPort(port)`", + "label": "worker_threads.receiveMessageOnPort(port)", + "apiSymbol": "worker_threads.receiveMessageOnPort", + "depth": 1, + "scope": "api", + "anchor": "worker_threadsreceivemessageonportport", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:worker_threads.receiveMessageOnPort", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "worker_threads:cfc588f55a52", + "chapter": "worker_threads", + "kind": "method", + "name": "setEnvironmentData", + "signature": "`worker_threads.setEnvironmentData(key[, value])`", + "label": "worker_threads.setEnvironmentData(key[, value])", + "apiSymbol": "worker_threads.setEnvironmentData", + "depth": 1, + "scope": "api", + "anchor": "worker_threadssetenvironmentdatakey-value", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:worker_threads.setEnvironmentData", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "worker_threads:48c73a2517e5", + "chapter": "worker_threads", + "kind": "boolean", + "name": "Type", + "signature": "`isInternalThread` Type: {boolean}", + "label": "isInternalThread", + "apiSymbol": "isInternalThread", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:worker_threads" + }, + "anchorSource": "chapter" + }, + { + "id": "worker_threads:3b43f2113dee", + "chapter": "worker_threads", + "kind": "boolean", + "name": "Type", + "signature": "`isMainThread` Type: {boolean}", + "label": "isMainThread", + "apiSymbol": "isMainThread", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.worker_threads.isMainThread", + "tests": [ + "tests/corpus/957-builtins-namespace.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:worker_threads.isMainThread", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "worker_threads:d2494e5a39fe", + "chapter": "worker_threads", + "kind": "null|MessagePort", + "name": "Type", + "signature": "`parentPort` Type: {null|MessagePort}", + "label": "parentPort", + "apiSymbol": "parentPort", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:worker_threads.parentPort", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "worker_threads:c635fc5e9af1", + "chapter": "worker_threads", + "kind": "Object", + "name": "Type", + "signature": "`resourceLimits` Type: {Object}", + "label": "resourceLimits", + "apiSymbol": "resourceLimits", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:worker_threads.resourceLimits", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "worker_threads:54960c77536b", + "chapter": "worker_threads", + "kind": "symbol", + "name": "Type", + "signature": "`SHARE_ENV` Type: {symbol}", + "label": "SHARE_ENV", + "apiSymbol": "SHARE_ENV", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:worker_threads.SHARE_ENV", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "worker_threads:51c40ec5e385", + "chapter": "worker_threads", + "kind": "integer", + "name": "Type", + "signature": "`threadId` Type: {integer}", + "label": "threadId", + "apiSymbol": "threadId", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.worker_threads.threadId", + "tests": [ + "tests/corpus/957-builtins-namespace.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:worker_threads.threadId", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "worker_threads:b24d867784a1", + "chapter": "worker_threads", + "kind": "string|null", + "name": "threadName", + "signature": "`threadName` {string|null}", + "label": "threadName", + "apiSymbol": "threadName", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:worker_threads" + }, + "anchorSource": "chapter" + }, + { + "id": "worker_threads:4a1136335aed", + "chapter": "worker_threads", + "kind": "section", + "name": "workerData", + "signature": "`worker_threads.workerData`", + "label": "worker_threads.workerData", + "apiSymbol": "worker_threads.workerData", + "depth": 1, + "scope": "api", + "anchor": "worker_threadsworkerdata", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:worker_threads.workerData", + "tests": [ + "tests/fixtures/npm/cases/island-web-plumbing/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "worker_threads:494c0be22bd9", + "chapter": "worker_threads", + "kind": "LockManager", + "name": "locks", + "signature": "`locks` {LockManager}", + "label": "locks", + "apiSymbol": "locks", + "depth": 1, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:worker_threads" + }, + "anchorSource": "chapter" + }, + { + "id": "worker_threads:e94146c6a707", + "chapter": "worker_threads", + "kind": "class", + "name": "Lock", + "signature": "Class: `Lock`", + "label": "Lock", + "apiSymbol": "Lock", + "depth": 2, + "scope": "api", + "anchor": "class-lock", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:worker_threads" + }, + "anchorSource": "exact" + }, + { + "id": "worker_threads:48350287fe0a", + "chapter": "worker_threads", + "kind": "string", + "name": "name", + "signature": "`name` {string}", + "label": "name", + "apiSymbol": "name", + "depth": 3, + "scope": "api", + "anchor": "class-lock", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:worker_threads" + }, + "anchorSource": "ancestor" + }, + { + "id": "worker_threads:11e01a881cd8", + "chapter": "worker_threads", + "kind": "string", + "name": "mode", + "signature": "`mode` {string}", + "label": "mode", + "apiSymbol": "mode", + "depth": 3, + "scope": "api", + "anchor": "class-lock", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:worker_threads" + }, + "anchorSource": "ancestor" + }, + { + "id": "worker_threads:88665c57101b", + "chapter": "worker_threads", + "kind": "class", + "name": "LockManager", + "signature": "Class: `LockManager`", + "label": "LockManager", + "apiSymbol": "LockManager", + "depth": 2, + "scope": "api", + "anchor": "class-lockmanager", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:worker_threads" + }, + "anchorSource": "exact" + }, + { + "id": "worker_threads:785d2e08642b", + "chapter": "worker_threads", + "kind": "method", + "name": "request", + "signature": "`locks.request(name[, options], callback)`", + "label": "locks.request(name[, options], callback)", + "apiSymbol": "locks.request", + "depth": 3, + "scope": "api", + "anchor": "locksrequestname-options-callback", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:worker_threads" + }, + "anchorSource": "exact" + }, + { + "id": "worker_threads:9ed6b67ed9e0", + "chapter": "worker_threads", + "kind": "method", + "name": "query", + "signature": "`locks.query()`", + "label": "locks.query()", + "apiSymbol": "locks.query", + "depth": 3, + "scope": "api", + "anchor": "locksquery", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:worker_threads" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:worker_threads" + }, + "anchorSource": "exact" + }, + { + "id": "zlib:f66a69fdc76f", + "chapter": "zlib", + "kind": "module", + "name": "zlib", + "signature": "Zlib", + "label": "Zlib", + "apiSymbol": "zlib", + "depth": 0, + "scope": "api", + "anchor": "", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": false + }, + "static": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/corpus/1404-zlib-crypto-bytes.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "derived:descendants", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + }, + "anchorSource": "chapter" + }, + { + "id": "zlib:90055881d18d", + "chapter": "zlib", + "kind": "module", + "name": "threadpool_usage_and_performance_considerations", + "signature": "Threadpool usage and performance considerations", + "label": "Threadpool usage and performance considerations", + "apiSymbol": "threadpool_usage_and_performance_considerations", + "depth": 1, + "scope": "documentation", + "anchor": "threadpool-usage-and-performance-considerations", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "zlib:78257af2f97f", + "chapter": "zlib", + "kind": "module", + "name": "compressing_http_requests_and_responses", + "signature": "Compressing HTTP requests and responses", + "label": "Compressing HTTP requests and responses", + "apiSymbol": "compressing_http_requests_and_responses", + "depth": 1, + "scope": "documentation", + "anchor": "compressing-http-requests-and-responses", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "zlib:f61e8c05e5a8", + "chapter": "zlib", + "kind": "module", + "name": "flushing", + "signature": "Flushing", + "label": "Flushing", + "apiSymbol": "flushing", + "depth": 1, + "scope": "documentation", + "anchor": "flushing", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "zlib:4b20a6571ae3", + "chapter": "zlib", + "kind": "class", + "name": "zlib.BrotliCompress", + "signature": "Class: `zlib.BrotliCompress`", + "label": "zlib.BrotliCompress", + "apiSymbol": "zlib.BrotliCompress", + "depth": 1, + "scope": "api", + "anchor": "class-zlibbrotlicompress", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:zlib.BrotliCompress", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "zlib:4169f388cdff", + "chapter": "zlib", + "kind": "class", + "name": "zlib.BrotliDecompress", + "signature": "Class: `zlib.BrotliDecompress`", + "label": "zlib.BrotliDecompress", + "apiSymbol": "zlib.BrotliDecompress", + "depth": 1, + "scope": "api", + "anchor": "class-zlibbrotlidecompress", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:zlib.BrotliDecompress", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "zlib:ded1ef888418", + "chapter": "zlib", + "kind": "class", + "name": "zlib.Deflate", + "signature": "Class: `zlib.Deflate`", + "label": "zlib.Deflate", + "apiSymbol": "zlib.Deflate", + "depth": 1, + "scope": "api", + "anchor": "class-zlibdeflate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:zlib.Deflate", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "zlib:4affff3a2d56", + "chapter": "zlib", + "kind": "class", + "name": "zlib.DeflateRaw", + "signature": "Class: `zlib.DeflateRaw`", + "label": "zlib.DeflateRaw", + "apiSymbol": "zlib.DeflateRaw", + "depth": 1, + "scope": "api", + "anchor": "class-zlibdeflateraw", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:zlib.DeflateRaw", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "zlib:2b0d3efcf5d6", + "chapter": "zlib", + "kind": "class", + "name": "zlib.Gunzip", + "signature": "Class: `zlib.Gunzip`", + "label": "zlib.Gunzip", + "apiSymbol": "zlib.Gunzip", + "depth": 1, + "scope": "api", + "anchor": "class-zlibgunzip", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:zlib.Gunzip", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "zlib:02184f773e95", + "chapter": "zlib", + "kind": "class", + "name": "zlib.Gzip", + "signature": "Class: `zlib.Gzip`", + "label": "zlib.Gzip", + "apiSymbol": "zlib.Gzip", + "depth": 1, + "scope": "api", + "anchor": "class-zlibgzip", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:zlib.Gzip", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "zlib:ebb640d531fc", + "chapter": "zlib", + "kind": "class", + "name": "zlib.Inflate", + "signature": "Class: `zlib.Inflate`", + "label": "zlib.Inflate", + "apiSymbol": "zlib.Inflate", + "depth": 1, + "scope": "api", + "anchor": "class-zlibinflate", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:zlib.Inflate", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "zlib:1fe0c9a8930f", + "chapter": "zlib", + "kind": "class", + "name": "zlib.InflateRaw", + "signature": "Class: `zlib.InflateRaw`", + "label": "zlib.InflateRaw", + "apiSymbol": "zlib.InflateRaw", + "depth": 1, + "scope": "api", + "anchor": "class-zlibinflateraw", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:zlib.InflateRaw", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "zlib:c84ea8856d26", + "chapter": "zlib", + "kind": "class", + "name": "zlib.Unzip", + "signature": "Class: `zlib.Unzip`", + "label": "zlib.Unzip", + "apiSymbol": "zlib.Unzip", + "depth": 1, + "scope": "api", + "anchor": "class-zlibunzip", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:zlib.Unzip", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "zlib:c58d0ed2b80a", + "chapter": "zlib", + "kind": "class", + "name": "zlib.ZlibBase", + "signature": "Class: `zlib.ZlibBase`", + "label": "zlib.ZlibBase", + "apiSymbol": "zlib.ZlibBase", + "depth": 1, + "scope": "api", + "anchor": "class-zlibzlibbase", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:zlib" + }, + "anchorSource": "exact" + }, + { + "id": "zlib:ede53f463eab", + "chapter": "zlib", + "kind": "method", + "name": "close", + "signature": "`zlib.close([callback])`", + "label": "zlib.close([callback])", + "apiSymbol": "zlib.close", + "depth": 2, + "scope": "api", + "anchor": "zlibclosecallback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:zlib.zlib.close", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "zlib:fd8ca0a6f7bc", + "chapter": "zlib", + "kind": "method", + "name": "flush", + "signature": "`zlib.flush([kind, ]callback)`", + "label": "zlib.flush([kind, ]callback)", + "apiSymbol": "zlib.flush", + "depth": 2, + "scope": "api", + "anchor": "zlibflushkind-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:zlib.zlib.flush", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "zlib:71e1c5251a95", + "chapter": "zlib", + "kind": "method", + "name": "params", + "signature": "`zlib.params(level, strategy, callback)`", + "label": "zlib.params(level, strategy, callback)", + "apiSymbol": "zlib.params", + "depth": 2, + "scope": "api", + "anchor": "zlibparamslevel-strategy-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:zlib" + }, + "anchorSource": "exact" + }, + { + "id": "zlib:5479c2d3644d", + "chapter": "zlib", + "kind": "method", + "name": "reset", + "signature": "`zlib.reset()`", + "label": "zlib.reset()", + "apiSymbol": "zlib.reset", + "depth": 2, + "scope": "api", + "anchor": "zlibreset", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "partial", + "evidence": "island-member:node:zlib.zlib.reset", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "zlib:f048fe3814cc", + "chapter": "zlib", + "kind": "number", + "name": "Type", + "signature": "`bytesWritten` Type: {number}", + "label": "bytesWritten", + "apiSymbol": "bytesWritten", + "depth": 2, + "scope": "api", + "anchor": "class-zlibzlibbase", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:zlib" + }, + "anchorSource": "ancestor" + }, + { + "id": "zlib:076dcd29d91e", + "chapter": "zlib", + "kind": "class", + "name": "zlib.ZstdCompress", + "signature": "Class: `zlib.ZstdCompress`", + "label": "zlib.ZstdCompress", + "apiSymbol": "zlib.ZstdCompress", + "depth": 1, + "scope": "api", + "anchor": "class-zlibzstdcompress", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:zlib" + }, + "anchorSource": "exact" + }, + { + "id": "zlib:bcc9b628cb17", + "chapter": "zlib", + "kind": "class", + "name": "zlib.ZstdDecompress", + "signature": "Class: `zlib.ZstdDecompress`", + "label": "zlib.ZstdDecompress", + "apiSymbol": "zlib.ZstdDecompress", + "depth": 1, + "scope": "api", + "anchor": "class-zlibzstddecompress", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:zlib" + }, + "anchorSource": "exact" + }, + { + "id": "zlib:b06d152f415a", + "chapter": "zlib", + "kind": "method", + "name": "crc32", + "signature": "`zlib.crc32(data[, value])`", + "label": "zlib.crc32(data[, value])", + "apiSymbol": "zlib.crc32", + "depth": 1, + "scope": "api", + "anchor": "zlibcrc32data-value", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:zlib" + }, + "anchorSource": "exact" + }, + { + "id": "zlib:2c0bf8d1287b", + "chapter": "zlib", + "kind": "method", + "name": "createBrotliCompress", + "signature": "`zlib.createBrotliCompress([options])`", + "label": "zlib.createBrotliCompress([options])", + "apiSymbol": "zlib.createBrotliCompress", + "depth": 1, + "scope": "api", + "anchor": "zlibcreatebrotlicompressoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:zlib.createBrotliCompress", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "zlib:4982c1ed786e", + "chapter": "zlib", + "kind": "method", + "name": "createBrotliDecompress", + "signature": "`zlib.createBrotliDecompress([options])`", + "label": "zlib.createBrotliDecompress([options])", + "apiSymbol": "zlib.createBrotliDecompress", + "depth": 1, + "scope": "api", + "anchor": "zlibcreatebrotlidecompressoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:zlib.createBrotliDecompress", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "zlib:d337574567a0", + "chapter": "zlib", + "kind": "method", + "name": "createDeflate", + "signature": "`zlib.createDeflate([options])`", + "label": "zlib.createDeflate([options])", + "apiSymbol": "zlib.createDeflate", + "depth": 1, + "scope": "api", + "anchor": "zlibcreatedeflateoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:zlib.createDeflate", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "zlib:5b0e23669580", + "chapter": "zlib", + "kind": "method", + "name": "createDeflateRaw", + "signature": "`zlib.createDeflateRaw([options])`", + "label": "zlib.createDeflateRaw([options])", + "apiSymbol": "zlib.createDeflateRaw", + "depth": 1, + "scope": "api", + "anchor": "zlibcreatedeflaterawoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:zlib.createDeflateRaw", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "zlib:6961051e8d79", + "chapter": "zlib", + "kind": "method", + "name": "createGunzip", + "signature": "`zlib.createGunzip([options])`", + "label": "zlib.createGunzip([options])", + "apiSymbol": "zlib.createGunzip", + "depth": 1, + "scope": "api", + "anchor": "zlibcreategunzipoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:zlib.createGunzip", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "zlib:885538090b92", + "chapter": "zlib", + "kind": "method", + "name": "createGzip", + "signature": "`zlib.createGzip([options])`", + "label": "zlib.createGzip([options])", + "apiSymbol": "zlib.createGzip", + "depth": 1, + "scope": "api", + "anchor": "zlibcreategzipoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:zlib.createGzip", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "zlib:bc8dae771b5d", + "chapter": "zlib", + "kind": "method", + "name": "createInflate", + "signature": "`zlib.createInflate([options])`", + "label": "zlib.createInflate([options])", + "apiSymbol": "zlib.createInflate", + "depth": 1, + "scope": "api", + "anchor": "zlibcreateinflateoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:zlib.createInflate", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "zlib:20bd626cd17f", + "chapter": "zlib", + "kind": "method", + "name": "createInflateRaw", + "signature": "`zlib.createInflateRaw([options])`", + "label": "zlib.createInflateRaw([options])", + "apiSymbol": "zlib.createInflateRaw", + "depth": 1, + "scope": "api", + "anchor": "zlibcreateinflaterawoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:zlib.createInflateRaw", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "zlib:20d01f57ef22", + "chapter": "zlib", + "kind": "method", + "name": "createUnzip", + "signature": "`zlib.createUnzip([options])`", + "label": "zlib.createUnzip([options])", + "apiSymbol": "zlib.createUnzip", + "depth": 1, + "scope": "api", + "anchor": "zlibcreateunzipoptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:zlib.createUnzip", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "zlib:418d301a09fe", + "chapter": "zlib", + "kind": "method", + "name": "createZstdCompress", + "signature": "`zlib.createZstdCompress([options])`", + "label": "zlib.createZstdCompress([options])", + "apiSymbol": "zlib.createZstdCompress", + "depth": 1, + "scope": "api", + "anchor": "zlibcreatezstdcompressoptions", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:zlib" + }, + "anchorSource": "exact" + }, + { + "id": "zlib:41240db6ac8a", + "chapter": "zlib", + "kind": "method", + "name": "createZstdDecompress", + "signature": "`zlib.createZstdDecompress([options])`", + "label": "zlib.createZstdDecompress([options])", + "apiSymbol": "zlib.createZstdDecompress", + "depth": 1, + "scope": "api", + "anchor": "zlibcreatezstddecompressoptions", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:zlib" + }, + "anchorSource": "exact" + }, + { + "id": "zlib:ab5a41da5c98", + "chapter": "zlib", + "kind": "method", + "name": "brotliCompress", + "signature": "`zlib.brotliCompress(buffer[, options], callback)`", + "label": "zlib.brotliCompress(buffer[, options], callback)", + "apiSymbol": "zlib.brotliCompress", + "depth": 1, + "scope": "api", + "anchor": "zlibbrotlicompressbuffer-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:zlib" + }, + "anchorSource": "exact" + }, + { + "id": "zlib:4b56083a4a2b", + "chapter": "zlib", + "kind": "method", + "name": "brotliCompressSync", + "signature": "`zlib.brotliCompressSync(buffer[, options])`", + "label": "zlib.brotliCompressSync(buffer[, options])", + "apiSymbol": "zlib.brotliCompressSync", + "depth": 1, + "scope": "api", + "anchor": "zlibbrotlicompresssyncbuffer-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.zlib.brotliCompressSync" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:zlib.brotliCompressSync", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "zlib:3a34fb66ef2a", + "chapter": "zlib", + "kind": "method", + "name": "brotliDecompress", + "signature": "`zlib.brotliDecompress(buffer[, options], callback)`", + "label": "zlib.brotliDecompress(buffer[, options], callback)", + "apiSymbol": "zlib.brotliDecompress", + "depth": 1, + "scope": "api", + "anchor": "zlibbrotlidecompressbuffer-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:zlib" + }, + "anchorSource": "exact" + }, + { + "id": "zlib:acd9cc6c671e", + "chapter": "zlib", + "kind": "method", + "name": "brotliDecompressSync", + "signature": "`zlib.brotliDecompressSync(buffer[, options])`", + "label": "zlib.brotliDecompressSync(buffer[, options])", + "apiSymbol": "zlib.brotliDecompressSync", + "depth": 1, + "scope": "api", + "anchor": "zlibbrotlidecompresssyncbuffer-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.zlib.brotliDecompressSync" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:zlib.brotliDecompressSync", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "zlib:f604395f9083", + "chapter": "zlib", + "kind": "method", + "name": "deflate", + "signature": "`zlib.deflate(buffer[, options], callback)`", + "label": "zlib.deflate(buffer[, options], callback)", + "apiSymbol": "zlib.deflate", + "depth": 1, + "scope": "api", + "anchor": "zlibdeflatebuffer-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:zlib.deflate", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "zlib:428fa9a73083", + "chapter": "zlib", + "kind": "method", + "name": "deflateSync", + "signature": "`zlib.deflateSync(buffer[, options])`", + "label": "zlib.deflateSync(buffer[, options])", + "apiSymbol": "zlib.deflateSync", + "depth": 1, + "scope": "api", + "anchor": "zlibdeflatesyncbuffer-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.zlib.deflateSync", + "tests": [ + "tests/corpus/1404-zlib-crypto-bytes.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:zlib.deflateSync", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "zlib:e13dae62a27b", + "chapter": "zlib", + "kind": "method", + "name": "deflateRaw", + "signature": "`zlib.deflateRaw(buffer[, options], callback)`", + "label": "zlib.deflateRaw(buffer[, options], callback)", + "apiSymbol": "zlib.deflateRaw", + "depth": 1, + "scope": "api", + "anchor": "zlibdeflaterawbuffer-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:zlib.deflateRaw", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "zlib:cc5ec46a0ec0", + "chapter": "zlib", + "kind": "method", + "name": "deflateRawSync", + "signature": "`zlib.deflateRawSync(buffer[, options])`", + "label": "zlib.deflateRawSync(buffer[, options])", + "apiSymbol": "zlib.deflateRawSync", + "depth": 1, + "scope": "api", + "anchor": "zlibdeflaterawsyncbuffer-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:zlib.deflateRawSync", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "zlib:7f50b0ec2b90", + "chapter": "zlib", + "kind": "method", + "name": "gunzip", + "signature": "`zlib.gunzip(buffer[, options], callback)`", + "label": "zlib.gunzip(buffer[, options], callback)", + "apiSymbol": "zlib.gunzip", + "depth": 1, + "scope": "api", + "anchor": "zlibgunzipbuffer-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:zlib.gunzip", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "zlib:c5a483a5c5f2", + "chapter": "zlib", + "kind": "method", + "name": "gunzipSync", + "signature": "`zlib.gunzipSync(buffer[, options])`", + "label": "zlib.gunzipSync(buffer[, options])", + "apiSymbol": "zlib.gunzipSync", + "depth": 1, + "scope": "api", + "anchor": "zlibgunzipsyncbuffer-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.zlib.gunzipSync" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:zlib.gunzipSync", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "zlib:2eecde200f0c", + "chapter": "zlib", + "kind": "method", + "name": "gzip", + "signature": "`zlib.gzip(buffer[, options], callback)`", + "label": "zlib.gzip(buffer[, options], callback)", + "apiSymbol": "zlib.gzip", + "depth": 1, + "scope": "api", + "anchor": "zlibgzipbuffer-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:zlib.gzip", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "zlib:10b92c73cb1d", + "chapter": "zlib", + "kind": "method", + "name": "gzipSync", + "signature": "`zlib.gzipSync(buffer[, options])`", + "label": "zlib.gzipSync(buffer[, options])", + "apiSymbol": "zlib.gzipSync", + "depth": 1, + "scope": "api", + "anchor": "zlibgzipsyncbuffer-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.zlib.gzipSync" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:zlib.gzipSync", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "zlib:e7711bd2b116", + "chapter": "zlib", + "kind": "method", + "name": "inflate", + "signature": "`zlib.inflate(buffer[, options], callback)`", + "label": "zlib.inflate(buffer[, options], callback)", + "apiSymbol": "zlib.inflate", + "depth": 1, + "scope": "api", + "anchor": "zlibinflatebuffer-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:zlib.inflate", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "zlib:001d7aadd24b", + "chapter": "zlib", + "kind": "method", + "name": "inflateSync", + "signature": "`zlib.inflateSync(buffer[, options])`", + "label": "zlib.inflateSync(buffer[, options])", + "apiSymbol": "zlib.inflateSync", + "depth": 1, + "scope": "api", + "anchor": "zlibinflatesyncbuffer-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.zlib.inflateSync", + "tests": [ + "tests/corpus/1404-zlib-crypto-bytes.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:zlib.inflateSync", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "zlib:a5bfce8f8ba8", + "chapter": "zlib", + "kind": "method", + "name": "inflateRaw", + "signature": "`zlib.inflateRaw(buffer[, options], callback)`", + "label": "zlib.inflateRaw(buffer[, options], callback)", + "apiSymbol": "zlib.inflateRaw", + "depth": 1, + "scope": "api", + "anchor": "zlibinflaterawbuffer-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:zlib.inflateRaw", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "zlib:1223334f59ae", + "chapter": "zlib", + "kind": "method", + "name": "inflateRawSync", + "signature": "`zlib.inflateRawSync(buffer[, options])`", + "label": "zlib.inflateRawSync(buffer[, options])", + "apiSymbol": "zlib.inflateRawSync", + "depth": 1, + "scope": "api", + "anchor": "zlibinflaterawsyncbuffer-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:zlib.inflateRawSync", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "zlib:ef1aacfe74c4", + "chapter": "zlib", + "kind": "method", + "name": "unzip", + "signature": "`zlib.unzip(buffer[, options], callback)`", + "label": "zlib.unzip(buffer[, options], callback)", + "apiSymbol": "zlib.unzip", + "depth": 1, + "scope": "api", + "anchor": "zlibunzipbuffer-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:zlib.unzip", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "zlib:a80685d2463e", + "chapter": "zlib", + "kind": "method", + "name": "unzipSync", + "signature": "`zlib.unzipSync(buffer[, options])`", + "label": "zlib.unzipSync(buffer[, options])", + "apiSymbol": "zlib.unzipSync", + "depth": 1, + "scope": "api", + "anchor": "zlibunzipsyncbuffer-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.zlib.unzipSync" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:zlib.unzipSync", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "zlib:5895bed69c8c", + "chapter": "zlib", + "kind": "method", + "name": "zstdCompress", + "signature": "`zlib.zstdCompress(buffer[, options], callback)`", + "label": "zlib.zstdCompress(buffer[, options], callback)", + "apiSymbol": "zlib.zstdCompress", + "depth": 1, + "scope": "api", + "anchor": "zlibzstdcompressbuffer-options-callback", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:zlib" + }, + "anchorSource": "exact" + }, + { + "id": "zlib:ab3099bbfcd6", + "chapter": "zlib", + "kind": "method", + "name": "zstdCompressSync", + "signature": "`zlib.zstdCompressSync(buffer[, options])`", + "label": "zlib.zstdCompressSync(buffer[, options])", + "apiSymbol": "zlib.zstdCompressSync", + "depth": 1, + "scope": "api", + "anchor": "zlibzstdcompresssyncbuffer-options", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:zlib" + }, + "anchorSource": "exact" + }, + { + "id": "zlib:38d8fda01d1d", + "chapter": "zlib", + "kind": "method", + "name": "zstdDecompress", + "signature": "`zlib.zstdDecompress(buffer[, options], callback)`", + "label": "zlib.zstdDecompress(buffer[, options], callback)", + "apiSymbol": "zlib.zstdDecompress", + "depth": 1, + "scope": "api", + "anchor": "zlibzstddecompressbuffer-options-callback", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:zlib" + }, + "anchorSource": "exact" + }, + { + "id": "zlib:a6c146459cf4", + "chapter": "zlib", + "kind": "method", + "name": "zstdDecompressSync", + "signature": "`zlib.zstdDecompressSync(buffer[, options])`", + "label": "zlib.zstdDecompressSync(buffer[, options])", + "apiSymbol": "zlib.zstdDecompressSync", + "depth": 1, + "scope": "api", + "anchor": "zlibzstddecompresssyncbuffer-options", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:zlib" + }, + "anchorSource": "exact" + }, + { + "id": "zlib:aed3ed5b0674", + "chapter": "zlib", + "kind": "section", + "name": "constants", + "signature": "`zlib.constants`", + "label": "zlib.constants", + "apiSymbol": "zlib.constants", + "depth": 1, + "scope": "api", + "anchor": "zlibconstants", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:zlib.constants", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + }, + "anchorSource": "exact" + }, + { + "id": "zlib:3e66ffaaacc0", + "chapter": "zlib", + "kind": "misc", + "name": "Memory usage tuning", + "signature": "Memory usage tuning", + "label": "Memory usage tuning", + "apiSymbol": "Memory usage tuning", + "depth": 1, + "scope": "documentation", + "anchor": "memory-usage-tuning", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "zlib:574be20f10d6", + "chapter": "zlib", + "kind": "misc", + "name": "for_zlib-based_streams", + "signature": "For zlib-based streams", + "label": "For zlib-based streams", + "apiSymbol": "for_zlib-based_streams", + "depth": 2, + "scope": "documentation", + "anchor": "for-zlib-based-streams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "zlib:1ccf73988257", + "chapter": "zlib", + "kind": "misc", + "name": "for_brotli-based_streams", + "signature": "For Brotli-based streams", + "label": "For Brotli-based streams", + "apiSymbol": "for_brotli-based_streams", + "depth": 2, + "scope": "documentation", + "anchor": "for-brotli-based-streams", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "zlib:2bb7d30ed0a8", + "chapter": "zlib", + "kind": "misc", + "name": "for_zstd-based_streams", + "signature": "For Zstd-based streams", + "label": "For Zstd-based streams", + "apiSymbol": "for_zstd-based_streams", + "depth": 2, + "scope": "documentation", + "anchor": "for-zstd-based-streams", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "zlib:1507762cea7d", + "chapter": "zlib", + "kind": "misc", + "name": "Constants", + "signature": "Constants", + "label": "Constants", + "apiSymbol": "Constants", + "depth": 1, + "scope": "documentation", + "anchor": "constants", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "zlib:9d3881fb4d2c", + "chapter": "zlib", + "kind": "misc", + "name": "zlib_constants", + "signature": "zlib constants", + "label": "zlib constants", + "apiSymbol": "zlib_constants", + "depth": 2, + "scope": "documentation", + "anchor": "zlib-constants", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "zlib:681ea581bb2e", + "chapter": "zlib", + "kind": "misc", + "name": "brotli_constants", + "signature": "Brotli constants", + "label": "Brotli constants", + "apiSymbol": "brotli_constants", + "depth": 2, + "scope": "documentation", + "anchor": "brotli-constants", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "zlib:0f910a0528be", + "chapter": "zlib", + "kind": "module", + "name": "flush_operations", + "signature": "Flush operations", + "label": "Flush operations", + "apiSymbol": "flush_operations", + "depth": 3, + "scope": "documentation", + "anchor": "flush-operations", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "zlib:19d1a8eae7f9", + "chapter": "zlib", + "kind": "module", + "name": "compressor_options", + "signature": "Compressor options", + "label": "Compressor options", + "apiSymbol": "compressor_options", + "depth": 3, + "scope": "documentation", + "anchor": "compressor-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "zlib:a38c41f80be2", + "chapter": "zlib", + "kind": "module", + "name": "decompressor_options", + "signature": "Decompressor options", + "label": "Decompressor options", + "apiSymbol": "decompressor_options", + "depth": 3, + "scope": "documentation", + "anchor": "decompressor-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "zlib:a39a3d086530", + "chapter": "zlib", + "kind": "misc", + "name": "zstd_constants", + "signature": "Zstd constants", + "label": "Zstd constants", + "apiSymbol": "zstd_constants", + "depth": 2, + "scope": "documentation", + "anchor": "zstd-constants", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "zlib:691dbbcc76e8", + "chapter": "zlib", + "kind": "module", + "name": "flush_operations", + "signature": "Flush operations", + "label": "Flush operations", + "apiSymbol": "flush_operations", + "depth": 3, + "scope": "documentation", + "anchor": "flush-operations_1", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "zlib:6cdf44954fbf", + "chapter": "zlib", + "kind": "module", + "name": "compressor_options", + "signature": "Compressor options", + "label": "Compressor options", + "apiSymbol": "compressor_options", + "depth": 3, + "scope": "documentation", + "anchor": "compressor-options_1", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "zlib:30358380b117", + "chapter": "zlib", + "kind": "module", + "name": "strategy_options", + "signature": "Strategy options", + "label": "Strategy options", + "apiSymbol": "strategy_options", + "depth": 3, + "scope": "documentation", + "anchor": "strategy-options", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "zlib:cfad92f3545a", + "chapter": "zlib", + "kind": "module", + "name": "pledged_source_size", + "signature": "Pledged Source Size", + "label": "Pledged Source Size", + "apiSymbol": "pledged_source_size", + "depth": 3, + "scope": "documentation", + "anchor": "pledged-source-size", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "zlib:8e898a48c3be", + "chapter": "zlib", + "kind": "module", + "name": "decompressor_options", + "signature": "Decompressor options", + "label": "Decompressor options", + "apiSymbol": "decompressor_options", + "depth": 3, + "scope": "documentation", + "anchor": "decompressor-options_1", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "zlib:6cc61b0f19f5", + "chapter": "zlib", + "kind": "misc", + "name": "Options", + "signature": "Class: `Options`", + "label": "Options", + "apiSymbol": "Options", + "depth": 1, + "scope": "api", + "anchor": "class-options", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:zlib" + }, + "anchorSource": "exact" + }, + { + "id": "zlib:52722fa8b0c9", + "chapter": "zlib", + "kind": "misc", + "name": "BrotliOptions", + "signature": "Class: `BrotliOptions`", + "label": "BrotliOptions", + "apiSymbol": "BrotliOptions", + "depth": 1, + "scope": "api", + "anchor": "class-brotlioptions", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:zlib" + }, + "anchorSource": "exact" + }, + { + "id": "zlib:da020127898d", + "chapter": "zlib", + "kind": "misc", + "name": "ZstdOptions", + "signature": "Class: `ZstdOptions`", + "label": "ZstdOptions", + "apiSymbol": "ZstdOptions", + "depth": 1, + "scope": "api", + "anchor": "class-zstdoptions", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:zlib" + }, + "anchorSource": "exact" + }, + { + "id": "zlib:c9f0e8ef0b99", + "chapter": "zlib", + "kind": "misc", + "name": "Convenience methods", + "signature": "Convenience methods", + "label": "Convenience methods", + "apiSymbol": "Convenience methods", + "depth": 1, + "scope": "documentation", + "anchor": "convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-applicable", + "evidence": "documentation" + }, + "dynamic": { + "status": "not-applicable", + "evidence": "documentation" + }, + "anchorSource": "exact" + }, + { + "id": "zlib:3e66247e360c", + "chapter": "zlib", + "kind": "method", + "name": "brotliCompress", + "signature": "`zlib.brotliCompress(buffer[, options], callback)`", + "label": "zlib.brotliCompress(buffer[, options], callback)", + "apiSymbol": "zlib.brotliCompress", + "depth": 2, + "scope": "api", + "anchor": "convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:zlib" + }, + "anchorSource": "ancestor" + }, + { + "id": "zlib:9490d47c61f4", + "chapter": "zlib", + "kind": "method", + "name": "brotliCompressSync", + "signature": "`zlib.brotliCompressSync(buffer[, options])`", + "label": "zlib.brotliCompressSync(buffer[, options])", + "apiSymbol": "zlib.brotliCompressSync", + "depth": 2, + "scope": "api", + "anchor": "convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.zlib.brotliCompressSync" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:zlib.brotliCompressSync", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + }, + "anchorSource": "ancestor" + }, + { + "id": "zlib:f2e78ece88df", + "chapter": "zlib", + "kind": "method", + "name": "brotliDecompress", + "signature": "`zlib.brotliDecompress(buffer[, options], callback)`", + "label": "zlib.brotliDecompress(buffer[, options], callback)", + "apiSymbol": "zlib.brotliDecompress", + "depth": 2, + "scope": "api", + "anchor": "convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:zlib" + }, + "anchorSource": "ancestor" + }, + { + "id": "zlib:53a4733c7181", + "chapter": "zlib", + "kind": "method", + "name": "brotliDecompressSync", + "signature": "`zlib.brotliDecompressSync(buffer[, options])`", + "label": "zlib.brotliDecompressSync(buffer[, options])", + "apiSymbol": "zlib.brotliDecompressSync", + "depth": 2, + "scope": "api", + "anchor": "convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.zlib.brotliDecompressSync" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:zlib.brotliDecompressSync", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + }, + "anchorSource": "ancestor" + }, + { + "id": "zlib:3cd87dedcccf", + "chapter": "zlib", + "kind": "method", + "name": "deflate", + "signature": "`zlib.deflate(buffer[, options], callback)`", + "label": "zlib.deflate(buffer[, options], callback)", + "apiSymbol": "zlib.deflate", + "depth": 2, + "scope": "api", + "anchor": "convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:zlib.deflate", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + }, + "anchorSource": "ancestor" + }, + { + "id": "zlib:667d3c8ee3a2", + "chapter": "zlib", + "kind": "method", + "name": "deflateSync", + "signature": "`zlib.deflateSync(buffer[, options])`", + "label": "zlib.deflateSync(buffer[, options])", + "apiSymbol": "zlib.deflateSync", + "depth": 2, + "scope": "api", + "anchor": "convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.zlib.deflateSync", + "tests": [ + "tests/corpus/1404-zlib-crypto-bytes.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:zlib.deflateSync", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + }, + "anchorSource": "ancestor" + }, + { + "id": "zlib:ec5f9d2b1eea", + "chapter": "zlib", + "kind": "method", + "name": "deflateRaw", + "signature": "`zlib.deflateRaw(buffer[, options], callback)`", + "label": "zlib.deflateRaw(buffer[, options], callback)", + "apiSymbol": "zlib.deflateRaw", + "depth": 2, + "scope": "api", + "anchor": "convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:zlib.deflateRaw", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + }, + "anchorSource": "ancestor" + }, + { + "id": "zlib:11a916863a7b", + "chapter": "zlib", + "kind": "method", + "name": "deflateRawSync", + "signature": "`zlib.deflateRawSync(buffer[, options])`", + "label": "zlib.deflateRawSync(buffer[, options])", + "apiSymbol": "zlib.deflateRawSync", + "depth": 2, + "scope": "api", + "anchor": "convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:zlib.deflateRawSync", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + }, + "anchorSource": "ancestor" + }, + { + "id": "zlib:49ec4da71666", + "chapter": "zlib", + "kind": "method", + "name": "gunzip", + "signature": "`zlib.gunzip(buffer[, options], callback)`", + "label": "zlib.gunzip(buffer[, options], callback)", + "apiSymbol": "zlib.gunzip", + "depth": 2, + "scope": "api", + "anchor": "convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:zlib.gunzip", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + }, + "anchorSource": "ancestor" + }, + { + "id": "zlib:6c545740165d", + "chapter": "zlib", + "kind": "method", + "name": "gunzipSync", + "signature": "`zlib.gunzipSync(buffer[, options])`", + "label": "zlib.gunzipSync(buffer[, options])", + "apiSymbol": "zlib.gunzipSync", + "depth": 2, + "scope": "api", + "anchor": "convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.zlib.gunzipSync" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:zlib.gunzipSync", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + }, + "anchorSource": "ancestor" + }, + { + "id": "zlib:7e4988c596d9", + "chapter": "zlib", + "kind": "method", + "name": "gzip", + "signature": "`zlib.gzip(buffer[, options], callback)`", + "label": "zlib.gzip(buffer[, options], callback)", + "apiSymbol": "zlib.gzip", + "depth": 2, + "scope": "api", + "anchor": "convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:zlib.gzip", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + }, + "anchorSource": "ancestor" + }, + { + "id": "zlib:56c1bf0a2e9e", + "chapter": "zlib", + "kind": "method", + "name": "gzipSync", + "signature": "`zlib.gzipSync(buffer[, options])`", + "label": "zlib.gzipSync(buffer[, options])", + "apiSymbol": "zlib.gzipSync", + "depth": 2, + "scope": "api", + "anchor": "convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.zlib.gzipSync" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:zlib.gzipSync", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + }, + "anchorSource": "ancestor" + }, + { + "id": "zlib:c3a6ce69f46f", + "chapter": "zlib", + "kind": "method", + "name": "inflate", + "signature": "`zlib.inflate(buffer[, options], callback)`", + "label": "zlib.inflate(buffer[, options], callback)", + "apiSymbol": "zlib.inflate", + "depth": 2, + "scope": "api", + "anchor": "convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:zlib.inflate", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + }, + "anchorSource": "ancestor" + }, + { + "id": "zlib:1f0ae73c9ea6", + "chapter": "zlib", + "kind": "method", + "name": "inflateSync", + "signature": "`zlib.inflateSync(buffer[, options])`", + "label": "zlib.inflateSync(buffer[, options])", + "apiSymbol": "zlib.inflateSync", + "depth": 2, + "scope": "api", + "anchor": "convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "partial", + "evidence": "surface-manifest:node-builtin.zlib.inflateSync", + "tests": [ + "tests/corpus/1404-zlib-crypto-bytes.ts" + ] + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:zlib.inflateSync", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + }, + "anchorSource": "ancestor" + }, + { + "id": "zlib:424390e3fe15", + "chapter": "zlib", + "kind": "method", + "name": "inflateRaw", + "signature": "`zlib.inflateRaw(buffer[, options], callback)`", + "label": "zlib.inflateRaw(buffer[, options], callback)", + "apiSymbol": "zlib.inflateRaw", + "depth": 2, + "scope": "api", + "anchor": "convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:zlib.inflateRaw", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + }, + "anchorSource": "ancestor" + }, + { + "id": "zlib:13ab6395ec04", + "chapter": "zlib", + "kind": "method", + "name": "inflateRawSync", + "signature": "`zlib.inflateRawSync(buffer[, options])`", + "label": "zlib.inflateRawSync(buffer[, options])", + "apiSymbol": "zlib.inflateRawSync", + "depth": 2, + "scope": "api", + "anchor": "convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:zlib.inflateRawSync", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + }, + "anchorSource": "ancestor" + }, + { + "id": "zlib:85bd58305e85", + "chapter": "zlib", + "kind": "method", + "name": "unzip", + "signature": "`zlib.unzip(buffer[, options], callback)`", + "label": "zlib.unzip(buffer[, options], callback)", + "apiSymbol": "zlib.unzip", + "depth": 2, + "scope": "api", + "anchor": "convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:zlib.unzip", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + }, + "anchorSource": "ancestor" + }, + { + "id": "zlib:d04e82f9a82e", + "chapter": "zlib", + "kind": "method", + "name": "unzipSync", + "signature": "`zlib.unzipSync(buffer[, options])`", + "label": "zlib.unzipSync(buffer[, options])", + "apiSymbol": "zlib.unzipSync", + "depth": 2, + "scope": "api", + "anchor": "convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "refused", + "evidence": "surface-manifest:unsupported:node-builtin.zlib.unzipSync" + }, + "dynamic": { + "status": "partial", + "evidence": "island-export:node:zlib.unzipSync", + "tests": [ + "tests/fixtures/npm/cases/zlib-shims/main.ts" + ] + }, + "anchorSource": "ancestor" + }, + { + "id": "zlib:43de580a1778", + "chapter": "zlib", + "kind": "method", + "name": "zstdCompress", + "signature": "`zlib.zstdCompress(buffer[, options], callback)`", + "label": "zlib.zstdCompress(buffer[, options], callback)", + "apiSymbol": "zlib.zstdCompress", + "depth": 2, + "scope": "api", + "anchor": "convenience-methods", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:zlib" + }, + "anchorSource": "ancestor" + }, + { + "id": "zlib:6f8b52c2236d", + "chapter": "zlib", + "kind": "method", + "name": "zstdCompressSync", + "signature": "`zlib.zstdCompressSync(buffer[, options])`", + "label": "zlib.zstdCompressSync(buffer[, options])", + "apiSymbol": "zlib.zstdCompressSync", + "depth": 2, + "scope": "api", + "anchor": "convenience-methods", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:zlib" + }, + "anchorSource": "ancestor" + }, + { + "id": "zlib:84792f46b3fa", + "chapter": "zlib", + "kind": "method", + "name": "zstdDecompress", + "signature": "`zlib.zstdDecompress(buffer[, options], callback)`", + "label": "zlib.zstdDecompress(buffer[, options], callback)", + "apiSymbol": "zlib.zstdDecompress", + "depth": 2, + "scope": "api", + "anchor": "convenience-methods", + "nodeStability": { + "index": "2", + "level": 2, + "text": "Stable", + "inherited": true + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:zlib" + }, + "anchorSource": "ancestor" + }, + { + "id": "zlib:669c3150be97", + "chapter": "zlib", + "kind": "method", + "name": "zstdDecompressSync", + "signature": "`zlib.zstdDecompressSync(buffer[, options])`", + "label": "zlib.zstdDecompressSync(buffer[, options])", + "apiSymbol": "zlib.zstdDecompressSync", + "depth": 2, + "scope": "api", + "anchor": "convenience-methods", + "nodeStability": { + "index": "1", + "level": 1, + "text": "Experimental", + "inherited": false + }, + "static": { + "status": "not-implemented", + "evidence": "compiler-unmatched:zlib" + }, + "dynamic": { + "status": "not-implemented", + "evidence": "island-unmatched:zlib" + }, + "anchorSource": "ancestor" + } + ], + "anchors": { + "verified": 3929, + "ancestorFallback": 608, + "chapterFallback": 91 + } +} diff --git a/internal/compatibility/node-v24.json b/internal/compatibility/node-v24.json new file mode 100644 index 000000000..bd6b89317 --- /dev/null +++ b/internal/compatibility/node-v24.json @@ -0,0 +1,57 @@ +{ + "schemaVersion": 1, + "version": "24.15.0", + "tag": "v24.15.0", + "commit": "848430679556aed0bd073f2bc263331ad84fa119", + "allJsonUrl": "https://nodejs.org/download/release/v24.15.0/docs/api/all.json", + "indexMarkdownUrl": "https://nodejs.org/docs/v24.15.0/api/index.md", + "markdownBaseUrl": "https://nodejs.org/docs/v24.15.0/api/", + "sourceBaseUrl": "https://github.com/nodejs/node/tree/848430679556aed0bd073f2bc263331ad84fa119", + "chapterModules": { + "assert": ["assert", "assert/strict"], + "async_context": ["async_hooks"], + "async_hooks": ["async_hooks"], + "buffer": ["buffer"], + "child_process": ["child_process"], + "cluster": ["cluster"], + "console": ["console"], + "crypto": ["crypto"], + "diagnostics_channel": ["diagnostics_channel"], + "dns": ["dns"], + "domain": ["domain"], + "events": ["events"], + "fs": ["fs", "fs/promises"], + "http": ["http"], + "http2": ["http2"], + "https": ["https"], + "inspector": ["inspector", "inspector/promises"], + "module": ["module"], + "net": ["net"], + "os": ["os"], + "path": ["path", "path/posix", "path/win32"], + "perf_hooks": ["perf_hooks"], + "process": ["process"], + "punycode": ["punycode"], + "querystring": ["querystring"], + "readline": ["readline", "readline/promises"], + "repl": ["repl"], + "sqlite": ["sqlite"], + "stream": ["stream", "stream/promises", "stream/consumers", "stream/web"], + "string_decoder": ["string_decoder"], + "test": ["test", "test/reporters"], + "timers": ["timers", "timers/promises"], + "tls": ["tls"], + "tracing": ["trace_events"], + "tty": ["tty"], + "dgram": ["dgram"], + "url": ["url"], + "util": ["util", "util/types"], + "v8": ["v8"], + "vm": ["vm"], + "wasi": ["wasi"], + "webcrypto": ["crypto"], + "webstreams": ["stream/web"], + "worker_threads": ["worker_threads"], + "zlib": ["zlib"] + } +} diff --git a/internal/compatibility/package.json b/internal/compatibility/package.json new file mode 100644 index 000000000..eda4abcf4 --- /dev/null +++ b/internal/compatibility/package.json @@ -0,0 +1,13 @@ +{ + "name": "@internal/compatibility", + "version": "0.0.0", + "private": true, + "type": "module", + "scripts": { + "build": "pnpm check", + "update": "node src/update.mjs", + "backlog": "node src/backlog.mjs", + "check": "node src/generate-island-header.mjs --check && node src/generate.mjs --check-local", + "check:upstream": "node src/generate.mjs --check" + } +} diff --git a/internal/compatibility/src/backlog.mjs b/internal/compatibility/src/backlog.mjs new file mode 100644 index 000000000..6fd12562b --- /dev/null +++ b/internal/compatibility/src/backlog.mjs @@ -0,0 +1,91 @@ +#!/usr/bin/env node + +import { readFileSync } from "node:fs"; +import { fileURLToPath } from "node:url"; + +const packageRoot = fileURLToPath(new URL("../", import.meta.url)); +const backlog = JSON.parse(readFileSync(`${packageRoot}generated/node-v24-backlog.json`, "utf8")); +const args = process.argv.slice(2); + +function option(name) { + const prefix = `--${name}=`; + return args.find((arg) => arg.startsWith(prefix))?.slice(prefix.length) ?? null; +} + +function integerOption(name, fallback) { + const value = option(name); + if (value === null) return fallback; + const parsed = Number(value); + if (!Number.isInteger(parsed) || parsed < 0) throw new Error(`--${name} must be a non-negative integer`); + return parsed; +} + +const tierFilter = option("tier"); +const actionFilter = option("action"); +const priorityFilter = option("priority"); +const chapterFilter = option("chapter"); +const statusFilter = option("status"); +const format = option("format") ?? "summary"; +const limit = integerOption("limit", format === "summary" ? 20 : Number.MAX_SAFE_INTEGER); + +for (const [name, value, allowed] of [ + ["tier", tierFilter, ["static", "dynamic"]], + ["action", actionFilter, ["verify-gap", "implement", "replace-refusal", "audit-partial", "classify"]], + ["priority", priorityFilter, ["high", "normal", "low"]], + ["format", format, ["summary", "json", "tsv"]], +]) { + if (value !== null && !allowed.includes(value)) throw new Error(`--${name} must be one of: ${allowed.join(", ")}`); +} + +const items = []; +for (const task of backlog.tasks) { + if (priorityFilter && task.priority !== priorityFilter) continue; + if (chapterFilter && task.chapter !== chapterFilter) continue; + for (const [tier, work] of Object.entries(task.tiers)) { + if (tierFilter && tier !== tierFilter) continue; + if (actionFilter && work.action !== actionFilter) continue; + if (statusFilter && work.status !== statusFilter) continue; + items.push({ + id: task.id, + chapter: task.chapter, + label: task.label, + apiSymbol: task.apiSymbol, + docsUrl: task.docsUrl, + nodeStability: task.nodeStability, + priority: task.priority, + tier, + ...work, + }); + } +} + +const priorityRank = { high: 0, normal: 1, low: 2 }; +const actionRank = { implement: 0, "replace-refusal": 1, "audit-partial": 2, "verify-gap": 3, classify: 4 }; +items.sort((a, b) => + priorityRank[a.priority] - priorityRank[b.priority] || + actionRank[a.action] - actionRank[b.action] || + a.chapter.localeCompare(b.chapter) || + a.label.localeCompare(b.label) || + a.tier.localeCompare(b.tier) +); + +const selected = items.slice(0, limit); +if (format === "json") { + console.log(JSON.stringify({ nodeVersion: backlog.nodeVersion, matched: items.length, items: selected }, null, 2)); +} else if (format === "tsv") { + console.log("priority\taction\ttier\tstatus\tverification\tchapter\tlabel\tdocsUrl"); + for (const item of selected) { + console.log([item.priority, item.action, item.tier, item.status, item.verification, item.chapter, item.label, item.docsUrl] + .map((value) => String(value).replaceAll("\t", " ").replaceAll("\n", " ")) + .join("\t")); + } +} else { + const filters = [tierFilter && `tier=${tierFilter}`, actionFilter && `action=${actionFilter}`, priorityFilter && `priority=${priorityFilter}`, chapterFilter && `chapter=${chapterFilter}`, statusFilter && `status=${statusFilter}`].filter(Boolean); + console.log(`Node ${backlog.nodeVersion} compatibility backlog: ${items.length} tier items${filters.length ? ` (${filters.join(", ")})` : ""}`); + const counts = {}; + for (const item of items) counts[`${item.priority}/${item.action}`] = (counts[`${item.priority}/${item.action}`] ?? 0) + 1; + for (const [key, count] of Object.entries(counts).sort()) console.log(`${String(count).padStart(5)} ${key}`); + if (selected.length > 0) console.log(""); + for (const item of selected) console.log(`${item.priority.padEnd(6)} ${item.action.padEnd(15)} ${item.tier.padEnd(7)} ${item.chapter.padEnd(24)} ${item.label}`); + if (selected.length < items.length) console.log(`\nShowing ${selected.length} of ${items.length}; use --limit= or --format=json|tsv.`); +} diff --git a/internal/compatibility/src/generate-island-header.mjs b/internal/compatibility/src/generate-island-header.mjs new file mode 100644 index 000000000..ea8861c9a --- /dev/null +++ b/internal/compatibility/src/generate-island-header.mjs @@ -0,0 +1,47 @@ +#!/usr/bin/env node + +import { readFileSync, writeFileSync } from "node:fs"; +import { fileURLToPath } from "node:url"; + +const packageRoot = fileURLToPath(new URL("../", import.meta.url)); +const root = fileURLToPath(new URL("../../../", import.meta.url)); +const manifestPath = `${packageRoot}dynamic-support.json`; +const headerPath = `${root}packages/runtime/src/scr_island_manifest.h`; +const manifest = JSON.parse(readFileSync(manifestPath, "utf8")); + +function wrap(text, width = 88) { + const out = []; + for (let i = 0; i < text.length; i += width) out.push(text.slice(i, i + width)); + return out; +} + +function render() { + const lines = [ + "/* Generated by @internal/compatibility from dynamic-support.json.", + " * Do not edit: the manifest is the implementation-owned builtin registry. */", + "static const struct {", + " const char *name;", + " const char *exports;", + "} isl_builtins[] = {", + ]; + for (const [module, entry] of Object.entries(manifest.modules)) { + const chunks = wrap(entry.exports.join(",")); + lines.push(` {\"node:${module}\",`); + for (let i = 0; i < chunks.length; i++) { + lines.push(` \"${chunks[i]}\"${i === chunks.length - 1 ? "}," : ""}`); + } + } + lines.push("};", ""); + return lines.join("\n"); +} + +const rendered = render(); +if (process.argv.includes("--check")) { + if (readFileSync(headerPath, "utf8") !== rendered) { + throw new Error("scr_island_manifest.h is stale; run 'pnpm node-compat'"); + } + console.log(`island manifest is current (${Object.keys(manifest.modules).length} modules)`); +} else { + writeFileSync(headerPath, rendered); + console.log(`wrote packages/runtime/src/scr_island_manifest.h (${Object.keys(manifest.modules).length} modules)`); +} diff --git a/internal/compatibility/src/generate.mjs b/internal/compatibility/src/generate.mjs new file mode 100644 index 000000000..9dad729f1 --- /dev/null +++ b/internal/compatibility/src/generate.mjs @@ -0,0 +1,981 @@ +#!/usr/bin/env node + +/* Generate the website's complete Node.js v24 parity inventory. + * + * Node owns the denominator: the pinned index.md names every API chapter and all.json + * supplies the structured API tree (classes, methods, properties, events, + * globals, overloads, and conceptual sections). scriptc owns the projection: + * the compiler surface/dedicated manifests and the runtime island manifest. + * Anything those sources do not prove is either "not-implemented" (when a + * known implementation surface has no matching implementation) or + * "unreviewed" (when no compatibility subsystem owns the classification). + * Neither state is optimistically treated as support or an explicit refusal. + * + * pnpm node-compat fetch latest-v24.x and rewrite the snapshot + * pnpm node-compat --check fetch and fail if the snapshot would change + * pnpm node-compat:check offline implementation/profile drift check + */ + +import { createHash } from "node:crypto"; +import { readFileSync, writeFileSync } from "node:fs"; +import { fileURLToPath } from "node:url"; +const packageRoot = fileURLToPath(new URL("../", import.meta.url)); +const root = fileURLToPath(new URL("../../../", import.meta.url)); +const internalOutputPath = `${packageRoot}generated/node-v24-internal.json`; +const backlogOutputPath = `${packageRoot}generated/node-v24-backlog.json`; +const publicOutputPath = `${root}docs/src/generated/node-v24-compatibility.json`; +const publicMetaOutputPath = `${root}docs/src/generated/node-v24-compatibility-meta.json`; +const compilerManifestPath = `${root}packages/compiler/surface-manifest.json`; +const compilerCompatPath = `${packageRoot}static-support.json`; +const islandManifestPath = `${packageRoot}dynamic-support.json`; +const pinPath = `${packageRoot}node-v24.json`; +const pin = JSON.parse(readFileSync(pinPath, "utf8")); +const NODE_BASE = pin.markdownBaseUrl; +const CHILD_FIELDS = ["modules", "classes", "methods", "properties", "events", "globals", "miscs"]; +const NON_FUNCTIONAL_CHAPTERS = new Set(["documentation", "synopsis"]); +const STATUSES = [ + "supported", + "partial", + "refused", + "not-implemented", + "by-design", + "unreviewed", + "not-applicable", +]; +const STATUS_SET = new Set(STATUSES); +const VERIFICATION_BASES = new Set([ + "test-backed", + "explicit-refusal", + "verified-absence", + "declared-gap", + "registry-gap", + "architectural-policy", + "unreviewed", + "not-applicable", + "derived", +]); + +function sha(value) { + return createHash("sha256").update(value).digest("hex"); +} + +function normalizeSymbol(value) { + if (!value) return ""; + let out = value.replaceAll("`", "").replace(/^new\s+/, "").trim(); + out = out.replace(/\s+Type:\s*.*$/, "").replace(/\s*\{[^}]*\}\s*$/, ""); + const call = out.indexOf("("); + if (call >= 0) out = out.slice(0, call); + out = out.replace(/\[.*$/, "").replace(/\s*=.*$/, "").replace(/^Class:\s*/, ""); + out = out.replace(/^Event:\s*/, "").replace(/^Static method:\s*/, ""); + return out.trim(); +} + +function apiSymbolOf(node) { + const code = node.textRaw?.match(/`([^`]+)`/)?.[1]; + return normalizeSymbol(code ?? node.name ?? node.textRaw ?? ""); +} + +/** Exact tools/doc/html.mjs getId() algorithm at the pinned Node commit. */ +function nodeAnchor(textRaw, counters) { + const base = String(textRaw ?? "") + .toLowerCase() + .replace(/[^\w\- ]/g, "") + .replace(/ /g, "-"); + const count = counters.get(base) ?? 0; + counters.set(base, count + 1); + return count === 0 ? base : `${base}_${count}`; +} + +function displayLabel(textRaw) { + const raw = String(textRaw ?? ""); + // all.json expands property headings with type/description prose. The + // visible Node heading is the first code span; keep the table equally terse. + if (raw.startsWith("`")) { + const firstCode = raw.match(/^`([^`]+)`/)?.[1]; + if (firstCode !== undefined) return firstCode; + } + return raw + .replaceAll("`", "") + .replace(/^(?:Class|Event|Static method):\s*/, "") + .trim(); +} + +const STABILITY_LABELS = { + 0: "Deprecated", + 1: "Experimental", + 2: "Stable", + 3: "Legacy", +}; + +function nodeStability(node, inherited) { + if (node.stability === undefined || node.stability === null) { + return inherited === null ? null : { ...inherited, inherited: true }; + } + const level = Number(node.stability); + const text = String(node.stabilityText ?? STABILITY_LABELS[level] ?? "").trim(); + const sublevel = level === 1 ? text.match(/^\.(\d+)\s*-\s*(.*)$/s) : null; + return { + index: sublevel ? `1.${sublevel[1]}` : String(level), + level, + text: sublevel?.[2]?.trim() || text || STABILITY_LABELS[level] || `Stability ${level}`, + inherited: false, + }; +} + +function manifestIndex() { + const manifest = JSON.parse(readFileSync(compilerManifestPath, "utf8")); + const byName = new Map(); + for (const item of manifest.entries) { + if (item.kind !== "node-builtin" && item.kind !== "stdlib") continue; + const key = normalizeSymbol(item.name); + const current = byName.get(key); + if (!current || current.status !== "static") byName.set(key, item); + } + return byName; +} + +function firstEvidenceForManifestId(id, compat) { + let match = null; + for (const [prefix, files] of Object.entries(compat.evidenceByManifestPrefix)) { + if (id.startsWith(prefix) && (match === null || prefix.length > match.prefix.length)) { + match = { prefix, files }; + } + } + return match?.files ?? []; +} + +function validateEvidence(paths, label) { + if (!Array.isArray(paths) || paths.length === 0) { + throw new Error(`${label} makes a support claim without test evidence`); + } + for (const path of paths) { + try { + readFileSync(`${root}${path}`, "utf8"); + } catch { + throw new Error(`${label} names missing evidence '${path}'`); + } + } +} + +function validateStatus(status, label) { + if (!STATUS_SET.has(status)) throw new Error(`${label} has unknown status '${status}'`); +} + +function dedicatedIndex(compat) { + const out = new Map(); + for (const entry of compat.dedicated) { + validateStatus(entry.status, `dedicated symbols ${entry.symbols.join(", ")}`); + if (entry.status === "supported" || entry.status === "partial") { + validateEvidence(entry.evidence, `dedicated symbols ${entry.symbols.join(", ")}`); + } + for (const symbol of entry.symbols) { + if (out.has(symbol)) throw new Error(`duplicate dedicated compatibility symbol '${symbol}'`); + out.set(symbol, entry); + } + } + return out; +} + +function featureEntries(compat) { + for (const entry of compat.features ?? []) { + validateStatus(entry.status, `${entry.chapter} compatibility features`); + if (entry.status === "supported" || entry.status === "partial") { + validateEvidence(entry.evidence, `${entry.chapter} compatibility features`); + } + } + return compat.features ?? []; +} + +function featureOf(row, entries) { + return entries.find((entry) => + entry.chapter === row.chapter && + ((entry.symbols ?? []).includes(row.apiSymbol) || (entry.signatures ?? []).includes(row.signature)) + ); +} + +function symbolCandidates(row) { + const result = new Set([row.apiSymbol]); + const aliases = [ + ["fsPromises.", "fs/promises."], + ["timersPromises.", "timers/promises."], + ["streamPromises.", "stream/promises."], + ["streamConsumers.", "stream/consumers."], + ]; + for (const value of [...result]) { + for (const [from, to] of aliases) if (value.startsWith(from)) result.add(to + value.slice(from.length)); + } + return [...result].filter(Boolean); +} + +function directExportName(row, module) { + const symbol = row.apiSymbol; + const subpathAliases = { + "fs/promises": "fsPromises", + "stream/promises": "streamPromises", + "stream/consumers": "streamConsumers", + "timers/promises": "timersPromises", + }; + const alias = subpathAliases[module]; + if (alias) { + // A chapter can contain both a bare module and one or more subpaths. Do + // not let the chapter prefix make a bare-module row look like an export + // from a subpath (for example, fs.chmod must not match + // fs/promises.chmod). The alias is the only valid spelling for a + // subpath's rows; the fallback prefixes below are for bare modules. + if (!symbol.startsWith(`${alias}.`)) return null; + const direct = symbol.slice(alias.length + 1); + return direct.includes(".") ? null : direct; + } + const moduleDots = module.replaceAll("/", "."); + const prefixes = new Set([ + moduleDots, + module.split("/").at(-1), + row.chapter, + row.chapter.replaceAll("_", ""), + ]); + for (const prefix of prefixes) { + if (prefix && symbol.startsWith(`${prefix}.`)) { + const direct = symbol.slice(prefix.length + 1); + return direct.includes(".") ? null : direct; + } + } + if (/^[A-Za-z_$][A-Za-z0-9_$]*$/.test(symbol)) return symbol; + if (row.depth === 1 && ["class", "method", "property", "global"].includes(row.kind)) return row.name; + return null; +} + +function manifestSymbolCandidates(row) { + const modules = pin.chapterModules[row.chapter] ?? []; + const result = new Set( + symbolCandidates(row).filter((candidate) => candidate.includes(".")), + ); + for (const module of modules) { + const direct = directExportName(row, module); + if (!direct) continue; + result.add(`${module}.${direct}`); + if (module.includes("/") && direct === module.split("/").at(-1)) result.add(module); + } + return [...result]; +} + +function tier(status, _reason, evidence) { + return { + status, + ...(evidence?.source ? { evidence: evidence.source } : {}), + ...(evidence?.tests?.length ? { tests: evidence.tests } : {}), + }; +} + +function scopeOf(row) { + if (row.depth === 0) return "api"; + if ( + row.chapter === "cli" || + row.apiSymbol.startsWith("-") || + /\bcommand-line option\b/i.test(row.signature) || + row.chapter === "environment_variables" && row.apiSymbol === "export" + ) return "configuration"; + if (row.chapter === "deprecations") return "metadata"; + if (row.chapter === "intl" && row.kind === "module") return "metadata"; + return row.depth > 0 && (row.kind === "module" || row.kind === "misc") && !row.signature.includes("`") + ? "documentation" + : "api"; +} + +function classificationContext() { + const compilerCompat = JSON.parse(readFileSync(compilerCompatPath, "utf8")); + const island = JSON.parse(readFileSync(islandManifestPath, "utf8")); + for (const [chapter, status] of Object.entries(compilerCompat.chapterPolicies)) { + validateStatus(status, `static chapter policy '${chapter}'`); + } + for (const [chapter, status] of Object.entries(island.chapterPolicies)) { + validateStatus(status, `dynamic chapter policy '${chapter}'`); + } + for (const [module, entry] of Object.entries(island.modules)) { + const exports = new Set(entry.exports); + for (const name of entry.refused ?? []) { + if (!exports.has(name)) throw new Error(`island module '${module}' marks non-export '${name}' refused`); + } + const members = new Set(entry.members ?? []); + for (const name of entry.refusedMembers ?? []) { + if (members.has(name)) throw new Error(`island module '${module}' marks member '${name}' both supported and refused`); + } + validateEvidence(entry.evidence, `island module '${module}'`); + } + const supportedGlobals = new Set(island.globals.supported); + const npmSupportedGlobals = new Set(island.globals.npmSupported ?? []); + for (const name of npmSupportedGlobals) { + if (supportedGlobals.has(name)) throw new Error(`island global '${name}' is both always-supported and npm-supported`); + } + for (const name of island.globals.absent) { + if (supportedGlobals.has(name) || npmSupportedGlobals.has(name)) throw new Error(`island global '${name}' is both supported and absent`); + } + validateEvidence(island.globals.evidence, "island globals"); + return { + manifest: manifestIndex(), + compilerCompat, + dedicated: dedicatedIndex(compilerCompat), + staticFeatures: featureEntries(compilerCompat), + dynamicFeatures: featureEntries(island), + island, + }; +} + +function classifyStatic(row, chapter, ctx) { + if (row.depth === 0) return tier("unreviewed", "", { source: "chapter-summary" }); + if (row.scope === "documentation" || row.scope === "configuration") return tier("not-applicable", "", { source: row.scope }); + const feature = featureOf(row, ctx.staticFeatures); + if (feature) return tier(feature.status, "", { source: `compiler-feature:${row.chapter}.${row.apiSymbol}`, tests: feature.evidence }); + for (const candidate of symbolCandidates(row)) { + // Dedicated lowering paths are authoritative when an older generic + // fence row shares the same API name (the surface manifest documents + // its omissions explicitly; this overlay closes them with evidence). + const dedicated = ctx.dedicated.get(candidate); + if (dedicated) return tier(dedicated.status, "", { source: `compiler-dedicated:${candidate}`, tests: dedicated.evidence }); + } + for (const candidate of manifestSymbolCandidates(row)) { + const item = ctx.manifest.get(candidate); + if (item) { + if (item.status === "static") { + const tests = firstEvidenceForManifestId(item.id, ctx.compilerCompat); + if (tests.length === 0) return tier("unreviewed", ""); + validateEvidence(tests, item.id); + return tier("partial", "", { source: `surface-manifest:${item.id}`, tests }); + } + return tier("refused", "", { source: `surface-manifest:${item.status}:${item.id}` }); + } + } + const policy = ctx.compilerCompat.chapterPolicies[row.chapter]; + if (policy && policy !== "unreviewed") { + return tier(policy, "", { source: `compiler-chapter-policy:${row.chapter}` }); + } + if ((pin.chapterModules[row.chapter] ?? []).length > 0 || row.chapter === "globals" || row.chapter === "errors") { + return tier("not-implemented", "", { source: `compiler-unmatched:${row.chapter}` }); + } + return tier("unreviewed", ""); +} + +function classifyDynamic(row, chapter, ctx) { + if (row.depth === 0) return tier("unreviewed", "", { source: "chapter-summary" }); + if (row.scope === "documentation" || row.scope === "configuration") return tier("not-applicable", "", { source: row.scope }); + const feature = featureOf(row, ctx.dynamicFeatures); + if (feature) return tier(feature.status, "", { source: `island-feature:${row.chapter}.${row.apiSymbol}`, tests: feature.evidence }); + + if (row.chapter === "globals") { + if (ctx.island.globals.supported.includes(row.name)) { + return tier("partial", "", { source: `island-global:${row.name}`, tests: ctx.island.globals.evidence }); + } + if (ctx.island.globals.npmSupported?.includes(row.name)) { + return tier("partial", "", { source: `island-npm-global:${row.name}`, tests: ctx.island.globals.evidence }); + } + if (ctx.island.globals.absent.includes(row.name)) { + return tier("not-implemented", "", { source: `island-global-absent:${row.name}`, tests: ctx.island.globals.evidence }); + } + } + + const modules = pin.chapterModules[row.chapter] ?? []; + for (const module of modules) { + const moduleEntry = ctx.island.modules[module]; + const direct = directExportName(row, module); + if (!moduleEntry) continue; + if (moduleEntry.refusedMembers?.includes(row.apiSymbol)) { + return tier("refused", "", { source: `island-member-stub:node:${module}.${row.apiSymbol}` }); + } + if (moduleEntry.members?.includes(row.apiSymbol)) { + return tier("partial", "", { source: `island-member:node:${module}.${row.apiSymbol}`, tests: moduleEntry.evidence }); + } + if (direct && moduleEntry.refused?.includes(direct)) { + return tier("refused", "", { source: `island-stub:node:${module}.${direct}` }); + } + if (direct && moduleEntry.exports.includes(direct)) { + return tier("partial", "", { source: `island-export:node:${module}.${direct}`, tests: moduleEntry.evidence }); + } + } + + const policy = ctx.island.chapterPolicies[row.chapter]; + if (policy && policy !== "unreviewed") { + return tier(policy, "", { source: `island-chapter-policy:${row.chapter}` }); + } + if (modules.length > 0 && modules.every((module) => ctx.island.modules[module] === undefined)) { + return tier("not-implemented", "", { source: `unshimmed:${modules.map((module) => `node:${module}`).join(",")}` }); + } + if (modules.length > 0 || row.chapter === "globals" || row.chapter === "errors") { + return tier("not-implemented", "", { source: `island-unmatched:${row.chapter}` }); + } + return tier("unreviewed", ""); +} + +function treeSize(node) { + let size = 1; + for (const field of CHILD_FIELDS) for (const child of node[field] ?? []) size += treeSize(child); + return size; +} + +function topLevelNodes(allJson) { + const result = []; + for (const field of CHILD_FIELDS) for (const node of allJson[field] ?? []) result.push(node); + return result; +} + +function flattenChapter(rootNode, chapter, ctx) { + const rows = []; + const seenIds = new Map(); + const anchorCounters = new Map(); + const walk = (node, parents, depth, inheritedStability) => { + const signature = `${chapter.slug}\0${node.type}\0${parents.map((parent) => parent.name).join("/")}\0${node.name}\0${node.textRaw}`; + const baseId = `${chapter.slug}:${sha(signature).slice(0, 12)}`; + const duplicate = seenIds.get(baseId) ?? 0; + seenIds.set(baseId, duplicate + 1); + const id = duplicate === 0 ? baseId : `${baseId}:${duplicate + 1}`; + const apiSymbol = apiSymbolOf(node); + const stability = nodeStability(node, inheritedStability); + // Count every structured heading, including the chapter root, in the + // same preorder Node's Markdown renderer visits. + const generatedAnchor = nodeAnchor(node.textRaw, anchorCounters); + const row = { + id, + chapter: chapter.slug, + kind: node.type ?? "section", + name: node.name ?? node.textRaw ?? "(unnamed)", + signature: node.textRaw ?? node.name ?? "(unnamed)", + label: displayLabel(node.textRaw ?? node.name ?? "(unnamed)"), + apiSymbol, + depth, + scope: "api", + anchor: depth > 0 ? generatedAnchor : "", + nodeStability: stability, + }; + row.scope = scopeOf(row); + row.static = classifyStatic(row, chapter, ctx); + row.dynamic = classifyDynamic(row, chapter, ctx); + rows.push(row); + for (const field of CHILD_FIELDS) { + for (const child of node[field] ?? []) walk(child, [...parents, node], depth + 1, stability); + } + }; + walk(rootNode, [], 0, null); + return rows; +} + +function apiChapterLinks(indexMarkdown) { + const links = [...indexMarkdown.matchAll(/^\* \[(.+?)\]\(([^)]+\.md)\)$/gm)] + .map((match) => ({ title: match[1].replaceAll("`", ""), file: match[2], slug: match[2].slice(0, -3) })); + return links.filter((link) => !NON_FUNCTIONAL_CHAPTERS.has(link.slug)); +} + +function summarizeTier(rows, key, chapterPolicy) { + const descendants = rows.slice(1).filter((row) => row.scope === "api").map((row) => row[key]); + const statuses = new Set(descendants.map((tier) => tier.status)); + const tests = [...new Set(descendants.flatMap((tier) => tier.tests ?? []))].sort(); + if (statuses.size === 0 && chapterPolicy) { + return tier(chapterPolicy, "", { source: `${key === "static" ? "compiler" : "island"}-chapter-policy:${rows[0].chapter}` }); + } + if (statuses.size === 1) return tier([...statuses][0], "", { source: "derived:descendants", tests }); + if (statuses.has("supported") || statuses.has("partial")) { + return tier("partial", "", { source: "derived:descendants", tests }); + } + if (statuses.has("unreviewed")) return tier("unreviewed", "", { source: "derived:descendants" }); + if (statuses.has("not-implemented")) return tier("not-implemented", "", { source: "derived:descendants" }); + if (statuses.has("refused")) return tier("refused", "", { source: "derived:descendants" }); + if (statuses.has("by-design")) return tier("by-design", "", { source: "derived:descendants" }); + return tier("unreviewed", "", { source: "derived:descendants" }); +} + +function statusCounts(rows, key) { + const counts = Object.fromEntries(STATUSES.map((status) => [status, 0])); + for (const row of rows) if (row.scope === "api") counts[row[key].status] += 1; + return counts; +} + +function verifiedAnchorIds(html) { + return new Set( + [...html.matchAll(/#/g)] + .map((match) => match[1]), + ); +} + +function verifyAnchors(snapshot, htmlByChapter) { + let verified = 0; + let ancestorFallback = 0; + let chapterFallback = 0; + const ancestors = []; + for (const row of snapshot.rows) { + if (row.depth === 0) { + ancestors.length = 0; + ancestors[0] = row; + row.anchorSource = "chapter"; + continue; + } + ancestors.length = row.depth; + const ids = htmlByChapter.get(row.chapter); + if (ids?.has(row.anchor)) { + verified += 1; + row.anchorSource = "exact"; + } else { + const ancestor = [...ancestors].reverse().find((candidate) => candidate?.anchorSource === "exact" && candidate.anchor !== ""); + if (ancestor) { + row.anchor = ancestor.anchor; + row.anchorSource = "ancestor"; + ancestorFallback += 1; + } else { + // A chapter link is useful and correct; an invented fragment is not. + row.anchor = ""; + row.anchorSource = "chapter"; + chapterFallback += 1; + } + } + ancestors[row.depth] = row; + } + snapshot.anchors = { verified, ancestorFallback, chapterFallback }; +} + +function buildSnapshot({ allJson, indexMarkdown, allSha256, indexSha256 }) { + const chapterLinks = apiChapterLinks(indexMarkdown); + const top = topLevelNodes(allJson); + const ctx = classificationContext(); + const chapters = []; + const rows = []; + + if (chapterLinks.length === 0) throw new Error("the pinned Node index contains no functional API chapters"); + + for (const link of chapterLinks) { + const source = `doc/api/${link.file}`; + const candidates = top.filter((node) => node.source === source).sort((a, b) => treeSize(b) - treeSize(a)); + if (candidates.length === 0) throw new Error(`all.json has no root for ${source}`); + const chapter = { slug: link.slug, title: link.title }; + const chapterRows = flattenChapter(candidates[0], chapter, ctx); + chapterRows[0].static = summarizeTier(chapterRows, "static", ctx.compilerCompat.chapterPolicies[link.slug]); + chapterRows[0].dynamic = summarizeTier(chapterRows, "dynamic", ctx.island.chapterPolicies[link.slug]); + chapters.push({ + slug: link.slug, + title: link.title, + entries: chapterRows.length, + apiEntries: chapterRows.filter((row) => row.scope === "api").length, + static: statusCounts(chapterRows, "static"), + dynamic: statusCounts(chapterRows, "dynamic"), + }); + rows.push(...chapterRows); + } + + const ids = new Set(); + for (const row of rows) { + if (ids.has(row.id)) throw new Error(`duplicate generated row id ${row.id}`); + ids.add(row.id); + } + return { + schemaVersion: 4, + nodeVersion: pin.version, + nodeTag: pin.tag, + nodeCommit: pin.commit, + sources: { + allJson: { url: pin.allJsonUrl, sha256: allSha256 }, + indexMarkdown: { url: pin.indexMarkdownUrl, sha256: indexSha256 }, + sourceBaseUrl: pin.sourceBaseUrl, + }, + supportManifests: { + compilerSurface: "packages/compiler/surface-manifest.json", + compilerDedicated: "internal/compatibility/static-support.json", + dynamicIsland: "internal/compatibility/dynamic-support.json", + }, + chapters, + rows, + }; +} + +function render(snapshot) { + return `${JSON.stringify(snapshot, null, 2)}\n`; +} + +function publicDetail(tier) { + const source = tier.evidence ?? ""; + if (source === "derived:descendants") return "Derived from the exact API rows in this chapter."; + if (tier.status === "unreviewed") return "Not yet classified; tracked as open parity work."; + if (source.startsWith("surface-manifest:unsupported:")) return "Explicitly rejected by a named compiler diagnostic."; + if (source.startsWith("surface-manifest:dynamic-only:")) return "Explicitly refused in static code; this form requires the dynamic island."; + if (source.startsWith("surface-manifest:")) return "Implemented for the call shapes accepted by the compiler lowering."; + if (source.startsWith("compiler-dedicated:")) return "Implemented by a dedicated static compiler/runtime path."; + if (source.startsWith("compiler-feature:")) { + if (tier.status === "not-applicable") return "Node configuration or documentation that does not map to a compiled program API."; + if (tier.status === "not-implemented") return "Not implemented in scriptc's static module-loader subset yet."; + return "Implemented for the documented scriptc module-loader subset."; + } + if (source.startsWith("compiler-chapter-policy:")) { + if (tier.status === "by-design") return "Intentionally outside the static native execution model."; + if (tier.status === "not-applicable") return "This Node executable or embedding feature does not map to static native code."; + return "No static implementation exists for this Node API family yet."; + } + if (source.startsWith("compiler-unmatched:")) return "No static compiler lowering is registered for this API yet."; + if (source.startsWith("island-export:")) return "Available through the embedded Node compatibility shim; exact member and overload coverage may be narrower."; + if (source.startsWith("island-member:")) return "Implemented by the embedded Node compatibility shim."; + if (source.startsWith("island-member-stub:")) return "Exposed only as an explicit throwing or rejecting compatibility stub."; + if (source.startsWith("island-stub:")) return "Exposed only as an explicit throwing or rejecting compatibility stub."; + if (source.startsWith("island-global:")) return "Provided by the embedded engine's web/global compatibility layer."; + if (source.startsWith("island-npm-global:")) return "Provided when the embedded npm module bootstrap runs; absent from standalone dynamic islands."; + if (source.startsWith("island-global-absent:")) return "Verified absent from the embedded engine's web/global compatibility layer."; + if (source.startsWith("unshimmed:")) return "No dynamic-island shim exists for this Node module yet."; + if (source.startsWith("island-chapter-policy:")) { + if (tier.status === "by-design") return "Intentionally outside the dynamic-island execution model."; + if (tier.status === "not-applicable") return "This Node executable or embedding feature does not map to dynamic-island code."; + return "No dynamic-island implementation exists for this Node API family yet."; + } + if (source.startsWith("island-feature:")) { + if (tier.status === "not-applicable") return "Node configuration or documentation that does not map to an island runtime API."; + if (tier.status === "not-implemented") return "Not implemented in the embedded module-loader subset yet."; + return "Implemented for the documented embedded module-loader subset."; + } + if (source.startsWith("island-unmatched:")) return "This API is not implemented by the dynamic-island shim."; + if (source === "documentation") return "Documentation section; not a runtime API."; + if (source === "configuration") return "Node command-line or configuration entry; not a runtime API."; + if (tier.status === "not-applicable") return "This Node executable or embedding feature does not map to this scriptc tier."; + if (tier.status === "refused") return "Explicitly rejected by this scriptc tier."; + if (tier.status === "not-implemented") return "No implementation is registered for this scriptc tier yet."; + if (tier.status === "by-design") return "Intentionally outside this scriptc tier's execution model."; + return "Implemented for a documented subset of this API."; +} + +const PUBLIC_VERIFICATION = { + "test-backed": { + label: "Test-backed mapping", + detail: "Mapped to implementation and relevant repository tests; evidence may cover an API family rather than every documented overload.", + }, + "explicit-refusal": { + label: "Explicit refusal", + detail: "Backed by a named compiler refusal or an explicit dynamic throwing or rejecting stub.", + }, + "verified-absence": { + label: "Verified absence", + detail: "A runtime presence test confirms that this API is absent.", + }, + "declared-gap": { + label: "Declared gap", + detail: "The implementation-owned compatibility manifest explicitly records this API family or feature as not implemented.", + }, + "registry-gap": { + label: "Registry gap", + detail: "No implementation registry entry matched this Node API; verify the gap before starting implementation.", + }, + "architectural-policy": { + label: "Architectural policy", + detail: "An implementation-owned policy intentionally excludes this API from the execution tier.", + }, + unreviewed: { + label: "Unreviewed", + detail: "No compatibility subsystem owns a reliable classification yet.", + }, + "not-applicable": { + label: "Not applicable", + detail: "This entry is documentation, configuration, or an execution model that does not map to the tier.", + }, + derived: { + label: "Derived summary", + detail: "Computed from the exact descendant API rows rather than asserted independently.", + }, +}; + +function verificationBasis(tier) { + const source = tier.evidence ?? ""; + let basis; + if (source === "derived:descendants") basis = "derived"; + else if (tier.status === "supported" || tier.status === "partial") basis = "test-backed"; + else if (tier.status === "refused") basis = "explicit-refusal"; + else if (source.startsWith("island-global-absent:")) basis = "verified-absence"; + else if (tier.status === "by-design") basis = "architectural-policy"; + else if (tier.status === "not-applicable") basis = "not-applicable"; + else if (tier.status === "unreviewed") basis = "unreviewed"; + else if ( + tier.status === "not-implemented" && + (source.startsWith("compiler-chapter-policy:") || + source.startsWith("compiler-feature:") || + source.startsWith("island-chapter-policy:") || + source.startsWith("island-feature:")) + ) basis = "declared-gap"; + else if (tier.status === "not-implemented") basis = "registry-gap"; + else throw new Error(`cannot determine verification basis for ${tier.status}/${source || "no-source"}`); + if (!VERIFICATION_BASES.has(basis)) throw new Error(`unknown verification basis '${basis}'`); + return basis; +} + +function classificationConfidence(basis) { + if (["test-backed", "explicit-refusal", "verified-absence", "architectural-policy"].includes(basis)) return "high"; + if (["declared-gap", "not-applicable"].includes(basis)) return "medium"; + if (["registry-gap", "unreviewed"].includes(basis)) return "low"; + return "derived"; +} + +function nodePriority(stability) { + if (stability?.index === "2") return "high"; + if (stability?.index === "0" || stability?.index === "3" || stability?.level === 1 && stability?.index !== "1.2") return "low"; + return "normal"; +} + +function backlogAction(tier) { + if (tier.status === "partial") return "audit-partial"; + if (tier.status === "refused") return "replace-refusal"; + if (tier.status === "unreviewed") return "classify"; + if (tier.status === "not-implemented") { + return verificationBasis(tier) === "registry-gap" ? "verify-gap" : "implement"; + } + return null; +} + +function buildBacklog(snapshot) { + const tasks = []; + const tierItems = { static: {}, dynamic: {} }; + const priorities = { high: 0, normal: 0, low: 0 }; + for (const row of snapshot.rows) { + if (row.depth === 0 || row.scope !== "api") continue; + const tiers = {}; + for (const key of ["static", "dynamic"]) { + const action = backlogAction(row[key]); + if (action === null) continue; + tierItems[key][action] = (tierItems[key][action] ?? 0) + 1; + tiers[key] = { + status: row[key].status, + action, + verification: verificationBasis(row[key]), + confidence: classificationConfidence(verificationBasis(row[key])), + source: row[key].evidence ?? null, + tests: row[key].tests ?? [], + }; + } + if (Object.keys(tiers).length === 0) continue; + const priority = nodePriority(row.nodeStability); + priorities[priority] += Object.keys(tiers).length; + tasks.push({ + id: row.id, + chapter: row.chapter, + label: row.label, + signature: row.signature, + apiSymbol: row.apiSymbol, + docsUrl: `https://nodejs.org/docs/v${snapshot.nodeVersion}/api/${row.chapter}.html${row.anchor ? `#${row.anchor}` : ""}`, + nodeStability: row.nodeStability, + priority, + tiers, + }); + } + return { + schemaVersion: 1, + nodeVersion: snapshot.nodeVersion, + nodeCommit: snapshot.nodeCommit, + summary: { + taskCount: tasks.length, + tierItemCount: Object.values(tierItems.static).reduce((sum, count) => sum + count, 0) + + Object.values(tierItems.dynamic).reduce((sum, count) => sum + count, 0), + tiers: tierItems, + priorities, + }, + tasks, + }; +} + +function publicExclusion(row) { + if (row.scope === "documentation") return "documentation"; + if (row.scope === "metadata") return "metadata"; + if (row.scope === "configuration") return "configuration"; + if (row.scope !== "api") return "non-api"; + if (row.static.status === "not-applicable" && row.dynamic.status === "not-applicable") return "not-applicable"; + return null; +} + +function projectPublicMatrix(snapshot) { + const chapters = []; + const rows = []; + const excluded = { documentation: 0, metadata: 0, configuration: 0, "non-api": 0, "not-applicable": 0, chapters: 0 }; + for (const chapter of snapshot.chapters) { + const sourceRows = snapshot.rows.filter((row) => row.chapter === chapter.slug); + const root = { ...sourceRows[0], depth: 0 }; + const chapterRows = [root]; + const ancestors = [root]; + for (const row of sourceRows.slice(1)) { + ancestors.length = row.depth; + const exclusion = publicExclusion(row); + if (exclusion !== null) { + excluded[exclusion] += 1; + continue; + } + const parent = [...ancestors].reverse().find(Boolean) ?? root; + const projected = { ...row, depth: parent.depth + 1 }; + chapterRows.push(projected); + ancestors[row.depth] = projected; + } + if (chapterRows.length === 1) { + excluded.chapters += 1; + continue; + } + root.static = summarizeTier(chapterRows, "static"); + root.dynamic = summarizeTier(chapterRows, "dynamic"); + chapters.push({ + slug: chapter.slug, + title: chapter.title, + entries: chapterRows.length, + apiEntries: chapterRows.length, + static: statusCounts(chapterRows, "static"), + dynamic: statusCounts(chapterRows, "dynamic"), + }); + rows.push(...chapterRows); + } + return { + chapters, + rows, + inventory: { + sourceChapters: snapshot.chapters.length, + sourceRows: snapshot.rows.length, + matrixChapters: chapters.length, + matrixRows: rows.length, + excluded, + }, + }; +} + +function publicSnapshot(snapshot) { + const matrix = projectPublicMatrix(snapshot); + return { + schemaVersion: 4, + nodeVersion: snapshot.nodeVersion, + nodeTag: snapshot.nodeTag, + nodeCommit: snapshot.nodeCommit, + sources: snapshot.sources, + verificationBases: PUBLIC_VERIFICATION, + inventory: matrix.inventory, + chapters: matrix.chapters, + rows: matrix.rows.map((row) => ({ + id: row.id, + chapter: row.chapter, + kind: row.kind, + name: row.name, + signature: row.signature, + label: row.label, + apiSymbol: row.apiSymbol, + depth: row.depth, + scope: row.scope, + anchor: row.anchor, + nodeStability: row.nodeStability, + static: { status: row.static.status, detail: publicDetail(row.static), verification: verificationBasis(row.static) }, + dynamic: { status: row.dynamic.status, detail: publicDetail(row.dynamic), verification: verificationBasis(row.dynamic) }, + })), + }; +} + +function publicMetadata(publicRendered, snapshot) { + const matrix = projectPublicMatrix(snapshot); + return { + schemaVersion: 3, + nodeVersion: snapshot.nodeVersion, + nodeCommit: snapshot.nodeCommit, + artifactVersion: sha(publicRendered).slice(0, 20), + rowCount: matrix.rows.length, + }; +} + +function checkLocal() { + const snapshot = JSON.parse(readFileSync(internalOutputPath, "utf8")); + if (snapshot.nodeVersion !== pin.version || snapshot.nodeCommit !== pin.commit) { + throw new Error(`snapshot targets Node ${snapshot.nodeVersion}/${snapshot.nodeCommit}, pin targets ${pin.version}/${pin.commit}`); + } + const ctx = classificationContext(); + if (snapshot.chapters.length !== 62) throw new Error(`expected 62 pinned Node API chapters, found ${snapshot.chapters.length}`); + for (const row of snapshot.rows) { + if (row.depth === 0) continue; + const chapter = snapshot.chapters.find((item) => item.slug === row.chapter); + const expectedStatic = classifyStatic(row, chapter, ctx); + const expectedDynamic = classifyDynamic(row, chapter, ctx); + if (JSON.stringify(row.static) !== JSON.stringify(expectedStatic) || JSON.stringify(row.dynamic) !== JSON.stringify(expectedDynamic)) { + throw new Error(`generated classification is stale at ${row.id} (${row.signature}); run 'pnpm node-compat'`); + } + } + for (const row of snapshot.rows) { + if (row.depth > 0 && row.anchor !== "" && row.anchorSource !== "exact" && row.anchorSource !== "ancestor") { + throw new Error(`${row.id} publishes an unverified Node HTML anchor`); + } + } + if (readFileSync(publicOutputPath, "utf8") !== render(publicSnapshot(snapshot))) { + throw new Error("the docs compatibility artifact is stale; run 'pnpm node-compat'"); + } + const publicRows = publicSnapshot(snapshot).rows; + for (const row of publicRows) { + if (row.depth > 0 && row.scope !== "api") throw new Error(`${row.id} exposes a non-API row in the public matrix`); + if (row.depth > 0 && row.static.status === "not-applicable" && row.dynamic.status === "not-applicable") { + throw new Error(`${row.id} exposes a row that is not applicable to either compiler tier`); + } + } + if (readFileSync(backlogOutputPath, "utf8") !== render(buildBacklog(snapshot))) { + throw new Error("the Node compatibility backlog is stale; run 'pnpm node-compat'"); + } + const publicRendered = render(publicSnapshot(snapshot)); + if (readFileSync(publicMetaOutputPath, "utf8") !== render(publicMetadata(publicRendered, snapshot))) { + throw new Error("the docs compatibility metadata is stale; run 'pnpm node-compat'"); + } + for (const row of snapshot.rows) { + for (const key of ["static", "dynamic"]) { + if ((row[key].status === "supported" || row[key].status === "partial") && (row[key].tests?.length ?? 0) === 0) { + throw new Error(`${row.id} claims ${key} ${row[key].status} without test evidence`); + } + if (row[key].status === "refused") { + const source = row[key].evidence ?? ""; + const explicit = key === "static" + ? source.startsWith("surface-manifest:unsupported:") || source.startsWith("surface-manifest:dynamic-only:") + : source.startsWith("island-stub:") || source.startsWith("island-member-stub:"); + if (!explicit && source !== "derived:descendants") { + throw new Error(`${row.id} claims ${key} refused without an explicit refusal source`); + } + } + if (row[key].status === "by-design") { + const source = row[key].evidence ?? ""; + if (!source.includes("chapter-policy") && source !== "derived:descendants") { + throw new Error(`${row.id} claims ${key} by-design without an explicit chapter policy`); + } + } + verificationBasis(row[key]); + } + } + const matrix = projectPublicMatrix(snapshot); + console.log(`Node compatibility snapshot is locally current (${snapshot.rows.length} source rows, ${matrix.rows.length} public matrix rows, Node ${snapshot.nodeVersion})`); +} + +async function fetchText(url) { + const response = await fetch(url, { headers: { accept: "application/json,text/markdown,text/html" } }); + if (!response.ok) throw new Error(`fetch ${url}: ${response.status} ${response.statusText}`); + return response.text(); +} + +async function main() { + const args = new Set(process.argv.slice(2)); + if (args.has("--check-local")) return checkLocal(); + + const [allText, indexMarkdown] = await Promise.all([ + fetchText(pin.allJsonUrl), + fetchText(pin.indexMarkdownUrl), + ]); + const snapshot = buildSnapshot({ + allJson: JSON.parse(allText), + indexMarkdown, + allSha256: sha(allText), + indexSha256: sha(indexMarkdown), + }); + const htmlByChapter = new Map( + await Promise.all(snapshot.chapters.map(async (chapter) => [ + chapter.slug, + verifiedAnchorIds(await fetchText(`${NODE_BASE}${chapter.slug}.html`)), + ])), + ); + verifyAnchors(snapshot, htmlByChapter); + const internalRendered = render(snapshot); + const backlogRendered = render(buildBacklog(snapshot)); + const publicRendered = render(publicSnapshot(snapshot)); + const publicMetaRendered = render(publicMetadata(publicRendered, snapshot)); + + if (args.has("--check")) { + if (readFileSync(internalOutputPath, "utf8") !== internalRendered) throw new Error("internal Node compatibility snapshot is stale; run 'pnpm node-compat'"); + if (readFileSync(backlogOutputPath, "utf8") !== backlogRendered) throw new Error("Node compatibility backlog is stale; run 'pnpm node-compat'"); + if (readFileSync(publicOutputPath, "utf8") !== publicRendered) throw new Error("public Node compatibility snapshot is stale; run 'pnpm node-compat'"); + if (readFileSync(publicMetaOutputPath, "utf8") !== publicMetaRendered) throw new Error("public Node compatibility metadata is stale; run 'pnpm node-compat'"); + console.log(`Node compatibility snapshot matches ${pin.tag} (${snapshot.rows.length} API rows, commit ${pin.commit.slice(0, 12)})`); + return; + } + writeFileSync(internalOutputPath, internalRendered); + writeFileSync(backlogOutputPath, backlogRendered); + writeFileSync(publicOutputPath, publicRendered); + writeFileSync(publicMetaOutputPath, publicMetaRendered); + console.log(`wrote compatibility ledger, backlog, and public artifact (${snapshot.rows.length} source rows, ${projectPublicMatrix(snapshot).rows.length} public matrix rows, ${pin.tag})`); +} + +await main(); diff --git a/internal/compatibility/src/update.mjs b/internal/compatibility/src/update.mjs new file mode 100644 index 000000000..9ffb2a3c5 --- /dev/null +++ b/internal/compatibility/src/update.mjs @@ -0,0 +1,12 @@ +#!/usr/bin/env node + +import { spawnSync } from "node:child_process"; + +const check = process.argv.slice(2).includes("--check"); +const args = check ? ["--check"] : []; + +for (const script of ["generate-island-header.mjs", "generate.mjs"]) { + const result = spawnSync(process.execPath, [`src/${script}`, ...args], { stdio: "inherit" }); + if (result.error) throw result.error; + if (result.status !== 0) process.exit(result.status ?? 1); +} diff --git a/internal/compatibility/static-support.json b/internal/compatibility/static-support.json new file mode 100644 index 000000000..28fdc033a --- /dev/null +++ b/internal/compatibility/static-support.json @@ -0,0 +1,96 @@ +{ + "schemaVersion": 1, + "chapterPolicies": { + "addons": "by-design", + "n-api": "by-design", + "embedding": "not-applicable", + "cli": "not-applicable", + "debugger": "not-applicable", + "deprecations": "not-applicable", + "environment_variables": "unreviewed", + "errors": "unreviewed", + "globals": "unreviewed", + "intl": "not-applicable", + "modules": "unreviewed", + "esm": "unreviewed", + "packages": "unreviewed", + "typescript": "unreviewed", + "permissions": "not-implemented", + "report": "not-implemented", + "single-executable-applications": "not-applicable", + "repl": "not-implemented", + "sqlite": "not-implemented", + "tracing": "not-implemented", + "v8": "by-design", + "vm": "by-design", + "wasi": "by-design", + "webcrypto": "unreviewed", + "webstreams": "unreviewed" + }, + "evidenceByManifestPrefix": { + "node-builtin.assert": ["tests/corpus/1600-assert-passing.ts", "tests/corpus/1609-assert-async.ts"], + "node-builtin.async_hooks": ["tests/corpus/2213-async-local-storage.cjs"], + "node-builtin.buffer": ["tests/corpus/1402-buffer-encodings.ts", "tests/corpus/1660-buffer-read-write-num.ts"], + "node-builtin.child_process": ["tests/corpus/1361-spawn-events.ts", "tests/corpus/1565-spawn-pipe-streams.ts"], + "node-builtin.cluster": ["tests/corpus/957-builtins-namespace.ts"], + "node-builtin.crypto": ["tests/corpus/1358-crypto-random.ts", "tests/corpus/1534-crypto-hash-chain.ts", "tests/corpus/2556-crypto-introspection.ts"], + "node-builtin.dgram": ["tests/corpus/2597-dgram-send-ladders.cjs"], + "node-builtin.diagnostics_channel": ["tests/corpus/2214-dc-bind-store.cjs"], + "node-builtin.dns": ["tests/corpus/2597-dgram-send-ladders.cjs"], + "node-builtin.events": ["tests/corpus/1677-emitter-listeners.ts", "tests/corpus/2620-ee-override-once-order.ts"], + "node-builtin.fs": ["tests/corpus/1403-buffer-fs.ts", "tests/corpus/2595-fs-arg-ladders.cjs"], + "node-builtin.http": ["tests/corpus/1780-http-res-surface.ts", "tests/corpus/2672-http-request-response-callback.ts"], + "node-builtin.http2": ["tests/corpus/2260-http2-constants.cjs"], + "node-builtin.https": ["tests/corpus/2645-https-client-url-argument.ts", "tests/corpus/2690-https-server-timeout-option.ts"], + "node-builtin.module": ["tests/corpus/1598-cjs-builtin-require/main.js"], + "node-builtin.net": ["tests/corpus/2500-net-autosel-timeout.ts", "tests/corpus/2596-net-arg-ladders.cjs"], + "node-builtin.os": ["tests/corpus/1480-os-network-interfaces.ts"], + "node-builtin.path": ["tests/corpus/957-builtins-namespace.ts"], + "node-builtin.perf_hooks": ["tests/corpus/957-builtins-namespace.ts"], + "node-builtin.process": ["tests/corpus/990-process-basics.ts", "tests/corpus/2314-process-introspection.ts"], + "node-builtin.querystring": ["tests/corpus/957-builtins-namespace.ts"], + "node-builtin.readline": ["tests/corpus/1475-readline-closed-stdin.ts"], + "node-builtin.stream": ["tests/corpus/1685-stream-readable-basics.ts", "tests/corpus/1814-stream-pipeline.cjs", "tests/corpus/2629-stream-consumers.ts"], + "node-builtin.string_decoder": ["tests/corpus/1662-string-decoder-encodings.ts"], + "node-builtin.test": ["tests/harness/node-test.test.ts"], + "node-builtin.timers": ["tests/corpus/1804-timers-module.ts", "tests/corpus/2093-timers-promises.ts"], + "node-builtin.tls": ["tests/corpus/2331-tls-server-options-typed.ts", "tests/corpus/2557-tls-ca-store.ts"], + "node-builtin.tty": ["tests/corpus/1448-stream-columns.ts"], + "node-builtin.url": ["tests/corpus/1794-searchparams-url-live.ts"], + "node-builtin.util": ["tests/corpus/2440-console-inspect-args.ts"], + "node-builtin.worker_threads": ["tests/corpus/957-builtins-namespace.ts"], + "node-builtin.zlib": ["tests/corpus/1404-zlib-crypto-bytes.ts"], + "stdlib.fetch": ["tests/harness/fetch-conformance.test.ts"], + "stdlib.headers": ["tests/harness/fetch-conformance.test.ts"], + "stdlib.request": ["tests/harness/fetch-conformance.test.ts"], + "stdlib.response": ["tests/harness/fetch-conformance.test.ts"], + "stdlib.readable-stream": ["tests/harness/fetch-conformance.test.ts"], + "stdlib.abort": ["tests/harness/fetch-conformance.test.ts"] + }, + "features": [ + { "chapter": "environment_variables", "symbols": ["export"], "status": "not-applicable" }, + { "chapter": "globals", "symbols": ["fetch"], "status": "partial", "evidence": ["tests/harness/fetch-conformance.test.ts"] }, + { "chapter": "modules", "symbols": ["__dirname", "__filename", "exports", "require", "module.require", "main", "filename"], "status": "partial", "evidence": ["tests/corpus/1612-cjs-module-globals.cjs", "tests/corpus/1596-cjs-modules/main.js", "tests/corpus/1629-require-main-filename.cjs"] }, + { "chapter": "modules", "symbols": ["require.resolve", "require.resolve.paths", "cache", "extensions", "children", "id", "isPreloading", "loaded", "parent", "paths", "Module"], "status": "not-implemented" }, + { "chapter": "modules", "symbols": ["node:", "node_modules"], "status": "partial", "evidence": ["tests/corpus/1598-cjs-builtin-require/main.js", "tests/corpus/1596-cjs-modules/main.js"] }, + { "chapter": "esm", "symbols": ["import", "file:", "node:", "await"], "status": "partial", "evidence": ["tests/corpus/950-modules-basic/main.ts", "tests/corpus/2646-top-level-await.ts"] }, + { "chapter": "esm", "symbols": ["meta", "import.meta.resolve", "dirname", "filename", "main", "data:", "require", "__filename", "require.main", "require.resolve", "NODE_PATH", "require.extensions", "require.cache"], "status": "not-implemented" }, + { "chapter": "packages", "symbols": ["package.json", "\"name\"", "\"main\"", "\"type\"", "\"exports\"", "\"imports\""], "status": "partial", "evidence": ["tests/corpus/2092-package-imports/main.ts", "tests/corpus/2120-package-self-import/main.ts", "tests/corpus/2124-imports-field-wildcard/main.ts", "tests/corpus/2390-dot-requires/main.cjs"] }, + { "chapter": "packages", "symbols": ["--input-type"], "status": "not-applicable" }, + { "chapter": "typescript", "symbols": ["type"], "status": "not-implemented" } + ], + "dedicated": [ + { "symbols": ["console.log", "console.info", "console.debug", "console.error", "console.warn"], "status": "partial", "evidence": ["tests/corpus/1460-console-error-warn.ts", "tests/corpus/2440-console-inspect-args.ts"] }, + { "symbols": ["assert", "assert.ok", "assert.strictEqual", "assert.notStrictEqual", "assert.deepStrictEqual", "assert.notDeepStrictEqual", "assert.fail", "assert.match", "assert.doesNotMatch", "assert.throws", "assert.rejects", "assert.doesNotReject", "assert.ifError"], "status": "partial", "evidence": ["tests/corpus/1600-assert-passing.ts", "tests/corpus/1604-assert-deep-structures.ts", "tests/corpus/1609-assert-async.ts", "tests/corpus/1721-assert-throws-regex-class.ts"] }, + { "symbols": ["EventEmitter", "emitter.on", "emitter.addListener", "emitter.once", "emitter.prependListener", "emitter.prependOnceListener", "emitter.off", "emitter.removeListener", "emitter.removeAllListeners", "emitter.emit", "emitter.listenerCount", "emitter.listeners", "emitter.rawListeners", "emitter.eventNames", "emitter.setMaxListeners", "emitter.getMaxListeners", "events.getEventListeners", "events.listenerCount", "events.once", "events.on", "events.setMaxListeners"], "status": "partial", "evidence": ["tests/corpus/1677-emitter-listeners.ts", "tests/corpus/2620-ee-override-once-order.ts"] }, + { "symbols": ["AsyncLocalStorage", "asyncLocalStorage.run", "asyncLocalStorage.exit", "asyncLocalStorage.getStore", "asyncLocalStorage.enterWith", "asyncLocalStorage.disable"], "status": "partial", "evidence": ["tests/corpus/2213-async-local-storage.cjs"] }, + { "symbols": ["StringDecoder", "stringDecoder.write", "stringDecoder.end"], "status": "partial", "evidence": ["tests/corpus/1662-string-decoder-encodings.ts"] }, + { "symbols": ["setImmediate", "setInterval", "setTimeout", "clearImmediate", "clearInterval", "clearTimeout", "timersPromises.setTimeout", "timersPromises.setImmediate", "immediate.hasRef", "immediate.ref", "immediate.unref", "timeout.hasRef", "timeout.ref", "timeout.unref", "timeout.refresh"], "status": "partial", "evidence": ["tests/corpus/1804-timers-module.ts", "tests/corpus/1805-timer-callback-args.ts", "tests/corpus/2093-timers-promises.ts"] }, + { "symbols": ["stream.finished", "stream.pipeline", "stream.getDefaultHighWaterMark", "readable.push", "readable.unshift", "readable.read", "readable.pause", "readable.resume", "readable.isPaused", "readable.setEncoding", "readable.pipe", "readable.unpipe", "readable.destroy", "writable.write", "writable.end", "writable.cork", "writable.uncork", "writable.setDefaultEncoding"], "status": "partial", "evidence": ["tests/corpus/1685-stream-readable-basics.ts", "tests/corpus/1688-stream-writable-basics.ts", "tests/corpus/1814-stream-pipeline.cjs"] }, + { "symbols": ["net.createServer", "net.connect", "net.createConnection", "net.getDefaultAutoSelectFamilyAttemptTimeout", "net.setDefaultAutoSelectFamilyAttemptTimeout", "server.address", "server.close", "server.listen", "socket.destroy", "socket.end", "socket.pause", "socket.resume", "socket.setEncoding", "socket.setTimeout", "socket.write"], "status": "partial", "evidence": ["tests/corpus/2500-net-autosel-timeout.ts", "tests/corpus/2596-net-arg-ladders.cjs"] }, + { "symbols": ["dgram.createSocket", "socket.address", "socket.bind", "socket.close", "socket.connect", "socket.ref", "socket.remoteAddress", "socket.send", "socket.unref"], "status": "partial", "evidence": ["tests/corpus/2597-dgram-send-ladders.cjs"] }, + { "symbols": ["readline.createInterface", "rl.close"], "status": "partial", "evidence": ["tests/corpus/1475-readline-closed-stdin.ts"] }, + { "symbols": ["test", "it", "test.skip", "test.todo", "test.only", "describe", "suite", "before", "after", "beforeEach", "afterEach", "context.test", "context.skip", "context.todo", "context.diagnostic", "context.name", "context.assert"], "status": "partial", "evidence": ["tests/harness/node-test.test.ts"] }, + { "symbols": ["http.request", "http.get", "http.createServer", "https.request", "https.get", "https.createServer", "request.end", "request.destroy", "request.setTimeout", "request.write", "response.end", "response.getHeader", "response.hasHeader", "response.removeHeader", "response.setHeader", "response.write", "response.writeHead", "headersTimeout", "requestTimeout", "timeout", "keepAliveTimeout", "keepAliveTimeoutBuffer"], "status": "partial", "evidence": ["tests/corpus/1780-http-res-surface.ts", "tests/corpus/2672-http-request-response-callback.ts", "tests/corpus/2689-http-server-timeout-properties.ts"] } + ] +} diff --git a/package.json b/package.json index fdf35d415..4aa3bd4b4 100644 --- a/package.json +++ b/package.json @@ -15,6 +15,9 @@ "test:watch": "vitest", "lint": "eslint packages/compiler/src packages/cli/src", "manifest": "tsx scripts/surface-manifest.mjs", + "node-compat": "pnpm --filter @internal/compatibility run update", + "node-compat:backlog": "pnpm --filter @internal/compatibility run backlog --", + "node-compat:check": "pnpm --filter @internal/compatibility run check", "scriptc": "tsx packages/cli/src/main.ts" }, "devDependencies": { diff --git a/packages/runtime/src/scr_island.c b/packages/runtime/src/scr_island.c index cbd86c630..c97ac416e 100644 --- a/packages/runtime/src/scr_island.c +++ b/packages/runtime/src/scr_island.c @@ -2380,145 +2380,10 @@ static char *isl_module_normalize(JSContext *ctx, const char *base, /* Named export lists for the builtin ESM wrappers. The wrapper source is * `const m = __scr_require("node:x"); export default m; export const - * {…} = m;` — the shims themselves live in the bootstrap below. */ -static const struct { - const char *name; - const char *exports; -} isl_builtins[] = { - {"node:events", - "EventEmitter,once,on,listenerCount,getEventListeners,setMaxListeners," - "defaultMaxListeners,errorMonitor,captureRejectionSymbol"}, - {"node:path", - "sep,delimiter,basename,dirname,extname,join,resolve,normalize,relative," - "isAbsolute,toNamespacedPath,parse,format,posix,win32"}, - {"node:path/posix", - "sep,delimiter,basename,dirname,extname,join,resolve,normalize,relative," - "isAbsolute,toNamespacedPath,parse,format,posix,win32"}, - {"node:path/win32", - "sep,delimiter,basename,dirname,extname,join,resolve,normalize,relative," - "isAbsolute,toNamespacedPath,parse,format,posix,win32"}, - {"node:process", - "argv,env,platform,execPath,execArgv,version,versions,stdout,stderr,stdin," - "cwd,exit,nextTick,hrtime,pid,ppid,title,argv0,release,config," - "allowedNodeEnvironmentFlags,emitWarning,uptime,memoryUsage,umask," - "exitCode,on,once,off,removeListener,emit"}, - {"node:fs", - "readFileSync,writeFileSync,appendFileSync,existsSync,realpathSync," - "mkdirSync,rmSync,rmdirSync,unlinkSync,readdirSync,statSync,lstatSync," - "accessSync,mkdtempSync,chmodSync,copyFileSync,renameSync,constants," - "Stats,Dirent,promises,readFile,writeFile,appendFile,exists,realpath," - "mkdir,rm,rmdir,unlink,readdir,stat,lstat,access,mkdtemp,chmod,copyFile," - "rename,readlink,readlinkSync,createReadStream,createWriteStream,watch," - "watchFile,unwatchFile,openSync,closeSync,readSync,read,open"}, - {"node:fs/promises", - "readFile,writeFile,appendFile,realpath,mkdir,rm,rmdir,unlink,readdir," - "stat,lstat,access,mkdtemp,chmod,copyFile,rename,readlink,constants,open"}, - {"node:child_process", "spawn,spawnSync,exec,execSync,execFile,execFileSync,fork"}, - {"node:os", - "EOL,platform,arch,hostname,homedir,tmpdir,type,endianness,userInfo," - "release,version,machine,cpus,availableParallelism,totalmem,freemem," - "loadavg,uptime,networkInterfaces,constants"}, - {"node:tty", "isatty,ReadStream,WriteStream"}, - {"node:http", - "request,get,Agent,globalAgent,ClientRequest,IncomingMessage,STATUS_CODES," - "METHODS,createServer,Server"}, - {"node:https", - "request,get,Agent,globalAgent,ClientRequest,IncomingMessage,STATUS_CODES," - "METHODS,createServer,Server"}, - {"node:net", "isIP,isIPv4,isIPv6,connect,createConnection,createServer,Socket,Server"}, - {"node:tls", "connect,createServer,createSecureContext,TLSSocket,rootCertificates"}, - {"node:diagnostics_channel", "channel,subscribe,unsubscribe,hasSubscribers,tracingChannel"}, - {"node:module", - "createRequire,builtinModules,isBuiltin,syncBuiltinESMExports,register," - "findSourceMap"}, - {"node:url", - "URL,URLSearchParams,fileURLToPath,pathToFileURL,parse,format,resolve," - "domainToASCII,domainToUnicode,urlToHttpOptions"}, - {"node:buffer", - "Buffer,SlowBuffer,INSPECT_MAX_BYTES,kMaxLength,kStringMaxLength,constants," - "isAscii,isUtf8,atob,btoa,Blob,File,transcode,resolveObjectURL"}, - {"node:string_decoder", "StringDecoder"}, - {"node:assert", - "AssertionError,ok,fail,equal,notEqual,strictEqual,notStrictEqual," - "deepEqual,notDeepEqual,deepStrictEqual,notDeepStrictEqual,throws," - "doesNotThrow,rejects,doesNotReject,match,doesNotMatch,ifError,strict"}, - {"node:assert/strict", - "AssertionError,ok,fail,equal,notEqual,strictEqual,notStrictEqual," - "deepEqual,notDeepEqual,deepStrictEqual,notDeepStrictEqual,throws," - "doesNotThrow,rejects,doesNotReject,match,doesNotMatch,ifError,strict"}, - {"node:domain", "create,createDomain,Domain,active"}, - {"node:worker_threads", - "isMainThread,parentPort,threadId,workerData,resourceLimits," - "MessageChannel,MessagePort,Worker,receiveMessageOnPort,SHARE_ENV," - "markAsUntransferable,getEnvironmentData,setEnvironmentData"}, - {"node:perf_hooks", "performance,PerformanceObserver,monitorEventLoopDelay,constants"}, - {"node:v8", - "startupSnapshot,cachedDataVersionTag,getHeapStatistics," - "getHeapSpaceStatistics,getHeapCodeStatistics,getCppHeapStatistics," - "setFlagsFromString,takeCoverage,stopCoverage,setHeapSnapshotNearHeapLimit," - "serialize,deserialize,writeHeapSnapshot,getHeapSnapshot,queryObjects," - "startCpuProfile,isStringOneByteRepresentation,promiseHooks," - "Serializer,Deserializer,DefaultSerializer,DefaultDeserializer,GCProfiler"}, - {"node:dns", - "lookup,lookupService,resolve,resolve4,resolve6,resolveCname,resolveMx," - "resolveNs,resolveSrv,resolveTxt,reverse,getServers,setServers,Resolver," - "promises,ADDRCONFIG,V4MAPPED,ALL"}, - {"node:async_hooks", - "AsyncLocalStorage,AsyncResource,executionAsyncId,triggerAsyncId," - "executionAsyncResource,createHook"}, - {"node:punycode", "version,ucs2,decode,encode,toASCII,toUnicode"}, - {"node:querystring", "parse,stringify,decode,encode,escape,unescape,unescapeBuffer"}, - {"node:constants", "F_OK,R_OK,W_OK,X_OK"}, - {"node:console", "Console,log,info,debug,warn,error,trace,dir,assert,count,countReset,time,timeEnd,group,groupEnd,table,clear"}, - {"node:timers", "setTimeout,clearTimeout,setInterval,clearInterval,setImmediate,clearImmediate"}, - {"node:timers/promises", "setTimeout,setImmediate,setInterval,scheduler"}, - {"node:zlib", - "deflateSync,inflateSync,deflateRawSync,inflateRawSync,gzipSync," - "gunzipSync,unzipSync,deflate,inflate,deflateRaw,inflateRaw,gzip,gunzip," - "unzip,Deflate,Inflate,DeflateRaw,InflateRaw,Gzip,Gunzip,Unzip," - "BrotliCompress,BrotliDecompress,createDeflate,createInflate," - "createDeflateRaw,createInflateRaw,createGzip,createGunzip,createUnzip," - "createBrotliCompress,createBrotliDecompress,brotliCompressSync," - "brotliDecompressSync,constants"}, - {"node:readline", - "Interface,createInterface,clearLine,clearScreenDown,cursorTo,moveCursor," - "emitKeypressEvents"}, - {"node:stream", - "Stream,Readable,Writable,Duplex,Transform,PassThrough,pipeline,finished," - "addAbortSignal,promises,isErrored,isDestroyed,isReadable,isWritable"}, - {"node:stream/promises", "pipeline,finished"}, - {"node:stream/consumers", "text,buffer,arrayBuffer,json,blob"}, - {"node:stream/web", - "ReadableStream,WritableStream,TransformStream,TextEncoderStream," - "TextDecoderStream,CountQueuingStrategy,ByteLengthQueuingStrategy," - "ReadableStreamDefaultReader,ReadableStreamDefaultController," - "WritableStreamDefaultWriter"}, - {"node:crypto", - "createHash,createHmac,hash,Hash,Hmac,randomBytes,randomFillSync,randomFill," - "randomInt,randomUUID,getRandomValues,timingSafeEqual,pbkdf2,pbkdf2Sync," - "getHashes,getCiphers,getCurves,webcrypto,subtle,constants,KeyObject," - "createCipheriv,createDecipheriv,createSign,createVerify," - "createDiffieHellman,createECDH,createPublicKey,createPrivateKey," - "createSecretKey,diffieHellman,generateKeyPair,generateKeyPairSync," - "generateKey,generateKeySync,sign,verify,publicEncrypt,publicDecrypt," - "privateEncrypt,privateDecrypt,scrypt,scryptSync,hkdf,hkdfSync," - "X509Certificate,Certificate,checkPrime,checkPrimeSync,generatePrime," - "generatePrimeSync,secureHeapUsed,setEngine,setFips,getFips"}, - {"node:util", - "format,formatWithOptions,inspect,inherits,promisify,callbackify,deprecate," - "debuglog,debug,types,isDeepStrictEqual,stripVTControlCharacters,styleText," - "parseArgs,toUSVString,_extend,TextEncoder,TextDecoder,isArray"}, - {"node:util/types", - "isAnyArrayBuffer,isArrayBufferView,isArgumentsObject,isArrayBuffer," - "isAsyncFunction,isBigInt64Array,isBigUint64Array,isBooleanObject," - "isBoxedPrimitive,isBigIntObject,isCryptoKey,isDataView,isDate,isExternal," - "isFloat16Array,isFloat32Array,isFloat64Array,isGeneratorFunction," - "isGeneratorObject,isInt8Array,isInt16Array,isInt32Array,isKeyObject,isMap," - "isMapIterator,isModuleNamespaceObject,isNativeError,isNumberObject," - "isPromise,isProxy,isRegExp,isSet,isSetIterator,isSharedArrayBuffer," - "isStringObject,isSymbolObject,isTypedArray,isUint8Array," - "isUint8ClampedArray,isUint16Array,isUint32Array,isWeakMap,isWeakSet"}, -}; + * {…} = m;` — the shims themselves live in the bootstrap below. The + * implementation-owned manifest generates this exact registry, so the + * runtime and compatibility ledger cannot drift. */ +#include "scr_island_manifest.h" static JSModuleDef *isl_module_load(JSContext *ctx, const char *name, void *opaque) { (void)opaque; @@ -6536,18 +6401,12 @@ static const char isl_modules_bootstrap[] = " c.default = c;\n" " return c;\n" " });\n" - /* stream/web re-exports the web prelude's classes; names the - * prelude does not carry stay undefined (honest absence). */ + /* stream/web re-exports the web prelude's implemented classes. */ " builtins['stream/web'] = memo(() => {\n" " const g = globalThis;\n" " const w = {\n" - " ReadableStream: g.ReadableStream, WritableStream: g.WritableStream,\n" - " TransformStream: g.TransformStream, TextEncoderStream: g.TextEncoderStream,\n" + " ReadableStream: g.ReadableStream, TransformStream: g.TransformStream,\n" " TextDecoderStream: g.TextDecoderStream,\n" - " CountQueuingStrategy: g.CountQueuingStrategy, ByteLengthQueuingStrategy: g.ByteLengthQueuingStrategy,\n" - " ReadableStreamDefaultReader: g.ReadableStreamDefaultReader,\n" - " ReadableStreamDefaultController: g.ReadableStreamDefaultController,\n" - " WritableStreamDefaultWriter: g.WritableStreamDefaultWriter,\n" " };\n" " w.default = w;\n" " return w;\n" diff --git a/packages/runtime/src/scr_island_manifest.h b/packages/runtime/src/scr_island_manifest.h new file mode 100644 index 000000000..768a691a6 --- /dev/null +++ b/packages/runtime/src/scr_island_manifest.h @@ -0,0 +1,142 @@ +/* Generated by @internal/compatibility from dynamic-support.json. + * Do not edit: the manifest is the implementation-owned builtin registry. */ +static const struct { + const char *name; + const char *exports; +} isl_builtins[] = { + {"node:events", + "EventEmitter,once,on,listenerCount,getEventListeners,setMaxListeners,defaultMaxListeners" + ",errorMonitor,captureRejectionSymbol"}, + {"node:path", + "sep,delimiter,basename,dirname,extname,join,resolve,normalize,relative,isAbsolute,toName" + "spacedPath,parse,format,posix,win32"}, + {"node:path/posix", + "sep,delimiter,basename,dirname,extname,join,resolve,normalize,relative,isAbsolute,toName" + "spacedPath,parse,format,posix,win32"}, + {"node:path/win32", + "sep,delimiter,basename,dirname,extname,join,resolve,normalize,relative,isAbsolute,toName" + "spacedPath,parse,format,posix,win32"}, + {"node:process", + "argv,env,platform,execPath,execArgv,version,versions,stdout,stderr,stdin,cwd,exit,nextTi" + "ck,hrtime,pid,ppid,title,argv0,release,config,allowedNodeEnvironmentFlags,emitWarning,up" + "time,memoryUsage,umask,exitCode,on,once,off,removeListener,emit"}, + {"node:fs", + "readFileSync,writeFileSync,appendFileSync,existsSync,realpathSync,mkdirSync,rmSync,rmdir" + "Sync,unlinkSync,readdirSync,statSync,lstatSync,accessSync,mkdtempSync,chmodSync,copyFile" + "Sync,renameSync,constants,Stats,Dirent,promises,readFile,writeFile,appendFile,exists,rea" + "lpath,mkdir,rm,rmdir,unlink,readdir,stat,lstat,access,mkdtemp,chmod,copyFile,rename,read" + "link,readlinkSync,createReadStream,createWriteStream,watch,watchFile,unwatchFile,openSyn" + "c,closeSync,readSync,read,open"}, + {"node:fs/promises", + "readFile,writeFile,appendFile,realpath,mkdir,rm,rmdir,unlink,readdir,stat,lstat,access,m" + "kdtemp,chmod,copyFile,rename,readlink,constants,open"}, + {"node:child_process", + "spawn,spawnSync,exec,execSync,execFile,execFileSync,fork"}, + {"node:os", + "EOL,platform,arch,hostname,homedir,tmpdir,type,endianness,userInfo,release,version,machi" + "ne,cpus,availableParallelism,totalmem,freemem,loadavg,uptime,networkInterfaces,constants"}, + {"node:tty", + "isatty,ReadStream,WriteStream"}, + {"node:http", + "request,get,Agent,globalAgent,ClientRequest,IncomingMessage,STATUS_CODES,METHODS,createS" + "erver,Server"}, + {"node:https", + "request,get,Agent,globalAgent,ClientRequest,IncomingMessage,STATUS_CODES,METHODS,createS" + "erver,Server"}, + {"node:net", + "isIP,isIPv4,isIPv6,connect,createConnection,createServer,Socket,Server"}, + {"node:tls", + "connect,createServer,createSecureContext,TLSSocket,rootCertificates"}, + {"node:diagnostics_channel", + "channel,subscribe,unsubscribe,hasSubscribers,tracingChannel"}, + {"node:module", + "createRequire,builtinModules,isBuiltin,syncBuiltinESMExports,register,findSourceMap"}, + {"node:url", + "URL,URLSearchParams,fileURLToPath,pathToFileURL,parse,format,resolve,domainToASCII,domai" + "nToUnicode,urlToHttpOptions"}, + {"node:buffer", + "Buffer,SlowBuffer,INSPECT_MAX_BYTES,kMaxLength,kStringMaxLength,constants,isAscii,isUtf8" + ",atob,btoa,Blob,File,transcode,resolveObjectURL"}, + {"node:string_decoder", + "StringDecoder"}, + {"node:assert", + "AssertionError,ok,fail,equal,notEqual,strictEqual,notStrictEqual,deepEqual,notDeepEqual," + "deepStrictEqual,notDeepStrictEqual,throws,doesNotThrow,rejects,doesNotReject,match,doesN" + "otMatch,ifError,strict"}, + {"node:assert/strict", + "AssertionError,ok,fail,equal,notEqual,strictEqual,notStrictEqual,deepEqual,notDeepEqual," + "deepStrictEqual,notDeepStrictEqual,throws,doesNotThrow,rejects,doesNotReject,match,doesN" + "otMatch,ifError,strict"}, + {"node:domain", + "create,createDomain,Domain,active"}, + {"node:worker_threads", + "isMainThread,parentPort,threadId,workerData,resourceLimits,MessageChannel,MessagePort,Wo" + "rker,receiveMessageOnPort,SHARE_ENV,markAsUntransferable,getEnvironmentData,setEnvironme" + "ntData"}, + {"node:perf_hooks", + "performance,PerformanceObserver,monitorEventLoopDelay,constants"}, + {"node:v8", + "startupSnapshot,cachedDataVersionTag,getHeapStatistics,getHeapSpaceStatistics,getHeapCod" + "eStatistics,getCppHeapStatistics,setFlagsFromString,takeCoverage,stopCoverage,setHeapSna" + "pshotNearHeapLimit,serialize,deserialize,writeHeapSnapshot,getHeapSnapshot,queryObjects," + "startCpuProfile,isStringOneByteRepresentation,promiseHooks,Serializer,Deserializer,Defau" + "ltSerializer,DefaultDeserializer,GCProfiler"}, + {"node:dns", + "lookup,lookupService,resolve,resolve4,resolve6,resolveCname,resolveMx,resolveNs,resolveS" + "rv,resolveTxt,reverse,getServers,setServers,Resolver,promises,ADDRCONFIG,V4MAPPED,ALL"}, + {"node:async_hooks", + "AsyncLocalStorage,AsyncResource,executionAsyncId,triggerAsyncId,executionAsyncResource,c" + "reateHook"}, + {"node:punycode", + "version,ucs2,decode,encode,toASCII,toUnicode"}, + {"node:querystring", + "parse,stringify,decode,encode,escape,unescape,unescapeBuffer"}, + {"node:constants", + "F_OK,R_OK,W_OK,X_OK"}, + {"node:console", + "Console,log,info,debug,warn,error,trace,dir,assert,count,countReset,time,timeEnd,group,g" + "roupEnd,table,clear"}, + {"node:timers", + "setTimeout,clearTimeout,setInterval,clearInterval,setImmediate,clearImmediate"}, + {"node:timers/promises", + "setTimeout,setImmediate,setInterval,scheduler"}, + {"node:zlib", + "deflateSync,inflateSync,deflateRawSync,inflateRawSync,gzipSync,gunzipSync,unzipSync,defl" + "ate,inflate,deflateRaw,inflateRaw,gzip,gunzip,unzip,Deflate,Inflate,DeflateRaw,InflateRa" + "w,Gzip,Gunzip,Unzip,BrotliCompress,BrotliDecompress,createDeflate,createInflate,createDe" + "flateRaw,createInflateRaw,createGzip,createGunzip,createUnzip,createBrotliCompress,creat" + "eBrotliDecompress,brotliCompressSync,brotliDecompressSync,constants"}, + {"node:readline", + "Interface,createInterface,clearLine,clearScreenDown,cursorTo,moveCursor,emitKeypressEven" + "ts"}, + {"node:stream", + "Stream,Readable,Writable,Duplex,Transform,PassThrough,pipeline,finished,addAbortSignal,p" + "romises,isErrored,isDestroyed,isReadable,isWritable"}, + {"node:stream/promises", + "pipeline,finished"}, + {"node:stream/consumers", + "text,buffer,arrayBuffer,json,blob"}, + {"node:stream/web", + "ReadableStream,TransformStream,TextDecoderStream"}, + {"node:crypto", + "createHash,createHmac,hash,Hash,Hmac,randomBytes,randomFillSync,randomFill,randomInt,ran" + "domUUID,getRandomValues,timingSafeEqual,pbkdf2,pbkdf2Sync,getHashes,getCiphers,getCurves" + ",webcrypto,subtle,constants,KeyObject,createCipheriv,createDecipheriv,createSign,createV" + "erify,createDiffieHellman,createECDH,createPublicKey,createPrivateKey,createSecretKey,di" + "ffieHellman,generateKeyPair,generateKeyPairSync,generateKey,generateKeySync,sign,verify," + "publicEncrypt,publicDecrypt,privateEncrypt,privateDecrypt,scrypt,scryptSync,hkdf,hkdfSyn" + "c,X509Certificate,Certificate,checkPrime,checkPrimeSync,generatePrime,generatePrimeSync," + "secureHeapUsed,setEngine,setFips,getFips"}, + {"node:util", + "format,formatWithOptions,inspect,inherits,promisify,callbackify,deprecate,debuglog,debug" + ",types,isDeepStrictEqual,stripVTControlCharacters,styleText,parseArgs,toUSVString,_exten" + "d,TextEncoder,TextDecoder,isArray"}, + {"node:util/types", + "isAnyArrayBuffer,isArrayBufferView,isArgumentsObject,isArrayBuffer,isAsyncFunction,isBig" + "Int64Array,isBigUint64Array,isBooleanObject,isBoxedPrimitive,isBigIntObject,isCryptoKey," + "isDataView,isDate,isExternal,isFloat16Array,isFloat32Array,isFloat64Array,isGeneratorFun" + "ction,isGeneratorObject,isInt8Array,isInt16Array,isInt32Array,isKeyObject,isMap,isMapIte" + "rator,isModuleNamespaceObject,isNativeError,isNumberObject,isPromise,isProxy,isRegExp,is" + "Set,isSetIterator,isSharedArrayBuffer,isStringObject,isSymbolObject,isTypedArray,isUint8" + "Array,isUint8ClampedArray,isUint16Array,isUint32Array,isWeakMap,isWeakSet"}, +}; diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 405e92897..6aa041c36 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -33,6 +33,8 @@ importers: specifier: ^3.0.0 version: 3.2.7(@edge-runtime/vm@3.2.0)(@types/node@24.13.3)(tsx@4.23.0) + internal/compatibility: {} + packages/cli: dependencies: '@scriptc/compiler': diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 767319b2e..26f47b5b8 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -1,5 +1,6 @@ packages: - "packages/*" + - "internal/*" minimumReleaseAgeExclude: - "vercel@58.1.0" allowBuilds: diff --git a/tests/fixtures/npm/divergent/web-stream-module-presence.ts b/tests/fixtures/npm/divergent/web-stream-module-presence.ts new file mode 100644 index 000000000..ee91c37ad --- /dev/null +++ b/tests/fixtures/npm/divergent/web-stream-module-presence.ts @@ -0,0 +1,7 @@ +// @dynamic +// This is a scriptc-only probe: Node's node:stream/web has more exports than +// the deliberately bounded island shim, so it is not part of npm's +// byte-for-byte differential corpus. +import { modulePresence } from "webstream"; + +console.log(modulePresence()); diff --git a/tests/fixtures/npm/node_modules/webstream/index.d.ts b/tests/fixtures/npm/node_modules/webstream/index.d.ts index 7266efff3..d77e155ec 100644 --- a/tests/fixtures/npm/node_modules/webstream/index.d.ts +++ b/tests/fixtures/npm/node_modules/webstream/index.d.ts @@ -1 +1,2 @@ export declare function run(): void; +export declare function modulePresence(): string; diff --git a/tests/fixtures/npm/node_modules/webstream/index.js b/tests/fixtures/npm/node_modules/webstream/index.js index 62db6b7de..22a45738f 100644 --- a/tests/fixtures/npm/node_modules/webstream/index.js +++ b/tests/fixtures/npm/node_modules/webstream/index.js @@ -8,8 +8,48 @@ // drains at loop quiescence, like Node's microtasks. const out = (line) => process.stdout.write(line + "\n"); +// This probe intentionally uses the private loader hook from inside an +// embedded npm module. Standalone islands do not install the hook because +// they have no module graph to load. +export function modulePresence() { + const m = globalThis.__scr_require("node:stream/web"); + return [ + typeof m.ReadableStream, + typeof m.TransformStream, + typeof m.TextDecoderStream, + typeof URL, + typeof Buffer, + typeof setImmediate, + typeof clearImmediate, + "WritableStream" in m, + "TextEncoderStream" in m, + "CountQueuingStrategy" in m, + "ByteLengthQueuingStrategy" in m, + "ReadableStreamDefaultReader" in m, + "ReadableStreamDefaultController" in m, + "WritableStreamDefaultWriter" in m, + ].join(" "); +} + +import { + ReadableStream as ModuleReadableStream, + TransformStream as ModuleTransformStream, + TextDecoderStream as ModuleTextDecoderStream, +} from "node:stream/web"; + export function run() { (async () => { + // node:stream/web's implemented named exports are the same constructors + // as the corresponding web globals in both runtimes. + out("module-stream " + [ + typeof ModuleReadableStream, + typeof ModuleTransformStream, + typeof ModuleTextDecoderStream, + ModuleReadableStream === ReadableStream, + ModuleTransformStream === TransformStream, + ModuleTextDecoderStream === TextDecoderStream, + ].join(" ")); + // push source + async iteration { const rs = new ReadableStream({ diff --git a/tests/harness/node-compatibility.test.ts b/tests/harness/node-compatibility.test.ts new file mode 100644 index 000000000..e964a90e1 --- /dev/null +++ b/tests/harness/node-compatibility.test.ts @@ -0,0 +1,30 @@ +import { readFileSync } from "node:fs"; +import { join } from "node:path"; +import { describe, expect, test } from "vitest"; + +const repoRoot = join(import.meta.dirname, "../.."); +const snapshot = JSON.parse( + readFileSync(join(repoRoot, "internal/compatibility/generated/node-v24-internal.json"), "utf8"), +) as { + rows: Array<{ + chapter: string; + apiSymbol: string; + static?: { evidence?: string }; + }>; +}; + +describe("Node compatibility generator", () => { + test("does not attribute bare fs APIs to fs/promises lowering", () => { + const bareFsRows = snapshot.rows.filter((row) => row.chapter === "fs" && row.apiSymbol.startsWith("fs.")); + + expect(bareFsRows.length).toBeGreaterThan(0); + expect(bareFsRows.every((row) => !row.static?.evidence?.includes("fs.promises"))).toBe(true); + }); + + test("keeps fsPromises APIs attributed to fs/promises lowering", () => { + const promiseRows = snapshot.rows.filter((row) => row.chapter === "fs" && row.apiSymbol.startsWith("fsPromises.")); + + expect(promiseRows.length).toBeGreaterThan(0); + expect(promiseRows.some((row) => row.static?.evidence?.includes("node-builtin.fs.promises"))).toBe(true); + }); +}); diff --git a/tests/harness/web-globals.test.ts b/tests/harness/web-globals.test.ts index d73d2f7e8..56bc6a7be 100644 --- a/tests/harness/web-globals.test.ts +++ b/tests/harness/web-globals.test.ts @@ -19,6 +19,7 @@ import { compile } from "@scriptc/compiler"; const execFileAsync = promisify(execFile); const repoRoot = join(import.meta.dirname, "../.."); +const fixturesRoot = join(repoRoot, "tests/fixtures"); const cacheDir = join(repoRoot, "node_modules/.cache/scriptc-tests"); const sanitize = process.env["SCRIPTC_SAN"] === "1"; @@ -66,6 +67,32 @@ async function compileAndRun(name: string, source: string): Promise { } } +/** Compiles and runs a fixture whose imports must be embedded from npm. */ +async function compileFixtureAndRun(name: string, entry: string): Promise { + const outDir = join(cacheDir, `web-${name}`); + mkdirSync(outDir, { recursive: true }); + const result = await compile(entry, { + outPath: join(outDir, name), + outDir, + sanitize, + dynamic: true, + }); + if (!result.ok) { + throw new Error( + "web-globals fixture failed to compile:\n" + + result.diagnostics.map((d) => `${d.code}: ${d.message}`).join("\n"), + ); + } + try { + const { stdout, stderr } = await execFileAsync(result.binaryPath, [], { encoding: "utf8" }); + return { stdout, stderr, exitCode: 0 }; + } catch (err) { + const e = err as { code?: unknown; stdout?: string; stderr?: string }; + if (typeof e.code !== "number") throw err; + return { stdout: e.stdout ?? "", stderr: e.stderr ?? "", exitCode: e.code }; + } +} + /** Evaluates island code that must produce a one-line string. */ async function islandEval(name: string, js: string): Promise { const r = await compileAndRun(name, `console.log(__island_eval(${JSON.stringify(js)}));\n`); @@ -83,8 +110,10 @@ describe(`island web globals (scriptc-only${sanitize ? ", sanitized" : ""})`, () typeof TextDecoder, typeof TextDecoderStream, typeof URLSearchParams, typeof btoa, typeof atob, typeof Headers, typeof crypto, typeof console, typeof Blob, typeof File, typeof Event, typeof EventTarget, typeof CustomEvent, + typeof MessageEvent, typeof WritableStream, typeof structuredClone, typeof FormData, - typeof WebSocket, + typeof WebSocket, typeof URL, typeof Buffer, typeof setImmediate, + typeof clearImmediate, ].join(' ')`, ); // Blob/File and the Event triple joined the subset when the vercel @@ -92,12 +121,24 @@ describe(`island web globals (scriptc-only${sanitize ? ", sanitized" : ""})`, () // Event and buffer.Blob at LOAD); structuredClone joined with the // globals lane (the HTML StructuredSerialize subset, cycles // included); WritableStream/FormData/WebSocket stay fenced by - // absence. + // absence. URL, Buffer, and the immediate-timer globals are installed + // only when the embedded npm module bootstrap runs. expect(out).toBe( - "function function function function function function " + - "function function function object object " + - "function function function function function " + - "undefined function undefined undefined", + "function function function function function function function function function " + + "object object function function function function function function " + + "undefined function undefined undefined undefined undefined undefined undefined", + ); + }); + + test("node:stream/web exposes only the implemented module constructors", async () => { + const result = await compileFixtureAndRun( + "web-stream-module-presence", + join(fixturesRoot, "npm/divergent/web-stream-module-presence.ts"), + ); + expect(result.exitCode).toBe(0); + expect(result.stderr).toBe(""); + expect(result.stdout.trimEnd()).toBe( + "function function function function function function function false false false false false false false", ); });